Whamcloud - gitweb
0cc1fed4ffa4b786561293fb573a8b44871b78ea
[fs/lustre-release.git] / lustre / utils / lfs.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/utils/lfs.c
33  *
34  * Author: Peter J. Braam <braam@clusterfs.com>
35  * Author: Phil Schwan <phil@clusterfs.com>
36  * Author: Robert Read <rread@clusterfs.com>
37  */
38
39 /* for O_DIRECTORY */
40 #ifndef _GNU_SOURCE
41 #define _GNU_SOURCE
42 #endif
43
44 #include <stdlib.h>
45 #include <stdio.h>
46 #include <inttypes.h>
47 #include <getopt.h>
48 #include <string.h>
49 #include <mntent.h>
50 #include <unistd.h>
51 #include <errno.h>
52 #include <err.h>
53 #include <pwd.h>
54 #include <grp.h>
55 #include <sys/ioctl.h>
56 #include <sys/quota.h>
57 #include <sys/time.h>
58 #include <sys/types.h>
59 #include <sys/stat.h>
60 #include <sys/param.h>
61 #include <sys/xattr.h>
62 #include <fcntl.h>
63 #include <dirent.h>
64 #include <time.h>
65 #include <ctype.h>
66 #include <zlib.h>
67 #include <libgen.h>
68 #include <asm/byteorder.h>
69 #include "lfs_project.h"
70
71 #include <libcfs/util/string.h>
72 #include <libcfs/util/ioctl.h>
73 #include <libcfs/util/parser.h>
74 #include <lustre/lustreapi.h>
75 #include <linux/lustre/lustre_ver.h>
76 #include <linux/lustre/lustre_param.h>
77 #include <linux/lnet/nidstr.h>
78 #include <cyaml.h>
79
80 #ifndef ARRAY_SIZE
81 # define ARRAY_SIZE(a) ((sizeof(a)) / (sizeof((a)[0])))
82 #endif /* !ARRAY_SIZE */
83
84 /* all functions */
85 static int lfs_find(int argc, char **argv);
86 static int lfs_getstripe(int argc, char **argv);
87 static int lfs_getdirstripe(int argc, char **argv);
88 static int lfs_setdirstripe(int argc, char **argv);
89 static int lfs_rmentry(int argc, char **argv);
90 static int lfs_osts(int argc, char **argv);
91 static int lfs_mdts(int argc, char **argv);
92 static int lfs_df(int argc, char **argv);
93 static int lfs_getname(int argc, char **argv);
94 static int lfs_check(int argc, char **argv);
95 #ifdef HAVE_SYS_QUOTA_H
96 static int lfs_setquota(int argc, char **argv);
97 static int lfs_quota(int argc, char **argv);
98 static int lfs_project(int argc, char **argv);
99 #endif
100 static int lfs_flushctx(int argc, char **argv);
101 static int lfs_cp(int argc, char **argv);
102 static int lfs_ls(int argc, char **argv);
103 static int lfs_poollist(int argc, char **argv);
104 static int lfs_changelog(int argc, char **argv);
105 static int lfs_changelog_clear(int argc, char **argv);
106 static int lfs_fid2path(int argc, char **argv);
107 static int lfs_path2fid(int argc, char **argv);
108 static int lfs_data_version(int argc, char **argv);
109 static int lfs_hsm_state(int argc, char **argv);
110 static int lfs_hsm_set(int argc, char **argv);
111 static int lfs_hsm_clear(int argc, char **argv);
112 static int lfs_hsm_action(int argc, char **argv);
113 static int lfs_hsm_archive(int argc, char **argv);
114 static int lfs_hsm_restore(int argc, char **argv);
115 static int lfs_hsm_release(int argc, char **argv);
116 static int lfs_hsm_remove(int argc, char **argv);
117 static int lfs_hsm_cancel(int argc, char **argv);
118 static int lfs_swap_layouts(int argc, char **argv);
119 static int lfs_mv(int argc, char **argv);
120 static int lfs_ladvise(int argc, char **argv);
121 static int lfs_getsom(int argc, char **argv);
122 static int lfs_mirror(int argc, char **argv);
123 static int lfs_mirror_list_commands(int argc, char **argv);
124 static int lfs_list_commands(int argc, char **argv);
125 static inline int lfs_mirror_resync(int argc, char **argv);
126 static inline int lfs_mirror_verify(int argc, char **argv);
127 static inline int lfs_mirror_read(int argc, char **argv);
128 static inline int lfs_mirror_write(int argc, char **argv);
129
130 enum setstripe_origin {
131         SO_SETSTRIPE,
132         SO_MIGRATE,
133         SO_MIGRATE_MDT,
134         SO_MIRROR_CREATE,
135         SO_MIRROR_EXTEND,
136         SO_MIRROR_SPLIT,
137 };
138 static int lfs_setstripe_internal(int argc, char **argv,
139                                   enum setstripe_origin opc);
140
141 static inline int lfs_setstripe(int argc, char **argv)
142 {
143         return lfs_setstripe_internal(argc, argv, SO_SETSTRIPE);
144 }
145 static inline int lfs_setstripe_migrate(int argc, char **argv)
146 {
147         return lfs_setstripe_internal(argc, argv, SO_MIGRATE);
148 }
149 static inline int lfs_mirror_create(int argc, char **argv)
150 {
151         return lfs_setstripe_internal(argc, argv, SO_MIRROR_CREATE);
152 }
153 static inline int lfs_mirror_extend(int argc, char **argv)
154 {
155         return lfs_setstripe_internal(argc, argv, SO_MIRROR_EXTEND);
156 }
157 static inline int lfs_mirror_split(int argc, char **argv)
158 {
159         return lfs_setstripe_internal(argc, argv, SO_MIRROR_SPLIT);
160 }
161
162 /* Setstripe and migrate share mostly the same parameters */
163 #define SSM_CMD_COMMON(cmd) \
164         "usage: "cmd" [--component-end|-E <comp_end>]\n"                \
165         "                 [--stripe-count|-c <stripe_count>]\n"         \
166         "                 [--stripe-index|-i <start_ost_idx>]\n"        \
167         "                 [--stripe-size|-S <stripe_size>]\n"           \
168         "                 [--layout|-L <pattern>]\n"                    \
169         "                 [--pool|-p <pool_name>]\n"                    \
170         "                 [--ost|-o <ost_indices>]\n"                   \
171         "                 [--yaml|-y <yaml_template_file>]\n"           \
172         "                 [--copy=<lustre_src>]\n"
173
174 #define SSM_HELP_COMMON \
175         "\tstripe_count: Number of OSTs to stripe over (0=fs default, -1 all)\n" \
176         "\tstart_ost_idx: OST index of first stripe (-1=default round robin)\n"\
177         "\tstripe_size:  Number of bytes on each OST (0=fs default)\n" \
178         "\t              Can be specified with K, M or G (for KB, MB, GB\n" \
179         "\t              respectively)\n"                               \
180         "\tpool_name:    Name of OST pool to use (default none)\n"      \
181         "\tlayout:       stripe pattern type: raid0, mdt (default raid0)\n"\
182         "\tost_indices:  List of OST indices, can be repeated multiple times\n"\
183         "\t              Indices be specified in a format of:\n"        \
184         "\t                -o <ost_1>,<ost_i>-<ost_j>,<ost_n>\n"        \
185         "\t              Or:\n"                                         \
186         "\t                -o <ost_1> -o <ost_i>-<ost_j> -o <ost_n>\n"  \
187         "\t              If --pool is set with --ost, then the OSTs\n"  \
188         "\t              must be the members of the pool.\n"            \
189         "\tcomp_end:     Extent end of component, start after previous end.\n"\
190         "\t              Can be specified with K, M or G (for KB, MB, GB\n" \
191         "\t              respectively, -1 for EOF). Must be a multiple of\n"\
192         "\t              stripe_size.\n"                                      \
193         "\tyaml_template_file:\n"                                             \
194         "\t              YAML layout template file, can't be used with -c,\n" \
195         "\t              -i, -S, -p, -o, or -E arguments.\n"                  \
196         "\tlustre_src:   Lustre file/dir whose layout info is used to set\n"  \
197         "\t              another lustre file or directory, can't used with\n" \
198         "\t              -c, -i, -S, -p, -o, or -E arguments.\n"
199
200 #define MIRROR_CREATE_HELP                                                     \
201         "\tmirror_count: Number of mirrors to be created with the upcoming\n"  \
202         "\t              setstripe layout options\n"                           \
203         "\t              It defaults to 1 if not specified; if specified,\n"   \
204         "\t              it must follow the option without a space.\n"         \
205         "\t              The option can also be repeated multiple times to\n"  \
206         "\t              separate mirrors that have different layouts.\n"      \
207         "\tsetstripe options: Mirror layout\n"                                 \
208         "\t              It can be a plain layout or a composite layout.\n"    \
209         "\t              If not specified, the stripe options inherited\n"     \
210         "\t              from the previous component will be used.\n"          \
211         "\tflags:        set flags to the component of the current mirror.\n"  \
212         "\t              Only \"prefer\" flag is supported so far.\n"
213
214 #define MIRROR_EXTEND_HELP                                                     \
215         MIRROR_CREATE_HELP                                                     \
216         "\tvictim_file:  The layout of victim_file will be split and used\n"   \
217         "\t              as a mirror added to the mirrored file.\n"            \
218         "\tno-verify:    This option indicates not to verify the mirror(s)\n"  \
219         "\t              from victim file(s) in case the victim file(s)\n"     \
220         "\t              contains the same data as the original mirrored\n"    \
221         "\t              file.\n"
222
223 #define MIRROR_EXTEND_USAGE                                                    \
224         "                 <--mirror-count|-N[mirror_count]>\n"                 \
225         "                 [setstripe options|-f <victim_file>]\n"              \
226         "                 [--no-verify]\n"
227
228 #define SETSTRIPE_USAGE                                                 \
229         SSM_CMD_COMMON("setstripe")                                     \
230         MIRROR_EXTEND_USAGE                                             \
231         "                 <directory|filename>\n"                       \
232         SSM_HELP_COMMON                                                 \
233         MIRROR_EXTEND_HELP
234
235 #define MIGRATE_USAGE                                                   \
236         SSM_CMD_COMMON("migrate  ")                                     \
237         "                 [--block|-b]\n"                               \
238         "                 [--non-block|-n]\n"                           \
239         "                 [--non-direct|-D]\n"                          \
240         "                 <filename>\n"                                 \
241         SSM_HELP_COMMON                                                 \
242         "\n"                                                            \
243         "\tblock:        Block file access during data migration (default)\n" \
244         "\tnon-block:    Abort migrations if concurrent access is detected\n" \
245         "\tnon-direct:   Do not use direct I/O to copy file contents\n" \
246
247 #define SETDIRSTRIPE_USAGE                                              \
248         "               [--mdt-count|-c stripe_count>\n"                \
249         "               [--mdt-index|-i mdt_index[,mdt_index,...]\n"    \
250         "               [--mdt-hash|-H mdt_hash]\n"                     \
251         "               [--default|-D] [--mode|-m mode] <dir>\n"        \
252         "\tstripe_count: stripe count of the striped directory\n"       \
253         "\tmdt_index: MDT index of first stripe\n"                      \
254         "\tmdt_hash:  hash type of the striped directory. mdt types:\n" \
255         "       fnv_1a_64 FNV-1a hash algorithm (default)\n"            \
256         "       all_char  sum of characters % MDT_COUNT (not recommended)\n" \
257         "\tdefault_stripe: set default dirstripe of the directory\n"    \
258         "\tmode: the mode of the directory\n"
259
260 /**
261  * command_t mirror_cmdlist - lfs mirror commands.
262  */
263 command_t mirror_cmdlist[] = {
264         { .pc_name = "create", .pc_func = lfs_mirror_create,
265           .pc_help = "Create a mirrored file.\n"
266                 "usage: lfs mirror create "
267                 "<--mirror-count|-N[mirror_count]> "
268                 "[setstripe options] ... <filename|directory>\n"
269           MIRROR_CREATE_HELP },
270         { .pc_name = "extend", .pc_func = lfs_mirror_extend,
271           .pc_help = "Extend a mirrored file.\n"
272                 "usage: lfs mirror extend "
273                 "<--mirror-count|-N[mirror_count]> [--no-verify] "
274                 "[setstripe options|-f <victim_file>] ... <filename>\n"
275           MIRROR_EXTEND_HELP },
276         { .pc_name = "split", .pc_func = lfs_mirror_split,
277           .pc_help = "Split a mirrored file.\n"
278         "usage: lfs mirror split <--mirror-id <mirror_id> | \n"
279         "\t             <--component-id|-I <comp_id>> [--destroy|-d] \n"
280         "\t             [-f <new_file>] <mirrored file>\n"
281         "\tmirror_id:   The numerical unique identifier for a mirror. It\n"
282         "\t             can be fetched by lfs getstripe command.\n"
283         "\tcomp_id:     Unique component ID within a mirror.\n"
284         "\tnew_file:    This option indicates the layout of the split\n"
285         "\t             mirror will be stored into. If not specified,\n"
286         "\t             a new file named <mirrored_file>.mirror~<mirror_id>\n"
287         "\t             will be used.\n" },
288         { .pc_name = "read", .pc_func = lfs_mirror_read,
289           .pc_help = "Read the content of a specified mirror of a file.\n"
290                 "usage: lfs mirror read <--mirror-id|-N <mirror_id> "
291                 "[--outfile|-o <output_file>] <mirrored_file>\n" },
292         { .pc_name = "write", .pc_func = lfs_mirror_write,
293           .pc_help = "Write to a specified mirror of a file.\n"
294                 "usage: lfs mirror write <--mirror-id|-N <mirror_id> "
295                 "[--inputfile|-i <input_file>] <mirrored_file>\n" },
296         { .pc_name = "resync", .pc_func = lfs_mirror_resync,
297           .pc_help = "Resynchronizes out-of-sync mirrored file(s).\n"
298                 "usage: lfs mirror resync [--only <mirror_id[,...]>] "
299                 "<mirrored file> [<mirrored file2>...]\n"},
300         { .pc_name = "verify", .pc_func = lfs_mirror_verify,
301           .pc_help = "Verify mirrored file(s).\n"
302                 "usage: lfs mirror verify "
303                 "[--only <mirror_id,mirror_id2[,...]>] "
304                 "[--verbose|-v] <mirrored_file> [<mirrored_file2> ...]\n"},
305         { .pc_name = "list-commands", .pc_func = lfs_mirror_list_commands,
306           .pc_help = "list commands supported by lfs mirror"},
307         { .pc_name = "help", .pc_func = Parser_help, .pc_help = "help" },
308         { .pc_name = "exit", .pc_func = Parser_quit, .pc_help = "quit" },
309         { .pc_name = "quit", .pc_func = Parser_quit, .pc_help = "quit" },
310         { .pc_help = NULL }
311 };
312
313 /* all available commands */
314 command_t cmdlist[] = {
315         {"setstripe", lfs_setstripe, 0,
316          "To create a file with specified striping/composite layout, or\n"
317          "create/replace the default layout on an existing directory:\n"
318          SSM_CMD_COMMON("setstripe")
319          "                 <directory|filename>\n"
320          " or\n"
321          "To add component(s) to an existing composite file:\n"
322          SSM_CMD_COMMON("setstripe --component-add")
323          SSM_HELP_COMMON
324          "To totally delete the default striping from an existing directory:\n"
325          "usage: setstripe -d <directory>\n"
326          " or\n"
327          "To create a mirrored file or set s default mirror layout on a directory:\n"
328          "usage: setstripe -N[mirror_count] [STRIPE_OPTIONS] <directory|filename>\n"
329          " or\n"
330          "To delete the last component(s) from an existing composite file\n"
331          "(note that this will also delete any data in those components):\n"
332          "usage: setstripe --component-del [--component-id|-I <comp_id>]\n"
333          "                               [--component-flags|-F <comp_flags>]\n"
334          "                               <filename>\n"
335          "\tcomp_id:     Unique component ID to delete\n"
336          "\tcomp_flags:  'init' indicating all instantiated components\n"
337          "\t             '^init' indicating all uninstantiated components\n"
338          "\t-I and -F cannot be specified at the same time\n"},
339         {"getstripe", lfs_getstripe, 0,
340          "To list the layout pattern for a given file or files in a\n"
341          "directory or recursively for all files in a directory tree.\n"
342          "usage: getstripe [--ost|-O <uuid>] [--quiet|-q] [--verbose|-v]\n"
343          "                 [--stripe-count|-c] [--stripe-index|-i] [--fid|-F]\n"
344          "                 [--pool|-p] [--stripe-size|-S] [--directory|-d]\n"
345          "                 [--mdt-index|-m] [--recursive|-r] [--raw|-R]\n"
346          "                 [--layout|-L] [--generation|-g] [--yaml|-y]\n"
347          "                 [--component-id[=comp_id]|-I[comp_id]]\n"
348          "                 [--component-flags[=comp_flags]]\n"
349          "                 [--component-count]\n"
350          "                 [--component-start[=[+-]comp_start]]\n"
351          "                 [--component-end[=[+-]comp_end]|-E[[+-]comp_end]]\n"
352          "                 [[!] --mirror-index=[+-]<index> |\n"
353          "                  [!] --mirror-id=[+-]<id>]\n"
354          "                 <directory|filename> ..."},
355         {"setdirstripe", lfs_setdirstripe, 0,
356          "To create a striped directory on a specified MDT. This can only\n"
357          "be done on MDT0 with the right of administrator.\n"
358          "usage: setdirstripe [OPTION] <directory>\n"
359          SETDIRSTRIPE_USAGE},
360         {"getdirstripe", lfs_getdirstripe, 0,
361          "To list the layout pattern info for a given directory\n"
362          "or recursively for all directories in a directory tree.\n"
363          "usage: getdirstripe [--mdt-count|-c] [--mdt-index|-m|-i]\n"
364          "                    [--mdt-hash|-H] [--obd|-O <uuid>]\n"
365          "                    [--recursive|-r] [--yaml|-y]\n"
366          "                    [--default|-D] <dir> ..."},
367         {"mkdir", lfs_setdirstripe, 0,
368          "To create a striped directory on a specified MDT. This can only\n"
369          "be done on MDT0 with the right of administrator.\n"
370          "usage: mkdir [OPTION] <directory>\n"
371          SETDIRSTRIPE_USAGE},
372         {"rm_entry", lfs_rmentry, 0,
373          "To remove the name entry of the remote directory. Note: This\n"
374          "command will only delete the name entry, i.e. the remote directory\n"
375          "will become inaccessable after this command. This can only be done\n"
376          "by the administrator\n"
377          "usage: rm_entry <dir>\n"},
378         {"pool_list", lfs_poollist, 0,
379          "List pools or pool OSTs\n"
380          "usage: pool_list <fsname>[.<pool>] | <pathname>\n"},
381         {"find", lfs_find, 0,
382          "find files matching given attributes recursively in directory tree.\n"
383          "usage: find <directory|filename> ...\n"
384          "     [[!] --atime|-A [+-]N] [[!] --ctime|-C [+-]N]\n"
385          "     [[!] --mtime|-M [+-]N] [--maxdepth|-D N] [[!] --blocks|-b N]\n"
386          "     [[!] --mdt-index|--mdt|-m <uuid|index,...>]\n"
387          "     [[!] --name|-n <pattern>] [[!] --ost|-O <uuid|index,...>]\n"
388          "     [--print|-P] [--print0|-0] [[!] --size|-s [+-]N[bkMGTPE]]\n"
389          "     [[!] --stripe-count|-c [+-]<stripes>]\n"
390          "     [[!] --stripe-index|-i <index,...>]\n"
391          "     [[!] --stripe-size|-S [+-]N[kMGT]] [[!] --type|-t <filetype>]\n"
392          "     [[!] --gid|-g|--group|-G <gid>|<gname>]\n"
393          "     [[!] --uid|-u|--user|-U <uid>|<uname>] [[!] --pool <pool>]\n"
394          "     [[!] --projid <projid>]\n"
395          "     [[!] --layout|-L released,raid0,mdt]\n"
396          "     [[!] --component-count [+-]<comp_cnt>]\n"
397          "     [[!] --component-start [+-]N[kMGTPE]]\n"
398          "     [[!] --component-end|-E [+-]N[kMGTPE]]\n"
399          "     [[!] --component-flags <comp_flags>]\n"
400          "     [[!] --mirror-count|-N [+-]<n>]\n"
401          "     [[!] --mirror-state <[^]state>]\n"
402          "     [[!] --mdt-count|-T [+-]<stripes>]\n"
403          "     [[!] --mdt-hash|-H <hashtype>\n"
404          "\t !: used before an option indicates 'NOT' requested attribute\n"
405          "\t -: used before a value indicates less than requested value\n"
406          "\t +: used before a value indicates more than requested value\n"
407          "\thashtype:   hash type of the striped directory.\n"
408          "\t            fnv_1a_64 FNV-1a hash algorithm\n"
409          "\t            all_char  sum of characters % MDT_COUNT\n"},
410         {"check", lfs_check, 0,
411          "Display the status of MDS or OSTs (as specified in the command)\n"
412          "or all the servers (MDS and OSTs).\n"
413          "usage: check <osts|mds|servers>"},
414         {"osts", lfs_osts, 0, "list OSTs connected to client "
415          "[for specified path only]\n" "usage: osts [path]"},
416         {"mdts", lfs_mdts, 0, "list MDTs connected to client "
417          "[for specified path only]\n" "usage: mdts [path]"},
418         {"df", lfs_df, 0,
419          "report filesystem disk space usage or inodes usage"
420          "of each MDS and all OSDs or a batch belonging to a specific pool .\n"
421          "Usage: df [-i] [-h] [--lazy|-l] [--pool|-p <fsname>[.<pool>] [path]"},
422         {"getname", lfs_getname, 0, "list instances and specified mount points "
423          "[for specified path only]\n"
424          "Usage: getname [-h]|[path ...] "},
425 #ifdef HAVE_SYS_QUOTA_H
426         {"setquota", lfs_setquota, 0, "Set filesystem quotas.\n"
427          "usage: setquota <-u|-g|-p> <uname>|<uid>|<gname>|<gid>|<projid>\n"
428          "                -b <block-softlimit> -B <block-hardlimit>\n"
429          "                -i <inode-softlimit> -I <inode-hardlimit> <filesystem>\n"
430          "       setquota <-u|--user|-g|--group|-p|--projid> <uname>|<uid>|<gname>|<gid>|<projid>\n"
431          "                [--block-softlimit <block-softlimit>]\n"
432          "                [--block-hardlimit <block-hardlimit>]\n"
433          "                [--inode-softlimit <inode-softlimit>]\n"
434          "                [--inode-hardlimit <inode-hardlimit>] <filesystem>\n"
435          "       setquota [-t] <-u|--user|-g|--group|-p|--projid>\n"
436          "                [--block-grace <block-grace>]\n"
437          "                [--inode-grace <inode-grace>] <filesystem>\n"
438          "       setquota <-U|-G|-P>\n"
439          "                -b <block-softlimit> -B <block-hardlimit>\n"
440          "                -i <inode-softlimit> -I <inode-hardlimit> <filesystem>\n"
441          "       setquota <-U|--default-usr|-G|--default-grp|-P|--default-prj>\n"
442          "                [--block-softlimit <block-softlimit>]\n"
443          "                [--block-hardlimit <block-hardlimit>]\n"
444          "                [--inode-softlimit <inode-softlimit>]\n"
445          "                [--inode-hardlimit <inode-hardlimit>] <filesystem>\n"
446          "       setquota <-u|-g|-p> <uname>|<uid>|<gname>|<gid>|<projid>\n"
447          "                <-d|--default>\n"
448          "       -b can be used instead of --block-softlimit/--block-grace\n"
449          "       -B can be used instead of --block-hardlimit\n"
450          "       -i can be used instead of --inode-softlimit/--inode-grace\n"
451          "       -I can be used instead of --inode-hardlimit\n"
452          "       -d can be used instead of --default\n\n"
453          "Note: The total quota space will be split into many qunits and\n"
454          "      balanced over all server targets, the minimal qunit size is\n"
455          "      1M bytes for block space and 1K inodes for inode space.\n\n"
456          "      The maximum quota grace time is 2^48 - 1 seconds.\n\n"
457          "      Quota space rebalancing process will stop when this mininum\n"
458          "      value is reached. As a result, quota exceeded can be returned\n"
459          "      while many targets still have 1MB or 1K inodes of spare\n"
460          "      quota space."},
461         {"quota", lfs_quota, 0, "Display disk usage and limits.\n"
462          "usage: quota [-q] [-v] [-h] [-o <obd_uuid>|-i <mdt_idx>|-I "
463                        "<ost_idx>]\n"
464          "             [<-u|-g|-p> <uname>|<uid>|<gname>|<gid>|<projid>] <filesystem>\n"
465          "       quota [-o <obd_uuid>|-i <mdt_idx>|-I <ost_idx>] -t <-u|-g|-p> <filesystem>\n"
466         "        quota [-q] [-v] [h] <-U|-G|-P> <filesystem>"},
467         {"project", lfs_project, 0,
468          "Change or list project attribute for specified file or directory.\n"
469          "usage: project [-d|-r] <file|directory...>\n"
470          "         list project ID and flags on file(s) or directories\n"
471          "       project [-p id] [-s] [-r] <file|directory...>\n"
472          "         set project ID and/or inherit flag for specified file(s) or directories\n"
473          "       project -c [-d|-r [-p id] [-0]] <file|directory...>\n"
474          "         check project ID and flags on file(s) or directories, print outliers\n"
475          "       project -C [-r] [-k] <file|directory...>\n"
476          "         clear the project inherit flag and ID on the file or directory\n"
477         },
478 #endif
479         {"flushctx", lfs_flushctx, 0, "Flush security context for current user.\n"
480          "usage: flushctx [-k] [mountpoint...]"},
481         {"cp", lfs_cp, 0,
482          "Remote user copy files and directories.\n"
483          "usage: cp [OPTION]... [-T] SOURCE DEST\n\tcp [OPTION]... SOURCE... DIRECTORY\n\tcp [OPTION]... -t DIRECTORY SOURCE..."},
484         {"ls", lfs_ls, 0,
485          "Remote user list directory contents.\n"
486          "usage: ls [OPTION]... [FILE]..."},
487         {"changelog", lfs_changelog, 0,
488          "Show the metadata changes on an MDT."
489          "\nusage: changelog <mdtname> [startrec [endrec]]"},
490         {"changelog_clear", lfs_changelog_clear, 0,
491          "Indicate that old changelog records up to <endrec> are no longer of "
492          "interest to consumer <id>, allowing the system to free up space.\n"
493          "An <endrec> of 0 means all records.\n"
494          "usage: changelog_clear <mdtname> <id> <endrec>"},
495         {"fid2path", lfs_fid2path, 0,
496          "Resolve the full path(s) for given FID(s). For a specific hardlink "
497          "specify link number <linkno>.\n"
498         /* "For a historical link name, specify changelog record <recno>.\n" */
499          "usage: fid2path [--link <linkno>] <fsname|rootpath> <fid> ..."
500                 /* [ --rec <recno> ] */ },
501         {"path2fid", lfs_path2fid, 0, "Display the fid(s) for a given path(s).\n"
502          "usage: path2fid [--parents] <path> ..."},
503         {"data_version", lfs_data_version, 0, "Display file data version for "
504          "a given path.\n" "usage: data_version -[n|r|w] <path>"},
505         {"hsm_state", lfs_hsm_state, 0, "Display the HSM information (states, "
506          "undergoing actions) for given files.\n usage: hsm_state <file> ..."},
507         {"hsm_set", lfs_hsm_set, 0, "Set HSM user flag on specified files.\n"
508          "usage: hsm_set [--norelease] [--noarchive] [--dirty] [--exists] "
509          "[--archived] [--lost] [--archive-id NUM] <file> ..."},
510         {"hsm_clear", lfs_hsm_clear, 0, "Clear HSM user flag on specified "
511          "files.\n"
512          "usage: hsm_clear [--norelease] [--noarchive] [--dirty] [--exists] "
513          "[--archived] [--lost] <file> ..."},
514         {"hsm_action", lfs_hsm_action, 0, "Display current HSM request for "
515          "given files.\n" "usage: hsm_action <file> ..."},
516         {"hsm_archive", lfs_hsm_archive, 0,
517          "Archive file to external storage.\n"
518          "usage: hsm_archive [--filelist FILELIST] [--data DATA] [--archive NUM] "
519          "<file> ..."},
520         {"hsm_restore", lfs_hsm_restore, 0,
521          "Restore file from external storage.\n"
522          "usage: hsm_restore [--filelist FILELIST] [--data DATA] <file> ..."},
523         {"hsm_release", lfs_hsm_release, 0,
524          "Release files from Lustre.\n"
525          "usage: hsm_release [--filelist FILELIST] [--data DATA] <file> ..."},
526         {"hsm_remove", lfs_hsm_remove, 0,
527          "Remove file copy from external storage.\n"
528          "usage: hsm_remove [--filelist FILELIST] [--data DATA] "
529          "[--archive NUM]\n"
530          "                  (FILE [FILE ...] | "
531          "--mntpath MOUNTPATH FID [FID ...])\n"
532          "\n"
533          "Note: To remove an archived copy of a file already deleted from a "
534          "Lustre FS, the\n"
535          "--mntpath option and a list of FIDs must be specified"
536         },
537         {"hsm_cancel", lfs_hsm_cancel, 0,
538          "Cancel requests related to specified files.\n"
539          "usage: hsm_cancel [--filelist FILELIST] [--data DATA] <file> ..."},
540         {"swap_layouts", lfs_swap_layouts, 0, "Swap layouts between 2 files.\n"
541          "usage: swap_layouts <path1> <path2>"},
542         {"migrate", lfs_setstripe_migrate, 0,
543          "migrate a directory between MDTs.\n"
544          "usage: migrate [--mdt|-m] <start_mdt_index>\n"
545          "               [--mdt-count|-c] <stripe_count>\n"
546          "               [--mdt-hash|-H] <hash_type>\n"
547          "               [--verbose|-v]\n"
548          "               <directory>\n"
549          "\tmdt:        MDTs to stripe over, if only one MDT is specified\n"
550          "                      it's the MDT index of first stripe\n"
551          "\tmdt_count:  number of MDTs to stripe a directory over\n"
552          "\tmdt_hash:   hash type of the striped directory. mdt types:\n"
553          "                      fnv_1a_64 FNV-1a hash algorithm (default)\n"
554          "                      all_char  sum of characters % MDT_COUNT\n"
555          "\n"
556          "migrate file objects from one OST "
557          "layout\nto another (may be not safe with concurent writes).\n"
558          "usage: migrate  "
559          "[--stripe-count|-c] <stripe_count>\n"
560          "              [--stripe-index|-i] <start_ost_index>\n"
561          "              [--stripe-size|-S] <stripe_size>\n"
562          "              [--pool|-p] <pool_name>\n"
563          "              [--ost|-o] <ost_indices>\n"
564          "              [--block|-b]\n"
565          "              [--non-block|-n]\n"
566          "              [--non-direct|-D]\n"
567          "              <file|directory>\n"
568          "\tstripe_count:     number of OSTs to stripe a file over\n"
569          "\tstripe_ost_index: index of the first OST to stripe a file over\n"
570          "\tstripe_size:      number of bytes to store before moving to the next OST\n"
571          "\tpool_name:        name of the predefined pool of OSTs\n"
572          "\tost_indices:      OSTs to stripe over, in order\n"
573          "\tblock:            wait for the operation to return before continuing\n"
574          "\tnon-block:        do not wait for the operation to return\n"
575          "\tnon-direct:       do not use direct I/O to copy file contents.\n"},
576         {"mv", lfs_mv, 0,
577          "To move directories between MDTs. This command is deprecated, "
578          "use \"migrate\" instead.\n"
579          "usage: mv <directory|filename> [--mdt-index|-m] <mdt_index> "
580          "[--verbose|-v]\n"},
581         {"ladvise", lfs_ladvise, 0,
582          "Provide servers with advice about access patterns for a file.\n"
583          "usage: ladvise [--advice|-a ADVICE] [--start|-s START[kMGT]]\n"
584          "               [--background|-b] [--unset|-u]\n\n"
585          "               {[--end|-e END[kMGT]] | [--length|-l LENGTH[kMGT]]}\n"
586          "               {[--mode|-m [READ,WRITE]}\n"
587          "               <file> ...\n"},
588         {"mirror", lfs_mirror, mirror_cmdlist,
589          "lfs commands used to manage files with mirrored components:\n"
590          "lfs mirror create - create a mirrored file or directory\n"
591          "lfs mirror extend - add mirror(s) to an existing file\n"
592          "lfs mirror split  - split a mirror from an existing mirrored file\n"
593          "lfs mirror resync - resynchronize out-of-sync mirrored file(s)\n"
594          "lfs mirror read   - read a mirror content of a mirrored file\n"
595          "lfs mirror write  - write to a mirror of a mirrored file\n"
596          "lfs mirror verify - verify mirrored file(s)\n"},
597         {"getsom", lfs_getsom, 0, "To list the SOM info for a given file.\n"
598          "usage: getsom [-s] [-b] [-f] <path>\n"
599          "\t-s: Only show the size value of the SOM data for a given file\n"
600          "\t-b: Only show the blocks value of the SOM data for a given file\n"
601          "\t-f: Only show the flags value of the SOM data for a given file\n"},
602         {"help", Parser_help, 0, "help"},
603         {"exit", Parser_quit, 0, "quit"},
604         {"quit", Parser_quit, 0, "quit"},
605         {"--version", Parser_version, 0,
606          "output build version of the utility and exit"},
607         {"--list-commands", lfs_list_commands, 0,
608          "list commands supported by the utility and exit"},
609         { 0, 0, 0, NULL }
610 };
611
612
613 static int check_hashtype(const char *hashtype)
614 {
615         int i;
616
617         for (i = LMV_HASH_TYPE_ALL_CHARS; i < LMV_HASH_TYPE_MAX; i++)
618                 if (strcmp(hashtype, mdt_hash_name[i]) == 0)
619                         return i;
620
621         return 0;
622 }
623
624
625 static const char *error_loc = "syserror";
626
627 enum {
628         MIGRATION_NONBLOCK      = 1 << 0,
629         MIGRATION_MIRROR        = 1 << 1,
630         MIGRATION_NONDIRECT     = 1 << 2,
631 };
632
633 static int lfs_component_create(char *fname, int open_flags, mode_t open_mode,
634                                 struct llapi_layout *layout);
635
636 static int
637 migrate_open_files(const char *name, __u64 migration_flags,
638                    const struct llapi_stripe_param *param,
639                    struct llapi_layout *layout, int *fd_src, int *fd_tgt)
640 {
641         int                      fd = -1;
642         int                      fdv = -1;
643         int                      rflags;
644         int                      mdt_index;
645         int                      random_value;
646         char                     parent[PATH_MAX];
647         char                     volatile_file[PATH_MAX];
648         char                    *ptr;
649         int                      rc;
650         struct stat              st;
651         struct stat              stv;
652
653         if (param == NULL && layout == NULL) {
654                 error_loc = "layout information";
655                 return -EINVAL;
656         }
657
658         /* search for file directory pathname */
659         if (strlen(name) > sizeof(parent) - 1) {
660                 error_loc = "source file name";
661                 return -ERANGE;
662         }
663
664         strncpy(parent, name, sizeof(parent));
665         ptr = strrchr(parent, '/');
666         if (ptr == NULL) {
667                 if (getcwd(parent, sizeof(parent)) == NULL) {
668                         error_loc = "getcwd";
669                         return -errno;
670                 }
671         } else {
672                 if (ptr == parent) /* leading '/' */
673                         ptr = parent + 1;
674                 *ptr = '\0';
675         }
676
677         /* open file, direct io */
678         /* even if the file is only read, WR mode is nedeed to allow
679          * layout swap on fd */
680         rflags = O_RDWR;
681         if (!(migration_flags & MIGRATION_NONDIRECT))
682                 rflags |= O_DIRECT;
683         fd = open(name, rflags);
684         if (fd < 0) {
685                 rc = -errno;
686                 error_loc = "cannot open source file";
687                 return rc;
688         }
689
690         rc = llapi_file_fget_mdtidx(fd, &mdt_index);
691         if (rc < 0) {
692                 error_loc = "cannot get MDT index";
693                 goto out;
694         }
695
696         do {
697                 int open_flags = O_WRONLY | O_CREAT | O_EXCL | O_NOFOLLOW;
698                 mode_t open_mode = S_IRUSR | S_IWUSR;
699
700                 random_value = random();
701                 rc = snprintf(volatile_file, sizeof(volatile_file),
702                               "%s/%s:%.4X:%.4X", parent, LUSTRE_VOLATILE_HDR,
703                               mdt_index, random_value);
704                 if (rc >= sizeof(volatile_file)) {
705                         rc = -ENAMETOOLONG;
706                         break;
707                 }
708
709                 /* create, open a volatile file, use caching (ie no directio) */
710                 if (param != NULL)
711                         fdv = llapi_file_open_param(volatile_file, open_flags,
712                                                     open_mode, param);
713                 else
714                         fdv = lfs_component_create(volatile_file, open_flags,
715                                                    open_mode, layout);
716         } while (fdv < 0 && (rc = fdv) == -EEXIST);
717
718         if (rc < 0) {
719                 error_loc = "cannot create volatile file";
720                 goto out;
721         }
722
723         /* In case the MDT does not support creation of volatile files
724          * we should try to unlink it. */
725         (void)unlink(volatile_file);
726
727         /* Not-owner (root?) special case.
728          * Need to set owner/group of volatile file like original.
729          * This will allow to pass related check during layout_swap.
730          */
731         rc = fstat(fd, &st);
732         if (rc != 0) {
733                 rc = -errno;
734                 error_loc = "cannot stat source file";
735                 goto out;
736         }
737
738         rc = fstat(fdv, &stv);
739         if (rc != 0) {
740                 rc = -errno;
741                 error_loc = "cannot stat volatile";
742                 goto out;
743         }
744
745         if (st.st_uid != stv.st_uid || st.st_gid != stv.st_gid) {
746                 rc = fchown(fdv, st.st_uid, st.st_gid);
747                 if (rc != 0) {
748                         rc = -errno;
749                         error_loc = "cannot change ownwership of volatile";
750                         goto out;
751                 }
752         }
753
754 out:
755         if (rc < 0) {
756                 if (fd > 0)
757                         close(fd);
758                 if (fdv > 0)
759                         close(fdv);
760         } else {
761                 *fd_src = fd;
762                 *fd_tgt = fdv;
763                 error_loc = NULL;
764         }
765         return rc;
766 }
767
768 static int migrate_copy_data(int fd_src, int fd_dst, int (*check_file)(int))
769 {
770         struct llapi_layout *layout;
771         size_t   buf_size = 4 * 1024 * 1024;
772         void    *buf = NULL;
773         ssize_t  rsize = -1;
774         ssize_t  wsize = 0;
775         size_t   rpos = 0;
776         size_t   wpos = 0;
777         off_t    bufoff = 0;
778         int      rc;
779
780         layout = llapi_layout_get_by_fd(fd_src, 0);
781         if (layout != NULL) {
782                 uint64_t stripe_size;
783
784                 rc = llapi_layout_stripe_size_get(layout, &stripe_size);
785                 if (rc == 0)
786                         buf_size = stripe_size;
787
788                 llapi_layout_free(layout);
789         }
790
791         /* Use a page-aligned buffer for direct I/O */
792         rc = posix_memalign(&buf, getpagesize(), buf_size);
793         if (rc != 0)
794                 return -rc;
795
796         while (1) {
797                 /* read new data only if we have written all
798                  * previously read data */
799                 if (wpos == rpos) {
800                         if (check_file) {
801                                 rc = check_file(fd_src);
802                                 if (rc < 0)
803                                         break;
804                         }
805
806                         rsize = read(fd_src, buf, buf_size);
807                         if (rsize < 0) {
808                                 rc = -errno;
809                                 break;
810                         }
811                         rpos += rsize;
812                         bufoff = 0;
813                 }
814                 /* eof ? */
815                 if (rsize == 0)
816                         break;
817
818                 wsize = write(fd_dst, buf + bufoff, rpos - wpos);
819                 if (wsize < 0) {
820                         rc = -errno;
821                         break;
822                 }
823                 wpos += wsize;
824                 bufoff += wsize;
825         }
826
827         if (rc == 0) {
828                 rc = fsync(fd_dst);
829                 if (rc < 0)
830                         rc = -errno;
831         }
832
833         free(buf);
834         return rc;
835 }
836
837 static int migrate_copy_timestamps(int fd, int fdv)
838 {
839         struct stat st;
840
841         if (fstat(fd, &st) == 0) {
842                 struct timeval tv[2] = {
843                         {.tv_sec = st.st_atime},
844                         {.tv_sec = st.st_mtime}
845                 };
846
847                 return futimes(fdv, tv);
848         }
849
850         return -errno;
851 }
852
853 static int migrate_block(int fd, int fdv)
854 {
855         __u64   dv1;
856         int     gid;
857         int     rc;
858         int     rc2;
859
860         rc = llapi_get_data_version(fd, &dv1, LL_DV_RD_FLUSH);
861         if (rc < 0) {
862                 error_loc = "cannot get dataversion";
863                 return rc;
864         }
865
866         do
867                 gid = random();
868         while (gid == 0);
869
870         /* The grouplock blocks all concurrent accesses to the file.
871          * It has to be taken after llapi_get_data_version as it would
872          * block it too. */
873         rc = llapi_group_lock(fd, gid);
874         if (rc < 0) {
875                 error_loc = "cannot get group lock";
876                 return rc;
877         }
878
879         rc = migrate_copy_data(fd, fdv, NULL);
880         if (rc < 0) {
881                 error_loc = "data copy failed";
882                 goto out_unlock;
883         }
884
885         /* Make sure we keep original atime/mtime values */
886         rc = migrate_copy_timestamps(fd, fdv);
887         if (rc < 0) {
888                 error_loc = "timestamp copy failed";
889                 goto out_unlock;
890         }
891
892         /* swap layouts
893          * for a migration we need to check data version on file did
894          * not change.
895          *
896          * Pass in gid=0 since we already own grouplock. */
897         rc = llapi_fswap_layouts_grouplock(fd, fdv, dv1, 0, 0,
898                                            SWAP_LAYOUTS_CHECK_DV1);
899         if (rc == -EAGAIN) {
900                 error_loc = "file changed";
901                 goto out_unlock;
902         } else if (rc < 0) {
903                 error_loc = "cannot swap layout";
904                 goto out_unlock;
905         }
906
907 out_unlock:
908         rc2 = llapi_group_unlock(fd, gid);
909         if (rc2 < 0 && rc == 0) {
910                 error_loc = "unlock group lock";
911                 rc = rc2;
912         }
913
914         return rc;
915 }
916
917 /**
918  * Internal helper for migrate_copy_data(). Check lease and report error if
919  * need be.
920  *
921  * \param[in]  fd           File descriptor on which to check the lease.
922  *
923  * \retval 0       Migration can keep on going.
924  * \retval -errno  Error occurred, abort migration.
925  */
926 static int check_lease(int fd)
927 {
928         int rc;
929
930         rc = llapi_lease_check(fd);
931         if (rc > 0)
932                 return 0; /* llapi_check_lease returns > 0 on success. */
933
934         return -EBUSY;
935 }
936
937 static int migrate_nonblock(int fd, int fdv)
938 {
939         __u64   dv1;
940         __u64   dv2;
941         int     rc;
942
943         rc = llapi_get_data_version(fd, &dv1, LL_DV_RD_FLUSH);
944         if (rc < 0) {
945                 error_loc = "cannot get data version";
946                 return rc;
947         }
948
949         rc = migrate_copy_data(fd, fdv, check_lease);
950         if (rc < 0) {
951                 error_loc = "data copy failed";
952                 return rc;
953         }
954
955         rc = llapi_get_data_version(fd, &dv2, LL_DV_RD_FLUSH);
956         if (rc != 0) {
957                 error_loc = "cannot get data version";
958                 return rc;
959         }
960
961         if (dv1 != dv2) {
962                 rc = -EAGAIN;
963                 error_loc = "source file changed";
964                 return rc;
965         }
966
967         /* Make sure we keep original atime/mtime values */
968         rc = migrate_copy_timestamps(fd, fdv);
969         if (rc < 0) {
970                 error_loc = "timestamp copy failed";
971                 return rc;
972         }
973
974         return 0;
975 }
976
977 static int lfs_component_set(char *fname, int comp_id,
978                              __u32 flags, __u32 neg_flags)
979 {
980         __u32 ids[2];
981         __u32 flags_array[2];
982         size_t count = 0;
983         int rc;
984
985         if (flags) {
986                 ids[count] = comp_id;
987                 flags_array[count] = flags;
988                 ++count;
989         }
990
991         if (neg_flags) {
992                 ids[count] = comp_id;
993                 flags_array[count] = neg_flags | LCME_FL_NEG;
994                 ++count;
995         }
996
997         rc = llapi_layout_file_comp_set(fname, ids, flags_array, count);
998         if (rc)
999                 fprintf(stderr,
1000                         "%s: cannot change the flags of component '%#x' of file '%s': %x / ^(%x)\n",
1001                         progname, comp_id, fname, flags, neg_flags);
1002
1003         return rc;
1004 }
1005
1006 static int lfs_component_del(char *fname, __u32 comp_id,
1007                              __u32 flags, __u32 neg_flags)
1008 {
1009         int     rc = 0;
1010
1011         if (flags && neg_flags)
1012                 return -EINVAL;
1013
1014         if (!flags && neg_flags)
1015                 flags = neg_flags | LCME_FL_NEG;
1016
1017         if ((flags && comp_id) || (!flags && !comp_id))
1018                 return -EINVAL;
1019
1020         /* LCME_FL_INIT is the only supported flag in PFL */
1021         if (flags) {
1022                 if (flags & ~LCME_KNOWN_FLAGS) {
1023                         fprintf(stderr,
1024                                 "%s setstripe: unknown flags %#x\n",
1025                                 progname, flags);
1026                         return -EINVAL;
1027                 }
1028         } else if (comp_id > LCME_ID_MAX) {
1029                 fprintf(stderr, "%s setstripe: invalid component id %u\n",
1030                         progname, comp_id);
1031                 return -EINVAL;
1032         }
1033
1034         rc = llapi_layout_file_comp_del(fname, comp_id, flags);
1035         if (rc)
1036                 fprintf(stderr,
1037                         "%s setstripe: cannot delete component %#x from '%s': %s\n",
1038                         progname, comp_id, fname, strerror(errno));
1039         return rc;
1040 }
1041
1042 static int lfs_component_add(char *fname, struct llapi_layout *layout)
1043 {
1044         int     rc;
1045
1046         if (layout == NULL)
1047                 return -EINVAL;
1048
1049         rc = llapi_layout_file_comp_add(fname, layout);
1050         if (rc)
1051                 fprintf(stderr, "Add layout component(s) to %s failed. %s\n",
1052                         fname, strerror(errno));
1053         return rc;
1054 }
1055
1056 static int lfs_component_create(char *fname, int open_flags, mode_t open_mode,
1057                                 struct llapi_layout *layout)
1058 {
1059         struct stat     st;
1060         int     fd;
1061
1062         if (layout == NULL)
1063                 return -EINVAL;
1064
1065         fd = lstat(fname, &st);
1066         if (fd == 0 && S_ISDIR(st.st_mode))
1067                 open_flags = O_DIRECTORY | O_RDONLY;
1068
1069         fd = llapi_layout_file_open(fname, open_flags, open_mode, layout);
1070         if (fd < 0)
1071                 fprintf(stderr, "%s: cannot %s '%s': %s\n", progname,
1072                         S_ISDIR(st.st_mode) ?
1073                                 "set default composite layout for" :
1074                                 "create composite file",
1075                         fname, strerror(errno));
1076         return fd;
1077 }
1078
1079 static int lfs_migrate(char *name, __u64 migration_flags,
1080                        struct llapi_stripe_param *param,
1081                        struct llapi_layout *layout)
1082 {
1083         int fd = -1;
1084         int fdv = -1;
1085         int rc;
1086
1087         rc = migrate_open_files(name, migration_flags, param, layout,
1088                                 &fd, &fdv);
1089         if (rc < 0)
1090                 goto out;
1091
1092         if (!(migration_flags & MIGRATION_NONBLOCK)) {
1093                 /* Blocking mode (forced if servers do not support file lease).
1094                  * It is also the default mode, since we cannot distinguish
1095                  * between a broken lease and a server that does not support
1096                  * atomic swap/close (LU-6785) */
1097                 rc = migrate_block(fd, fdv);
1098                 goto out;
1099         }
1100
1101         rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
1102         if (rc < 0) {
1103                 error_loc = "cannot get lease";
1104                 goto out;
1105         }
1106
1107         rc = migrate_nonblock(fd, fdv);
1108         if (rc < 0) {
1109                 llapi_lease_release(fd);
1110                 goto out;
1111         }
1112
1113         /* Atomically put lease, swap layouts and close.
1114          * for a migration we need to check data version on file did
1115          * not change. */
1116         rc = llapi_fswap_layouts(fd, fdv, 0, 0, SWAP_LAYOUTS_CLOSE);
1117         if (rc < 0) {
1118                 error_loc = "cannot swap layout";
1119                 goto out;
1120         }
1121
1122 out:
1123         if (fd >= 0)
1124                 close(fd);
1125
1126         if (fdv >= 0)
1127                 close(fdv);
1128
1129         if (rc < 0)
1130                 fprintf(stderr, "error: %s: %s: %s: %s\n",
1131                         progname, name, error_loc, strerror(-rc));
1132         return rc;
1133 }
1134
1135 static int comp_str2flags(char *string, __u32 *flags, __u32 *neg_flags)
1136 {
1137         char *name;
1138
1139         if (string == NULL)
1140                 return -EINVAL;
1141
1142         *flags = 0;
1143         *neg_flags = 0;
1144         for (name = strtok(string, ","); name; name = strtok(NULL, ",")) {
1145                 bool found = false;
1146                 int i;
1147
1148                 for (i = 0; i < ARRAY_SIZE(comp_flags_table); i++) {
1149                         __u32 comp_flag = comp_flags_table[i].cfn_flag;
1150                         const char *comp_name = comp_flags_table[i].cfn_name;
1151
1152                         if (strcmp(name, comp_name) == 0) {
1153                                 *flags |= comp_flag;
1154                                 found = true;
1155                         } else if (strncmp(name, "^", 1) == 0 &&
1156                                    strcmp(name + 1, comp_name) == 0) {
1157                                 *neg_flags |= comp_flag;
1158                                 found = true;
1159                         }
1160                 }
1161                 if (!found) {
1162                         llapi_printf(LLAPI_MSG_ERROR,
1163                                      "%s: component flag '%s' not supported\n",
1164                                      progname, name);
1165                         return -EINVAL;
1166                 }
1167         }
1168
1169         if (!*flags && !*neg_flags)
1170                 return -EINVAL;
1171
1172         /* don't allow to set and exclude the same flag */
1173         if (*flags & *neg_flags)
1174                 return -EINVAL;
1175
1176         return 0;
1177 }
1178
1179 static int mirror_str2state(char *string, __u16 *state, __u16 *neg_state)
1180 {
1181         if (string == NULL)
1182                 return -EINVAL;
1183
1184         *state = 0;
1185         *neg_state = 0;
1186
1187         if (strncmp(string, "^", 1) == 0) {
1188                 *neg_state = llapi_layout_string_flags(string + 1);
1189                 if (*neg_state != 0)
1190                         return 0;
1191         } else {
1192                 *state = llapi_layout_string_flags(string);
1193                 if (*state != 0)
1194                         return 0;
1195         }
1196
1197         llapi_printf(LLAPI_MSG_ERROR,
1198                      "%s: mirrored file state '%s' not supported\n",
1199                      progname, string);
1200         return -EINVAL;
1201 }
1202
1203 /**
1204  * struct mirror_args - Command-line arguments for mirror(s).
1205  * @m_count:  Number of mirrors to be created with this layout.
1206  * @m_flags:  Mirror level flags, only 'prefer' is supported.
1207  * @m_layout: Mirror layout.
1208  * @m_file:   A victim file. Its layout will be split and used as a mirror.
1209  * @m_next:   Point to the next node of the list.
1210  *
1211  * Command-line arguments for mirror(s) will be parsed and stored in
1212  * a linked list that consists of this structure.
1213  */
1214 struct mirror_args {
1215         __u32                   m_count;
1216         __u32                   m_flags;
1217         struct llapi_layout     *m_layout;
1218         const char              *m_file;
1219         struct mirror_args      *m_next;
1220 };
1221
1222 static int mirror_sanity_check_flags(struct llapi_layout *layout, void *unused)
1223 {
1224         uint32_t flags;
1225         int rc;
1226
1227         rc = llapi_layout_comp_flags_get(layout, &flags);
1228         if (rc)
1229                 return -errno;
1230
1231         if (flags & LCME_FL_NEG) {
1232                 fprintf(stderr, "error: %s: negative flags are not supported\n",
1233                         progname);
1234                 return -EINVAL;
1235         }
1236
1237         if (flags & LCME_FL_STALE) {
1238                 fprintf(stderr, "error: %s: setting '%s' is not supported\n",
1239                         progname, comp_flags_table[LCME_FL_STALE].cfn_name);
1240                 return -EINVAL;
1241         }
1242
1243         return LLAPI_LAYOUT_ITER_CONT;
1244 }
1245
1246 static inline int mirror_sanity_check_one(struct llapi_layout *layout)
1247 {
1248         uint64_t start, end;
1249         uint64_t pattern;
1250         int rc;
1251
1252         /* LU-10112: do not support dom+flr in phase 1 */
1253         rc = llapi_layout_comp_use(layout, LLAPI_LAYOUT_COMP_USE_FIRST);
1254         if (rc)
1255                 return -errno;
1256
1257         rc = llapi_layout_pattern_get(layout, &pattern);
1258         if (rc)
1259                 return -errno;
1260
1261         if (pattern == LOV_PATTERN_MDT || pattern == LLAPI_LAYOUT_MDT) {
1262                 fprintf(stderr, "error: %s: doesn't support dom+flr for now\n",
1263                         progname);
1264                 return -ENOTSUP;
1265         }
1266
1267         rc = llapi_layout_comp_use(layout, LLAPI_LAYOUT_COMP_USE_LAST);
1268         if (rc)
1269                 return -errno;
1270
1271         rc = llapi_layout_comp_extent_get(layout, &start, &end);
1272         if (rc)
1273                 return -errno;
1274
1275         if (end != LUSTRE_EOF) {
1276                 fprintf(stderr, "error: %s: mirror layout doesn't reach eof\n",
1277                         progname);
1278                 return -EINVAL;
1279         }
1280
1281         rc = llapi_layout_comp_iterate(layout, mirror_sanity_check_flags, NULL);
1282         return rc;
1283 }
1284
1285 /**
1286  * enum mirror_flags - Flags for extending a mirrored file.
1287  * @MF_NO_VERIFY: Indicates not to verify the mirror(s) from victim file(s)
1288  *             in case the victim file(s) contains the same data as the
1289  *             original mirrored file.
1290  * @MF_DESTROY: Indicates to delete the mirror from the mirrored file.
1291  * @MF_COMP_ID: specified component id instead of mirror id
1292  *
1293  * Flags for extending a mirrored file.
1294  */
1295 enum mirror_flags {
1296         MF_NO_VERIFY    = 0x1,
1297         MF_DESTROY      = 0x2,
1298         MF_COMP_ID      = 0x4,
1299 };
1300
1301 /**
1302  * mirror_create_sanity_check() - Check mirror list.
1303  * @list:  A linked list that stores the mirror arguments.
1304  *
1305  * This function does a sanity check on @list for creating
1306  * a mirrored file.
1307  *
1308  * Return: 0 on success or a negative error code on failure.
1309  */
1310 static int mirror_create_sanity_check(const char *fname,
1311                                       struct mirror_args *list)
1312 {
1313         int rc = 0;
1314         bool has_m_file = false;
1315         bool has_m_layout = false;
1316
1317         if (list == NULL)
1318                 return -EINVAL;
1319
1320         if (fname) {
1321                 struct llapi_layout *layout;
1322
1323                 layout = llapi_layout_get_by_path(fname, 0);
1324                 if (!layout) {
1325                         fprintf(stderr,
1326                                 "error: %s: file '%s' couldn't get layout\n",
1327                                 progname, fname);
1328                         return -ENODATA;
1329                 }
1330
1331                 rc = mirror_sanity_check_one(layout);
1332                 llapi_layout_free(layout);
1333
1334                 if (rc)
1335                         return rc;
1336         }
1337
1338         while (list != NULL) {
1339                 if (list->m_file != NULL) {
1340                         has_m_file = true;
1341                         llapi_layout_free(list->m_layout);
1342
1343                         list->m_layout =
1344                                 llapi_layout_get_by_path(list->m_file, 0);
1345                         if (list->m_layout == NULL) {
1346                                 fprintf(stderr,
1347                                         "error: %s: file '%s' has no layout\n",
1348                                         progname, list->m_file);
1349                                 return -ENODATA;
1350                         }
1351                 } else {
1352                         has_m_layout = true;
1353                         if (list->m_layout == NULL) {
1354                                 fprintf(stderr, "error: %s: no mirror layout\n",
1355                                         progname);
1356                                 return -EINVAL;
1357                         }
1358                 }
1359
1360                 rc = mirror_sanity_check_one(list->m_layout);
1361                 if (rc)
1362                         return rc;
1363
1364                 list = list->m_next;
1365         }
1366
1367         if (has_m_file && has_m_layout) {
1368                 fprintf(stderr,
1369                         "error: %s: -f <victim_file> option should not be specified with setstripe options\n",
1370                         progname);
1371                 return -EINVAL;
1372         }
1373
1374         return 0;
1375 }
1376
1377 static int mirror_set_flags(struct llapi_layout *layout, void *cbdata)
1378 {
1379         __u32 mirror_flags = *(__u32 *)cbdata;
1380         uint32_t flags;
1381         int rc;
1382
1383         rc = llapi_layout_comp_flags_get(layout, &flags);
1384         if (rc < 0)
1385                 return rc;
1386
1387         if (!flags) {
1388                 rc = llapi_layout_comp_flags_set(layout, mirror_flags);
1389                 if (rc)
1390                         return rc;
1391         }
1392
1393         return LLAPI_LAYOUT_ITER_CONT;
1394 }
1395
1396 /**
1397  * mirror_create() - Create a mirrored file.
1398  * @fname:        The file to be created.
1399  * @mirror_list:  A linked list that stores the mirror arguments.
1400  *
1401  * This function creates a mirrored file @fname with the mirror(s)
1402  * from @mirror_list.
1403  *
1404  * Return: 0 on success or a negative error code on failure.
1405  */
1406 static int mirror_create(char *fname, struct mirror_args *mirror_list)
1407 {
1408         struct llapi_layout *layout = NULL;
1409         struct mirror_args *cur_mirror = NULL;
1410         uint16_t mirror_count = 0;
1411         int i = 0;
1412         int rc = 0;
1413
1414         rc = mirror_create_sanity_check(NULL, mirror_list);
1415         if (rc)
1416                 return rc;
1417
1418         cur_mirror = mirror_list;
1419         while (cur_mirror != NULL) {
1420                 rc = llapi_layout_comp_iterate(cur_mirror->m_layout,
1421                                                mirror_set_flags,
1422                                                &cur_mirror->m_flags);
1423                 if (rc) {
1424                         rc = -errno;
1425                         fprintf(stderr, "%s: failed to set mirror flags\n",
1426                                 progname);
1427                         goto error;
1428                 }
1429
1430                 for (i = 0; i < cur_mirror->m_count; i++) {
1431                         rc = llapi_layout_merge(&layout, cur_mirror->m_layout);
1432                         if (rc) {
1433                                 rc = -errno;
1434                                 fprintf(stderr, "error: %s: "
1435                                         "merge layout failed: %s\n",
1436                                         progname, strerror(errno));
1437                                 goto error;
1438                         }
1439                 }
1440                 mirror_count += cur_mirror->m_count;
1441                 cur_mirror = cur_mirror->m_next;
1442         }
1443
1444         if (layout == NULL) {
1445                 fprintf(stderr, "error: %s: layout is NULL\n", progname);
1446                 return -EINVAL;
1447         }
1448
1449         rc = llapi_layout_mirror_count_set(layout, mirror_count);
1450         if (rc) {
1451                 rc = -errno;
1452                 fprintf(stderr, "error: %s: set mirror count failed: %s\n",
1453                         progname, strerror(errno));
1454                 goto error;
1455         }
1456
1457         rc = lfs_component_create(fname, O_CREAT | O_WRONLY, 0666,
1458                                   layout);
1459         if (rc >= 0) {
1460                 close(rc);
1461                 rc = 0;
1462         }
1463
1464 error:
1465         llapi_layout_free(layout);
1466         return rc;
1467 }
1468
1469 /**
1470  * Compare files and check lease on @fd.
1471  *
1472  * \retval bytes number of bytes are the same
1473  */
1474 static ssize_t mirror_file_compare(int fd, int fdv)
1475 {
1476         const size_t buflen = 4 * 1024 * 1024; /* 4M */
1477         void *buf;
1478         ssize_t bytes_done = 0;
1479         ssize_t bytes_read = 0;
1480
1481         buf = malloc(buflen * 2);
1482         if (!buf)
1483                 return -ENOMEM;
1484
1485         while (1) {
1486                 if (!llapi_lease_check(fd)) {
1487                         bytes_done = -EBUSY;
1488                         break;
1489                 }
1490
1491                 bytes_read = read(fd, buf, buflen);
1492                 if (bytes_read <= 0)
1493                         break;
1494
1495                 if (bytes_read != read(fdv, buf + buflen, buflen))
1496                         break;
1497
1498                 /* XXX: should compute the checksum on each buffer and then
1499                  * compare checksum to avoid cache collision */
1500                 if (memcmp(buf, buf + buflen, bytes_read))
1501                         break;
1502
1503                 bytes_done += bytes_read;
1504         }
1505
1506         free(buf);
1507
1508         return bytes_done;
1509 }
1510
1511 static int mirror_extend_file(const char *fname, const char *victim_file,
1512                               enum mirror_flags mirror_flags)
1513 {
1514         int fd = -1;
1515         int fdv = -1;
1516         struct stat stbuf;
1517         struct stat stbuf_v;
1518         struct ll_ioc_lease *data = NULL;
1519         int rc;
1520
1521         fd = open(fname, O_RDWR);
1522         if (fd < 0) {
1523                 error_loc = "open source file";
1524                 rc = -errno;
1525                 goto out;
1526         }
1527
1528         fdv = open(victim_file, O_RDWR);
1529         if (fdv < 0) {
1530                 error_loc = "open target file";
1531                 rc = -errno;
1532                 goto out;
1533         }
1534
1535         if (fstat(fd, &stbuf) || fstat(fdv, &stbuf_v)) {
1536                 error_loc = "stat source or target file";
1537                 rc = -errno;
1538                 goto out;
1539         }
1540
1541         if (stbuf.st_dev != stbuf_v.st_dev) {
1542                 error_loc = "stat source and target file";
1543                 rc = -EXDEV;
1544                 goto out;
1545         }
1546
1547         /* mirrors should be of the same size */
1548         if (stbuf.st_size != stbuf_v.st_size) {
1549                 error_loc = "file sizes don't match";
1550                 rc = -EINVAL;
1551                 goto out;
1552         }
1553
1554         rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
1555         if (rc < 0) {
1556                 error_loc = "cannot get lease";
1557                 goto out;
1558         }
1559
1560         if (!(mirror_flags & MF_NO_VERIFY)) {
1561                 ssize_t ret;
1562                 /* mirrors should have the same contents */
1563                 ret = mirror_file_compare(fd, fdv);
1564                 if (ret != stbuf.st_size) {
1565                         error_loc = "file busy or contents don't match";
1566                         rc = ret < 0 ? ret : -EINVAL;
1567                         goto out;
1568                 }
1569         }
1570
1571         /* Get rid of caching pages from clients */
1572         rc = llapi_file_flush(fd);
1573         if (rc < 0) {
1574                 error_loc = "cannot get data version";
1575                 goto out;
1576         }
1577
1578         rc = llapi_file_flush(fdv);
1579         if (rc < 0) {
1580                 error_loc = "cannot get data version";
1581                 goto out;
1582
1583         }
1584
1585         /* Make sure we keep original atime/mtime values */
1586         rc = migrate_copy_timestamps(fd, fdv);
1587         if (rc < 0) {
1588                 error_loc = "cannot copy timestamp";
1589                 goto out;
1590         }
1591
1592         /* Atomically put lease, merge layouts and close. */
1593         data = calloc(1, offsetof(typeof(*data), lil_ids[1]));
1594         if (!data) {
1595                 error_loc = "memory allocation";
1596                 goto out;
1597         }
1598         data->lil_mode = LL_LEASE_UNLCK;
1599         data->lil_flags = LL_LEASE_LAYOUT_MERGE;
1600         data->lil_count = 1;
1601         data->lil_ids[0] = fdv;
1602         rc = llapi_lease_set(fd, data);
1603         if (rc < 0) {
1604                 error_loc = "cannot merge layout";
1605                 goto out;
1606         } else if (rc == 0) {
1607                 rc = -EBUSY;
1608                 error_loc = "lost lease lock";
1609                 goto out;
1610         }
1611         rc = 0;
1612
1613 out:
1614         if (data)
1615                 free(data);
1616         if (fd >= 0)
1617                 close(fd);
1618         if (fdv >= 0)
1619                 close(fdv);
1620         if (!rc)
1621                 (void) unlink(victim_file);
1622         if (rc < 0)
1623                 fprintf(stderr, "error: %s: %s: %s: %s\n",
1624                         progname, fname, error_loc, strerror(-rc));
1625         return rc;
1626 }
1627
1628 static int mirror_extend_layout(char *name, struct llapi_layout *layout)
1629 {
1630         struct ll_ioc_lease *data = NULL;
1631         int fd = -1;
1632         int fdv = -1;
1633         int rc;
1634
1635         rc = migrate_open_files(name, 0, NULL, layout, &fd, &fdv);
1636         if (rc < 0)
1637                 goto out;
1638
1639         rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
1640         if (rc < 0) {
1641                 error_loc = "cannot get lease";
1642                 goto out;
1643         }
1644
1645         rc = migrate_nonblock(fd, fdv);
1646         if (rc < 0) {
1647                 llapi_lease_release(fd);
1648                 goto out;
1649         }
1650
1651         /* Atomically put lease, merge layouts and close. */
1652         data = calloc(1, offsetof(typeof(*data), lil_ids[1]));
1653         if (!data) {
1654                 error_loc = "memory allocation";
1655                 goto out;
1656         }
1657         data->lil_mode = LL_LEASE_UNLCK;
1658         data->lil_flags = LL_LEASE_LAYOUT_MERGE;
1659         data->lil_count = 1;
1660         data->lil_ids[0] = fdv;
1661         rc = llapi_lease_set(fd, data);
1662         if (rc < 0) {
1663                 error_loc = "cannot merge layout";
1664                 goto out;
1665         } else if (rc == 0) {
1666                 rc = -EBUSY;
1667                 error_loc = "lost lease lock";
1668                 goto out;
1669         }
1670         rc = 0;
1671
1672 out:
1673         if (data)
1674                 free(data);
1675         if (fd >= 0)
1676                 close(fd);
1677         if (fdv >= 0)
1678                 close(fdv);
1679         if (rc < 0)
1680                 fprintf(stderr, "error: %s: %s: %s: %s\n",
1681                         progname, name, error_loc, strerror(-rc));
1682         return rc;
1683 }
1684
1685 static int mirror_extend(char *fname, struct mirror_args *mirror_list,
1686                          enum mirror_flags mirror_flags)
1687 {
1688         int rc;
1689
1690         rc = mirror_create_sanity_check(fname, mirror_list);
1691         if (rc)
1692                 return rc;
1693
1694         while (mirror_list) {
1695                 if (mirror_list->m_file != NULL) {
1696                         rc = mirror_extend_file(fname, mirror_list->m_file,
1697                                                 mirror_flags);
1698                 } else {
1699                         __u32 mirror_count = mirror_list->m_count;
1700
1701                         while (mirror_count > 0) {
1702                                 rc = mirror_extend_layout(fname,
1703                                                         mirror_list->m_layout);
1704                                 if (rc)
1705                                         break;
1706
1707                                 --mirror_count;
1708                         }
1709                 }
1710                 if (rc)
1711                         break;
1712
1713                 mirror_list = mirror_list->m_next;
1714         }
1715
1716         return rc;
1717 }
1718
1719 static int find_mirror_id(struct llapi_layout *layout, void *cbdata)
1720 {
1721         uint32_t id;
1722         int rc;
1723
1724         rc = llapi_layout_mirror_id_get(layout, &id);
1725         if (rc < 0)
1726                 return rc;
1727
1728         if ((__u16)id == *(__u16 *)cbdata)
1729                 return LLAPI_LAYOUT_ITER_STOP;
1730
1731         return LLAPI_LAYOUT_ITER_CONT;
1732 }
1733
1734 static int find_comp_id(struct llapi_layout *layout, void *cbdata)
1735 {
1736         uint32_t id;
1737         int rc;
1738
1739         rc = llapi_layout_comp_id_get(layout, &id);
1740         if (rc < 0)
1741                 return rc;
1742
1743         if (id == *(__u32 *)cbdata)
1744                 return LLAPI_LAYOUT_ITER_STOP;
1745
1746         return LLAPI_LAYOUT_ITER_CONT;
1747 }
1748 static int mirror_split(const char *fname, __u32 id,
1749                         enum mirror_flags mflags, const char *victim_file)
1750 {
1751         struct llapi_layout *layout;
1752         char parent[PATH_MAX];
1753         char victim[PATH_MAX];
1754         int flags = O_CREAT | O_EXCL | O_LOV_DELAY_CREATE | O_NOFOLLOW;
1755         char *ptr;
1756         struct ll_ioc_lease *data;
1757         uint16_t mirror_count;
1758         int mdt_index;
1759         int fd, fdv;
1760         int rc;
1761
1762         /* check fname contains mirror with mirror_id/comp_id */
1763         layout = llapi_layout_get_by_path(fname, 0);
1764         if (!layout) {
1765                 fprintf(stderr,
1766                         "error %s: file '%s' couldn't get layout\n",
1767                         progname, fname);
1768                 return -EINVAL;
1769         }
1770
1771         rc = mirror_sanity_check_one(layout);
1772         if (rc)
1773                 goto free_layout;
1774
1775         rc = llapi_layout_mirror_count_get(layout, &mirror_count);
1776         if (rc) {
1777                 fprintf(stderr,
1778                         "error %s: file '%s' couldn't get mirror count\n",
1779                         progname, fname);
1780                 goto free_layout;
1781         }
1782         if (mirror_count < 2) {
1783                 fprintf(stderr,
1784                         "error %s: file '%s' has %d component, cannot split\n",
1785                         progname, fname, mirror_count);
1786                 goto free_layout;
1787         }
1788
1789         if (mflags & MF_COMP_ID) {
1790                 rc = llapi_layout_comp_iterate(layout, find_comp_id, &id);
1791                 id = mirror_id_of(id);
1792         } else {
1793                 rc = llapi_layout_comp_iterate(layout, find_mirror_id, &id);
1794         }
1795         if (rc < 0) {
1796                 fprintf(stderr, "error %s: failed to iterate layout of '%s'\n",
1797                         progname, fname);
1798                 goto free_layout;
1799         } else if (rc == LLAPI_LAYOUT_ITER_CONT) {
1800                 fprintf(stderr,
1801                      "error %s: file '%s' does not contain mirror with id %u\n",
1802                         progname, fname, id);
1803                 goto free_layout;
1804         }
1805
1806         fd = open(fname, O_RDWR);
1807         if (fd < 0) {
1808                 fprintf(stderr,
1809                         "error %s: open file '%s' failed: %s\n",
1810                         progname, fname, strerror(errno));
1811                 goto free_layout;
1812         }
1813
1814         /* get victim file directory pathname */
1815         if (strlen(fname) > sizeof(parent) - 1) {
1816                 fprintf(stderr, "error %s: file name of '%s' too long\n",
1817                         progname, fname);
1818                 rc = -ERANGE;
1819                 goto close_fd;
1820         }
1821         strncpy(parent, fname, sizeof(parent));
1822         ptr = strrchr(parent, '/');
1823         if (ptr == NULL) {
1824                 if (getcwd(parent, sizeof(parent)) == NULL) {
1825                         fprintf(stderr, "error %s: getcwd failed: %s\n",
1826                                 progname, strerror(errno));
1827                         rc = -errno;
1828                         goto close_fd;
1829                 }
1830         } else {
1831                 if (ptr == parent)
1832                         ptr = parent + 1;
1833                 *ptr = '\0';
1834         }
1835
1836         rc = llapi_file_fget_mdtidx(fd, &mdt_index);
1837         if (rc < 0) {
1838                 fprintf(stderr, "%s: cannot get MDT index of '%s'\n",
1839                         progname, fname);
1840                 goto close_fd;
1841         }
1842
1843         if (victim_file == NULL) {
1844                 /* use a temp file to store the splitted layout */
1845                 if (mflags & MF_DESTROY) {
1846                         fdv = llapi_create_volatile_idx(parent, mdt_index,
1847                                                         O_LOV_DELAY_CREATE);
1848                 } else {
1849                         snprintf(victim, sizeof(victim), "%s.mirror~%u",
1850                                  fname, id);
1851                         fdv = open(victim, flags, S_IRUSR | S_IWUSR);
1852                 }
1853         } else {
1854                 /* user specified victim file */
1855                 fdv = open(victim_file, flags, S_IRUSR | S_IWUSR);
1856         }
1857
1858         if (fdv < 0) {
1859                 fprintf(stderr,
1860                         "error %s: create victim file failed: %s\n",
1861                         progname, strerror(errno));
1862                 goto close_fd;
1863         }
1864
1865         /* get lease lock of fname */
1866         rc = llapi_lease_acquire(fd, LL_LEASE_WRLCK);
1867         if (rc < 0) {
1868                 fprintf(stderr,
1869                         "error %s: cannot get lease of file '%s': %d\n",
1870                         progname, fname, rc);
1871                 goto close_victim;
1872         }
1873
1874         /* Atomatically put lease, split layouts and close. */
1875         data = malloc(offsetof(typeof(*data), lil_ids[2]));
1876         if (!data) {
1877                 rc = -ENOMEM;
1878                 goto close_victim;
1879         }
1880
1881         data->lil_mode = LL_LEASE_UNLCK;
1882         data->lil_flags = LL_LEASE_LAYOUT_SPLIT;
1883         data->lil_count = 2;
1884         data->lil_ids[0] = fdv;
1885         data->lil_ids[1] = id;
1886         rc = llapi_lease_set(fd, data);
1887         if (rc <= 0) {
1888                 if (rc == 0) /* lost lease lock */
1889                         rc = -EBUSY;
1890                 fprintf(stderr,
1891                         "error %s: cannot split '%s': %s\n",
1892                         progname, fname, strerror(-rc));
1893         } else {
1894                 rc = 0;
1895         }
1896         free(data);
1897
1898 close_victim:
1899         close(fdv);
1900 close_fd:
1901         close(fd);
1902 free_layout:
1903         llapi_layout_free(layout);
1904         return rc;
1905 }
1906
1907 /**
1908  * Parse a string containing an target index list into an array of integers.
1909  *
1910  * The input string contains a comma delimited list of individual
1911  * indices and ranges, for example "1,2-4,7". Add the indices into the
1912  * \a tgts array and remove duplicates.
1913  *
1914  * \param[out] tgts    array to store indices in
1915  * \param[in] size     size of \a tgts array
1916  * \param[in] offset   starting index in \a tgts
1917  * \param[in] arg      string containing OST index list
1918  *
1919  * \retval positive    number of indices in \a tgts
1920  * \retval -EINVAL     unable to parse \a arg
1921  */
1922 static int parse_targets(__u32 *tgts, int size, int offset, char *arg)
1923 {
1924         int rc;
1925         int nr = offset;
1926         int slots = size - offset;
1927         char *ptr = NULL;
1928         bool end_of_loop;
1929
1930         if (arg == NULL)
1931                 return -EINVAL;
1932
1933         end_of_loop = false;
1934         while (!end_of_loop) {
1935                 int start_index;
1936                 int end_index;
1937                 int i;
1938                 char *endptr = NULL;
1939
1940                 rc = -EINVAL;
1941
1942                 ptr = strchrnul(arg, ',');
1943
1944                 end_of_loop = *ptr == '\0';
1945                 *ptr = '\0';
1946
1947                 start_index = strtol(arg, &endptr, 0);
1948                 if (endptr == arg) /* no data at all */
1949                         break;
1950                 if (*endptr != '-' && *endptr != '\0') /* has invalid data */
1951                         break;
1952
1953                 end_index = start_index;
1954                 if (*endptr == '-') {
1955                         end_index = strtol(endptr + 1, &endptr, 0);
1956                         if (*endptr != '\0')
1957                                 break;
1958                         if (end_index < start_index)
1959                                 break;
1960                 }
1961
1962                 for (i = start_index; i <= end_index && slots > 0; i++) {
1963                         int j;
1964
1965                         /* remove duplicate */
1966                         for (j = 0; j < offset; j++) {
1967                                 if (tgts[j] == i)
1968                                         break;
1969                         }
1970                         if (j == offset) { /* no duplicate */
1971                                 tgts[nr++] = i;
1972                                 --slots;
1973                         }
1974                 }
1975                 if (slots == 0 && i < end_index)
1976                         break;
1977
1978                 *ptr = ',';
1979                 arg = ++ptr;
1980                 offset = nr;
1981                 rc = 0;
1982         }
1983         if (!end_of_loop && ptr != NULL)
1984                 *ptr = ',';
1985
1986         return rc < 0 ? rc : nr;
1987 }
1988
1989 struct lfs_setstripe_args {
1990         unsigned long long       lsa_comp_end;
1991         unsigned long long       lsa_stripe_size;
1992         long long                lsa_stripe_count;
1993         long long                lsa_stripe_off;
1994         __u32                    lsa_comp_flags;
1995         __u32                    lsa_comp_neg_flags;
1996         unsigned long long       lsa_pattern;
1997         unsigned int             lsa_mirror_count;
1998         int                      lsa_nr_tgts;
1999         bool                     lsa_first_comp;
2000         __u32                   *lsa_tgts;
2001         char                    *lsa_pool_name;
2002 };
2003
2004 static inline void setstripe_args_init(struct lfs_setstripe_args *lsa)
2005 {
2006         unsigned int mirror_count = lsa->lsa_mirror_count;
2007         bool first_comp = lsa->lsa_first_comp;
2008
2009         memset(lsa, 0, sizeof(*lsa));
2010
2011         lsa->lsa_stripe_size = LLAPI_LAYOUT_DEFAULT;
2012         lsa->lsa_stripe_count = LLAPI_LAYOUT_DEFAULT;
2013         lsa->lsa_stripe_off = LLAPI_LAYOUT_DEFAULT;
2014         lsa->lsa_pattern = LLAPI_LAYOUT_RAID0;
2015         lsa->lsa_pool_name = NULL;
2016
2017         lsa->lsa_mirror_count = mirror_count;
2018         lsa->lsa_first_comp = first_comp;
2019 }
2020
2021 /**
2022  * setstripe_args_init_inherit() - Initialize and inherit stripe options.
2023  * @lsa: Stripe options to be initialized and inherited.
2024  *
2025  * This function initializes stripe options in @lsa and inherit
2026  * stripe_size, stripe_count and OST pool_name options.
2027  *
2028  * Return: void.
2029  */
2030 static inline void setstripe_args_init_inherit(struct lfs_setstripe_args *lsa)
2031 {
2032         unsigned long long stripe_size;
2033         long long stripe_count;
2034         char *pool_name = NULL;
2035
2036         stripe_size = lsa->lsa_stripe_size;
2037         stripe_count = lsa->lsa_stripe_count;
2038         pool_name = lsa->lsa_pool_name;
2039
2040         setstripe_args_init(lsa);
2041
2042         lsa->lsa_stripe_size = stripe_size;
2043         lsa->lsa_stripe_count = stripe_count;
2044         lsa->lsa_pool_name = pool_name;
2045 }
2046
2047 static inline bool setstripe_args_specified(struct lfs_setstripe_args *lsa)
2048 {
2049         return (lsa->lsa_stripe_size != LLAPI_LAYOUT_DEFAULT ||
2050                 lsa->lsa_stripe_count != LLAPI_LAYOUT_DEFAULT ||
2051                 lsa->lsa_stripe_off != LLAPI_LAYOUT_DEFAULT ||
2052                 lsa->lsa_pattern != LLAPI_LAYOUT_RAID0 ||
2053                 lsa->lsa_pool_name != NULL ||
2054                 lsa->lsa_comp_end != 0);
2055 }
2056
2057 /**
2058  * comp_args_to_layout() - Create or extend a composite layout.
2059  * @composite:       Pointer to the composite layout.
2060  * @lsa:             Stripe options for the new component.
2061  *
2062  * This function creates or extends a composite layout by adding a new
2063  * component with stripe options from @lsa.
2064  *
2065  * Return: 0 on success or an error code on failure.
2066  */
2067 static int comp_args_to_layout(struct llapi_layout **composite,
2068                                struct lfs_setstripe_args *lsa,
2069                                bool set_extent)
2070 {
2071         struct llapi_layout *layout = *composite;
2072         uint64_t prev_end = 0;
2073         int i = 0, rc;
2074
2075         if (layout == NULL) {
2076                 layout = llapi_layout_alloc();
2077                 if (layout == NULL) {
2078                         fprintf(stderr, "Alloc llapi_layout failed. %s\n",
2079                                 strerror(errno));
2080                         return -ENOMEM;
2081                 }
2082                 *composite = layout;
2083         } else {
2084                 uint64_t start;
2085
2086                 /* Get current component extent, current component
2087                  * must be the tail component. */
2088                 rc = llapi_layout_comp_extent_get(layout, &start, &prev_end);
2089                 if (rc) {
2090                         fprintf(stderr, "Get comp extent failed. %s\n",
2091                                 strerror(errno));
2092                         return rc;
2093                 }
2094
2095                 if (lsa->lsa_first_comp)
2096                         prev_end = 0;
2097
2098                 if (lsa->lsa_first_comp)
2099                         rc = llapi_layout_add_first_comp(layout);
2100                 else
2101                         rc = llapi_layout_comp_add(layout);
2102                 if (rc) {
2103                         fprintf(stderr, "Add component failed. %s\n",
2104                                 strerror(errno));
2105                         return rc;
2106                 }
2107         }
2108         /* reset lsa_first_comp */
2109         lsa->lsa_first_comp = false;
2110
2111         if (set_extent) {
2112                 rc = llapi_layout_comp_extent_set(layout, prev_end,
2113                                                   lsa->lsa_comp_end);
2114                 if (rc) {
2115                         fprintf(stderr, "Set extent [%lu, %llu) failed. %s\n",
2116                                 prev_end, lsa->lsa_comp_end, strerror(errno));
2117                         return rc;
2118                 }
2119         }
2120
2121         /* Data-on-MDT component setting */
2122         if (lsa->lsa_pattern == LLAPI_LAYOUT_MDT) {
2123                 /* In case of Data-on-MDT patterns the only extra option
2124                  * applicable is stripe size option. */
2125                 if (lsa->lsa_stripe_count != LLAPI_LAYOUT_DEFAULT) {
2126                         fprintf(stderr, "Option 'stripe-count' can't be "
2127                                 "specified with Data-on-MDT component: %lld\n",
2128                                 lsa->lsa_stripe_count);
2129                         return -EINVAL;
2130                 }
2131                 if (lsa->lsa_stripe_size != LLAPI_LAYOUT_DEFAULT) {
2132                         fprintf(stderr, "Option 'stripe-size' can't be "
2133                                 "specified with Data-on-MDT component: %llu\n",
2134                                 lsa->lsa_stripe_size);
2135                         return -EINVAL;
2136                 }
2137                 if (lsa->lsa_nr_tgts != 0) {
2138                         fprintf(stderr, "Option 'ost-list' can't be specified "
2139                                 "with Data-on-MDT component: '%i'\n",
2140                                 lsa->lsa_nr_tgts);
2141                         return -EINVAL;
2142                 }
2143                 if (lsa->lsa_stripe_off != LLAPI_LAYOUT_DEFAULT) {
2144                         fprintf(stderr, "Option 'stripe-offset' can't be "
2145                                 "specified with Data-on-MDT component: %lld\n",
2146                                 lsa->lsa_stripe_off);
2147                         return -EINVAL;
2148                 }
2149                 if (lsa->lsa_pool_name != 0) {
2150                         fprintf(stderr, "Option 'pool' can't be specified "
2151                                 "with Data-on-MDT component: '%s'\n",
2152                                 lsa->lsa_pool_name);
2153                         return -EINVAL;
2154                 }
2155
2156                 rc = llapi_layout_pattern_set(layout, lsa->lsa_pattern);
2157                 if (rc) {
2158                         fprintf(stderr, "Set stripe pattern %#llx failed. %s\n",
2159                                 lsa->lsa_pattern, strerror(errno));
2160                         return rc;
2161                 }
2162                 /* Data-on-MDT component has always single stripe up to end */
2163                 lsa->lsa_stripe_size = lsa->lsa_comp_end;
2164         }
2165
2166         rc = llapi_layout_stripe_size_set(layout, lsa->lsa_stripe_size);
2167         if (rc) {
2168                 fprintf(stderr, "Set stripe size %llu failed: %s\n",
2169                         lsa->lsa_stripe_size, strerror(errno));
2170                 return rc;
2171         }
2172
2173         rc = llapi_layout_stripe_count_set(layout, lsa->lsa_stripe_count);
2174         if (rc) {
2175                 fprintf(stderr, "Set stripe count %lld failed: %s\n",
2176                         lsa->lsa_stripe_count, strerror(errno));
2177                 return rc;
2178         }
2179
2180         rc = llapi_layout_comp_flags_set(layout, lsa->lsa_comp_flags);
2181         if (rc) {
2182                 fprintf(stderr, "Set flags 0x%x failed: %s\n",
2183                         lsa->lsa_comp_flags, strerror(errno));
2184                 return rc;
2185         }
2186
2187         if (lsa->lsa_pool_name != NULL) {
2188                 rc = llapi_layout_pool_name_set(layout, lsa->lsa_pool_name);
2189                 if (rc) {
2190                         fprintf(stderr, "Set pool name: %s failed. %s\n",
2191                                 lsa->lsa_pool_name, strerror(errno));
2192                         return rc;
2193                 }
2194         } else {
2195                 rc = llapi_layout_pool_name_set(layout, "");
2196                 if (rc) {
2197                         fprintf(stderr, "Clear pool name failed: %s\n",
2198                                 strerror(errno));
2199                         return rc;
2200                 }
2201         }
2202
2203         if (lsa->lsa_nr_tgts > 0) {
2204                 if (lsa->lsa_stripe_count > 0 &&
2205                     lsa->lsa_stripe_count != LLAPI_LAYOUT_DEFAULT &&
2206                     lsa->lsa_stripe_count != LLAPI_LAYOUT_WIDE &&
2207                     lsa->lsa_nr_tgts != lsa->lsa_stripe_count) {
2208                         fprintf(stderr, "stripe_count(%lld) != nr_tgts(%d)\n",
2209                                 lsa->lsa_stripe_count, lsa->lsa_nr_tgts);
2210                         return -EINVAL;
2211                 }
2212                 for (i = 0; i < lsa->lsa_nr_tgts; i++) {
2213                         rc = llapi_layout_ost_index_set(layout, i,
2214                                                         lsa->lsa_tgts[i]);
2215                         if (rc)
2216                                 break;
2217                 }
2218         } else if (lsa->lsa_stripe_off != LLAPI_LAYOUT_DEFAULT &&
2219                    lsa->lsa_stripe_off != -1) {
2220                 rc = llapi_layout_ost_index_set(layout, 0, lsa->lsa_stripe_off);
2221         }
2222         if (rc) {
2223                 fprintf(stderr, "Set ost index %d failed. %s\n",
2224                         i, strerror(errno));
2225                 return rc;
2226         }
2227
2228         return 0;
2229 }
2230
2231 static int build_component(struct llapi_layout **layout,
2232                            struct lfs_setstripe_args *lsa, bool set_extent)
2233 {
2234         int rc;
2235
2236         rc = comp_args_to_layout(layout, lsa, set_extent);
2237         if (rc)
2238                 return rc;
2239
2240         if (lsa->lsa_mirror_count > 0) {
2241                 rc = llapi_layout_mirror_count_set(*layout,
2242                                                    lsa->lsa_mirror_count);
2243                 if (rc)
2244                         return rc;
2245
2246                 rc = llapi_layout_flags_set(*layout, LCM_FL_RDONLY);
2247                 if (rc)
2248                         return rc;
2249                 lsa->lsa_mirror_count = 0;
2250         }
2251
2252         return rc;
2253 }
2254
2255 static int build_layout_from_yaml_node(struct cYAML *node,
2256                                        struct llapi_layout **layout,
2257                                        struct lfs_setstripe_args *lsa,
2258                                        __u32 *osts)
2259 {
2260         char *string;
2261         int rc = 0;
2262
2263         while (node) {
2264                 if (node->cy_type == CYAML_TYPE_OBJECT) {
2265                         /* go deep to sub blocks */
2266                         rc = build_layout_from_yaml_node(node->cy_child, layout,
2267                                                          lsa, osts);
2268                         if (rc)
2269                                 return rc;
2270                 } else {
2271                         if (node->cy_string == NULL)
2272                                 return -EINVAL;
2273
2274                         string = node->cy_string;
2275                         /* skip leading lmm_ if present, to simplify parsing */
2276                         if (strncmp(string, "lmm_", 4) == 0)
2277                                 string += 4;
2278
2279                         if (node->cy_type == CYAML_TYPE_STRING) {
2280                                 if (!strcmp(string, "lcme_extent.e_end")) {
2281                                         if (!strcmp(node->cy_valuestring, "EOF") ||
2282                                             !strcmp(node->cy_valuestring, "eof"))
2283                                                 lsa->lsa_comp_end = LUSTRE_EOF;
2284                                 } else if (!strcmp(string, "pool")) {
2285                                         lsa->lsa_pool_name = node->cy_valuestring;
2286                                 } else if (!strcmp(string, "pattern")) {
2287                                         if (!strcmp(node->cy_valuestring, "mdt"))
2288                                                 lsa->lsa_pattern = LLAPI_LAYOUT_MDT;
2289                                 }
2290                         } else if (node->cy_type == CYAML_TYPE_NUMBER) {
2291                                 if (!strcmp(string, "lcm_mirror_count")) {
2292                                         lsa->lsa_mirror_count = node->cy_valueint;
2293                                 } else if (!strcmp(string, "lcme_extent.e_start")) {
2294                                         if (node->cy_valueint != 0 || *layout != NULL) {
2295                                                 rc = build_component(layout, lsa, true);
2296                                                 if (rc)
2297                                                         return rc;
2298                                         }
2299
2300                                         if (node->cy_valueint == 0)
2301                                                 lsa->lsa_first_comp = true;
2302
2303                                         /* initialize lsa */
2304                                         setstripe_args_init(lsa);
2305                                         lsa->lsa_tgts = osts;
2306                                 } else if (!strcmp(string, "lcme_extent.e_end")) {
2307                                         if (node->cy_valueint == -1)
2308                                                 lsa->lsa_comp_end = LUSTRE_EOF;
2309                                         else
2310                                                 lsa->lsa_comp_end = node->cy_valueint;
2311                                 } else if (!strcmp(string, "stripe_count")) {
2312                                         lsa->lsa_stripe_count = node->cy_valueint;
2313                                 } else if (!strcmp(string, "stripe_size")) {
2314                                         lsa->lsa_stripe_size = node->cy_valueint;
2315                                 } else if (!strcmp(string, "stripe_offset")) {
2316                                         lsa->lsa_stripe_off = node->cy_valueint;
2317                                 } else if (!strcmp(string, "l_ost_idx")) {
2318                                         osts[lsa->lsa_nr_tgts] = node->cy_valueint;
2319                                         lsa->lsa_nr_tgts++;
2320                                 }
2321                         }
2322                 }
2323                 node = node->cy_next;
2324         }
2325
2326         return rc;
2327 }
2328
2329 static int lfs_comp_create_from_yaml(char *template,
2330                                      struct llapi_layout **layout,
2331                                      struct lfs_setstripe_args *lsa,
2332                                      __u32 *osts)
2333 {
2334         struct cYAML *tree = NULL, *err_rc = NULL;
2335         int rc = 0;
2336
2337         tree = cYAML_build_tree(template, NULL, 0, &err_rc, false);
2338         if (!tree) {
2339                 fprintf(stderr, "%s: cannot parse YAML file %s\n",
2340                         progname, template);
2341                 cYAML_build_error(-EINVAL, -1, "yaml", "from comp yaml",
2342                                   "can't parse", &err_rc);
2343                 cYAML_print_tree2file(stderr, err_rc);
2344                 cYAML_free_tree(err_rc);
2345                 rc = -EINVAL;
2346                 goto err;
2347         }
2348
2349         /* initialize lsa for plain file */
2350         setstripe_args_init(lsa);
2351         lsa->lsa_tgts = osts;
2352
2353         rc = build_layout_from_yaml_node(tree, layout, lsa, osts);
2354         if (rc) {
2355                 fprintf(stderr, "%s: cannot build layout from YAML file %s.\n",
2356                         progname, template);
2357                 goto err;
2358         } else {
2359                 rc = build_component(layout, lsa, *layout != NULL);
2360         }
2361         /* clean clean lsa */
2362         setstripe_args_init(lsa);
2363
2364 err:
2365         if (tree)
2366                 cYAML_free_tree(tree);
2367         return rc;
2368 }
2369
2370 /* In 'lfs setstripe --component-add' mode, we need to fetch the extent
2371  * end of the last component in the existing file, and adjust the
2372  * first extent start of the components to be added accordingly. */
2373 static int adjust_first_extent(char *fname, struct llapi_layout *layout)
2374 {
2375         struct llapi_layout *head;
2376         uint64_t start, end, stripe_size, prev_end = 0;
2377         int rc;
2378
2379         if (layout == NULL) {
2380                 fprintf(stderr,
2381                         "%s setstripe: layout must be specified\n",
2382                         progname);
2383                 return -EINVAL;
2384         }
2385
2386         errno = 0;
2387         head = llapi_layout_get_by_path(fname, 0);
2388         if (head == NULL) {
2389                 fprintf(stderr,
2390                         "%s setstripe: cannot read layout from '%s': %s\n",
2391                         progname, fname, strerror(errno));
2392                 return -EINVAL;
2393         } else if (errno == ENODATA) {
2394                 /* file without LOVEA, this component-add will be turned
2395                  * into a component-create. */
2396                 llapi_layout_free(head);
2397                 return -ENODATA;
2398         } else if (!llapi_layout_is_composite(head)) {
2399                 fprintf(stderr, "%s setstripe: '%s' not a composite file\n",
2400                         progname, fname);
2401                 llapi_layout_free(head);
2402                 return -EINVAL;
2403         }
2404
2405         rc = llapi_layout_comp_extent_get(head, &start, &prev_end);
2406         if (rc) {
2407                 fprintf(stderr, "%s setstripe: cannot get prev extent: %s\n",
2408                         progname, strerror(errno));
2409                 llapi_layout_free(head);
2410                 return rc;
2411         }
2412
2413         llapi_layout_free(head);
2414
2415         /* Make sure we use the first component of the layout to be added. */
2416         rc = llapi_layout_comp_use(layout, LLAPI_LAYOUT_COMP_USE_FIRST);
2417         if (rc < 0) {
2418                 fprintf(stderr,
2419                         "%s setstripe: cannot move component cursor: %s\n",
2420                         progname, strerror(errno));
2421                 return rc;
2422         }
2423
2424         rc = llapi_layout_comp_extent_get(layout, &start, &end);
2425         if (rc) {
2426                 fprintf(stderr, "%s setstripe: cannot get extent: %s\n",
2427                         progname, strerror(errno));
2428                 return rc;
2429         }
2430
2431         if (start > prev_end || end <= prev_end) {
2432                 fprintf(stderr,
2433                         "%s setstripe: first extent [%lu, %lu) not adjacent with extent end %lu\n",
2434                         progname, start, end, prev_end);
2435                 return -EINVAL;
2436         }
2437
2438         rc = llapi_layout_stripe_size_get(layout, &stripe_size);
2439         if (rc) {
2440                 fprintf(stderr, "%s setstripe: cannot get stripe size: %s\n",
2441                         progname, strerror(errno));
2442                 return rc;
2443         }
2444
2445         if (stripe_size != LLAPI_LAYOUT_DEFAULT &&
2446             (prev_end & (stripe_size - 1))) {
2447                 fprintf(stderr,
2448                         "%s setstripe: stripe size %lu not aligned with %lu\n",
2449                         progname, stripe_size, prev_end);
2450                 return -EINVAL;
2451         }
2452
2453         rc = llapi_layout_comp_extent_set(layout, prev_end, end);
2454         if (rc) {
2455                 fprintf(stderr,
2456                         "%s setstripe: cannot set component extent [%lu, %lu): %s\n",
2457                         progname, prev_end, end, strerror(errno));
2458                 return rc;
2459         }
2460
2461         return 0;
2462 }
2463
2464 static inline bool arg_is_eof(char *arg)
2465 {
2466         return !strncmp(arg, "-1", strlen("-1")) ||
2467                !strncmp(arg, "EOF", strlen("EOF")) ||
2468                !strncmp(arg, "eof", strlen("eof"));
2469 }
2470
2471 /**
2472  * lfs_mirror_alloc() - Allocate a mirror argument structure.
2473  *
2474  * Return: Valid mirror_args pointer on success and
2475  *         NULL if memory allocation fails.
2476  */
2477 static struct mirror_args *lfs_mirror_alloc(void)
2478 {
2479         struct mirror_args *mirror = NULL;
2480
2481         while (1) {
2482                 mirror = calloc(1, sizeof(*mirror));
2483                 if (mirror != NULL)
2484                         break;
2485
2486                 sleep(1);
2487         }
2488
2489         return mirror;
2490 }
2491
2492 /**
2493  * lfs_mirror_free() - Free memory allocated for a mirror argument
2494  *                     structure.
2495  * @mirror: Previously allocated mirror argument structure by
2496  *          lfs_mirror_alloc().
2497  *
2498  * Free memory allocated for @mirror.
2499  *
2500  * Return: void.
2501  */
2502 static void lfs_mirror_free(struct mirror_args *mirror)
2503 {
2504         if (mirror->m_layout != NULL)
2505                 llapi_layout_free(mirror->m_layout);
2506         free(mirror);
2507 }
2508
2509 /**
2510  * lfs_mirror_list_free() - Free memory allocated for a mirror list.
2511  * @mirror_list: Previously allocated mirror list.
2512  *
2513  * Free memory allocated for @mirror_list.
2514  *
2515  * Return: void.
2516  */
2517 static void lfs_mirror_list_free(struct mirror_args *mirror_list)
2518 {
2519         struct mirror_args *next_mirror = NULL;
2520
2521         while (mirror_list != NULL) {
2522                 next_mirror = mirror_list->m_next;
2523                 lfs_mirror_free(mirror_list);
2524                 mirror_list = next_mirror;
2525         }
2526 }
2527
2528 enum {
2529         LFS_POOL_OPT = 3,
2530         LFS_COMP_COUNT_OPT,
2531         LFS_COMP_START_OPT,
2532         LFS_COMP_FLAGS_OPT,
2533         LFS_COMP_DEL_OPT,
2534         LFS_COMP_SET_OPT,
2535         LFS_COMP_ADD_OPT,
2536         LFS_COMP_NO_VERIFY_OPT,
2537         LFS_PROJID_OPT,
2538         LFS_MIRROR_FLAGS_OPT,
2539         LFS_MIRROR_ID_OPT,
2540         LFS_MIRROR_STATE_OPT,
2541         LFS_LAYOUT_COPY,
2542         LFS_MIRROR_INDEX_OPT,
2543 };
2544
2545 /* functions */
2546 static int lfs_setstripe_internal(int argc, char **argv,
2547                                   enum setstripe_origin opc)
2548 {
2549         struct lfs_setstripe_args        lsa = { 0 };
2550         struct llapi_stripe_param       *param = NULL;
2551         struct find_param                migrate_mdt_param = {
2552                 .fp_max_depth = -1,
2553                 .fp_mdt_index = -1,
2554         };
2555         char                            *fname;
2556         int                              result = 0;
2557         int                              result2 = 0;
2558         char                            *end;
2559         int                              c;
2560         int                              delete = 0;
2561         unsigned long long               size_units = 1;
2562         bool                             migrate_mode = false;
2563         bool                             migrate_mdt_mode = false;
2564         bool                             migration_block = false;
2565         __u64                            migration_flags = 0;
2566         __u32                            tgts[LOV_MAX_STRIPE_COUNT] = { 0 };
2567         int                              comp_del = 0, comp_set = 0;
2568         int                              comp_add = 0;
2569         __u32                            comp_id = 0;
2570         struct llapi_layout             *layout = NULL;
2571         struct llapi_layout             **lpp = &layout;
2572         bool                             mirror_mode = false;
2573         bool                             has_m_file = false;
2574         __u32                            mirror_count = 0;
2575         enum mirror_flags                mirror_flags = 0;
2576         struct mirror_args              *mirror_list = NULL;
2577         struct mirror_args              *new_mirror = NULL;
2578         struct mirror_args              *last_mirror = NULL;
2579         __u16                            mirror_id = 0;
2580         char                             cmd[PATH_MAX];
2581         bool from_yaml = false;
2582         bool from_copy = false;
2583         char *template = NULL;
2584
2585         struct option long_opts[] = {
2586 /* find { .val = '0',   .name = "null",         .has_arg = no_argument }, */
2587 /* find { .val = 'A',   .name = "atime",        .has_arg = required_argument }*/
2588         /* --block is only valid in migrate mode */
2589         { .val = 'b',   .name = "block",        .has_arg = no_argument },
2590         { .val = LFS_COMP_ADD_OPT,
2591                         .name = "comp-add",     .has_arg = no_argument },
2592         { .val = LFS_COMP_ADD_OPT,
2593                         .name = "component-add", .has_arg = no_argument },
2594         { .val = LFS_COMP_DEL_OPT,
2595                         .name = "comp-del",     .has_arg = no_argument },
2596         { .val = LFS_COMP_DEL_OPT,
2597                         .name = "component-del", .has_arg = no_argument },
2598         { .val = LFS_COMP_FLAGS_OPT,
2599                         .name = "comp-flags",   .has_arg = required_argument },
2600         { .val = LFS_COMP_FLAGS_OPT,
2601                         .name = "component-flags",
2602                                                 .has_arg = required_argument },
2603         { .val = LFS_COMP_SET_OPT,
2604                         .name = "comp-set",     .has_arg = no_argument },
2605         { .val = LFS_COMP_SET_OPT,
2606                         .name = "component-set",
2607                                                 .has_arg = no_argument},
2608         { .val = LFS_COMP_NO_VERIFY_OPT,
2609                         .name = "no-verify",    .has_arg = no_argument},
2610         { .val = LFS_MIRROR_FLAGS_OPT,
2611                         .name = "flags",        .has_arg = required_argument},
2612         { .val = LFS_MIRROR_ID_OPT,
2613                         .name = "mirror-id",    .has_arg = required_argument},
2614         { .val = LFS_LAYOUT_COPY,
2615                         .name = "copy",         .has_arg = required_argument},
2616         { .val = 'c',   .name = "stripe-count", .has_arg = required_argument},
2617         { .val = 'c',   .name = "stripe_count", .has_arg = required_argument},
2618         { .val = 'c',   .name = "mdt-count",    .has_arg = required_argument},
2619 /* find { .val = 'C',   .name = "ctime",        .has_arg = required_argument }*/
2620         { .val = 'd',   .name = "delete",       .has_arg = no_argument},
2621         { .val = 'd',   .name = "destroy",      .has_arg = no_argument},
2622         /* --non-direct is only valid in migrate mode */
2623         { .val = 'D',   .name = "non-direct",   .has_arg = no_argument },
2624         { .val = 'E',   .name = "comp-end",     .has_arg = required_argument},
2625         { .val = 'E',   .name = "component-end",
2626                                                 .has_arg = required_argument},
2627         { .val = 'f',   .name = "file",         .has_arg = required_argument },
2628 /* find { .val = 'F',   .name = "fid",          .has_arg = no_argument }, */
2629 /* find { .val = 'g',   .name = "gid",          .has_arg = no_argument }, */
2630 /* find { .val = 'G',   .name = "group",        .has_arg = required_argument }*/
2631 /* find { .val = 'h',   .name = "help",         .has_arg = no_argument }, */
2632         { .val = 'H',   .name = "mdt-hash",     .has_arg = required_argument},
2633         { .val = 'i',   .name = "stripe-index", .has_arg = required_argument},
2634         { .val = 'i',   .name = "stripe_index", .has_arg = required_argument},
2635         { .val = 'I',   .name = "comp-id",      .has_arg = required_argument},
2636         { .val = 'I',   .name = "component-id", .has_arg = required_argument},
2637         { .val = 'L',   .name = "layout",       .has_arg = required_argument },
2638         { .val = 'm',   .name = "mdt",          .has_arg = required_argument},
2639         { .val = 'm',   .name = "mdt-index",    .has_arg = required_argument},
2640         { .val = 'm',   .name = "mdt_index",    .has_arg = required_argument},
2641         /* --non-block is only valid in migrate mode */
2642         { .val = 'n',   .name = "non-block",    .has_arg = no_argument },
2643         { .val = 'N',   .name = "mirror-count", .has_arg = optional_argument},
2644         { .val = 'o',   .name = "ost",          .has_arg = required_argument },
2645 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
2646         { .val = 'o',   .name = "ost-list",     .has_arg = required_argument },
2647         { .val = 'o',   .name = "ost_list",     .has_arg = required_argument },
2648 #endif
2649         { .val = 'p',   .name = "pool",         .has_arg = required_argument },
2650 /* find { .val = 'P',   .name = "print",        .has_arg = no_argument }, */
2651 /* getstripe { .val = 'q', .name = "quiet",     .has_arg = no_argument }, */
2652 /* getstripe { .val = 'r', .name = "recursive", .has_arg = no_argument }, */
2653 /* getstripe { .val = 'R', .name = "raw",       .has_arg = no_argument }, */
2654         { .val = 'S',   .name = "stripe-size",  .has_arg = required_argument },
2655         { .val = 'S',   .name = "stripe_size",  .has_arg = required_argument },
2656 /* find { .val = 't',   .name = "type",         .has_arg = required_argument }*/
2657 /* dirstripe { .val = 'T', .name = "mdt-count", .has_arg = required_argument }*/
2658 /* find { .val = 'u',   .name = "uid",          .has_arg = required_argument }*/
2659 /* find { .val = 'U',   .name = "user",         .has_arg = required_argument }*/
2660         /* --verbose is only valid in migrate mode */
2661         { .val = 'v',   .name = "verbose",      .has_arg = no_argument},
2662         { .val = 'y',   .name = "yaml",         .has_arg = required_argument },
2663         { .name = NULL } };
2664
2665         setstripe_args_init(&lsa);
2666
2667         migrate_mode = (opc == SO_MIGRATE);
2668         mirror_mode = (opc == SO_MIRROR_CREATE || opc == SO_MIRROR_EXTEND);
2669
2670         snprintf(cmd, sizeof(cmd), "%s %s", progname, argv[0]);
2671         progname = cmd;
2672         while ((c = getopt_long(argc, argv,
2673                                 "bc:dDE:f:H:i:I:m:N::no:p:L:s:S:vy:", long_opts,
2674                                 NULL)) >= 0) {
2675                 switch (c) {
2676                 case 0:
2677                         /* Long options. */
2678                         break;
2679                 case LFS_COMP_ADD_OPT:
2680                         comp_add = 1;
2681                         break;
2682                 case LFS_COMP_DEL_OPT:
2683                         comp_del = 1;
2684                         break;
2685                 case LFS_COMP_FLAGS_OPT:
2686                         result = comp_str2flags(optarg, &lsa.lsa_comp_flags,
2687                                                 &lsa.lsa_comp_neg_flags);
2688                         if (result != 0)
2689                                 goto usage_error;
2690                         if (mirror_mode && lsa.lsa_comp_neg_flags) {
2691                                 fprintf(stderr, "%s: inverted flags are not supported\n",
2692                                         progname);
2693                                 goto usage_error;
2694                         }
2695                         if (lsa.lsa_comp_neg_flags & LCME_FL_STALE) {
2696                                 fprintf(stderr,
2697                                         "%s: cannot clear 'stale' flags from component. Please use lfs-mirror-resync(1) instead\n",
2698                                         progname);
2699                                 result = -EINVAL;
2700                                 goto error;
2701                         }
2702
2703                         break;
2704                 case LFS_COMP_SET_OPT:
2705                         comp_set = 1;
2706                         break;
2707                 case LFS_COMP_NO_VERIFY_OPT:
2708                         mirror_flags |= MF_NO_VERIFY;
2709                         break;
2710                 case LFS_MIRROR_ID_OPT:
2711                         mirror_id = strtoul(optarg, &end, 0);
2712                         if (*end != '\0' || mirror_id == 0) {
2713                                 fprintf(stderr,
2714                                         "%s %s: invalid mirror ID '%s'\n",
2715                                         progname, argv[0], optarg);
2716                                 goto usage_error;
2717                         }
2718                         break;
2719                 case LFS_MIRROR_FLAGS_OPT: {
2720                         __u32 flags;
2721
2722                         if (!mirror_mode || !last_mirror) {
2723                                 fprintf(stderr, "error: %s: --flags must be specified with --mirror-count|-N option\n",
2724                                         progname);
2725                                 goto usage_error;
2726                         }
2727
2728                         result = comp_str2flags(optarg, &last_mirror->m_flags,
2729                                                 &flags);
2730                         if (result != 0)
2731                                 goto usage_error;
2732
2733                         if (flags) {
2734                                 fprintf(stderr, "%s: inverted flags are not supported\n",
2735                                         progname);
2736                                 result = -EINVAL;
2737                                 goto usage_error;
2738                         }
2739                         if (last_mirror->m_flags & ~LCME_USER_FLAGS) {
2740                                 fprintf(stderr,
2741                                         "%s: unsupported mirror flags: %s\n",
2742                                         progname, optarg);
2743                                 result = -EINVAL;
2744                                 goto error;
2745                         }
2746                         break;
2747                 }
2748                 case LFS_LAYOUT_COPY:
2749                         from_copy = true;
2750                         template = optarg;
2751                         break;
2752                 case 'b':
2753                         if (!migrate_mode) {
2754                                 fprintf(stderr,
2755                                         "%s %s: -b|--block valid only for migrate command\n",
2756                                         progname, argv[0]);
2757                                 goto usage_error;
2758                         }
2759                         migration_block = true;
2760                         break;
2761                 case 'c':
2762                         lsa.lsa_stripe_count = strtoul(optarg, &end, 0);
2763                         if (*end != '\0') {
2764                                 fprintf(stderr,
2765                                         "%s %s: invalid stripe count '%s'\n",
2766                                         progname, argv[0], optarg);
2767                                 goto usage_error;
2768                         }
2769
2770                         if (lsa.lsa_stripe_count == -1)
2771                                 lsa.lsa_stripe_count = LLAPI_LAYOUT_WIDE;
2772                         break;
2773                 case 'd':
2774                         /* delete the default striping pattern */
2775                         delete = 1;
2776                         if (opc == SO_MIRROR_SPLIT) {
2777                                 if (has_m_file) {
2778                                         fprintf(stderr,
2779                                               "%s %s: -d cannot used with -f\n",
2780                                                 progname, argv[0]);
2781                                         goto usage_error;
2782                                 }
2783                                 mirror_flags |= MF_DESTROY;
2784                         }
2785                         break;
2786                 case 'D':
2787                         if (!migrate_mode) {
2788                                 fprintf(stderr,
2789                                         "%s %s: -D|--non-direct is valid "
2790                                         "only for migrate command\n",
2791                                         progname, argv[0]);
2792                                 goto usage_error;
2793                         }
2794                         migration_flags |= MIGRATION_NONDIRECT;
2795                         break;
2796                 case 'E':
2797                         if (lsa.lsa_comp_end != 0) {
2798                                 result = comp_args_to_layout(lpp, &lsa, true);
2799                                 if (result) {
2800                                         fprintf(stderr,
2801                                                 "%s %s: invalid layout\n",
2802                                                 progname, argv[0]);
2803                                         goto usage_error;
2804                                 }
2805
2806                                 setstripe_args_init_inherit(&lsa);
2807                         }
2808
2809                         if (arg_is_eof(optarg)) {
2810                                 lsa.lsa_comp_end = LUSTRE_EOF;
2811                         } else {
2812                                 result = llapi_parse_size(optarg,
2813                                                         &lsa.lsa_comp_end,
2814                                                         &size_units, 0);
2815                                 if (result) {
2816                                         fprintf(stderr,
2817                                                 "%s %s: invalid component end '%s'\n",
2818                                                 progname, argv[0], optarg);
2819                                         goto usage_error;
2820                                 }
2821                         }
2822                         break;
2823                 case 'H':
2824                         if (!migrate_mode) {
2825                                 fprintf(stderr, "--mdt-hash is valid only for migrate command\n");
2826                                 return CMD_HELP;
2827                         }
2828
2829                         lsa.lsa_pattern = check_hashtype(optarg);
2830                         if (lsa.lsa_pattern == 0) {
2831                                 fprintf(stderr,
2832                                         "%s %s: bad stripe hash type '%s'\n",
2833                                         progname, argv[0], optarg);
2834                                 return CMD_HELP;
2835                         }
2836                         break;
2837                 case 'i':
2838                         lsa.lsa_stripe_off = strtol(optarg, &end, 0);
2839                         if (*end != '\0') {
2840                                 fprintf(stderr,
2841                                         "%s %s: invalid stripe offset '%s'\n",
2842                                         progname, argv[0], optarg);
2843                                 goto usage_error;
2844                         }
2845                         if (lsa.lsa_stripe_off == -1)
2846                                 lsa.lsa_stripe_off = LLAPI_LAYOUT_DEFAULT;
2847                         break;
2848                 case 'I':
2849                         comp_id = strtoul(optarg, &end, 0);
2850                         if (*end != '\0' || comp_id == 0 ||
2851                             comp_id > LCME_ID_MAX) {
2852                                 fprintf(stderr,
2853                                         "%s %s: invalid component ID '%s'\n",
2854                                         progname, argv[0], optarg);
2855                                 goto usage_error;
2856                         }
2857                         break;
2858                 case 'f':
2859                         if (opc != SO_MIRROR_EXTEND && opc != SO_MIRROR_SPLIT) {
2860                                 fprintf(stderr,
2861                                         "error: %s: invalid option: %s\n",
2862                                         progname, argv[optopt + 1]);
2863                                 goto usage_error;
2864                         }
2865                         if (opc == SO_MIRROR_EXTEND) {
2866                                 if (last_mirror == NULL) {
2867                                         fprintf(stderr,
2868                                 "error: %s: '-N' must exist in front of '%s'\n",
2869                                                 progname, argv[optopt + 1]);
2870                                         goto usage_error;
2871                                 }
2872                                 last_mirror->m_file = optarg;
2873                                 last_mirror->m_count = 1;
2874                         } else {
2875                                 /* mirror split */
2876                                 if (mirror_list == NULL)
2877                                         mirror_list = lfs_mirror_alloc();
2878                                 mirror_list->m_file = optarg;
2879                         }
2880                         has_m_file = true;
2881                         break;
2882                 case 'L':
2883                         if (strcmp(argv[optind - 1], "mdt") == 0) {
2884                                 /* Can be only the first component */
2885                                 if (layout != NULL) {
2886                                         result = -EINVAL;
2887                                         fprintf(stderr, "error: 'mdt' layout "
2888                                                 "can be only the first one\n");
2889                                         goto error;
2890                                 }
2891                                 if (lsa.lsa_comp_end > (1ULL << 30)) { /* 1Gb */
2892                                         result = -EFBIG;
2893                                         fprintf(stderr, "error: 'mdt' layout "
2894                                                 "size is too big\n");
2895                                         goto error;
2896                                 }
2897                                 lsa.lsa_pattern = LLAPI_LAYOUT_MDT;
2898                         } else if (strcmp(argv[optind - 1], "raid0") != 0) {
2899                                 result = -EINVAL;
2900                                 fprintf(stderr, "error: layout '%s' is "
2901                                         "unknown, supported layouts are: "
2902                                         "'mdt', 'raid0'\n", argv[optind]);
2903                                 goto error;
2904                         }
2905                         break;
2906                 case 'm':
2907                         if (!migrate_mode) {
2908                                 fprintf(stderr,
2909                                         "%s %s: -m|--mdt is valid only for migrate command\n",
2910                                         progname, argv[0]);
2911                                 goto usage_error;
2912                         }
2913                         migrate_mdt_mode = true;
2914                         lsa.lsa_nr_tgts = parse_targets(tgts,
2915                                                 sizeof(tgts) / sizeof(__u32),
2916                                                 lsa.lsa_nr_tgts, optarg);
2917                         if (lsa.lsa_nr_tgts < 0) {
2918                                 fprintf(stderr,
2919                                         "%s %s: invalid MDT target(s) '%s'\n",
2920                                         progname, argv[0], optarg);
2921                                 return CMD_HELP;
2922                         }
2923
2924                         lsa.lsa_tgts = tgts;
2925                         if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT)
2926                                 lsa.lsa_stripe_off = tgts[0];
2927                         break;
2928                 case 'n':
2929                         if (!migrate_mode) {
2930                                 fprintf(stderr,
2931                                         "%s %s: -n|--non-block valid only for migrate command\n",
2932                                         progname, argv[0]);
2933                                 goto usage_error;
2934                         }
2935                         migration_flags |= MIGRATION_NONBLOCK;
2936                         break;
2937                 case 'N':
2938                         if (opc == SO_SETSTRIPE) {
2939                                 opc = SO_MIRROR_CREATE;
2940                                 mirror_mode = true;
2941                         }
2942                         mirror_count = 1;
2943                         if (optarg != NULL) {
2944                                 mirror_count = strtoul(optarg, &end, 0);
2945                                 if (*end != '\0' || mirror_count == 0) {
2946                                         fprintf(stderr,
2947                                                 "error: %s: bad mirror count: %s\n",
2948                                                 progname, optarg);
2949                                         result = -EINVAL;
2950                                         goto error;
2951                                 }
2952                         }
2953
2954                         new_mirror = lfs_mirror_alloc();
2955                         new_mirror->m_count = mirror_count;
2956
2957                         if (mirror_list == NULL)
2958                                 mirror_list = new_mirror;
2959
2960                         if (last_mirror != NULL) {
2961                                 /* wrap up last mirror */
2962                                 if (lsa.lsa_comp_end == 0)
2963                                         lsa.lsa_comp_end = LUSTRE_EOF;
2964
2965                                 result = comp_args_to_layout(lpp, &lsa, true);
2966                                 if (result) {
2967                                         lfs_mirror_free(new_mirror);
2968                                         goto error;
2969                                 }
2970
2971                                 setstripe_args_init_inherit(&lsa);
2972
2973                                 last_mirror->m_next = new_mirror;
2974                         }
2975
2976                         last_mirror = new_mirror;
2977                         lpp = &last_mirror->m_layout;
2978                         break;
2979                 case 'o':
2980 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
2981                         if (strcmp(argv[optind - 1], "--ost-list") == 0)
2982                                 fprintf(stderr, "warning: '--ost-list' is "
2983                                         "deprecated, use '--ost' instead\n");
2984 #endif
2985                         lsa.lsa_nr_tgts = parse_targets(tgts,
2986                                                 sizeof(tgts) / sizeof(__u32),
2987                                                 lsa.lsa_nr_tgts, optarg);
2988                         if (lsa.lsa_nr_tgts < 0) {
2989                                 fprintf(stderr,
2990                                         "%s %s: invalid OST target(s) '%s'\n",
2991                                         progname, argv[0], optarg);
2992                                 goto usage_error;
2993                         }
2994
2995                         lsa.lsa_tgts = tgts;
2996                         if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT)
2997                                 lsa.lsa_stripe_off = tgts[0];
2998                         break;
2999                 case 'p':
3000                         if (optarg == NULL)
3001                                 goto usage_error;
3002                         lsa.lsa_pool_name = optarg;
3003
3004                         if (strlen(lsa.lsa_pool_name) == 0 ||
3005                             strncmp(lsa.lsa_pool_name, "none",
3006                                     LOV_MAXPOOLNAME) == 0)
3007                                 lsa.lsa_pool_name = NULL;
3008                         break;
3009                 case 'S':
3010                         result = llapi_parse_size(optarg, &lsa.lsa_stripe_size,
3011                                                   &size_units, 0);
3012                         if (result) {
3013                                 fprintf(stderr,
3014                                         "%s %s: invalid stripe size '%s'\n",
3015                                         progname, argv[0], optarg);
3016                                 goto usage_error;
3017                         }
3018                         break;
3019                 case 'v':
3020                         if (!migrate_mode) {
3021                                 fprintf(stderr,
3022                                         "%s %s: -v|--verbose valid only for migrate command\n",
3023                                         progname, argv[0]);
3024                                 goto usage_error;
3025                         }
3026                         migrate_mdt_param.fp_verbose = VERBOSE_DETAIL;
3027                         break;
3028                 case 'y':
3029                         from_yaml = true;
3030                         template = optarg;
3031                         break;
3032                 default:
3033                         fprintf(stderr, "%s %s: unrecognized option '%s'\n",
3034                                 progname, argv[0], argv[optind - 1]);
3035                         goto usage_error;
3036                 }
3037         }
3038
3039         fname = argv[optind];
3040
3041         if (optind == argc) {
3042                 fprintf(stderr, "%s %s: FILE must be specified\n",
3043                         progname, argv[0]);
3044                 goto usage_error;
3045         }
3046
3047         if (mirror_mode && mirror_count == 0) {
3048                 fprintf(stderr,
3049                         "error: %s: --mirror-count|-N option is required\n",
3050                         progname);
3051                 result = -EINVAL;
3052                 goto error;
3053         }
3054
3055         if (mirror_mode) {
3056                 if (lsa.lsa_comp_end == 0)
3057                         lsa.lsa_comp_end = LUSTRE_EOF;
3058         }
3059
3060         if (lsa.lsa_comp_end != 0) {
3061                 result = comp_args_to_layout(lpp, &lsa, true);
3062                 if (result)
3063                         goto error;
3064         }
3065
3066         if (mirror_flags & MF_NO_VERIFY) {
3067                 if (opc != SO_MIRROR_EXTEND) {
3068                         fprintf(stderr,
3069                                 "error: %s: --no-verify is valid only for lfs mirror extend command\n",
3070                                 progname);
3071                         result = -EINVAL;
3072                         goto error;
3073                 } else if (!has_m_file) {
3074                         fprintf(stderr,
3075                                 "error: %s: --no-verify must be specified with -f <victim_file> option\n",
3076                                 progname);
3077                         result = -EINVAL;
3078                         goto error;
3079                 }
3080         }
3081
3082         /* Only LCME_FL_INIT flags is used in PFL, and it shouldn't be
3083          * altered by user space tool, so we don't need to support the
3084          * --component-set for this moment. */
3085         if (comp_set && !comp_id) {
3086                 fprintf(stderr, "%s %s: --component-set doesn't have component-id set\n",
3087                         progname, argv[0]);
3088                 goto usage_error;
3089         }
3090
3091         if ((delete + comp_set + comp_del + comp_add) > 1) {
3092                 fprintf(stderr,
3093                         "%s %s: options --component-set, --component-del, --component-add and -d are mutually exclusive\n",
3094                         progname, argv[0]);
3095                 goto usage_error;
3096         }
3097
3098         if (delete && (setstripe_args_specified(&lsa) || comp_id != 0 ||
3099                        lsa.lsa_comp_flags != 0 || layout != NULL)) {
3100                 fprintf(stderr,
3101                         "%s %s: option -d is mutually exclusive with -s, -c, -o, -p, -I, -F and -E options\n",
3102                         progname, argv[0]);
3103                 goto usage_error;
3104         }
3105
3106         if ((comp_set || comp_del) &&
3107             (setstripe_args_specified(&lsa) || layout != NULL)) {
3108                 fprintf(stderr,
3109                         "%s %s: options --component-del and --component-set are mutually exclusive when used with -c, -E, -o, -p, or -s\n",
3110                         progname, argv[0]);
3111                 goto usage_error;
3112         }
3113
3114         if (comp_del && comp_id != 0 && lsa.lsa_comp_flags != 0) {
3115                 fprintf(stderr,
3116                         "%s %s: options -I and -F are mutually exclusive when used with --component-del\n",
3117                         progname, argv[0]);
3118                 goto usage_error;
3119         }
3120
3121         if (comp_add || comp_del) {
3122                 struct stat st;
3123
3124                 result = lstat(fname, &st);
3125                 if (result == 0 && S_ISDIR(st.st_mode)) {
3126                         fprintf(stderr,
3127                                 "%s setstripe: cannot use --component-add or --component-del for directory\n",
3128                                 progname);
3129                         goto usage_error;
3130                 }
3131
3132                 if (mirror_mode) {
3133                         fprintf(stderr, "error: %s: can't use --component-add "
3134                                 "or --component-del for mirror operation\n",
3135                                 progname);
3136                         goto usage_error;
3137                 }
3138         }
3139
3140         if (comp_add) {
3141                 if (layout == NULL) {
3142                         fprintf(stderr,
3143                                 "%s %s: option -E must be specified with --component-add\n",
3144                                 progname, argv[0]);
3145                         goto usage_error;
3146                 }
3147
3148                 result = adjust_first_extent(fname, layout);
3149                 if (result == -ENODATA)
3150                         comp_add = 0;
3151                 else if (result != 0)
3152                         goto error;
3153         }
3154
3155         if (from_yaml && from_copy) {
3156                 fprintf(stderr,
3157                         "%s: can't specify --yaml and --copy together\n",
3158                         progname);
3159                 goto error;
3160         }
3161
3162         if ((from_yaml || from_copy) &&
3163             (setstripe_args_specified(&lsa) || layout != NULL)) {
3164                 fprintf(stderr, "error: %s: can't specify --yaml with "
3165                         "-c, -S, -i, -o, -p or -E options.\n",
3166                         argv[0]);
3167                 goto error;
3168         }
3169
3170         if ((migration_flags & MIGRATION_NONBLOCK) && migration_block) {
3171                 fprintf(stderr,
3172                         "%s %s: options --non-block and --block are mutually exclusive\n",
3173                         progname, argv[0]);
3174                 goto usage_error;
3175         }
3176
3177         if (!comp_del && !comp_set && (opc != SO_MIRROR_SPLIT) &&
3178             comp_id != 0) {
3179                 fprintf(stderr,
3180                 "%s %s: option -I can only be used with --component-del or --component-set or lfs mirror split\n",
3181                         progname, argv[0]);
3182                 goto usage_error;
3183         }
3184
3185         if (migrate_mdt_mode) {
3186                 struct lmv_user_md *lmu;
3187
3188                 /* initialize migrate mdt parameters */
3189                 lmu = calloc(1, lmv_user_md_size(lsa.lsa_nr_tgts,
3190                                                  LMV_USER_MAGIC_SPECIFIC));
3191                 if (!lmu) {
3192                         fprintf(stderr,
3193                                 "%s %s: cannot allocate memory for lmv_user_md: %s\n",
3194                                 progname, argv[0], strerror(ENOMEM));
3195                         result = -ENOMEM;
3196                         goto error;
3197                 }
3198                 if (lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT)
3199                         lmu->lum_stripe_count = lsa.lsa_stripe_count;
3200                 if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT) {
3201                         fprintf(stderr,
3202                                 "%s %s: migrate should specify MDT index\n",
3203                                 progname, argv[0]);
3204                         free(lmu);
3205                         goto usage_error;
3206                 }
3207                 lmu->lum_stripe_offset = lsa.lsa_stripe_off;
3208                 if (lsa.lsa_pattern != LLAPI_LAYOUT_RAID0)
3209                         lmu->lum_hash_type = lsa.lsa_pattern;
3210                 else
3211                         lmu->lum_hash_type = LMV_HASH_TYPE_FNV_1A_64;
3212                 if (lsa.lsa_pool_name)
3213                         strncpy(lmu->lum_pool_name, lsa.lsa_pool_name,
3214                                 sizeof(lmu->lum_pool_name));
3215                 if (lsa.lsa_nr_tgts > 1) {
3216                         int i;
3217
3218                         if (lsa.lsa_stripe_count > 0 &&
3219                             lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT &&
3220                             lsa.lsa_stripe_count != lsa.lsa_nr_tgts) {
3221                                 fprintf(stderr,
3222                                         "error: %s: stripe count %lld doesn't match the number of MDTs: %d\n",
3223                                         progname, lsa.lsa_stripe_count,
3224                                                 lsa.lsa_nr_tgts);
3225                                 free(lmu);
3226                                 goto usage_error;
3227                         }
3228
3229                         lmu->lum_magic = LMV_USER_MAGIC_SPECIFIC;
3230                         lmu->lum_stripe_count = lsa.lsa_nr_tgts;
3231                         for (i = 0; i < lsa.lsa_nr_tgts; i++)
3232                                 lmu->lum_objects[i].lum_mds = lsa.lsa_tgts[i];
3233                 } else {
3234                         lmu->lum_magic = LMV_USER_MAGIC;
3235                 }
3236
3237                 migrate_mdt_param.fp_lmv_md = lmu;
3238                 migrate_mdt_param.fp_migrate = 1;
3239         } else if (layout == NULL) {
3240                 /* initialize stripe parameters */
3241                 param = calloc(1, offsetof(typeof(*param),
3242                                lsp_osts[lsa.lsa_nr_tgts]));
3243                 if (param == NULL) {
3244                         fprintf(stderr,
3245                                 "%s %s: cannot allocate memory for parameters: %s\n",
3246                                 progname, argv[0], strerror(ENOMEM));
3247                         result = -ENOMEM;
3248                         goto error;
3249                 }
3250
3251                 if (lsa.lsa_stripe_size != LLAPI_LAYOUT_DEFAULT)
3252                         param->lsp_stripe_size = lsa.lsa_stripe_size;
3253                 if (lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT) {
3254                         if (lsa.lsa_stripe_count == LLAPI_LAYOUT_WIDE)
3255                                 param->lsp_stripe_count = -1;
3256                         else
3257                                 param->lsp_stripe_count = lsa.lsa_stripe_count;
3258                 }
3259                 if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT)
3260                         param->lsp_stripe_offset = -1;
3261                 else
3262                         param->lsp_stripe_offset = lsa.lsa_stripe_off;
3263                 param->lsp_pool = lsa.lsa_pool_name;
3264                 param->lsp_is_specific = false;
3265                 if (lsa.lsa_nr_tgts > 0) {
3266                         if (lsa.lsa_stripe_count > 0 &&
3267                             lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT &&
3268                             lsa.lsa_stripe_count != LLAPI_LAYOUT_WIDE &&
3269                             lsa.lsa_nr_tgts != lsa.lsa_stripe_count) {
3270                                 fprintf(stderr, "error: %s: stripe count %lld "
3271                                         "doesn't match the number of OSTs: %d\n"
3272                                         , argv[0], lsa.lsa_stripe_count,
3273                                         lsa.lsa_nr_tgts);
3274                                 free(param);
3275                                 goto usage_error;
3276                         }
3277
3278                         param->lsp_is_specific = true;
3279                         param->lsp_stripe_count = lsa.lsa_nr_tgts;
3280                         memcpy(param->lsp_osts, tgts,
3281                                sizeof(*tgts) * lsa.lsa_nr_tgts);
3282                 }
3283         }
3284
3285         if (from_yaml) {
3286                 /* generate a layout from a YAML template */
3287                 result = lfs_comp_create_from_yaml(template, &layout,
3288                                                    &lsa, tgts);
3289                 if (result) {
3290                         fprintf(stderr, "error: %s: can't create composite "
3291                                 "layout from template file %s\n",
3292                                 argv[0], template);
3293                         goto error;
3294                 }
3295         } else if (from_copy) {
3296                 layout = llapi_layout_get_by_path(template, 0);
3297                 if (layout == NULL) {
3298                         fprintf(stderr,
3299                             "%s: can't create composite layout from file %s.\n",
3300                                 progname, template);
3301                         goto error;
3302                 }
3303         }
3304
3305         for (fname = argv[optind]; fname != NULL; fname = argv[++optind]) {
3306                 if (migrate_mdt_mode) {
3307                         result = llapi_migrate_mdt(fname, &migrate_mdt_param);
3308                 } else if (migrate_mode) {
3309                         result = lfs_migrate(fname, migration_flags, param,
3310                                              layout);
3311                 } else if (comp_set != 0) {
3312                         result = lfs_component_set(fname, comp_id,
3313                                                    lsa.lsa_comp_flags,
3314                                                    lsa.lsa_comp_neg_flags);
3315                 } else if (comp_del != 0) {
3316                         result = lfs_component_del(fname, comp_id,
3317                                                    lsa.lsa_comp_flags,
3318                                                    lsa.lsa_comp_neg_flags);
3319                 } else if (comp_add != 0) {
3320                         result = lfs_component_add(fname, layout);
3321                 } else if (opc == SO_MIRROR_CREATE) {
3322                         result = mirror_create(fname, mirror_list);
3323                 } else if (opc == SO_MIRROR_EXTEND) {
3324                         result = mirror_extend(fname, mirror_list,
3325                                                mirror_flags);
3326                 } else if (opc == SO_MIRROR_SPLIT) {
3327                         if (mirror_id == 0 && comp_id == 0) {
3328                                 fprintf(stderr,
3329                         "%s %s: no mirror id or component id is specified\n",
3330                                         progname, argv[0]);
3331                                 goto usage_error;
3332                         }
3333                         if (mirror_id != 0)
3334                                 comp_id = mirror_id;
3335                         else
3336                                 mirror_flags |= MF_COMP_ID;
3337                         result = mirror_split(fname, comp_id, mirror_flags,
3338                                               has_m_file ? mirror_list->m_file :
3339                                               NULL);
3340                 } else if (layout != NULL) {
3341                         result = lfs_component_create(fname, O_CREAT | O_WRONLY,
3342                                                       0666, layout);
3343                         if (result >= 0) {
3344                                 close(result);
3345                                 result = 0;
3346                         }
3347                 } else {
3348                         result = llapi_file_open_param(fname,
3349                                                        O_CREAT | O_WRONLY,
3350                                                        0666, param);
3351                         if (result >= 0) {
3352                                 close(result);
3353                                 result = 0;
3354                         }
3355                 }
3356                 if (result) {
3357                         /* Save the first error encountered. */
3358                         if (result2 == 0)
3359                                 result2 = result;
3360                         continue;
3361                 }
3362         }
3363
3364         free(param);
3365         free(migrate_mdt_param.fp_lmv_md);
3366         llapi_layout_free(layout);
3367         lfs_mirror_list_free(mirror_list);
3368         return result2;
3369 usage_error:
3370         result = CMD_HELP;
3371 error:
3372         llapi_layout_free(layout);
3373         lfs_mirror_list_free(mirror_list);
3374         return result;
3375 }
3376
3377 static int lfs_poollist(int argc, char **argv)
3378 {
3379         if (argc != 2)
3380                 return CMD_HELP;
3381
3382         return llapi_poollist(argv[1]);
3383 }
3384
3385 static int set_time(time_t *time, time_t *set, char *str)
3386 {
3387         time_t t;
3388         int res = 0;
3389         char *endptr;
3390
3391         if (str[0] == '+')
3392                 res = 1;
3393         else if (str[0] == '-')
3394                 res = -1;
3395
3396         if (res)
3397                 str++;
3398
3399         t = strtol(str, &endptr, 0);
3400         if (*endptr != '\0') {
3401                 fprintf(stderr,
3402                         "%s find: bad time '%s': %s\n",
3403                         progname, str, strerror(EINVAL));
3404                 return INT_MAX;
3405         }
3406         if (*time < t * 24 * 60 * 60) {
3407                 if (res != 0)
3408                         str--;
3409                 fprintf(stderr,
3410                         "%s find: bad time '%s': too large\n",
3411                         progname, str);
3412                 return INT_MAX;
3413         }
3414
3415         *set = *time - t * 24 * 60 * 60;
3416         return res;
3417 }
3418
3419 static int name2uid(unsigned int *id, const char *name)
3420 {
3421         struct passwd *passwd;
3422
3423         passwd = getpwnam(name);
3424         if (passwd == NULL)
3425                 return -ENOENT;
3426         *id = passwd->pw_uid;
3427
3428         return 0;
3429 }
3430
3431 static int name2gid(unsigned int *id, const char *name)
3432 {
3433         struct group *group;
3434
3435         group = getgrnam(name);
3436         if (group == NULL)
3437                 return -ENOENT;
3438         *id = group->gr_gid;
3439
3440         return 0;
3441 }
3442
3443 static inline int name2projid(unsigned int *id, const char *name)
3444 {
3445         return -ENOTSUP;
3446 }
3447
3448 static int uid2name(char **name, unsigned int id)
3449 {
3450         struct passwd *passwd;
3451
3452         passwd = getpwuid(id);
3453         if (passwd == NULL)
3454                 return -ENOENT;
3455         *name = passwd->pw_name;
3456
3457         return 0;
3458 }
3459
3460 static inline int gid2name(char **name, unsigned int id)
3461 {
3462         struct group *group;
3463
3464         group = getgrgid(id);
3465         if (group == NULL)
3466                 return -ENOENT;
3467         *name = group->gr_name;
3468
3469         return 0;
3470 }
3471
3472 static int name2layout(__u32 *layout, char *name)
3473 {
3474         char *ptr, *layout_name;
3475
3476         *layout = 0;
3477         for (ptr = name; ; ptr = NULL) {
3478                 layout_name = strtok(ptr, ",");
3479                 if (layout_name == NULL)
3480                         break;
3481                 if (strcmp(layout_name, "released") == 0)
3482                         *layout |= LOV_PATTERN_F_RELEASED;
3483                 else if (strcmp(layout_name, "raid0") == 0)
3484                         *layout |= LOV_PATTERN_RAID0;
3485                 else if (strcmp(layout_name, "mdt") == 0)
3486                         *layout |= LOV_PATTERN_MDT;
3487                 else
3488                         return -1;
3489         }
3490         return 0;
3491 }
3492
3493 static int lfs_find(int argc, char **argv)
3494 {
3495         int c, rc;
3496         int ret = 0;
3497         time_t t;
3498         struct find_param param = {
3499                 .fp_max_depth = -1,
3500                 .fp_quiet = 1,
3501         };
3502         struct option long_opts[] = {
3503         { .val = 'A',   .name = "atime",        .has_arg = required_argument },
3504         { .val = 'b',   .name = "blocks",       .has_arg = required_argument },
3505         { .val = LFS_COMP_COUNT_OPT,
3506                         .name = "comp-count",   .has_arg = required_argument },
3507         { .val = LFS_COMP_COUNT_OPT,
3508                         .name = "component-count",
3509                                                 .has_arg = required_argument },
3510         { .val = LFS_COMP_FLAGS_OPT,
3511                         .name = "comp-flags",   .has_arg = required_argument },
3512         { .val = LFS_COMP_FLAGS_OPT,
3513                         .name = "component-flags",
3514                                                 .has_arg = required_argument },
3515         { .val = LFS_COMP_START_OPT,
3516                         .name = "comp-start",   .has_arg = required_argument },
3517         { .val = LFS_COMP_START_OPT,
3518                         .name = "component-start",
3519                                                 .has_arg = required_argument },
3520         { .val = LFS_MIRROR_STATE_OPT,
3521                         .name = "mirror-state", .has_arg = required_argument },
3522         { .val = 'c',   .name = "stripe-count", .has_arg = required_argument },
3523         { .val = 'c',   .name = "stripe_count", .has_arg = required_argument },
3524         { .val = 'C',   .name = "ctime",        .has_arg = required_argument },
3525 /* getstripe { .val = 'd', .name = "directory", .has_arg = no_argument }, */
3526         { .val = 'D',   .name = "maxdepth",     .has_arg = required_argument },
3527         { .val = 'E',   .name = "comp-end",     .has_arg = required_argument },
3528         { .val = 'E',   .name = "component-end",
3529                                                 .has_arg = required_argument },
3530 /* find { .val = 'F',   .name = "fid",          .has_arg = no_argument }, */
3531         { .val = 'g',   .name = "gid",          .has_arg = required_argument },
3532         { .val = 'G',   .name = "group",        .has_arg = required_argument },
3533         { .val = 'H',   .name = "mdt-hash",     .has_arg = required_argument },
3534         { .val = 'i',   .name = "stripe-index", .has_arg = required_argument },
3535         { .val = 'i',   .name = "stripe_index", .has_arg = required_argument },
3536 /* getstripe { .val = 'I', .name = "comp-id",   .has_arg = required_argument }*/
3537         { .val = 'L',   .name = "layout",       .has_arg = required_argument },
3538         { .val = 'm',   .name = "mdt",          .has_arg = required_argument },
3539         { .val = 'm',   .name = "mdt-index",    .has_arg = required_argument },
3540         { .val = 'm',   .name = "mdt_index",    .has_arg = required_argument },
3541         { .val = 'M',   .name = "mtime",        .has_arg = required_argument },
3542         { .val = 'n',   .name = "name",         .has_arg = required_argument },
3543         { .val = 'N',   .name = "mirror-count", .has_arg = required_argument },
3544 /* find { .val = 'o'    .name = "or", .has_arg = no_argument }, like find(1) */
3545         { .val = 'O',   .name = "obd",          .has_arg = required_argument },
3546         { .val = 'O',   .name = "ost",          .has_arg = required_argument },
3547         /* no short option for pool yet, can be 'p' after 2.18 */
3548         { .val = LFS_POOL_OPT,
3549                         .name = "pool",         .has_arg = required_argument },
3550         { .val = '0',   .name = "print0",       .has_arg = no_argument },
3551         { .val = 'P',   .name = "print",        .has_arg = no_argument },
3552         { .val = LFS_PROJID_OPT,
3553                         .name = "projid",       .has_arg = required_argument },
3554 /* getstripe { .val = 'q', .name = "quiet",     .has_arg = no_argument }, */
3555 /* getstripe { .val = 'r', .name = "recursive", .has_arg = no_argument }, */
3556 /* getstripe { .val = 'R', .name = "raw",       .has_arg = no_argument }, */
3557         { .val = 's',   .name = "size",         .has_arg = required_argument },
3558         { .val = 'S',   .name = "stripe-size",  .has_arg = required_argument },
3559         { .val = 'S',   .name = "stripe_size",  .has_arg = required_argument },
3560         { .val = 't',   .name = "type",         .has_arg = required_argument },
3561         { .val = 'T',   .name = "mdt-count",    .has_arg = required_argument },
3562         { .val = 'u',   .name = "uid",          .has_arg = required_argument },
3563         { .val = 'U',   .name = "user",         .has_arg = required_argument },
3564 /* getstripe { .val = 'v', .name = "verbose",   .has_arg = no_argument }, */
3565 /* getstripe { .val = 'y', .name = "yaml",      .has_arg = no_argument }, */
3566         { .name = NULL } };
3567         int pathstart = -1;
3568         int pathend = -1;
3569         int neg_opt = 0;
3570         time_t *xtime;
3571         int *xsign;
3572         int isoption;
3573         char *endptr;
3574
3575         time(&t);
3576
3577         /* when getopt_long_only() hits '!' it returns 1, puts "!" in optarg */
3578         while ((c = getopt_long_only(argc, argv,
3579                         "-0A:b:c:C:D:E:g:G:H:i:L:m:M:n:N:O:Ppqrs:S:t:T:u:U:v",
3580                         long_opts, NULL)) >= 0) {
3581                 xtime = NULL;
3582                 xsign = NULL;
3583                 if (neg_opt)
3584                         --neg_opt;
3585                 /* '!' is part of option */
3586                 /* when getopt_long_only() finds a string which is not
3587                  * an option nor a known option argument it returns 1
3588                  * in that case if we already have found pathstart and pathend
3589                  * (i.e. we have the list of pathnames),
3590                  * the only supported value is "!"
3591                  */
3592                 isoption = (c != 1) || (strcmp(optarg, "!") == 0);
3593                 if (!isoption && pathend != -1) {
3594                         fprintf(stderr, "err: %s: filename|dirname must either "
3595                                         "precede options or follow options\n",
3596                                         argv[0]);
3597                         ret = CMD_HELP;
3598                         goto err;
3599                 }
3600                 if (!isoption && pathstart == -1)
3601                         pathstart = optind - 1;
3602                 if (isoption && pathstart != -1 && pathend == -1)
3603                         pathend = optind - 2;
3604                 switch (c) {
3605                 case 0:
3606                         /* Long options. */
3607                         break;
3608                 case 1:
3609                         /* unknown; opt is "!" or path component,
3610                          * checking done above.
3611                          */
3612                         if (strcmp(optarg, "!") == 0)
3613                                 neg_opt = 2;
3614                         break;
3615                 case 'A':
3616                         xtime = &param.fp_atime;
3617                         xsign = &param.fp_asign;
3618                         param.fp_exclude_atime = !!neg_opt;
3619                         /* no break, this falls through to 'C' for ctime */
3620                 case 'C':
3621                         if (c == 'C') {
3622                                 xtime = &param.fp_ctime;
3623                                 xsign = &param.fp_csign;
3624                                 param.fp_exclude_ctime = !!neg_opt;
3625                         }
3626                         /* no break, this falls through to 'M' for mtime */
3627                 case 'M':
3628                         if (c == 'M') {
3629                                 xtime = &param.fp_mtime;
3630                                 xsign = &param.fp_msign;
3631                                 param.fp_exclude_mtime = !!neg_opt;
3632                         }
3633                         rc = set_time(&t, xtime, optarg);
3634                         if (rc == INT_MAX) {
3635                                 ret = -1;
3636                                 goto err;
3637                         }
3638                         if (rc)
3639                                 *xsign = rc;
3640                         break;
3641                 case 'b':
3642                         if (optarg[0] == '+') {
3643                                 param.fp_blocks_sign = -1;
3644                                 optarg++;
3645                         } else if (optarg[0] == '-') {
3646                                 param.fp_blocks_sign =  1;
3647                                 optarg++;
3648                         }
3649
3650                         param.fp_blocks_units = 1024;
3651                         ret = llapi_parse_size(optarg, &param.fp_blocks,
3652                                                &param.fp_blocks_units, 0);
3653                         if (ret) {
3654                                 fprintf(stderr, "error: bad blocks '%s'\n",
3655                                         optarg);
3656                                 goto err;
3657                         }
3658                         param.fp_check_blocks = 1;
3659                         param.fp_exclude_blocks = !!neg_opt;
3660                         break;
3661                 case LFS_COMP_COUNT_OPT:
3662                         if (optarg[0] == '+') {
3663                                 param.fp_comp_count_sign = -1;
3664                                 optarg++;
3665                         } else if (optarg[0] == '-') {
3666                                 param.fp_comp_count_sign =  1;
3667                                 optarg++;
3668                         }
3669
3670                         param.fp_comp_count = strtoul(optarg, &endptr, 0);
3671                         if (*endptr != '\0') {
3672                                 fprintf(stderr, "error: bad component count "
3673                                         "'%s'\n", optarg);
3674                                 goto err;
3675                         }
3676                         param.fp_check_comp_count = 1;
3677                         param.fp_exclude_comp_count = !!neg_opt;
3678                         break;
3679                 case LFS_COMP_FLAGS_OPT:
3680                         rc = comp_str2flags(optarg, &param.fp_comp_flags,
3681                                             &param.fp_comp_neg_flags);
3682                         if (rc) {
3683                                 fprintf(stderr, "error: bad component flags "
3684                                         "'%s'\n", optarg);
3685                                 goto err;
3686                         }
3687                         param.fp_check_comp_flags = 1;
3688                         if (neg_opt) {
3689                                 __u32 flags = param.fp_comp_neg_flags;
3690                                 param.fp_comp_neg_flags = param.fp_comp_flags;
3691                                 param.fp_comp_flags = flags;
3692                         }
3693                         break;
3694                 case LFS_COMP_START_OPT:
3695                         if (optarg[0] == '+') {
3696                                 param.fp_comp_start_sign = -1;
3697                                 optarg++;
3698                         } else if (optarg[0] == '-') {
3699                                 param.fp_comp_start_sign =  1;
3700                                 optarg++;
3701                         }
3702
3703                         rc = llapi_parse_size(optarg, &param.fp_comp_start,
3704                                               &param.fp_comp_start_units, 0);
3705                         if (rc) {
3706                                 fprintf(stderr, "error: bad component start "
3707                                         "'%s'\n", optarg);
3708                                 goto err;
3709                         }
3710                         param.fp_check_comp_start = 1;
3711                         param.fp_exclude_comp_start = !!neg_opt;
3712                         break;
3713                 case LFS_MIRROR_STATE_OPT:
3714                         rc = mirror_str2state(optarg, &param.fp_mirror_state,
3715                                               &param.fp_mirror_neg_state);
3716                         if (rc) {
3717                                 fprintf(stderr,
3718                                         "error: bad mirrored file state '%s'\n",
3719                                         optarg);
3720                                 goto err;
3721                         }
3722                         param.fp_check_mirror_state = 1;
3723                         if (neg_opt) {
3724                                 __u16 state = param.fp_mirror_neg_state;
3725                                 param.fp_mirror_neg_state =
3726                                         param.fp_mirror_state;
3727                                 param.fp_mirror_state = state;
3728                         }
3729                         break;
3730                 case 'c':
3731                         if (optarg[0] == '+') {
3732                                 param.fp_stripe_count_sign = -1;
3733                                 optarg++;
3734                         } else if (optarg[0] == '-') {
3735                                 param.fp_stripe_count_sign =  1;
3736                                 optarg++;
3737                         }
3738
3739                         param.fp_stripe_count = strtoul(optarg, &endptr, 0);
3740                         if (*endptr != '\0') {
3741                                 fprintf(stderr,"error: bad stripe_count '%s'\n",
3742                                         optarg);
3743                                 ret = -1;
3744                                 goto err;
3745                         }
3746                         param.fp_check_stripe_count = 1;
3747                         param.fp_exclude_stripe_count = !!neg_opt;
3748                         break;
3749                 case 'D':
3750                         param.fp_max_depth = strtol(optarg, 0, 0);
3751                         break;
3752                 case 'E':
3753                         if (optarg[0] == '+') {
3754                                 param.fp_comp_end_sign = -1;
3755                                 optarg++;
3756                         } else if (optarg[0] == '-') {
3757                                 param.fp_comp_end_sign =  1;
3758                                 optarg++;
3759                         }
3760
3761                         if (arg_is_eof(optarg)) {
3762                                 param.fp_comp_end = LUSTRE_EOF;
3763                                 param.fp_comp_end_units = 1;
3764                                 rc = 0;
3765                         } else {
3766                                 rc = llapi_parse_size(optarg,
3767                                                 &param.fp_comp_end,
3768                                                 &param.fp_comp_end_units, 0);
3769                         }
3770                         if (rc) {
3771                                 fprintf(stderr, "error: bad component end "
3772                                         "'%s'\n", optarg);
3773                                 goto err;
3774                         }
3775                         param.fp_check_comp_end = 1;
3776                         param.fp_exclude_comp_end = !!neg_opt;
3777                         break;
3778                 case 'g':
3779                 case 'G':
3780                         rc = name2gid(&param.fp_gid, optarg);
3781                         if (rc) {
3782                                 param.fp_gid = strtoul(optarg, &endptr, 10);
3783                                 if (*endptr != '\0') {
3784                                         fprintf(stderr, "Group/GID: %s cannot "
3785                                                 "be found.\n", optarg);
3786                                         ret = -1;
3787                                         goto err;
3788                                 }
3789                         }
3790                         param.fp_exclude_gid = !!neg_opt;
3791                         param.fp_check_gid = 1;
3792                         break;
3793                 case 'H':
3794                         param.fp_hash_type = check_hashtype(optarg);
3795                         if (param.fp_hash_type == 0) {
3796                                 fprintf(stderr, "error: bad hash_type '%s'\n",
3797                                         optarg);
3798                                 ret = -1;
3799                                 goto err;
3800                         }
3801                         param.fp_check_hash_type = 1;
3802                         param.fp_exclude_hash_type = !!neg_opt;
3803                         break;
3804                 case 'L':
3805                         ret = name2layout(&param.fp_layout, optarg);
3806                         if (ret)
3807                                 goto err;
3808                         param.fp_exclude_layout = !!neg_opt;
3809                         param.fp_check_layout = 1;
3810                         break;
3811                 case 'u':
3812                 case 'U':
3813                         rc = name2uid(&param.fp_uid, optarg);
3814                         if (rc) {
3815                                 param.fp_uid = strtoul(optarg, &endptr, 10);
3816                                 if (*endptr != '\0') {
3817                                         fprintf(stderr, "User/UID: %s cannot "
3818                                                 "be found.\n", optarg);
3819                                         ret = -1;
3820                                         goto err;
3821                                 }
3822                         }
3823                         param.fp_exclude_uid = !!neg_opt;
3824                         param.fp_check_uid = 1;
3825                         break;
3826                 case 'n':
3827                         param.fp_pattern = (char *)optarg;
3828                         param.fp_exclude_pattern = !!neg_opt;
3829                         break;
3830                 case 'N':
3831                         if (optarg[0] == '+') {
3832                                 param.fp_mirror_count_sign = -1;
3833                                 optarg++;
3834                         } else if (optarg[0] == '-') {
3835                                 param.fp_mirror_count_sign =  1;
3836                                 optarg++;
3837                         }
3838
3839                         param.fp_mirror_count = strtoul(optarg, &endptr, 0);
3840                         if (*endptr != '\0') {
3841                                 fprintf(stderr,
3842                                         "error: bad mirror count '%s'\n",
3843                                         optarg);
3844                                 goto err;
3845                         }
3846                         param.fp_check_mirror_count = 1;
3847                         param.fp_exclude_mirror_count = !!neg_opt;
3848                         break;
3849                 case 'm':
3850                 case 'i':
3851                 case 'O': {
3852                         char *buf, *token, *next, *p;
3853                         int len = 1;
3854                         void *tmp;
3855
3856                         buf = strdup(optarg);
3857                         if (buf == NULL) {
3858                                 ret = -ENOMEM;
3859                                 goto err;
3860                         }
3861
3862                         param.fp_exclude_obd = !!neg_opt;
3863
3864                         token = buf;
3865                         while (token && *token) {
3866                                 token = strchr(token, ',');
3867                                 if (token) {
3868                                         len++;
3869                                         token++;
3870                                 }
3871                         }
3872                         if (c == 'm') {
3873                                 param.fp_exclude_mdt = !!neg_opt;
3874                                 param.fp_num_alloc_mdts += len;
3875                                 tmp = realloc(param.fp_mdt_uuid,
3876                                               param.fp_num_alloc_mdts *
3877                                               sizeof(*param.fp_mdt_uuid));
3878                                 if (tmp == NULL) {
3879                                         ret = -ENOMEM;
3880                                         goto err_free;
3881                                 }
3882
3883                                 param.fp_mdt_uuid = tmp;
3884                         } else {
3885                                 param.fp_exclude_obd = !!neg_opt;
3886                                 param.fp_num_alloc_obds += len;
3887                                 tmp = realloc(param.fp_obd_uuid,
3888                                               param.fp_num_alloc_obds *
3889                                               sizeof(*param.fp_obd_uuid));
3890                                 if (tmp == NULL) {
3891                                         ret = -ENOMEM;
3892                                         goto err_free;
3893                                 }
3894
3895                                 param.fp_obd_uuid = tmp;
3896                         }
3897                         for (token = buf; token && *token; token = next) {
3898                                 struct obd_uuid *puuid;
3899                                 if (c == 'm') {
3900                                         puuid =
3901                                         &param.fp_mdt_uuid[param.fp_num_mdts++];
3902                                 } else {
3903                                         puuid =
3904                                         &param.fp_obd_uuid[param.fp_num_obds++];
3905                                 }
3906                                 p = strchr(token, ',');
3907                                 next = 0;
3908                                 if (p) {
3909                                         *p = 0;
3910                                         next = p+1;
3911                                 }
3912
3913                                 if (strlen(token) > sizeof(puuid->uuid) - 1) {
3914                                         ret = -E2BIG;
3915                                         goto err_free;
3916                                 }
3917
3918                                 strncpy(puuid->uuid, token,
3919                                         sizeof(puuid->uuid));
3920                         }
3921 err_free:
3922                         if (buf)
3923                                 free(buf);
3924                         break;
3925                 }
3926 #if LUSTRE_VERSION_CODE >= OBD_OCD_VERSION(2, 18, 53, 0)
3927                 case 'p':
3928 #endif
3929                 case LFS_POOL_OPT:
3930                         if (strlen(optarg) > LOV_MAXPOOLNAME) {
3931                                 fprintf(stderr,
3932                                         "Pool name %s is too long (max %d)\n",
3933                                         optarg, LOV_MAXPOOLNAME);
3934                                 ret = -1;
3935                                 goto err;
3936                         }
3937                         /*
3938                          * We do check for empty pool because empty pool
3939                          * is used to find V1 LOV attributes
3940                          */
3941                         strncpy(param.fp_poolname, optarg, LOV_MAXPOOLNAME);
3942                         param.fp_poolname[LOV_MAXPOOLNAME] = '\0';
3943                         param.fp_exclude_pool = !!neg_opt;
3944                         param.fp_check_pool = 1;
3945                         break;
3946 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 14, 53, 0)
3947                 case 'p': /* want this for --pool, to match getstripe/find */
3948                         fprintf(stderr,
3949                                 "warning: -p deprecated, use --print0 or -0\n");
3950 #endif
3951                 case '0':
3952                         param.fp_zero_end = 1;
3953                         break;
3954                 case 'P': /* we always print, this option is a no-op */
3955                         break;
3956                 case LFS_PROJID_OPT:
3957                         rc = name2projid(&param.fp_projid, optarg);
3958                         if (rc) {
3959                                 param.fp_projid = strtoul(optarg, &endptr, 10);
3960                                 if (*endptr != '\0') {
3961                                         fprintf(stderr,
3962                                                 "Invalid project ID: %s",
3963                                                 optarg);
3964                                         ret = -1;
3965                                         goto err;
3966                                 }
3967                         }
3968                         param.fp_exclude_projid = !!neg_opt;
3969                         param.fp_check_projid = 1;
3970                         break;
3971                 case 's':
3972                         if (optarg[0] == '+') {
3973                                 param.fp_size_sign = -1;
3974                                 optarg++;
3975                         } else if (optarg[0] == '-') {
3976                                 param.fp_size_sign =  1;
3977                                 optarg++;
3978                         }
3979
3980                         ret = llapi_parse_size(optarg, &param.fp_size,
3981                                                &param.fp_size_units, 0);
3982                         if (ret) {
3983                                 fprintf(stderr, "error: bad file size '%s'\n",
3984                                         optarg);
3985                                 goto err;
3986                         }
3987                         param.fp_check_size = 1;
3988                         param.fp_exclude_size = !!neg_opt;
3989                         break;
3990                 case 'S':
3991                         if (optarg[0] == '+') {
3992                                 param.fp_stripe_size_sign = -1;
3993                                 optarg++;
3994                         } else if (optarg[0] == '-') {
3995                                 param.fp_stripe_size_sign =  1;
3996                                 optarg++;
3997                         }
3998
3999                         ret = llapi_parse_size(optarg, &param.fp_stripe_size,
4000                                                &param.fp_stripe_size_units, 0);
4001                         if (ret) {
4002                                 fprintf(stderr, "error: bad stripe_size '%s'\n",
4003                                         optarg);
4004                                 goto err;
4005                         }
4006                         param.fp_check_stripe_size = 1;
4007                         param.fp_exclude_stripe_size = !!neg_opt;
4008                         break;
4009                 case 't':
4010                         param.fp_exclude_type = !!neg_opt;
4011                         switch (optarg[0]) {
4012                         case 'b':
4013                                 param.fp_type = S_IFBLK;
4014                                 break;
4015                         case 'c':
4016                                 param.fp_type = S_IFCHR;
4017                                 break;
4018                         case 'd':
4019                                 param.fp_type = S_IFDIR;
4020                                 break;
4021                         case 'f':
4022                                 param.fp_type = S_IFREG;
4023                                 break;
4024                         case 'l':
4025                                 param.fp_type = S_IFLNK;
4026                                 break;
4027                         case 'p':
4028                                 param.fp_type = S_IFIFO;
4029                                 break;
4030                         case 's':
4031                                 param.fp_type = S_IFSOCK;
4032                                 break;
4033                         default:
4034                                 fprintf(stderr, "error: %s: bad type '%s'\n",
4035                                         argv[0], optarg);
4036                                 ret = CMD_HELP;
4037                                 goto err;
4038                         };
4039                         break;
4040                 case 'T':
4041                         if (optarg[0] == '+') {
4042                                 param.fp_mdt_count_sign = -1;
4043                                 optarg++;
4044                         } else if (optarg[0] == '-') {
4045                                 param.fp_mdt_count_sign =  1;
4046                                 optarg++;
4047                         }
4048
4049                         param.fp_mdt_count = strtoul(optarg, &endptr, 0);
4050                         if (*endptr != '\0') {
4051                                 fprintf(stderr, "error: bad mdt_count '%s'\n",
4052                                         optarg);
4053                                 ret = -1;
4054                                 goto err;
4055                         }
4056                         param.fp_check_mdt_count = 1;
4057                         param.fp_exclude_mdt_count = !!neg_opt;
4058                         break;
4059                 default:
4060                         ret = CMD_HELP;
4061                         goto err;
4062                 };
4063         }
4064
4065         if (pathstart == -1) {
4066                 fprintf(stderr, "error: %s: no filename|pathname\n",
4067                         argv[0]);
4068                 ret = CMD_HELP;
4069                 goto err;
4070         } else if (pathend == -1) {
4071                 /* no options */
4072                 pathend = argc;
4073         }
4074
4075         do {
4076                 rc = llapi_find(argv[pathstart], &param);
4077                 if (rc != 0 && ret == 0)
4078                         ret = rc;
4079         } while (++pathstart < pathend);
4080
4081         if (ret)
4082                 fprintf(stderr, "error: %s failed for %s.\n",
4083                         argv[0], argv[optind - 1]);
4084 err:
4085         if (param.fp_obd_uuid && param.fp_num_alloc_obds)
4086                 free(param.fp_obd_uuid);
4087
4088         if (param.fp_mdt_uuid && param.fp_num_alloc_mdts)
4089                 free(param.fp_mdt_uuid);
4090
4091         return ret;
4092 }
4093
4094 static int lfs_getstripe_internal(int argc, char **argv,
4095                                   struct find_param *param)
4096 {
4097         struct option long_opts[] = {
4098 /* find { .val = 'A',   .name = "atime",        .has_arg = required_argument }*/
4099 /* find { .val = 'b',   .name = "blocks",       .has_arg = required_argument }*/
4100         { .val = LFS_COMP_COUNT_OPT,
4101                         .name = "comp-count",   .has_arg = no_argument },
4102         { .val = LFS_COMP_COUNT_OPT,
4103                 .name = "component-count",      .has_arg = no_argument },
4104         { .val = LFS_COMP_FLAGS_OPT,
4105                         .name = "comp-flags",   .has_arg = optional_argument },
4106         { .val = LFS_COMP_FLAGS_OPT,
4107                 .name = "component-flags",      .has_arg = optional_argument },
4108         { .val = LFS_COMP_START_OPT,
4109                         .name = "comp-start",   .has_arg = optional_argument },
4110         { .val = LFS_COMP_START_OPT,
4111                 .name = "component-start",      .has_arg = optional_argument },
4112         { .val = LFS_MIRROR_INDEX_OPT,
4113                 .name = "mirror-index",         .has_arg = required_argument },
4114         { .val = LFS_MIRROR_ID_OPT,
4115                 .name = "mirror-id",            .has_arg = required_argument },
4116         { .val = 'c',   .name = "stripe-count", .has_arg = no_argument },
4117         { .val = 'c',   .name = "stripe_count", .has_arg = no_argument },
4118 /* find { .val = 'C',   .name = "ctime",        .has_arg = required_argument }*/
4119         { .val = 'd',   .name = "directory",    .has_arg = no_argument },
4120         { .val = 'D',   .name = "default",      .has_arg = no_argument },
4121         { .val = 'E',   .name = "comp-end",     .has_arg = optional_argument },
4122         { .val = 'E',   .name = "component-end", .has_arg = optional_argument },
4123         { .val = 'F',   .name = "fid",          .has_arg = no_argument },
4124         { .val = 'g',   .name = "generation",   .has_arg = no_argument },
4125 /* find { .val = 'G',   .name = "group",        .has_arg = required_argument }*/
4126 /* dirstripe { .val = 'H', .name = "mdt-hash",  .has_arg = required_argument }*/
4127         { .val = 'i',   .name = "stripe-index", .has_arg = no_argument },
4128         { .val = 'i',   .name = "stripe_index", .has_arg = no_argument },
4129         { .val = 'I',   .name = "comp-id",      .has_arg = optional_argument },
4130         { .val = 'I',   .name = "component-id", .has_arg = optional_argument },
4131         { .val = 'L',   .name = "layout",       .has_arg = no_argument },
4132         { .val = 'm',   .name = "mdt",          .has_arg = no_argument },
4133         { .val = 'm',   .name = "mdt-index",    .has_arg = no_argument },
4134         { .val = 'm',   .name = "mdt_index",    .has_arg = no_argument },
4135 /* find { .val = 'M',   .name = "mtime",        .has_arg = required_argument }*/
4136 /* find { .val = 'n',   .name = "name",         .has_arg = required_argument }*/
4137         { .val = 'N',   .name = "mirror-count", .has_arg = no_argument },
4138         { .val = 'O',   .name = "obd",          .has_arg = required_argument },
4139         { .val = 'O',   .name = "ost",          .has_arg = required_argument },
4140         { .val = 'p',   .name = "pool",         .has_arg = no_argument },
4141 /* find { .val = 'P',   .name = "print",        .has_arg = no_argument }, */
4142         { .val = 'q',   .name = "quiet",        .has_arg = no_argument },
4143         { .val = 'r',   .name = "recursive",    .has_arg = no_argument },
4144         { .val = 'R',   .name = "raw",          .has_arg = no_argument },
4145         { .val = 'S',   .name = "stripe-size",  .has_arg = no_argument },
4146         { .val = 'S',   .name = "stripe_size",  .has_arg = no_argument },
4147 /* find { .val = 't',   .name = "type",         .has_arg = required_argument }*/
4148 /* dirstripe { .val = 'T', .name = "mdt-count", .has_arg = required_argument }*/
4149 /* find { .val = 'u',   .name = "uid",          .has_arg = required_argument }*/
4150 /* find { .val = 'U',   .name = "user",         .has_arg = required_argument }*/
4151         { .val = 'v',   .name = "verbose",      .has_arg = no_argument },
4152         { .val = 'y',   .name = "yaml",         .has_arg = no_argument },
4153         { .name = NULL } };
4154         int c, rc;
4155         int neg_opt = 0;
4156         int pathstart = -1, pathend = -1;
4157         int isoption;
4158         char *end, *tmp;
4159
4160         while ((c = getopt_long(argc, argv,
4161                         "-cdDE::FghiI::LmMNoO:pqrRsSvy",
4162                         long_opts, NULL)) != -1) {
4163                 if (neg_opt)
4164                         --neg_opt;
4165
4166                 /* '!' is part of option */
4167                 isoption = (c != 1) || (strcmp(optarg, "!") == 0);
4168                 if (!isoption && pathend != -1) {
4169                         fprintf(stderr,
4170                                 "error: %s: filename|dirname must either precede options or follow options\n",
4171                                 argv[0]);
4172                         return CMD_HELP;
4173                 }
4174                 if (!isoption && pathstart == -1)
4175                         pathstart = optind - 1;
4176                 if (isoption && pathstart != -1 && pathend == -1)
4177                         pathend = optind - 2;
4178
4179                 switch (c) {
4180                 case 1:
4181                         /* unknown: opt is "!" */
4182                         if (strcmp(optarg, "!") == 0)
4183                                 neg_opt = 2;
4184                         break;
4185                 case 'c':
4186                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4187                                 param->fp_verbose |= VERBOSE_COUNT;
4188                                 param->fp_max_depth = 0;
4189                         }
4190                         break;
4191                 case LFS_COMP_COUNT_OPT:
4192                         param->fp_verbose |= VERBOSE_COMP_COUNT;
4193                         param->fp_max_depth = 0;
4194                         break;
4195                 case LFS_COMP_FLAGS_OPT:
4196                         if (optarg != NULL) {
4197                                 rc = comp_str2flags(optarg,
4198                                                     &param->fp_comp_flags,
4199                                                     &param->fp_comp_neg_flags);
4200                                 if (rc != 0) {
4201                                         fprintf(stderr, "error: %s bad "
4202                                                 "component flags '%s'.\n",
4203                                                 argv[0], optarg);
4204                                         return CMD_HELP;
4205                                 }
4206                                 param->fp_check_comp_flags = 1;
4207                         } else {
4208                                 param->fp_verbose |= VERBOSE_COMP_FLAGS;
4209                                 param->fp_max_depth = 0;
4210                         }
4211                         break;
4212                 case LFS_COMP_START_OPT:
4213                         if (optarg != NULL) {
4214                                 tmp = optarg;
4215                                 if (tmp[0] == '+') {
4216                                         param->fp_comp_start_sign = -1;
4217                                         tmp++;
4218                                 } else if (tmp[0] == '-') {
4219                                         param->fp_comp_start_sign = 1;
4220                                         tmp++;
4221                                 }
4222                                 rc = llapi_parse_size(tmp,
4223                                                 &param->fp_comp_start,
4224                                                 &param->fp_comp_start_units, 0);
4225                                 if (rc != 0) {
4226                                         fprintf(stderr, "error: %s bad "
4227                                                 "component start '%s'.\n",
4228                                                 argv[0], tmp);
4229                                         return CMD_HELP;
4230                                 } else {
4231                                         param->fp_check_comp_start = 1;
4232                                 }
4233                         } else {
4234                                 param->fp_verbose |= VERBOSE_COMP_START;
4235                                 param->fp_max_depth = 0;
4236                         }
4237                         break;
4238                 case LFS_MIRROR_INDEX_OPT:
4239                         if (optarg[0] == '+') {
4240                                 param->fp_mirror_index_sign = -1;
4241                                 optarg++;
4242                         } else if (optarg[0] == '-') {
4243                                 param->fp_mirror_index_sign = 1;
4244                                 optarg++;
4245                         }
4246
4247                         param->fp_mirror_index = strtoul(optarg, &end, 0);
4248                         if (*end != '\0' || (param->fp_mirror_index == 0 &&
4249                             param->fp_mirror_index_sign == 0 && neg_opt == 0)) {
4250                                 fprintf(stderr,
4251                                         "%s %s: invalid mirror index '%s'\n",
4252                                         progname, argv[0], optarg);
4253                                 return CMD_HELP;
4254                         }
4255                         if (param->fp_mirror_id != 0) {
4256                                 fprintf(stderr,
4257                                         "%s %s: can't specify both mirror index and mirror ID\n",
4258                                         progname, argv[0]);
4259                                 return CMD_HELP;
4260                         }
4261                         param->fp_check_mirror_index = 1;
4262                         param->fp_exclude_mirror_index = !!neg_opt;
4263                         break;
4264                 case LFS_MIRROR_ID_OPT:
4265                         if (optarg[0] == '+') {
4266                                 param->fp_mirror_id_sign = -1;
4267                                 optarg++;
4268                         } else if (optarg[0] == '-') {
4269                                 param->fp_mirror_id_sign = 1;
4270                                 optarg++;
4271                         }
4272
4273                         param->fp_mirror_id = strtoul(optarg, &end, 0);
4274                         if (*end != '\0' || (param->fp_mirror_id == 0 &&
4275                             param->fp_mirror_id_sign == 0 && neg_opt == 0)) {
4276                                 fprintf(stderr,
4277                                         "%s %s: invalid mirror ID '%s'\n",
4278                                         progname, argv[0], optarg);
4279                                 return CMD_HELP;
4280                         }
4281                         if (param->fp_mirror_index != 0) {
4282                                 fprintf(stderr,
4283                                         "%s %s: can't specify both mirror index and mirror ID\n",
4284                                         progname, argv[0]);
4285                                 return CMD_HELP;
4286                         }
4287                         param->fp_check_mirror_id = 1;
4288                         param->fp_exclude_mirror_id = !!neg_opt;
4289                         break;
4290                 case 'd':
4291                         param->fp_max_depth = 0;
4292                         break;
4293                 case 'D':
4294                         param->fp_get_default_lmv = 1;
4295                         break;
4296                 case 'E':
4297                         if (optarg != NULL) {
4298                                 tmp = optarg;
4299                                 if (tmp[0] == '+') {
4300                                         param->fp_comp_end_sign = -1;
4301                                         tmp++;
4302                                 } else if (tmp[0] == '-') {
4303                                         param->fp_comp_end_sign = 1;
4304                                         tmp++;
4305                                 }
4306
4307                                 if (arg_is_eof(tmp)) {
4308                                         param->fp_comp_end = LUSTRE_EOF;
4309                                         param->fp_comp_end_units = 1;
4310                                         rc = 0;
4311                                 } else {
4312                                         rc = llapi_parse_size(tmp,
4313                                                 &param->fp_comp_end,
4314                                                 &param->fp_comp_end_units, 0);
4315                                 }
4316                                 if (rc != 0) {
4317                                         fprintf(stderr, "error: %s bad "
4318                                                 "component end '%s'.\n",
4319                                                 argv[0], tmp);
4320                                         return CMD_HELP;
4321                                 }
4322                                 param->fp_check_comp_end = 1;
4323                         } else {
4324                                 param->fp_verbose |= VERBOSE_COMP_END;
4325                                 param->fp_max_depth = 0;
4326                         }
4327                         break;
4328                 case 'F':
4329                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4330                                 param->fp_verbose |= VERBOSE_DFID;
4331                                 param->fp_max_depth = 0;
4332                         }
4333                         break;
4334                 case 'g':
4335                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4336                                 param->fp_verbose |= VERBOSE_GENERATION;
4337                                 param->fp_max_depth = 0;
4338                         }
4339                         break;
4340                 case 'i':
4341                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4342                                 param->fp_verbose |= VERBOSE_STRIPE_OFFSET;
4343                                 param->fp_max_depth = 0;
4344                         }
4345                         break;
4346                 case 'I':
4347                         if (optarg != NULL) {
4348                                 param->fp_comp_id = strtoul(optarg, &end, 0);
4349                                 if (*end != '\0' || param->fp_comp_id == 0 ||
4350                                     param->fp_comp_id > LCME_ID_MAX) {
4351                                         fprintf(stderr, "error: %s bad "
4352                                                 "component id '%s'\n",
4353                                                 argv[0], optarg);
4354                                         return CMD_HELP;
4355                                 } else {
4356                                         param->fp_check_comp_id = 1;
4357                                 }
4358                         } else {
4359                                 param->fp_max_depth = 0;
4360                                 param->fp_verbose |= VERBOSE_COMP_ID;
4361                         }
4362                         break;
4363                 case 'L':
4364                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4365                                 param->fp_verbose |= VERBOSE_PATTERN;
4366                                 param->fp_max_depth = 0;
4367                         }
4368                         break;
4369 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
4370                 case 'M':
4371                         fprintf(stderr, "warning: '-M' deprecated"
4372                                 ", use '--mdt-index' or '-m' instead\n");
4373 #endif
4374                 case 'm':
4375                         if (!(param->fp_verbose & VERBOSE_DETAIL))
4376                                 param->fp_max_depth = 0;
4377                         param->fp_verbose |= VERBOSE_MDTINDEX;
4378                         break;
4379                 case 'N':
4380                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4381                                 param->fp_verbose |= VERBOSE_MIRROR_COUNT;
4382                                 param->fp_max_depth = 0;
4383                         }
4384                         break;
4385                 case 'O':
4386                         if (param->fp_obd_uuid) {
4387                                 fprintf(stderr,
4388                                         "error: %s: only one obduuid allowed",
4389                                         argv[0]);
4390                                 return CMD_HELP;
4391                         }
4392                         param->fp_obd_uuid = (struct obd_uuid *)optarg;
4393                         break;
4394                 case 'p':
4395                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4396                                 param->fp_verbose |= VERBOSE_POOL;
4397                                 param->fp_max_depth = 0;
4398                         }
4399                         break;
4400                 case 'q':
4401                         param->fp_quiet++;
4402                         break;
4403                 case 'r':
4404                         param->fp_recursive = 1;
4405                         break;
4406                 case 'R':
4407                         param->fp_raw = 1;
4408                         break;
4409                 case 'S':
4410                         if (!(param->fp_verbose & VERBOSE_DETAIL)) {
4411                                 param->fp_verbose |= VERBOSE_STRIPE_SIZE;
4412                                 param->fp_max_depth = 0;
4413                         }
4414                         break;
4415                 case 'v':
4416                         param->fp_verbose = VERBOSE_DEFAULT | VERBOSE_DETAIL;
4417                         break;
4418                 case 'y':
4419                         param->fp_yaml = 1;
4420                         break;
4421                 default:
4422                         return CMD_HELP;
4423                 }
4424         }
4425
4426         if (pathstart == -1) {
4427                 fprintf(stderr, "error: %s: no filename|pathname\n",
4428                                 argv[0]);
4429                 return CMD_HELP;
4430         } else if (pathend == -1) {
4431                 /* no options */
4432                 pathend = argc;
4433         }
4434
4435         if (pathend > argc)
4436                 return CMD_HELP;
4437
4438         if (param->fp_recursive)
4439                 param->fp_max_depth = -1;
4440         else if (param->fp_verbose & VERBOSE_DETAIL)
4441                 param->fp_max_depth = 1;
4442
4443         if (!param->fp_verbose)
4444                 param->fp_verbose = VERBOSE_DEFAULT;
4445         if (param->fp_quiet)
4446                 param->fp_verbose = VERBOSE_OBJID;
4447
4448         do {
4449                 rc = llapi_getstripe(argv[pathstart], param);
4450         } while (++pathstart < pathend && !rc);
4451
4452         if (rc)
4453                 fprintf(stderr, "error: %s failed for %s.\n",
4454                         argv[0], argv[optind - 1]);
4455         return rc;
4456 }
4457
4458 static int lfs_tgts(int argc, char **argv)
4459 {
4460         char mntdir[PATH_MAX] = {'\0'}, path[PATH_MAX] = {'\0'};
4461         struct find_param param;
4462         int index = 0, rc=0;
4463
4464         if (argc > 2)
4465                 return CMD_HELP;
4466
4467         if (argc == 2 && !realpath(argv[1], path)) {
4468                 rc = -errno;
4469                 fprintf(stderr, "error: invalid path '%s': %s\n",
4470                         argv[1], strerror(-rc));
4471                 return rc;
4472         }
4473
4474         while (!llapi_search_mounts(path, index++, mntdir, NULL)) {
4475                 /* Check if we have a mount point */
4476                 if (mntdir[0] == '\0')
4477                         continue;
4478
4479                 memset(&param, 0, sizeof(param));
4480                 if (!strcmp(argv[0], "mdts"))
4481                         param.fp_get_lmv = 1;
4482
4483                 rc = llapi_ostlist(mntdir, &param);
4484                 if (rc) {
4485                         fprintf(stderr, "error: %s: failed on %s\n",
4486                                 argv[0], mntdir);
4487                 }
4488                 if (path[0] != '\0')
4489                         break;
4490                 memset(mntdir, 0, PATH_MAX);
4491         }
4492
4493         return rc;
4494 }
4495
4496 static int lfs_getstripe(int argc, char **argv)
4497 {
4498         struct find_param param = { 0 };
4499
4500         param.fp_max_depth = 1;
4501         return lfs_getstripe_internal(argc, argv, &param);
4502 }
4503
4504 /* functions */
4505 static int lfs_getdirstripe(int argc, char **argv)
4506 {
4507         struct find_param param = { 0 };
4508         struct option long_opts[] = {
4509         { .val = 'c',   .name = "mdt-count",    .has_arg = no_argument },
4510         { .val = 'D',   .name = "default",      .has_arg = no_argument },
4511         { .val = 'H',   .name = "mdt-hash",     .has_arg = no_argument },
4512         { .val = 'i',   .name = "mdt-index",    .has_arg = no_argument },
4513         { .val = 'm',   .name = "mdt-index",    .has_arg = no_argument },
4514         { .val = 'O',   .name = "obd",          .has_arg = required_argument },
4515         { .val = 'r',   .name = "recursive",    .has_arg = no_argument },
4516         { .val = 'T',   .name = "mdt-count",    .has_arg = no_argument },
4517         { .val = 'y',   .name = "yaml",         .has_arg = no_argument },
4518         { .name = NULL } };
4519         int c, rc;
4520
4521         param.fp_get_lmv = 1;
4522
4523         while ((c = getopt_long(argc, argv,
4524                                 "cDHimO:rtTy", long_opts, NULL)) != -1)
4525         {
4526                 switch (c) {
4527                 case 'c':
4528                 case 'T':
4529                         param.fp_verbose |= VERBOSE_COUNT;
4530                         break;
4531                 case 'D':
4532                         param.fp_get_default_lmv = 1;
4533                         break;
4534                 case 'i':
4535                 case 'm':
4536                         param.fp_verbose |= VERBOSE_STRIPE_OFFSET;
4537                         break;
4538 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
4539                 case 't':
4540                         fprintf(stderr, "warning: '-t' deprecated, "
4541                                 "use '--mdt-hash' or '-H' instead\n");
4542 #endif
4543                 case 'H':
4544                         param.fp_verbose |= VERBOSE_HASH_TYPE;
4545                         break;
4546                 case 'O':
4547                         if (param.fp_obd_uuid) {
4548                                 fprintf(stderr,
4549                                         "error: %s: only one obduuid allowed",
4550                                         argv[0]);
4551                                 return CMD_HELP;
4552                         }
4553                         param.fp_obd_uuid = (struct obd_uuid *)optarg;
4554                         break;
4555                 case 'r':
4556                         param.fp_recursive = 1;
4557                         break;
4558                 case 'y':
4559                         param.fp_yaml = 1;
4560                         break;
4561                 default:
4562                         return CMD_HELP;
4563                 }
4564         }
4565
4566         if (optind >= argc)
4567                 return CMD_HELP;
4568
4569         if (param.fp_recursive)
4570                 param.fp_max_depth = -1;
4571
4572         if (!param.fp_verbose)
4573                 param.fp_verbose = VERBOSE_DEFAULT;
4574
4575         do {
4576                 rc = llapi_getstripe(argv[optind], &param);
4577         } while (++optind < argc && !rc);
4578
4579         if (rc)
4580                 fprintf(stderr, "error: %s failed for %s.\n",
4581                         argv[0], argv[optind - 1]);
4582         return rc;
4583 }
4584
4585 enum mntdf_flags {
4586         MNTDF_INODES    = 0x0001,
4587         MNTDF_COOKED    = 0x0002,
4588         MNTDF_LAZY      = 0x0004,
4589         MNTDF_VERBOSE   = 0x0008,
4590         MNTDF_SHOW      = 0x0010,
4591 };
4592
4593 #define COOK(value)                                             \
4594 ({                                                              \
4595         int radix = 0;                                          \
4596         while (value > 1024) {                                  \
4597                 value /= 1024;                                  \
4598                 radix++;                                        \
4599         }                                                       \
4600         radix;                                                  \
4601 })
4602 #define UUF     "%-20s"
4603 #define CSF     "%11s"
4604 #define CDF     "%11llu"
4605 #define HDF     "%8.1f%c"
4606 #define RSF     "%4s"
4607 #define RDF     "%3d%%"
4608
4609 static inline int obd_statfs_ratio(const struct obd_statfs *st)
4610 {
4611         double avail, used, ratio = 0;
4612
4613         avail = st->os_bavail;
4614         used  = st->os_blocks - st->os_bfree;
4615         if (avail + used > 0)
4616                 ratio = used / (used + avail) * 100 + 0.5;
4617
4618         return (int)ratio;
4619 }
4620
4621 static int showdf(char *mntdir, struct obd_statfs *stat,
4622                   char *uuid, enum mntdf_flags flags,
4623                   char *type, int index, int rc)
4624 {
4625         long long avail, used, total;
4626         int ratio = 0;
4627         char *suffix = "KMGTPEZY";
4628         /* Note if we have >2^64 bytes/fs these buffers will need to be grown */
4629         char tbuf[3 * sizeof(__u64)];
4630         char ubuf[3 * sizeof(__u64)];
4631         char abuf[3 * sizeof(__u64)];
4632         char rbuf[3 * sizeof(__u64)];
4633
4634         if (!uuid || !stat)
4635                 return -EINVAL;
4636
4637         switch (rc) {
4638         case 0:
4639                 if (flags & MNTDF_INODES) {
4640                         avail = stat->os_ffree;
4641                         used = stat->os_files - stat->os_ffree;
4642                         total = stat->os_files;
4643                 } else {
4644                         int shift = flags & MNTDF_COOKED ? 0 : 10;
4645
4646                         avail = (stat->os_bavail * stat->os_bsize) >> shift;
4647                         used  = ((stat->os_blocks - stat->os_bfree) *
4648                                  stat->os_bsize) >> shift;
4649                         total = (stat->os_blocks * stat->os_bsize) >> shift;
4650                 }
4651
4652                 ratio = obd_statfs_ratio(stat);
4653
4654                 if (flags & MNTDF_COOKED) {
4655                         int i;
4656                         double cook_val;
4657
4658                         cook_val = (double)total;
4659                         i = COOK(cook_val);
4660                         if (i > 0)
4661                                 snprintf(tbuf, sizeof(tbuf), HDF, cook_val,
4662                                          suffix[i - 1]);
4663                         else
4664                                 snprintf(tbuf, sizeof(tbuf), CDF, total);
4665
4666                         cook_val = (double)used;
4667                         i = COOK(cook_val);
4668                         if (i > 0)
4669                                 snprintf(ubuf, sizeof(ubuf), HDF, cook_val,
4670                                          suffix[i - 1]);
4671                         else
4672                                 snprintf(ubuf, sizeof(ubuf), CDF, used);
4673
4674                         cook_val = (double)avail;
4675                         i = COOK(cook_val);
4676                         if (i > 0)
4677                                 snprintf(abuf, sizeof(abuf), HDF, cook_val,
4678                                          suffix[i - 1]);
4679                         else
4680                                 snprintf(abuf, sizeof(abuf), CDF, avail);
4681                 } else {
4682                         snprintf(tbuf, sizeof(tbuf), CDF, total);
4683                         snprintf(ubuf, sizeof(tbuf), CDF, used);
4684                         snprintf(abuf, sizeof(tbuf), CDF, avail);
4685                 }
4686
4687                 sprintf(rbuf, RDF, ratio);
4688                 printf(UUF" "CSF" "CSF" "CSF" "RSF" %-s",
4689                        uuid, tbuf, ubuf, abuf, rbuf, mntdir);
4690                 if (type)
4691                         printf("[%s:%d]", type, index);
4692
4693                 if (stat->os_state) {
4694                         /*
4695                          * Each character represents the matching
4696                          * OS_STATE_* bit.
4697                          */
4698                         const char state_names[] = "DRSI";
4699                         __u32      state;
4700                         __u32      i;
4701
4702                         printf(" ");
4703                         for (i = 0, state = stat->os_state;
4704                              state && i < sizeof(state_names); i++) {
4705                                 if (!(state & (1 << i)))
4706                                         continue;
4707                                 printf("%c", state_names[i]);
4708                                 state ^= 1 << i;
4709                         }
4710                 }
4711
4712                 printf("\n");
4713                 break;
4714         case -ENODATA:
4715                 printf(UUF": inactive device\n", uuid);
4716                 break;
4717         default:
4718                 printf(UUF": %s\n", uuid, strerror(-rc));
4719                 break;
4720         }
4721
4722         return 0;
4723 }
4724
4725 struct ll_stat_type {
4726         int   st_op;
4727         char *st_name;
4728 };
4729
4730 #define LL_STATFS_MAX   LOV_MAX_STRIPE_COUNT
4731
4732 struct ll_statfs_data {
4733         int                     sd_index;
4734         struct obd_statfs       sd_st;
4735 };
4736
4737 struct ll_statfs_buf {
4738         int                     sb_count;
4739         struct ll_statfs_data   sb_buf[LL_STATFS_MAX];
4740 };
4741
4742 static int mntdf(char *mntdir, char *fsname, char *pool, enum mntdf_flags flags,
4743                  int ops, struct ll_statfs_buf *lsb)
4744 {
4745         struct obd_statfs stat_buf, sum = { .os_bsize = 1 };
4746         struct obd_uuid uuid_buf;
4747         char *poolname = NULL;
4748         struct ll_stat_type types[] = {
4749                 { .st_op = LL_STATFS_LMV,       .st_name = "MDT" },
4750                 { .st_op = LL_STATFS_LOV,       .st_name = "OST" },
4751                 { .st_name = NULL } };
4752         struct ll_stat_type *tp;
4753         __u64 ost_ffree = 0;
4754         __u32 index;
4755         __u32 type;
4756         int fd;
4757         int rc = 0;
4758         int rc2;
4759
4760         if (pool) {
4761                 poolname = strchr(pool, '.');
4762                 if (poolname != NULL) {
4763                         if (strncmp(fsname, pool, strlen(fsname))) {
4764                                 fprintf(stderr, "filesystem name incorrect\n");
4765                                 return -ENODEV;
4766                         }
4767                         poolname++;
4768                 } else
4769                         poolname = pool;
4770         }
4771
4772         fd = open(mntdir, O_RDONLY);
4773         if (fd < 0) {
4774                 rc = -errno;
4775                 fprintf(stderr, "%s: cannot open '%s': %s\n", progname, mntdir,
4776                         strerror(errno));
4777                 return rc;
4778         }
4779
4780         if (flags & MNTDF_SHOW) {
4781                 if (flags & MNTDF_INODES)
4782                         printf(UUF" "CSF" "CSF" "CSF" "RSF" %-s\n",
4783                                "UUID", "Inodes", "IUsed", "IFree",
4784                                "IUse%", "Mounted on");
4785                 else
4786                         printf(UUF" "CSF" "CSF" "CSF" "RSF" %-s\n",
4787                                "UUID",
4788                                flags & MNTDF_COOKED ? "bytes" : "1K-blocks",
4789                                "Used", "Available", "Use%", "Mounted on");
4790         }
4791
4792         for (tp = types; tp->st_name != NULL; tp++) {
4793                 bool have_ost = false;
4794
4795                 if (!(tp->st_op & ops))
4796                         continue;
4797
4798                 for (index = 0; ; index++) {
4799                         memset(&stat_buf, 0, sizeof(struct obd_statfs));
4800                         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
4801                         type = flags & MNTDF_LAZY ?
4802                                 tp->st_op | LL_STATFS_NODELAY : tp->st_op;
4803                         rc2 = llapi_obd_fstatfs(fd, type, index,
4804                                                &stat_buf, &uuid_buf);
4805                         if (rc2 == -ENODEV)
4806                                 break;
4807                         if (rc2 == -EAGAIN)
4808                                 continue;
4809                         if (rc2 == -ENODATA) { /* Inactive device, OK. */
4810                                 if (!(flags & MNTDF_VERBOSE))
4811                                         continue;
4812                         } else if (rc2 < 0 && rc == 0) {
4813                                 rc = rc2;
4814                         }
4815
4816                         /* If we have OSTs then don't report MDT block counts.
4817                          * For MDT-only filesystems the expectation is that all
4818                          * layouts have a DoM component.  For filesystems with
4819                          * OSTs, files are not necessarily going to store data
4820                          * on MDTs, and MDT space is limited to a fraction of
4821                          * OST space, so don't include it in the summary.
4822                          */
4823                         if (tp->st_op == LL_STATFS_LOV && !have_ost) {
4824                                 have_ost = true;
4825                                 sum.os_blocks = 0;
4826                                 sum.os_bfree = 0;
4827                                 sum.os_bavail = 0;
4828                         }
4829
4830                         if (poolname && tp->st_op == LL_STATFS_LOV &&
4831                             llapi_search_ost(fsname, poolname,
4832                                              obd_uuid2str(&uuid_buf)) != 1)
4833                                 continue;
4834
4835                         /* the llapi_obd_statfs() call may have returned with
4836                          * an error, but if it filled in uuid_buf we will at
4837                          * lease use that to print out a message for that OBD.
4838                          * If we didn't get anything in the uuid_buf, then fill
4839                          * it in so that we can print an error message. */
4840                         if (uuid_buf.uuid[0] == '\0')
4841                                 snprintf(uuid_buf.uuid, sizeof(uuid_buf.uuid),
4842                                          "%s%04x", tp->st_name, index);
4843                         if (!rc && lsb) {
4844                                 lsb->sb_buf[lsb->sb_count].sd_index = index;
4845                                 lsb->sb_buf[lsb->sb_count].sd_st = stat_buf;
4846                                 lsb->sb_count++;
4847                         }
4848                         if (flags & MNTDF_SHOW)
4849                                 showdf(mntdir, &stat_buf,
4850                                        obd_uuid2str(&uuid_buf), flags,
4851                                        tp->st_name, index, rc2);
4852
4853                         if (rc2)
4854                                 continue;
4855
4856                         if (tp->st_op == LL_STATFS_LMV) {
4857                                 sum.os_ffree += stat_buf.os_ffree;
4858                                 sum.os_files += stat_buf.os_files;
4859                         } else /* if (tp->st_op == LL_STATFS_LOV) */ {
4860                                 ost_ffree += stat_buf.os_ffree;
4861                         }
4862                         sum.os_blocks += stat_buf.os_blocks *
4863                                          stat_buf.os_bsize;
4864                         sum.os_bfree  += stat_buf.os_bfree *
4865                                          stat_buf.os_bsize;
4866                         sum.os_bavail += stat_buf.os_bavail *
4867                                          stat_buf.os_bsize;
4868                 }
4869         }
4870
4871         close(fd);
4872
4873         /* If we don't have as many objects free on the OST as inodes
4874          * on the MDS, we reduce the total number of inodes to
4875          * compensate, so that the "inodes in use" number is correct.
4876          * Matches ll_statfs_internal() so the results are consistent. */
4877         if (ost_ffree < sum.os_ffree) {
4878                 sum.os_files = (sum.os_files - sum.os_ffree) + ost_ffree;
4879                 sum.os_ffree = ost_ffree;
4880         }
4881         if (flags & MNTDF_SHOW) {
4882                 printf("\n");
4883                 showdf(mntdir, &sum, "filesystem_summary:", flags, NULL, 0, 0);
4884                 printf("\n");
4885         }
4886
4887         return rc;
4888 }
4889
4890 static int ll_statfs_data_comp(const void *sd1, const void *sd2)
4891 {
4892         const struct obd_statfs *st1 = &((const struct ll_statfs_data *)sd1)->
4893                                                 sd_st;
4894         const struct obd_statfs *st2 = &((const struct ll_statfs_data *)sd2)->
4895                                                 sd_st;
4896         int r1 = obd_statfs_ratio(st1);
4897         int r2 = obd_statfs_ratio(st2);
4898         int64_t result = r1 - r2;
4899
4900         /* if both space usage are above 90, compare free inodes */
4901         if (r1 > 90 && r2 > 90)
4902                 result = st2->os_ffree - st1->os_ffree;
4903
4904         if (result < 0)
4905                 return -1;
4906         else if (result == 0)
4907                 return 0;
4908         else
4909                 return 1;
4910 }
4911
4912 /* functions */
4913 static int lfs_setdirstripe(int argc, char **argv)
4914 {
4915         char                    *dname;
4916         int                     result;
4917         struct lfs_setstripe_args        lsa = { 0 };
4918         struct llapi_stripe_param       *param = NULL;
4919         __u32                   mdts[LMV_MAX_STRIPE_COUNT] = { 0 };
4920         char                    *end;
4921         int                     c;
4922         char                    *mode_opt = NULL;
4923         bool                    default_stripe = false;
4924         mode_t                  mode = S_IRWXU | S_IRWXG | S_IRWXO;
4925         mode_t                  previous_mode = 0;
4926         bool                    delete = false;
4927         struct ll_statfs_buf    *lsb = NULL;
4928         char                    mntdir[PATH_MAX] = "";
4929         bool                    auto_distributed = false;
4930
4931         struct option long_opts[] = {
4932         { .val = 'c',   .name = "count",        .has_arg = required_argument },
4933         { .val = 'c',   .name = "mdt-count",    .has_arg = required_argument },
4934         { .val = 'd',   .name = "delete",       .has_arg = no_argument },
4935         { .val = 'D',   .name = "default",      .has_arg = no_argument },
4936         { .val = 'D',   .name = "default_stripe", .has_arg = no_argument },
4937         { .val = 'H',   .name = "mdt-hash",     .has_arg = required_argument },
4938         { .val = 'i',   .name = "mdt-index",    .has_arg = required_argument },
4939 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
4940         { .val = 'i',   .name = "index",        .has_arg = required_argument },
4941 #endif
4942         { .val = 'o',   .name = "mode",         .has_arg = required_argument },
4943 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
4944         { .val = 't',   .name = "hash-type",    .has_arg = required_argument },
4945 #endif
4946         { .val = 'T',   .name = "mdt-count",    .has_arg = required_argument },
4947 /* setstripe { .val = 'y', .name = "yaml",      .has_arg = no_argument }, */
4948         { .name = NULL } };
4949
4950         setstripe_args_init(&lsa);
4951
4952         while ((c = getopt_long(argc, argv, "c:dDi:H:m:o:t:T:", long_opts,
4953                                 NULL)) >= 0) {
4954                 switch (c) {
4955                 case 0:
4956                         /* Long options. */
4957                         break;
4958                 case 'c':
4959                 case 'T':
4960                         lsa.lsa_stripe_count = strtoul(optarg, &end, 0);
4961                         if (*end != '\0') {
4962                                 fprintf(stderr,
4963                                         "%s %s: invalid stripe count '%s'\n",
4964                                         progname, argv[0], optarg);
4965                                 return CMD_HELP;
4966                         }
4967                         break;
4968                 case 'd':
4969                         delete = true;
4970                         default_stripe = true;
4971                         break;
4972                 case 'D':
4973                         default_stripe = true;
4974                         break;
4975 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
4976                 case 't':
4977                         fprintf(stderr, "warning: '--hash-type' and '-t' "
4978                               "deprecated, use '--mdt-hash' or '-H' instead\n");
4979 #endif
4980                 case 'H':
4981                         lsa.lsa_pattern = check_hashtype(optarg);
4982                         if (lsa.lsa_pattern == 0) {
4983                                 fprintf(stderr,
4984                                         "%s %s: bad stripe hash type '%s'\n",
4985                                         progname, argv[0], optarg);
4986                                 return CMD_HELP;
4987                         }
4988                         break;
4989                 case 'i':
4990 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
4991                         if (strcmp(argv[optind - 1], "--index") == 0)
4992                                 fprintf(stderr,
4993                                         "%s %s: warning: '--index' deprecated, use '--mdt-index' instead\n",
4994                                         progname, argv[0]);
4995 #endif
4996                         lsa.lsa_nr_tgts = parse_targets(mdts,
4997                                                 sizeof(mdts) / sizeof(__u32),
4998                                                 lsa.lsa_nr_tgts, optarg);
4999                         if (lsa.lsa_nr_tgts < 0) {
5000                                 fprintf(stderr,
5001                                         "%s %s: invalid MDT target(s) '%s'\n",
5002                                         progname, argv[0], optarg);
5003                                 return CMD_HELP;
5004                         }
5005
5006                         lsa.lsa_tgts = mdts;
5007                         if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT)
5008                                 lsa.lsa_stripe_off = mdts[0];
5009                         break;
5010 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 16, 53, 0)
5011                 case 'm':
5012                         fprintf(stderr, "warning: '-m' is deprecated, "
5013                                 "use '--mode' or '-o' instead\n");
5014 #endif
5015                 case 'o':
5016                         mode_opt = optarg;
5017                         break;
5018                 default:
5019                         fprintf(stderr, "%s %s: unrecognized option '%s'\n",
5020                                 progname, argv[0], argv[optind - 1]);
5021                         return CMD_HELP;
5022                 }
5023         }
5024
5025         if (optind == argc) {
5026                 fprintf(stderr, "%s %s: DIR must be specified\n",
5027                         progname, argv[0]);
5028                 return CMD_HELP;
5029         }
5030
5031         if (!delete && lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT &&
5032             lsa.lsa_stripe_count == LLAPI_LAYOUT_DEFAULT) {
5033                 fprintf(stderr,
5034                         "%s %s: stripe offset and count must be specified\n",
5035                         progname, argv[0]);
5036                 return CMD_HELP;
5037         }
5038
5039         if (delete &&
5040             (lsa.lsa_stripe_off != LLAPI_LAYOUT_DEFAULT ||
5041              lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT)) {
5042                 fprintf(stderr,
5043                         "%s %s: cannot specify -d with -c or -i options\n",
5044                         progname, argv[0]);
5045                 return CMD_HELP;
5046         }
5047
5048         if (mode_opt != NULL) {
5049                 mode = strtoul(mode_opt, &end, 8);
5050                 if (*end != '\0') {
5051                         fprintf(stderr,
5052                                 "%s %s: bad MODE '%s'\n",
5053                                 progname, argv[0], mode_opt);
5054                         return CMD_HELP;
5055                 }
5056                 previous_mode = umask(0);
5057         }
5058
5059         /*
5060          * initialize stripe parameters, in case param is converted to specific,
5061          * i.e, 'lfs mkdir -i -1 -c N', always allocate space for lsp_tgts.
5062          */
5063         param = calloc(1, offsetof(typeof(*param),
5064                        lsp_tgts[lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT ?
5065                                 lsa.lsa_stripe_count : lsa.lsa_nr_tgts]));
5066         if (param == NULL) {
5067                 fprintf(stderr,
5068                         "%s %s: cannot allocate memory for parameters: %s\n",
5069                         progname, argv[0], strerror(ENOMEM));
5070                 return CMD_HELP;
5071         }
5072
5073         if (lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT)
5074                 param->lsp_stripe_count = lsa.lsa_stripe_count;
5075         if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT)
5076                 param->lsp_stripe_offset = -1;
5077         else
5078                 param->lsp_stripe_offset = lsa.lsa_stripe_off;
5079         if (lsa.lsa_pattern != LLAPI_LAYOUT_RAID0)
5080                 param->lsp_stripe_pattern = lsa.lsa_pattern;
5081         else
5082                 param->lsp_stripe_pattern = LMV_HASH_TYPE_FNV_1A_64;
5083         param->lsp_pool = lsa.lsa_pool_name;
5084         param->lsp_is_specific = false;
5085         if (lsa.lsa_nr_tgts > 1) {
5086                 if (lsa.lsa_stripe_count > 0 &&
5087                     lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT &&
5088                     lsa.lsa_stripe_count != lsa.lsa_nr_tgts) {
5089                         fprintf(stderr, "error: %s: stripe count %lld doesn't "
5090                                 "match the number of MDTs: %d\n",
5091                                 argv[0], lsa.lsa_stripe_count, lsa.lsa_nr_tgts);
5092                         free(param);
5093                         return CMD_HELP;
5094                 }
5095
5096                 param->lsp_is_specific = true;
5097                 param->lsp_stripe_count = lsa.lsa_nr_tgts;
5098                 memcpy(param->lsp_tgts, mdts, sizeof(*mdts) * lsa.lsa_nr_tgts);
5099         }
5100
5101         dname = argv[optind];
5102         do {
5103                 if (default_stripe) {
5104                         result = llapi_dir_set_default_lmv(dname, param);
5105                 } else {
5106                         /* if current \a dname isn't under the same \a mntdir
5107                          * as the last one, and the last one was
5108                          * auto-distributed, restore \a param.
5109                          */
5110                         if (mntdir[0] != '\0' &&
5111                             strncmp(dname, mntdir, strlen(mntdir)) &&
5112                             auto_distributed) {
5113                                 param->lsp_is_specific = false;
5114                                 param->lsp_stripe_offset = -1;
5115                                 auto_distributed = false;
5116                         }
5117
5118                         if (!param->lsp_is_specific &&
5119                             param->lsp_stripe_offset == -1) {
5120                                 char path[PATH_MAX] = "";
5121
5122                                 if (!lsb) {
5123                                         lsb = malloc(sizeof(*lsb));
5124                                         if (!lsb) {
5125                                                 result = -ENOMEM;
5126                                                 break;
5127                                         }
5128                                 }
5129                                 lsb->sb_count = 0;
5130
5131                                 /* use mntdir for dirname() temporarily */
5132                                 strncpy(mntdir, dname, sizeof(mntdir));
5133                                 if (!realpath(dirname(mntdir), path)) {
5134                                         result = -errno;
5135                                         fprintf(stderr,
5136                                                 "error: invalid path '%s': %s\n",
5137                                                 argv[optind], strerror(errno));
5138                                         break;
5139                                 }
5140                                 mntdir[0] = '\0';
5141
5142                                 result = llapi_search_mounts(path, 0, mntdir,
5143                                                              NULL);
5144                                 if (result < 0 || mntdir[0] == '\0') {
5145                                         fprintf(stderr,
5146                                                 "No suitable Lustre mount found\n");
5147                                         break;
5148                                 }
5149
5150                                 result = mntdf(mntdir, NULL, NULL, 0,
5151                                                LL_STATFS_LMV, lsb);
5152                                 if (result < 0)
5153                                         break;
5154
5155                                 if (param->lsp_stripe_count > lsb->sb_count) {
5156                                         fprintf(stderr,
5157                                                 "error: stripe count %d is too big\n",
5158                                                 param->lsp_stripe_count);
5159                                         result = -ERANGE;
5160                                         break;
5161                                 }
5162
5163                                 qsort(lsb->sb_buf, lsb->sb_count,
5164                                       sizeof(struct ll_statfs_data),
5165                                       ll_statfs_data_comp);
5166
5167                                 auto_distributed = true;
5168                         }
5169
5170                         if (auto_distributed) {
5171                                 int r;
5172                                 int nr = MAX(param->lsp_stripe_count,
5173                                              lsb->sb_count / 2);
5174
5175                                 /* don't use server whose usage is above 90% */
5176                                 while (nr != param->lsp_stripe_count &&
5177                                        obd_statfs_ratio(&lsb->sb_buf[nr].sd_st)
5178                                        > 90)
5179                                         nr = MAX(param->lsp_stripe_count,
5180                                                  nr / 2);
5181
5182                                 /* get \a r between [0, nr) */
5183                                 r = rand() % nr;
5184
5185                                 param->lsp_stripe_offset =
5186                                         lsb->sb_buf[r].sd_index;
5187                                 if (param->lsp_stripe_count > 1) {
5188                                         int i = 0;
5189
5190                                         param->lsp_is_specific = true;
5191                                         for (; i < param->lsp_stripe_count; i++)
5192                                                 param->lsp_tgts[(i + r) % nr] =
5193                                                         lsb->sb_buf[i].sd_index;
5194                                 }
5195                         }
5196
5197                         result = llapi_dir_create(dname, mode, param);
5198                 }
5199
5200                 if (result) {
5201                         fprintf(stderr,
5202                                 "%s setdirstripe: cannot create stripe dir '%s': %s\n",
5203                                 progname, dname, strerror(-result));
5204                         break;
5205                 }
5206                 dname = argv[++optind];
5207         } while (dname != NULL);
5208
5209         if (mode_opt != NULL)
5210                 umask(previous_mode);
5211
5212         free(lsb);
5213         free(param);
5214         return result;
5215 }
5216
5217 /* functions */
5218 static int lfs_rmentry(int argc, char **argv)
5219 {
5220         char *dname;
5221         int   index;
5222         int   result = 0;
5223
5224         if (argc <= 1) {
5225                 fprintf(stderr, "error: %s: missing dirname\n",
5226                         argv[0]);
5227                 return CMD_HELP;
5228         }
5229
5230         index = 1;
5231         dname = argv[index];
5232         while (dname != NULL) {
5233                 result = llapi_direntry_remove(dname);
5234                 if (result) {
5235                         fprintf(stderr, "error: %s: remove dir entry '%s' "
5236                                 "failed\n", argv[0], dname);
5237                         break;
5238                 }
5239                 dname = argv[++index];
5240         }
5241         return result;
5242 }
5243
5244 static int lfs_mv(int argc, char **argv)
5245 {
5246         struct lmv_user_md lmu = { LMV_USER_MAGIC };
5247         struct find_param param = {
5248                 .fp_max_depth = -1,
5249                 .fp_mdt_index = -1,
5250         };
5251         char *end;
5252         int c;
5253         int rc = 0;
5254         struct option long_opts[] = {
5255         { .val = 'm',   .name = "mdt-index",    .has_arg = required_argument },
5256         { .val = 'v',   .name = "verbose",      .has_arg = no_argument },
5257         { .name = NULL } };
5258
5259         while ((c = getopt_long(argc, argv, "m:M:v", long_opts, NULL)) != -1) {
5260                 switch (c) {
5261 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
5262                 case 'M':
5263                         fprintf(stderr, "warning: '-M' deprecated"
5264                                 ", use '--mdt-index' or '-m' instead\n");
5265 #endif
5266                 case 'm':
5267                         lmu.lum_stripe_offset = strtoul(optarg, &end, 0);
5268                         if (*end != '\0') {
5269                                 fprintf(stderr, "%s mv: bad MDT index '%s'\n",
5270                                         progname, optarg);
5271                                 return CMD_HELP;
5272                         }
5273                         break;
5274                 case 'v':
5275                         param.fp_verbose = VERBOSE_DETAIL;
5276                         break;
5277                 default:
5278                         fprintf(stderr, "%s mv: unrecognized option '%s'\n",
5279                                 progname, argv[optind - 1]);
5280                         return CMD_HELP;
5281                 }
5282         }
5283
5284         if (lmu.lum_stripe_offset == -1) {
5285                 fprintf(stderr, "%s mv: MDT index must be specified\n",
5286                         progname);
5287                 return CMD_HELP;
5288         }
5289
5290         if (optind >= argc) {
5291                 fprintf(stderr, "%s mv: DIR must be specified\n", progname);
5292                 return CMD_HELP;
5293         }
5294
5295
5296         /* initialize migrate mdt parameters */
5297         param.fp_lmv_md = &lmu;
5298         param.fp_migrate = 1;
5299         rc = llapi_migrate_mdt(argv[optind], &param);
5300         if (rc != 0)
5301                 fprintf(stderr, "%s mv: cannot migrate '%s' to MDT%04x: %s\n",
5302                         progname, argv[optind], param.fp_mdt_index,
5303                         strerror(-rc));
5304         return rc;
5305 }
5306
5307 static int lfs_osts(int argc, char **argv)
5308 {
5309         return lfs_tgts(argc, argv);
5310 }
5311
5312 static int lfs_mdts(int argc, char **argv)
5313 {
5314         return lfs_tgts(argc, argv);
5315 }
5316
5317 static int lfs_df(int argc, char **argv)
5318 {
5319         char mntdir[PATH_MAX] = {'\0'}, path[PATH_MAX] = {'\0'};
5320         enum mntdf_flags flags = MNTDF_SHOW;
5321         int ops = LL_STATFS_LMV | LL_STATFS_LOV;
5322         int c, rc = 0, index = 0;
5323         char fsname[PATH_MAX] = "", *pool_name = NULL;
5324         struct option long_opts[] = {
5325         { .val = 'h',   .name = "human-readable",
5326                                                 .has_arg = no_argument },
5327         { .val = 'i',   .name = "inodes",       .has_arg = no_argument },
5328         { .val = 'l',   .name = "lazy",         .has_arg = no_argument },
5329         { .val = 'p',   .name = "pool",         .has_arg = required_argument },
5330         { .val = 'v',   .name = "verbose",      .has_arg = no_argument },
5331         { .name = NULL} };
5332
5333         while ((c = getopt_long(argc, argv, "hilp:v", long_opts, NULL)) != -1) {
5334                 switch (c) {
5335                 case 'h':
5336                         flags |= MNTDF_COOKED;
5337                         break;
5338                 case 'i':
5339                         flags |= MNTDF_INODES;
5340                         break;
5341                 case 'l':
5342                         flags |= MNTDF_LAZY;
5343                         break;
5344                 case 'p':
5345                         pool_name = optarg;
5346                         break;
5347                 case 'v':
5348                         flags |= MNTDF_VERBOSE;
5349                         break;
5350                 default:
5351                         return CMD_HELP;
5352                 }
5353         }
5354         if (optind < argc && !realpath(argv[optind], path)) {
5355                 rc = -errno;
5356                 fprintf(stderr, "error: invalid path '%s': %s\n",
5357                         argv[optind], strerror(-rc));
5358                 return rc;
5359         }
5360
5361         while (!llapi_search_mounts(path, index++, mntdir, fsname)) {
5362                 /* Check if we have a mount point */
5363                 if (mntdir[0] == '\0')
5364                         continue;
5365
5366                 rc = mntdf(mntdir, fsname, pool_name, flags, ops, NULL);
5367                 if (rc || path[0] != '\0')
5368                         break;
5369                 fsname[0] = '\0'; /* avoid matching in next loop */
5370                 mntdir[0] = '\0'; /* avoid matching in next loop */
5371         }
5372
5373         return rc;
5374 }
5375
5376 static int lfs_getname(int argc, char **argv)
5377 {
5378         char mntdir[PATH_MAX] = "", path[PATH_MAX] = "", fsname[PATH_MAX] = "";
5379         int rc = 0, index = 0, c;
5380         char buf[sizeof(struct obd_uuid)];
5381
5382         while ((c = getopt(argc, argv, "h")) != -1)
5383                 return CMD_HELP;
5384
5385         if (optind == argc) { /* no paths specified, get all paths. */
5386                 while (!llapi_search_mounts(path, index++, mntdir, fsname)) {
5387                         rc = llapi_getname(mntdir, buf, sizeof(buf));
5388                         if (rc < 0) {
5389                                 fprintf(stderr,
5390                                         "cannot get name for `%s': %s\n",
5391                                         mntdir, strerror(-rc));
5392                                 break;
5393                         }
5394
5395                         printf("%s %s\n", buf, mntdir);
5396
5397                         path[0] = fsname[0] = mntdir[0] = 0;
5398                 }
5399         } else { /* paths specified, only attempt to search these. */
5400                 for (; optind < argc; optind++) {
5401                         rc = llapi_getname(argv[optind], buf, sizeof(buf));
5402                         if (rc < 0) {
5403                                 fprintf(stderr,
5404                                         "cannot get name for `%s': %s\n",
5405                                         argv[optind], strerror(-rc));
5406                                 break;
5407                         }
5408
5409                         printf("%s %s\n", buf, argv[optind]);
5410                 }
5411         }
5412         return rc;
5413 }
5414
5415 static int lfs_check(int argc, char **argv)
5416 {
5417         int rc;
5418         char mntdir[PATH_MAX] = {'\0'};
5419         int num_types = 1;
5420         char *obd_types[2];
5421         char obd_type1[4];
5422         char obd_type2[4];
5423
5424         if (argc != 2) {
5425                 fprintf(stderr, "%s check: server type must be specified\n",
5426                         progname);
5427                 return CMD_HELP;
5428         }
5429
5430         obd_types[0] = obd_type1;
5431         obd_types[1] = obd_type2;
5432
5433         if (strcmp(argv[1], "osts") == 0) {
5434                 strcpy(obd_types[0], "osc");
5435         } else if (strcmp(argv[1], "mds") == 0) {
5436                 strcpy(obd_types[0], "mdc");
5437         } else if (strcmp(argv[1], "servers") == 0) {
5438                 num_types = 2;
5439                 strcpy(obd_types[0], "osc");
5440                 strcpy(obd_types[1], "mdc");
5441         } else {
5442                 fprintf(stderr, "%s check: unrecognized option '%s'\n",
5443                         progname, argv[1]);
5444                 return CMD_HELP;
5445         }
5446
5447         rc = llapi_search_mounts(NULL, 0, mntdir, NULL);
5448         if (rc < 0 || mntdir[0] == '\0') {
5449                 fprintf(stderr,
5450                         "%s check: cannot find mounted Lustre filesystem: %s\n",
5451                         progname, (rc < 0) ? strerror(-rc) : strerror(ENODEV));
5452                 return rc;
5453         }
5454
5455         rc = llapi_target_check(num_types, obd_types, mntdir);
5456         if (rc)
5457                 fprintf(stderr, "%s check: cannot check target '%s': %s\n",
5458                         progname, argv[1], strerror(-rc));
5459
5460         return rc;
5461
5462 }
5463
5464 #ifdef HAVE_SYS_QUOTA_H
5465 #define ARG2INT(nr, str, msg)                                           \
5466 do {                                                                    \
5467         char *endp;                                                     \
5468         nr = strtol(str, &endp, 0);                                     \
5469         if (*endp != '\0') {                                            \
5470                 fprintf(stderr, "%s: bad %s '%s'\n",                    \
5471                         progname, msg, str);                            \
5472                 return CMD_HELP;                                        \
5473         }                                                               \
5474 } while (0)
5475
5476 #define ADD_OVERFLOW(a,b) ((a + b) < a) ? (a = ULONG_MAX) : (a = a + b)
5477
5478 /* Convert format time string "XXwXXdXXhXXmXXs" into seconds value
5479  * returns the value or ULONG_MAX on integer overflow or incorrect format
5480  * Notes:
5481  *        1. the order of specifiers is arbitrary (may be: 5w3s or 3s5w)
5482  *        2. specifiers may be encountered multiple times (2s3s is 5 seconds)
5483  *        3. empty integer value is interpreted as 0
5484  */
5485 static unsigned long str2sec(const char* timestr)
5486 {
5487         const char spec[] = "smhdw";
5488         const unsigned long mult[] = {1, 60, 60*60, 24*60*60, 7*24*60*60};
5489         unsigned long val = 0;
5490         char *tail;
5491
5492         if (strpbrk(timestr, spec) == NULL) {
5493                 /* no specifiers inside the time string,
5494                    should treat it as an integer value */
5495                 val = strtoul(timestr, &tail, 10);
5496                 return *tail ? ULONG_MAX : val;
5497         }
5498
5499         /* format string is XXwXXdXXhXXmXXs */
5500         while (*timestr) {
5501                 unsigned long v;
5502                 int ind;
5503                 char* ptr;
5504
5505                 v = strtoul(timestr, &tail, 10);
5506                 if (v == ULONG_MAX || *tail == '\0')
5507                         /* value too large (ULONG_MAX or more)
5508                            or missing specifier */
5509                         goto error;
5510
5511                 ptr = strchr(spec, *tail);
5512                 if (ptr == NULL)
5513                         /* unknown specifier */
5514                         goto error;
5515
5516                 ind = ptr - spec;
5517
5518                 /* check if product will overflow the type */
5519                 if (!(v < ULONG_MAX / mult[ind]))
5520                         goto error;
5521
5522                 ADD_OVERFLOW(val, mult[ind] * v);
5523                 if (val == ULONG_MAX)
5524                         goto error;
5525
5526                 timestr = tail + 1;
5527         }
5528
5529         return val;
5530
5531 error:
5532         return ULONG_MAX;
5533 }
5534
5535 #define ARG2ULL(nr, str, def_units)                                     \
5536 do {                                                                    \
5537         unsigned long long limit, units = def_units;                    \
5538         int rc;                                                         \
5539                                                                         \
5540         rc = llapi_parse_size(str, &limit, &units, 1);                  \
5541         if (rc < 0) {                                                   \
5542                 fprintf(stderr, "%s: invalid limit '%s'\n",             \
5543                         progname, str);                                 \
5544                 return CMD_HELP;                                        \
5545         }                                                               \
5546         nr = limit;                                                     \
5547 } while (0)
5548
5549 static inline int has_times_option(int argc, char **argv)
5550 {
5551         int i;
5552
5553         for (i = 1; i < argc; i++)
5554                 if (!strcmp(argv[i], "-t"))
5555                         return 1;
5556
5557         return 0;
5558 }
5559
5560 int lfs_setquota_times(int argc, char **argv)
5561 {
5562         int c, rc;
5563         struct if_quotactl qctl;
5564         char *mnt, *obd_type = (char *)qctl.obd_type;
5565         struct obd_dqblk *dqb = &qctl.qc_dqblk;
5566         struct obd_dqinfo *dqi = &qctl.qc_dqinfo;
5567         struct option long_opts[] = {
5568         { .val = 'b',   .name = "block-grace",  .has_arg = required_argument },
5569         { .val = 'g',   .name = "group",        .has_arg = no_argument },
5570         { .val = 'i',   .name = "inode-grace",  .has_arg = required_argument },
5571         { .val = 'p',   .name = "projid",       .has_arg = no_argument },
5572         { .val = 't',   .name = "times",        .has_arg = no_argument },
5573         { .val = 'u',   .name = "user",         .has_arg = no_argument },
5574         { .name = NULL } };
5575         int qtype;
5576
5577         memset(&qctl, 0, sizeof(qctl));
5578         qctl.qc_cmd  = LUSTRE_Q_SETINFO;
5579         qctl.qc_type = ALLQUOTA;
5580
5581         while ((c = getopt_long(argc, argv, "b:gi:ptu",
5582                                 long_opts, NULL)) != -1) {
5583                 switch (c) {
5584                 case 'u':
5585                         qtype = USRQUOTA;
5586                         goto quota_type;
5587                 case 'g':
5588                         qtype = GRPQUOTA;
5589                         goto quota_type;
5590                 case 'p':
5591                         qtype = PRJQUOTA;
5592 quota_type:
5593                         if (qctl.qc_type != ALLQUOTA) {
5594                                 fprintf(stderr, "error: -u/g/p can't be used "
5595                                                 "more than once\n");
5596                                 return CMD_HELP;
5597                         }
5598                         qctl.qc_type = qtype;
5599                         break;
5600                 case 'b':
5601                         if ((dqi->dqi_bgrace = str2sec(optarg)) == ULONG_MAX) {
5602                                 fprintf(stderr, "error: bad block-grace: %s\n",
5603                                         optarg);
5604                                 return CMD_HELP;
5605                         }
5606                         dqb->dqb_valid |= QIF_BTIME;
5607                         break;
5608                 case 'i':
5609                         if ((dqi->dqi_igrace = str2sec(optarg)) == ULONG_MAX) {
5610                                 fprintf(stderr, "error: bad inode-grace: %s\n",
5611                                         optarg);
5612                                 return CMD_HELP;
5613                         }
5614                         dqb->dqb_valid |= QIF_ITIME;
5615                         break;
5616                 case 't': /* Yes, of course! */
5617                         break;
5618                 default: /* getopt prints error message for us when opterr != 0 */
5619                         return CMD_HELP;
5620                 }
5621         }
5622
5623         if (qctl.qc_type == ALLQUOTA) {
5624                 fprintf(stderr, "error: neither -u, -g nor -p specified\n");
5625                 return CMD_HELP;
5626         }
5627
5628         if (optind != argc - 1) {
5629                 fprintf(stderr, "error: unexpected parameters encountered\n");
5630                 return CMD_HELP;
5631         }
5632
5633         if ((dqb->dqb_valid | QIF_BTIME && dqi->dqi_bgrace >= UINT_MAX) ||
5634             (dqb->dqb_valid | QIF_ITIME && dqi->dqi_igrace >= UINT_MAX)) {
5635                 fprintf(stderr, "error: grace time is too large\n");
5636                 return CMD_HELP;
5637         }
5638
5639         mnt = argv[optind];
5640         rc = llapi_quotactl(mnt, &qctl);
5641         if (rc) {
5642                 if (*obd_type)
5643                         fprintf(stderr, "%s %s ", obd_type,
5644                                 obd_uuid2str(&qctl.obd_uuid));
5645                 fprintf(stderr, "setquota failed: %s\n", strerror(-rc));
5646                 return rc;
5647         }
5648
5649         return 0;
5650 }
5651
5652 #define BSLIMIT (1 << 0)
5653 #define BHLIMIT (1 << 1)
5654 #define ISLIMIT (1 << 2)
5655 #define IHLIMIT (1 << 3)
5656
5657 int lfs_setquota(int argc, char **argv)
5658 {
5659         int c, rc = 0;
5660         struct if_quotactl qctl;
5661         char *mnt, *obd_type = (char *)qctl.obd_type;
5662         struct obd_dqblk *dqb = &qctl.qc_dqblk;
5663         struct option long_opts[] = {
5664         { .val = 'b',   .name = "block-softlimit",
5665                                                 .has_arg = required_argument },
5666         { .val = 'B',   .name = "block-hardlimit",
5667                                                 .has_arg = required_argument },
5668         { .val = 'd',   .name = "default",      .has_arg = no_argument },
5669         { .val = 'g',   .name = "group",        .has_arg = required_argument },
5670         { .val = 'G',   .name = "default-grp",  .has_arg = no_argument },
5671         { .val = 'i',   .name = "inode-softlimit",
5672                                                 .has_arg = required_argument },
5673         { .val = 'I',   .name = "inode-hardlimit",
5674                                                 .has_arg = required_argument },
5675         { .val = 'p',   .name = "projid",       .has_arg = required_argument },
5676         { .val = 'P',   .name = "default-prj",  .has_arg = no_argument },
5677         { .val = 'u',   .name = "user",         .has_arg = required_argument },
5678         { .val = 'U',   .name = "default-usr",  .has_arg = no_argument },
5679         { .name = NULL } };
5680         unsigned limit_mask = 0;
5681         char *endptr;
5682         bool use_default = false;
5683         int qtype;
5684
5685         if (has_times_option(argc, argv))
5686                 return lfs_setquota_times(argc, argv);
5687
5688         memset(&qctl, 0, sizeof(qctl));
5689         qctl.qc_cmd  = LUSTRE_Q_SETQUOTA;
5690         qctl.qc_type = ALLQUOTA; /* ALLQUOTA makes no sense for setquota,
5691                                   * so it can be used as a marker that qc_type
5692                                   * isn't reinitialized from command line */
5693
5694         while ((c = getopt_long(argc, argv, "b:B:dg:Gi:I:p:Pu:U",
5695                 long_opts, NULL)) != -1) {
5696                 switch (c) {
5697                 case 'U':
5698                         qctl.qc_cmd = LUSTRE_Q_SETDEFAULT;
5699                         qtype = USRQUOTA;
5700                         qctl.qc_id = 0;
5701                         goto quota_type_def;
5702                 case 'u':
5703                         qtype = USRQUOTA;
5704                         rc = name2uid(&qctl.qc_id, optarg);
5705                         goto quota_type;
5706                 case 'G':
5707                         qctl.qc_cmd = LUSTRE_Q_SETDEFAULT;
5708                         qtype = GRPQUOTA;
5709                         qctl.qc_id = 0;
5710                         goto quota_type_def;
5711                 case 'g':
5712                         qtype = GRPQUOTA;
5713                         rc = name2gid(&qctl.qc_id, optarg);
5714                         goto quota_type;
5715                 case 'P':
5716                         qctl.qc_cmd = LUSTRE_Q_SETDEFAULT;
5717                         qtype = PRJQUOTA;
5718                         qctl.qc_id = 0;
5719                         goto quota_type_def;
5720                 case 'p':
5721                         qtype = PRJQUOTA;
5722                         rc = name2projid(&qctl.qc_id, optarg);
5723 quota_type:
5724                         if (rc) {
5725                                 qctl.qc_id = strtoul(optarg, &endptr, 10);
5726                                 if (*endptr != '\0') {
5727                                         fprintf(stderr, "%s setquota: invalid"
5728                                                 " id '%s'\n", progname, optarg);
5729                                         return -1;
5730                                 }
5731                         }
5732
5733                         if (qctl.qc_id == 0) {
5734                                 fprintf(stderr, "%s setquota: can't set quota"
5735                                         " for root usr/group/project.\n",
5736                                         progname);
5737                                 return -1;
5738                         }
5739
5740 quota_type_def:
5741                         if (qctl.qc_type != ALLQUOTA) {
5742                                 fprintf(stderr,
5743                                         "%s setquota: only one of -u, -U, -g,"
5744                                         " -G, -p or -P may be specified\n",
5745                                         progname);
5746                                 return CMD_HELP;
5747                         }
5748                         qctl.qc_type = qtype;
5749                         break;
5750                 case 'd':
5751                         qctl.qc_cmd = LUSTRE_Q_SETDEFAULT;
5752                         use_default = true;
5753                         break;
5754                 case 'b':
5755                         ARG2ULL(dqb->dqb_bsoftlimit, optarg, 1024);
5756                         dqb->dqb_bsoftlimit >>= 10;
5757                         limit_mask |= BSLIMIT;
5758                         if (dqb->dqb_bsoftlimit &&
5759                             dqb->dqb_bsoftlimit <= 1024) /* <= 1M? */
5760                                 fprintf(stderr,
5761                                         "%s setquota: warning: block softlimit '%llu' smaller than minimum qunit size\n"
5762                                         "See '%s help setquota' or Lustre manual for details\n",
5763                                         progname, dqb->dqb_bsoftlimit,
5764                                         progname);
5765                         break;
5766                 case 'B':
5767                         ARG2ULL(dqb->dqb_bhardlimit, optarg, 1024);
5768                         dqb->dqb_bhardlimit >>= 10;
5769                         limit_mask |= BHLIMIT;
5770                         if (dqb->dqb_bhardlimit &&
5771                             dqb->dqb_bhardlimit <= 1024) /* <= 1M? */
5772                                 fprintf(stderr,
5773                                         "%s setquota: warning: block hardlimit '%llu' smaller than minimum qunit size\n"
5774                                         "See '%s help setquota' or Lustre manual for details\n",
5775                                         progname, dqb->dqb_bhardlimit,
5776                                         progname);
5777                         break;
5778                 case 'i':
5779                         ARG2ULL(dqb->dqb_isoftlimit, optarg, 1);
5780                         limit_mask |= ISLIMIT;
5781                         if (dqb->dqb_isoftlimit &&
5782                             dqb->dqb_isoftlimit <= 1024) /* <= 1K inodes? */
5783                                 fprintf(stderr,
5784                                         "%s setquota: warning: inode softlimit '%llu' smaller than minimum qunit size\n"
5785                                         "See '%s help setquota' or Lustre manual for details\n",
5786                                         progname, dqb->dqb_isoftlimit,
5787                                         progname);
5788                         break;
5789                 case 'I':
5790                         ARG2ULL(dqb->dqb_ihardlimit, optarg, 1);
5791                         limit_mask |= IHLIMIT;
5792                         if (dqb->dqb_ihardlimit &&
5793                             dqb->dqb_ihardlimit <= 1024) /* <= 1K inodes? */
5794                                 fprintf(stderr,
5795                                         "%s setquota: warning: inode hardlimit '%llu' smaller than minimum qunit size\n"
5796                                         "See '%s help setquota' or Lustre manual for details\n",
5797                                         progname, dqb->dqb_ihardlimit,
5798                                         progname);
5799                         break;
5800                 default:
5801                         fprintf(stderr,
5802                                 "%s setquota: unrecognized option '%s'\n",
5803                                 progname, argv[optind - 1]);
5804                         return CMD_HELP;
5805                 }
5806         }
5807
5808         if (qctl.qc_type == ALLQUOTA) {
5809                 fprintf(stderr,
5810                         "%s setquota: either -u or -g must be specified\n",
5811                         progname);
5812                 return CMD_HELP;
5813         }
5814
5815         if (!use_default && limit_mask == 0) {
5816                 fprintf(stderr,
5817                         "%s setquota: at least one limit must be specified\n",
5818                         progname);
5819                 return CMD_HELP;
5820         }
5821
5822         if (use_default && limit_mask != 0) {
5823                 fprintf(stderr,
5824                         "%s setquota: limits should not be specified when"
5825                         " using default quota\n",
5826                         progname);
5827                 return CMD_HELP;
5828         }
5829
5830         if (use_default && qctl.qc_id == 0) {
5831                 fprintf(stderr,
5832                         "%s setquota: can not set default quota for root"
5833                         " user/group/project\n",
5834                         progname);
5835                 return CMD_HELP;
5836         }
5837
5838         if (optind != argc - 1) {
5839                 fprintf(stderr,
5840                         "%s setquota: filesystem not specified or unexpected argument '%s'\n",
5841                         progname, argv[optind]);
5842                 return CMD_HELP;
5843         }
5844
5845         mnt = argv[optind];
5846
5847         if (use_default) {
5848                 dqb->dqb_bhardlimit = 0;
5849                 dqb->dqb_bsoftlimit = 0;
5850                 dqb->dqb_ihardlimit = 0;
5851                 dqb->dqb_isoftlimit = 0;
5852                 dqb->dqb_itime = 0;
5853                 dqb->dqb_btime = 0;
5854                 dqb->dqb_valid |= QIF_LIMITS | QIF_TIMES;
5855         } else if ((!(limit_mask & BHLIMIT) ^ !(limit_mask & BSLIMIT)) ||
5856                    (!(limit_mask & IHLIMIT) ^ !(limit_mask & ISLIMIT))) {
5857                 /* sigh, we can't just set blimits/ilimits */
5858                 struct if_quotactl tmp_qctl = {.qc_cmd  = LUSTRE_Q_GETQUOTA,
5859                                                .qc_type = qctl.qc_type,
5860                                                .qc_id   = qctl.qc_id};
5861
5862                 rc = llapi_quotactl(mnt, &tmp_qctl);
5863                 if (rc < 0)
5864                         return rc;
5865
5866                 if (!(limit_mask & BHLIMIT))
5867                         dqb->dqb_bhardlimit = tmp_qctl.qc_dqblk.dqb_bhardlimit;
5868                 if (!(limit_mask & BSLIMIT))
5869                         dqb->dqb_bsoftlimit = tmp_qctl.qc_dqblk.dqb_bsoftlimit;
5870                 if (!(limit_mask & IHLIMIT))
5871                         dqb->dqb_ihardlimit = tmp_qctl.qc_dqblk.dqb_ihardlimit;
5872                 if (!(limit_mask & ISLIMIT))
5873                         dqb->dqb_isoftlimit = tmp_qctl.qc_dqblk.dqb_isoftlimit;
5874
5875                 /* Keep grace times if we have got no softlimit arguments */
5876                 if ((limit_mask & BHLIMIT) && !(limit_mask & BSLIMIT)) {
5877                         dqb->dqb_valid |= QIF_BTIME;
5878                         dqb->dqb_btime = tmp_qctl.qc_dqblk.dqb_btime;
5879                 }
5880
5881                 if ((limit_mask & IHLIMIT) && !(limit_mask & ISLIMIT)) {
5882                         dqb->dqb_valid |= QIF_ITIME;
5883                         dqb->dqb_itime = tmp_qctl.qc_dqblk.dqb_itime;
5884                 }
5885         }
5886
5887         dqb->dqb_valid |= (limit_mask & (BHLIMIT | BSLIMIT)) ? QIF_BLIMITS : 0;
5888         dqb->dqb_valid |= (limit_mask & (IHLIMIT | ISLIMIT)) ? QIF_ILIMITS : 0;
5889
5890         rc = llapi_quotactl(mnt, &qctl);
5891         if (rc) {
5892                 if (*obd_type)
5893                         fprintf(stderr,
5894                                 "%s setquota: cannot quotactl '%s' '%s': %s",
5895                                 progname, obd_type,
5896                                 obd_uuid2str(&qctl.obd_uuid), strerror(-rc));
5897                 return rc;
5898         }
5899
5900         return 0;
5901 }
5902
5903 /* Converts seconds value into format string
5904  * result is returned in buf
5905  * Notes:
5906  *        1. result is in descenting order: 1w2d3h4m5s
5907  *        2. zero fields are not filled (except for p. 3): 5d1s
5908  *        3. zero seconds value is presented as "0s"
5909  */
5910 static char * __sec2str(time_t seconds, char *buf)
5911 {
5912         const char spec[] = "smhdw";
5913         const unsigned long mult[] = {1, 60, 60*60, 24*60*60, 7*24*60*60};
5914         unsigned long c;
5915         char *tail = buf;
5916         int i;
5917
5918         for (i = sizeof(mult) / sizeof(mult[0]) - 1 ; i >= 0; i--) {
5919                 c = seconds / mult[i];
5920
5921                 if (c > 0 || (i == 0 && buf == tail))
5922                         tail += snprintf(tail, 40-(tail-buf), "%lu%c", c, spec[i]);
5923
5924                 seconds %= mult[i];
5925         }
5926
5927         return tail;
5928 }
5929
5930 static void sec2str(time_t seconds, char *buf, int rc)
5931 {
5932         char *tail = buf;
5933
5934         if (rc)
5935                 *tail++ = '[';
5936
5937         tail = __sec2str(seconds, tail);
5938
5939         if (rc && tail - buf < 39) {
5940                 *tail++ = ']';
5941                 *tail++ = 0;
5942         }
5943 }
5944
5945 static void diff2str(time_t seconds, char *buf, time_t now)
5946 {
5947
5948         buf[0] = 0;
5949         if (!seconds)
5950                 return;
5951         if (seconds <= now) {
5952                 strcpy(buf, "none");
5953                 return;
5954         }
5955         __sec2str(seconds - now, buf);
5956 }
5957
5958 static void print_quota_title(char *name, struct if_quotactl *qctl,
5959                               bool human_readable, bool show_default)
5960 {
5961         if (show_default) {
5962                 printf("Disk default %s quota:\n", qtype_name(qctl->qc_type));
5963                 printf("%15s %8s%8s%8s %8s%8s%8s\n",
5964                        "Filesystem", "bquota", "blimit", "bgrace",
5965                        "iquota", "ilimit", "igrace");
5966         } else {
5967                 printf("Disk quotas for %s %s (%cid %u):\n",
5968                        qtype_name(qctl->qc_type), name,
5969                        *qtype_name(qctl->qc_type), qctl->qc_id);
5970                 printf("%15s%8s %7s%8s%8s%8s %7s%8s%8s\n",
5971                        "Filesystem", human_readable ? "used" : "kbytes",
5972                        "quota", "limit", "grace",
5973                        "files", "quota", "limit", "grace");
5974         }
5975 }
5976
5977 static void kbytes2str(__u64 num, char *buf, int buflen, bool h)
5978 {
5979         if (!h) {
5980                 snprintf(buf, buflen, "%ju", (uintmax_t)num);
5981         } else {
5982                 if (num >> 40)
5983                         snprintf(buf, buflen, "%5.4gP",
5984                                  (double)num / ((__u64)1 << 40));
5985                 else if (num >> 30)
5986                         snprintf(buf, buflen, "%5.4gT",
5987                                  (double)num / (1 << 30));
5988                 else if (num >> 20)
5989                         snprintf(buf, buflen, "%5.4gG",
5990                                  (double)num / (1 << 20));
5991                 else if (num >> 10)
5992                         snprintf(buf, buflen, "%5.4gM",
5993                                  (double)num / (1 << 10));
5994                 else
5995                         snprintf(buf, buflen, "%ju%s", (uintmax_t)num, "k");
5996         }
5997 }
5998
5999 #define STRBUF_LEN      32
6000 static void print_quota(char *mnt, struct if_quotactl *qctl, int type,
6001                         int rc, bool h, bool show_default)
6002 {
6003         time_t now;
6004
6005         time(&now);
6006
6007         if (qctl->qc_cmd == LUSTRE_Q_GETQUOTA || qctl->qc_cmd == Q_GETOQUOTA ||
6008             qctl->qc_cmd == LUSTRE_Q_GETDEFAULT) {
6009                 int bover = 0, iover = 0;
6010                 struct obd_dqblk *dqb = &qctl->qc_dqblk;
6011                 char numbuf[3][STRBUF_LEN];
6012                 char timebuf[40];
6013                 char strbuf[STRBUF_LEN];
6014
6015                 if (dqb->dqb_bhardlimit &&
6016                     lustre_stoqb(dqb->dqb_curspace) >= dqb->dqb_bhardlimit) {
6017                         bover = 1;
6018                 } else if (dqb->dqb_bsoftlimit && dqb->dqb_btime) {
6019                         if (dqb->dqb_btime > now) {
6020                                 bover = 2;
6021                         } else {
6022                                 bover = 3;
6023                         }
6024                 }
6025
6026                 if (dqb->dqb_ihardlimit &&
6027                     dqb->dqb_curinodes >= dqb->dqb_ihardlimit) {
6028                         iover = 1;
6029                 } else if (dqb->dqb_isoftlimit && dqb->dqb_itime) {
6030                         if (dqb->dqb_itime > now) {
6031                                 iover = 2;
6032                         } else {
6033                                 iover = 3;
6034                         }
6035                 }
6036
6037
6038                 if (strlen(mnt) > 15)
6039                         printf("%s\n%15s", mnt, "");
6040                 else
6041                         printf("%15s", mnt);
6042
6043                 if (bover)
6044                         diff2str(dqb->dqb_btime, timebuf, now);
6045                 else if (show_default)
6046                         snprintf(timebuf, sizeof(timebuf), "%llu",
6047                                  dqb->dqb_btime);
6048
6049                 kbytes2str(lustre_stoqb(dqb->dqb_curspace),
6050                            strbuf, sizeof(strbuf), h);
6051                 if (rc == -EREMOTEIO)
6052                         sprintf(numbuf[0], "%s*", strbuf);
6053                 else
6054                         sprintf(numbuf[0], (dqb->dqb_valid & QIF_SPACE) ?
6055                                 "%s" : "[%s]", strbuf);
6056
6057                 kbytes2str(dqb->dqb_bsoftlimit, strbuf, sizeof(strbuf), h);
6058                 if (type == QC_GENERAL)
6059                         sprintf(numbuf[1], (dqb->dqb_valid & QIF_BLIMITS) ?
6060                                 "%s" : "[%s]", strbuf);
6061                 else
6062                         sprintf(numbuf[1], "%s", "-");
6063
6064                 kbytes2str(dqb->dqb_bhardlimit, strbuf, sizeof(strbuf), h);
6065                 sprintf(numbuf[2], (dqb->dqb_valid & QIF_BLIMITS) ?
6066                         "%s" : "[%s]", strbuf);
6067
6068                 if (show_default)
6069                         printf(" %6s %7s %7s", numbuf[1], numbuf[2], timebuf);
6070                 else
6071                         printf(" %7s%c %6s %7s %7s",
6072                                numbuf[0], bover ? '*' : ' ', numbuf[1],
6073                                numbuf[2], bover > 1 ? timebuf : "-");
6074
6075
6076                 if (iover)
6077                         diff2str(dqb->dqb_itime, timebuf, now);
6078                 else if (show_default)
6079                         snprintf(timebuf, sizeof(timebuf), "%llu",
6080                                  dqb->dqb_itime);
6081
6082                 snprintf(numbuf[0], sizeof(numbuf),
6083                          (dqb->dqb_valid & QIF_INODES) ? "%ju" : "[%ju]",
6084                          (uintmax_t)dqb->dqb_curinodes);
6085
6086                 if (type == QC_GENERAL)
6087                         sprintf(numbuf[1], (dqb->dqb_valid & QIF_ILIMITS) ?
6088                                 "%ju" : "[%ju]",
6089                                 (uintmax_t)dqb->dqb_isoftlimit);
6090                 else
6091                         sprintf(numbuf[1], "%s", "-");
6092
6093                 sprintf(numbuf[2], (dqb->dqb_valid & QIF_ILIMITS) ?
6094                         "%ju" : "[%ju]", (uintmax_t)dqb->dqb_ihardlimit);
6095
6096                 if (show_default)
6097                         printf(" %6s %7s %7s", numbuf[1], numbuf[2], timebuf);
6098                 else if (type != QC_OSTIDX)
6099                         printf(" %7s%c %6s %7s %7s",
6100                                numbuf[0], iover ? '*' : ' ', numbuf[1],
6101                                numbuf[2], iover > 1 ? timebuf : "-");
6102                 else
6103                         printf(" %7s %7s %7s %7s", "-", "-", "-", "-");
6104                 printf("\n");
6105
6106         } else if (qctl->qc_cmd == LUSTRE_Q_GETINFO ||
6107                    qctl->qc_cmd == Q_GETOINFO) {
6108                 char bgtimebuf[40];
6109                 char igtimebuf[40];
6110
6111                 sec2str(qctl->qc_dqinfo.dqi_bgrace, bgtimebuf, rc);
6112                 sec2str(qctl->qc_dqinfo.dqi_igrace, igtimebuf, rc);
6113                 printf("Block grace time: %s; Inode grace time: %s\n",
6114                        bgtimebuf, igtimebuf);
6115         }
6116 }
6117
6118 static int print_obd_quota(char *mnt, struct if_quotactl *qctl, int is_mdt,
6119                            bool h, __u64 *total)
6120 {
6121         int rc = 0, rc1 = 0, count = 0;
6122         __u32 valid = qctl->qc_valid;
6123
6124         rc = llapi_get_obd_count(mnt, &count, is_mdt);
6125         if (rc) {
6126                 fprintf(stderr, "can not get %s count: %s\n",
6127                         is_mdt ? "mdt": "ost", strerror(-rc));
6128                 return rc;
6129         }
6130
6131         for (qctl->qc_idx = 0; qctl->qc_idx < count; qctl->qc_idx++) {
6132                 qctl->qc_valid = is_mdt ? QC_MDTIDX : QC_OSTIDX;
6133                 rc = llapi_quotactl(mnt, qctl);
6134                 if (rc) {
6135                         /* It is remote client case. */
6136                         if (rc == -EOPNOTSUPP) {
6137                                 rc = 0;
6138                                 goto out;
6139                         }
6140
6141                         if (!rc1)
6142                                 rc1 = rc;
6143                         fprintf(stderr, "quotactl %s%d failed.\n",
6144                                 is_mdt ? "mdt": "ost", qctl->qc_idx);
6145                         continue;
6146                 }
6147
6148                 print_quota(obd_uuid2str(&qctl->obd_uuid), qctl,
6149                             qctl->qc_valid, 0, h, false);
6150                 *total += is_mdt ? qctl->qc_dqblk.dqb_ihardlimit :
6151                                    qctl->qc_dqblk.dqb_bhardlimit;
6152         }
6153 out:
6154         qctl->qc_valid = valid;
6155         return rc ? : rc1;
6156 }
6157
6158 static int get_print_quota(char *mnt, char *name, struct if_quotactl *qctl,
6159                            int verbose, int quiet, bool human_readable,
6160                            bool show_default)
6161 {
6162         int rc1 = 0, rc2 = 0, rc3 = 0;
6163         char *obd_type = (char *)qctl->obd_type;
6164         char *obd_uuid = (char *)qctl->obd_uuid.uuid;
6165         __u64 total_ialloc = 0, total_balloc = 0;
6166         bool use_default_for_blk = false;
6167         bool use_default_for_file = false;
6168         int inacc;
6169
6170         rc1 = llapi_quotactl(mnt, qctl);
6171         if (rc1 < 0) {
6172                 switch (rc1) {
6173                 case -ESRCH:
6174                         fprintf(stderr, "%s quotas are not enabled.\n",
6175                                 qtype_name(qctl->qc_type));
6176                         goto out;
6177                 case -EPERM:
6178                         fprintf(stderr, "Permission denied.\n");
6179                 case -ENODEV:
6180                 case -ENOENT:
6181                         /* We already got error message. */
6182                         goto out;
6183                 default:
6184                         fprintf(stderr, "Unexpected quotactl error: %s\n",
6185                                 strerror(-rc1));
6186                 }
6187         }
6188
6189         if (!show_default && qctl->qc_id == 0) {
6190                 qctl->qc_dqblk.dqb_bhardlimit = 0;
6191                 qctl->qc_dqblk.dqb_bsoftlimit = 0;
6192                 qctl->qc_dqblk.dqb_ihardlimit = 0;
6193                 qctl->qc_dqblk.dqb_isoftlimit = 0;
6194                 qctl->qc_dqblk.dqb_btime = 0;
6195                 qctl->qc_dqblk.dqb_itime = 0;
6196                 qctl->qc_dqblk.dqb_valid |= QIF_LIMITS | QIF_TIMES;
6197         }
6198
6199         if (qctl->qc_dqblk.dqb_valid & QIF_BTIME &&
6200             LQUOTA_FLAG(qctl->qc_dqblk.dqb_btime) & LQUOTA_FLAG_DEFAULT) {
6201                 use_default_for_blk = true;
6202                 qctl->qc_dqblk.dqb_btime &= LQUOTA_GRACE_MASK;
6203         }
6204
6205         if (qctl->qc_dqblk.dqb_valid & QIF_ITIME &&
6206             LQUOTA_FLAG(qctl->qc_dqblk.dqb_itime) & LQUOTA_FLAG_DEFAULT) {
6207                 use_default_for_file = true;
6208                 qctl->qc_dqblk.dqb_itime &= LQUOTA_GRACE_MASK;
6209         }
6210
6211         if ((qctl->qc_cmd == LUSTRE_Q_GETQUOTA ||
6212              qctl->qc_cmd == LUSTRE_Q_GETDEFAULT) && !quiet)
6213                 print_quota_title(name, qctl, human_readable, show_default);
6214
6215         if (rc1 && *obd_type)
6216                 fprintf(stderr, "%s %s ", obd_type, obd_uuid);
6217
6218         if (qctl->qc_valid != QC_GENERAL)
6219                 mnt = "";
6220
6221         inacc = (qctl->qc_cmd == LUSTRE_Q_GETQUOTA) &&
6222                 ((qctl->qc_dqblk.dqb_valid & (QIF_LIMITS|QIF_USAGE)) !=
6223                  (QIF_LIMITS|QIF_USAGE));
6224
6225         print_quota(mnt, qctl, QC_GENERAL, rc1, human_readable, show_default);
6226
6227         if (!show_default && verbose &&
6228             qctl->qc_valid == QC_GENERAL && qctl->qc_cmd != LUSTRE_Q_GETINFO) {
6229                 char strbuf[STRBUF_LEN];
6230
6231                 rc2 = print_obd_quota(mnt, qctl, 1, human_readable,
6232                                       &total_ialloc);
6233                 rc3 = print_obd_quota(mnt, qctl, 0, human_readable,
6234                                       &total_balloc);
6235                 kbytes2str(total_balloc, strbuf, sizeof(strbuf),
6236                            human_readable);
6237                 printf("Total allocated inode limit: %ju, total "
6238                        "allocated block limit: %s\n", (uintmax_t)total_ialloc,
6239                        strbuf);
6240         }
6241
6242         if (use_default_for_blk)
6243                 printf("%cid %u is using default block quota setting\n",
6244                        *qtype_name(qctl->qc_type), qctl->qc_id);
6245
6246         if (use_default_for_file)
6247                 printf("%cid %u is using default file quota setting\n",
6248                        *qtype_name(qctl->qc_type), qctl->qc_id);
6249
6250         if (rc1 || rc2 || rc3 || inacc)
6251                 printf("Some errors happened when getting quota info. "
6252                        "Some devices may be not working or deactivated. "
6253                        "The data in \"[]\" is inaccurate.\n");
6254 out:
6255         return rc1;
6256
6257 }
6258
6259 static int lfs_project(int argc, char **argv)
6260 {
6261         int ret = 0, err = 0, c, i;
6262         struct project_handle_control phc = { 0 };
6263         enum lfs_project_ops_t op;
6264
6265         phc.newline = true;
6266         phc.assign_projid = false;
6267         /* default action */
6268         op = LFS_PROJECT_LIST;
6269
6270         while ((c = getopt(argc, argv, "p:cCsdkr0")) != -1) {
6271                 switch (c) {
6272                 case 'c':
6273                         if (op != LFS_PROJECT_LIST) {
6274                                 fprintf(stderr,
6275                                         "%s: cannot specify '-c' '-C' '-s' together\n",
6276                                         progname);
6277                                 return CMD_HELP;
6278                         }
6279
6280                         op = LFS_PROJECT_CHECK;
6281                         break;
6282                 case 'C':
6283                         if (op != LFS_PROJECT_LIST) {
6284                                 fprintf(stderr,
6285                                         "%s: cannot specify '-c' '-C' '-s' together\n",
6286                                         progname);
6287                                 return CMD_HELP;
6288                         }
6289
6290                         op = LFS_PROJECT_CLEAR;
6291                         break;
6292                 case 's':
6293                         if (op != LFS_PROJECT_LIST) {
6294                                 fprintf(stderr,
6295                                         "%s: cannot specify '-c' '-C' '-s' together\n",
6296                                         progname);
6297                                 return CMD_HELP;
6298                         }
6299
6300                         phc.set_inherit = true;
6301                         op = LFS_PROJECT_SET;
6302                         break;
6303                 case 'd':
6304                         phc.dironly = true;
6305                         break;
6306                 case 'k':
6307                         phc.keep_projid = true;
6308                         break;
6309                 case 'r':
6310                         phc.recursive = true;
6311                         break;
6312                 case 'p':
6313                         phc.projid = strtoul(optarg, NULL, 0);
6314                         phc.assign_projid = true;
6315
6316                         break;
6317                 case '0':
6318                         phc.newline = false;
6319                         break;
6320                 default:
6321                         fprintf(stderr, "%s: invalid option '%c'\n",
6322                                 progname, optopt);
6323                         return CMD_HELP;
6324                 }
6325         }
6326
6327         if (phc.assign_projid && op == LFS_PROJECT_LIST) {
6328                 op = LFS_PROJECT_SET;
6329                 phc.set_projid = true;
6330         } else if (phc.assign_projid && op == LFS_PROJECT_SET) {
6331                 phc.set_projid = true;
6332         }
6333
6334         switch (op) {
6335         case LFS_PROJECT_CHECK:
6336                 if (phc.keep_projid) {
6337                         fprintf(stderr,
6338                                 "%s: '-k' is useless together with '-c'\n",
6339                                 progname);
6340                         return CMD_HELP;
6341                 }
6342                 break;
6343         case LFS_PROJECT_CLEAR:
6344                 if (!phc.newline) {
6345                         fprintf(stderr,
6346                                 "%s: '-0' is useless together with '-C'\n",
6347                                 progname);
6348                         return CMD_HELP;
6349                 }
6350                 if (phc.assign_projid) {
6351                         fprintf(stderr,
6352                                 "%s: '-p' is useless together with '-C'\n",
6353                                 progname);
6354                         return CMD_HELP;
6355                 }
6356                 break;
6357         case LFS_PROJECT_SET:
6358                 if (!phc.newline) {
6359                         fprintf(stderr,
6360                                 "%s: '-0' is useless together with '-s'\n",
6361                                 progname);
6362                         return CMD_HELP;
6363                 }
6364                 if (phc.keep_projid) {
6365                         fprintf(stderr,
6366                                 "%s: '-k' is useless together with '-s'\n",
6367                                 progname);
6368                         return CMD_HELP;
6369                 }
6370                 break;
6371         default:
6372                 if (!phc.newline) {
6373                         fprintf(stderr,
6374                                 "%s: '-0' is useless for list operations\n",
6375                                 progname);
6376                         return CMD_HELP;
6377                 }
6378                 break;
6379         }
6380
6381         argv += optind;
6382         argc -= optind;
6383         if (argc == 0) {
6384                 fprintf(stderr, "%s: missing file or directory target(s)\n",
6385                         progname);
6386                 return CMD_HELP;
6387         }
6388
6389         for (i = 0; i < argc; i++) {
6390                 switch (op) {
6391                 case LFS_PROJECT_CHECK:
6392                         err = lfs_project_check(argv[i], &phc);
6393                         break;
6394                 case LFS_PROJECT_LIST:
6395                         err = lfs_project_list(argv[i], &phc);
6396                         break;
6397                 case LFS_PROJECT_CLEAR:
6398                         err = lfs_project_clear(argv[i], &phc);
6399                         break;
6400                 case LFS_PROJECT_SET:
6401                         err = lfs_project_set(argv[i], &phc);
6402                         break;
6403                 default:
6404                         break;
6405                 }
6406                 if (err && !ret)
6407                         ret = err;
6408         }
6409
6410         return ret;
6411 }
6412
6413 static int lfs_quota(int argc, char **argv)
6414 {
6415         int c;
6416         char *mnt, *name = NULL;
6417         struct if_quotactl qctl = { .qc_cmd = LUSTRE_Q_GETQUOTA,
6418                                     .qc_type = ALLQUOTA };
6419         char *obd_uuid = (char *)qctl.obd_uuid.uuid;
6420         int rc = 0, rc1 = 0, verbose = 0, quiet = 0;
6421         char *endptr;
6422         __u32 valid = QC_GENERAL, idx = 0;
6423         bool human_readable = false;
6424         bool show_default = false;
6425         int qtype;
6426
6427         while ((c = getopt(argc, argv, "gGi:I:o:pPqtuUvh")) != -1) {
6428                 switch (c) {
6429                 case 'U':
6430                         show_default = true;
6431                 case 'u':
6432                         qtype = USRQUOTA;
6433                         goto quota_type;
6434                 case 'G':
6435                         show_default = true;
6436                 case 'g':
6437                         qtype = GRPQUOTA;
6438                         goto quota_type;
6439                 case 'P':
6440                         show_default = true;
6441                 case 'p':
6442                         qtype = PRJQUOTA;
6443 quota_type:
6444                         if (qctl.qc_type != ALLQUOTA) {
6445                                 fprintf(stderr,
6446                                         "%s quota: only one of -u, -g, or -p may be specified\n",
6447                                         progname);
6448                                 return CMD_HELP;
6449                         }
6450                         qctl.qc_type = qtype;
6451                         break;
6452                 case 't':
6453                         qctl.qc_cmd = LUSTRE_Q_GETINFO;
6454                         break;
6455                 case 'o':
6456                         valid = qctl.qc_valid = QC_UUID;
6457                         snprintf(obd_uuid, sizeof(qctl.obd_uuid), "%s", optarg);
6458                         break;
6459                 case 'i':
6460                         valid = qctl.qc_valid = QC_MDTIDX;
6461                         idx = qctl.qc_idx = atoi(optarg);
6462                         if (idx == 0 && *optarg != '0') {
6463                                 fprintf(stderr,
6464                                         "%s quota: invalid MDT index '%s'\n",
6465                                         progname, optarg);
6466                                 return CMD_HELP;
6467                         }
6468                         break;
6469                 case 'I':
6470                         valid = qctl.qc_valid = QC_OSTIDX;
6471                         idx = qctl.qc_idx = atoi(optarg);
6472                         if (idx == 0 && *optarg != '0') {
6473                                 fprintf(stderr,
6474                                         "%s quota: invalid OST index '%s'\n",
6475                                         progname, optarg);
6476                                 return CMD_HELP;
6477                         }
6478                         break;
6479                 case 'v':
6480                         verbose = 1;
6481                         break;
6482                 case 'q':
6483                         quiet = 1;
6484                         break;
6485                 case 'h':
6486                         human_readable = true;
6487                         break;
6488                 default:
6489                         fprintf(stderr, "%s quota: unrecognized option '%s'\n",
6490                                 progname, argv[optind - 1]);
6491                         return CMD_HELP;
6492                 }
6493         }
6494
6495         /* current uid/gid info for "lfs quota /path/to/lustre/mount" */
6496         if (qctl.qc_cmd == LUSTRE_Q_GETQUOTA && qctl.qc_type == ALLQUOTA &&
6497             optind == argc - 1 && !show_default) {
6498
6499                 qctl.qc_cmd = LUSTRE_Q_GETQUOTA;
6500                 qctl.qc_valid = valid;
6501                 qctl.qc_idx = idx;
6502
6503                 for (qtype = USRQUOTA; qtype <= GRPQUOTA; qtype++) {
6504                         qctl.qc_type = qtype;
6505                         if (qtype == USRQUOTA) {
6506                                 qctl.qc_id = geteuid();
6507                                 rc = uid2name(&name, qctl.qc_id);
6508                         } else {
6509                                 qctl.qc_id = getegid();
6510                                 rc = gid2name(&name, qctl.qc_id);
6511                         }
6512                         if (rc)
6513                                 name = "<unknown>";
6514                         mnt = argv[optind];
6515                         rc1 = get_print_quota(mnt, name, &qctl, verbose, quiet,
6516                                               human_readable, show_default);
6517                         if (rc1 && !rc)
6518                                 rc = rc1;
6519                 }
6520                 return rc;
6521         /* lfs quota -u username /path/to/lustre/mount */
6522         } else if (qctl.qc_cmd == LUSTRE_Q_GETQUOTA) {
6523                 /* options should be followed by u/g-name and mntpoint */
6524                 if ((!show_default && optind + 2 != argc) ||
6525                     (show_default && optind + 1 != argc) ||
6526                     qctl.qc_type == ALLQUOTA) {
6527                         fprintf(stderr,
6528                                 "%s quota: name and mount point must be specified\n",
6529                                 progname);
6530                         return CMD_HELP;
6531                 }
6532
6533                 if (!show_default) {
6534                         name = argv[optind++];
6535                         switch (qctl.qc_type) {
6536                         case USRQUOTA:
6537                                 rc = name2uid(&qctl.qc_id, name);
6538                                 break;
6539                         case GRPQUOTA:
6540                                 rc = name2gid(&qctl.qc_id, name);
6541                                 break;
6542                         case PRJQUOTA:
6543                                 rc = name2projid(&qctl.qc_id, name);
6544                                 break;
6545                         default:
6546                                 rc = -ENOTSUP;
6547                                 break;
6548                         }
6549                 } else {
6550                         qctl.qc_valid = QC_GENERAL;
6551                         qctl.qc_cmd = LUSTRE_Q_GETDEFAULT;
6552                         qctl.qc_id = 0;
6553                 }
6554
6555                 if (rc) {
6556                         qctl.qc_id = strtoul(name, &endptr, 10);
6557                         if (*endptr != '\0') {
6558                                 fprintf(stderr, "%s quota: invalid id '%s'\n",
6559                                         progname, name);
6560                                 return CMD_HELP;
6561                         }
6562                 }
6563         } else if (optind + 1 != argc || qctl.qc_type == ALLQUOTA) {
6564                 fprintf(stderr, "%s quota: missing quota info argument(s)\n",
6565                         progname);
6566                 return CMD_HELP;
6567         }
6568
6569         mnt = argv[optind];
6570         rc = get_print_quota(mnt, name, &qctl, verbose, quiet,
6571                              human_readable, show_default);
6572         return rc;
6573 }
6574 #endif /* HAVE_SYS_QUOTA_H! */
6575
6576 static int flushctx_ioctl(char *mp)
6577 {
6578         int fd, rc;
6579
6580         fd = open(mp, O_RDONLY);
6581         if (fd == -1) {
6582                 fprintf(stderr, "flushctx: error open %s: %s\n",
6583                         mp, strerror(errno));
6584                 return -1;
6585         }
6586
6587         rc = ioctl(fd, LL_IOC_FLUSHCTX);
6588         if (rc == -1)
6589                 fprintf(stderr, "flushctx: error ioctl %s: %s\n",
6590                         mp, strerror(errno));
6591
6592         close(fd);
6593         return rc;
6594 }
6595
6596 static int lfs_flushctx(int argc, char **argv)
6597 {
6598         int     kdestroy = 0, c;
6599         char    mntdir[PATH_MAX] = {'\0'};
6600         int     index = 0;
6601         int     rc = 0;
6602
6603         while ((c = getopt(argc, argv, "k")) != -1) {
6604                 switch (c) {
6605                 case 'k':
6606                         kdestroy = 1;
6607                         break;
6608                 default:
6609                         fprintf(stderr, "error: %s: option '-%c' "
6610                                         "unrecognized\n", argv[0], c);
6611                         return CMD_HELP;
6612                 }
6613         }
6614
6615         if (kdestroy) {
6616             if ((rc = system("kdestroy > /dev/null")) != 0) {
6617                 rc = WEXITSTATUS(rc);
6618                 fprintf(stderr, "error destroying tickets: %d, continuing\n", rc);
6619             }
6620         }
6621
6622         if (optind >= argc) {
6623                 /* flush for all mounted lustre fs. */
6624                 while (!llapi_search_mounts(NULL, index++, mntdir, NULL)) {
6625                         /* Check if we have a mount point */
6626                         if (mntdir[0] == '\0')
6627                                 continue;
6628
6629                         if (flushctx_ioctl(mntdir))
6630                                 rc = -1;
6631
6632                         mntdir[0] = '\0'; /* avoid matching in next loop */
6633                 }
6634         } else {
6635                 /* flush fs as specified */
6636                 while (optind < argc) {
6637                         if (flushctx_ioctl(argv[optind++]))
6638                                 rc = -1;
6639                 }
6640         }
6641         return rc;
6642 }
6643
6644 static int lfs_cp(int argc, char **argv)
6645 {
6646         fprintf(stderr, "remote client copy file(s).\n"
6647                 "obsolete, does not support it anymore.\n");
6648         return 0;
6649 }
6650
6651 static int lfs_ls(int argc, char **argv)
6652 {
6653         fprintf(stderr, "remote client lists directory contents.\n"
6654                 "obsolete, does not support it anymore.\n");
6655         return 0;
6656 }
6657
6658 static int lfs_changelog(int argc, char **argv)
6659 {
6660         void *changelog_priv;
6661         struct changelog_rec *rec;
6662         long long startrec = 0, endrec = 0;
6663         char *mdd;
6664         struct option long_opts[] = {
6665                 { .val = 'f', .name = "follow", .has_arg = no_argument },
6666                 { .name = NULL } };
6667         char short_opts[] = "f";
6668         int rc, follow = 0;
6669
6670         while ((rc = getopt_long(argc, argv, short_opts,
6671                 long_opts, NULL)) != -1) {
6672                 switch (rc) {
6673                 case 'f':
6674                         follow++;
6675                         break;
6676                 default:
6677                         fprintf(stderr,
6678                                 "%s changelog: unrecognized option '%s'\n",
6679                                 progname, argv[optind - 1]);
6680                         return CMD_HELP;
6681                 }
6682         }
6683         if (optind >= argc) {
6684                 fprintf(stderr, "%s changelog: mdtname must be specified\n",
6685                         progname);
6686                 return CMD_HELP;
6687         }
6688
6689         mdd = argv[optind++];
6690         if (argc > optind)
6691                 startrec = strtoll(argv[optind++], NULL, 10);
6692         if (argc > optind)
6693                 endrec = strtoll(argv[optind++], NULL, 10);
6694
6695         rc = llapi_changelog_start(&changelog_priv,
6696                                    CHANGELOG_FLAG_BLOCK |
6697                                    CHANGELOG_FLAG_JOBID |
6698                                    CHANGELOG_FLAG_EXTRA_FLAGS |
6699                                    (follow ? CHANGELOG_FLAG_FOLLOW : 0),
6700                                    mdd, startrec);
6701         if (rc < 0) {
6702                 fprintf(stderr, "%s changelog: cannot start changelog: %s\n",
6703                         progname, strerror(errno = -rc));
6704                 return rc;
6705         }
6706
6707         rc = llapi_changelog_set_xflags(changelog_priv,
6708                                         CHANGELOG_EXTRA_FLAG_UIDGID |
6709                                         CHANGELOG_EXTRA_FLAG_NID |
6710                                         CHANGELOG_EXTRA_FLAG_OMODE |
6711                                         CHANGELOG_EXTRA_FLAG_XATTR);
6712         if (rc < 0) {
6713                 fprintf(stderr,
6714                         "%s changelog: cannot set xflags for changelog: %s\n",
6715                         progname, strerror(errno = -rc));
6716                 return rc;
6717         }
6718
6719         while ((rc = llapi_changelog_recv(changelog_priv, &rec)) == 0) {
6720                 time_t secs;
6721                 struct tm ts;
6722
6723                 if (endrec && rec->cr_index > endrec) {
6724                         llapi_changelog_free(&rec);
6725                         break;
6726                 }
6727                 if (rec->cr_index < startrec) {
6728                         llapi_changelog_free(&rec);
6729                         continue;
6730                 }
6731
6732                 secs = rec->cr_time >> 30;
6733                 gmtime_r(&secs, &ts);
6734                 printf("%ju %02d%-5s %02d:%02d:%02d.%09d %04d.%02d.%02d "
6735                        "0x%x t="DFID, (uintmax_t)rec->cr_index, rec->cr_type,
6736                        changelog_type2str(rec->cr_type),
6737                        ts.tm_hour, ts.tm_min, ts.tm_sec,
6738                        (int)(rec->cr_time & ((1 << 30) - 1)),
6739                        ts.tm_year + 1900, ts.tm_mon + 1, ts.tm_mday,
6740                        rec->cr_flags & CLF_FLAGMASK, PFID(&rec->cr_tfid));
6741
6742                 if (rec->cr_flags & CLF_JOBID) {
6743                         struct changelog_ext_jobid *jid =
6744                                 changelog_rec_jobid(rec);
6745
6746                         if (jid->cr_jobid[0] != '\0')
6747                                 printf(" j=%s", jid->cr_jobid);
6748                 }
6749
6750                 if (rec->cr_flags & CLF_EXTRA_FLAGS) {
6751                         struct changelog_ext_extra_flags *ef =
6752                                 changelog_rec_extra_flags(rec);
6753
6754                         printf(" ef=0x%llx", ef->cr_extra_flags);
6755
6756                         if (ef->cr_extra_flags & CLFE_UIDGID) {
6757                                 struct changelog_ext_uidgid *uidgid =
6758                                         changelog_rec_uidgid(rec);
6759
6760                                 printf(" u=%llu:%llu",
6761                                        uidgid->cr_uid, uidgid->cr_gid);
6762                         }
6763                         if (ef->cr_extra_flags & CLFE_NID) {
6764                                 struct changelog_ext_nid *nid =
6765                                         changelog_rec_nid(rec);
6766
6767                                 printf(" nid=%s",
6768                                        libcfs_nid2str(nid->cr_nid));
6769                         }
6770
6771                         if (ef->cr_extra_flags & CLFE_OPEN) {
6772                                 struct changelog_ext_openmode *omd =
6773                                         changelog_rec_openmode(rec);
6774                                 char mode[] = "---";
6775
6776                                 /* exec mode must be exclusive */
6777                                 if (omd->cr_openflags & MDS_FMODE_EXEC) {
6778                                         mode[2] = 'x';
6779                                 } else {
6780                                         if (omd->cr_openflags & MDS_FMODE_READ)
6781                                                 mode[0] = 'r';
6782                                         if (omd->cr_openflags &
6783                                             (MDS_FMODE_WRITE |
6784                                              MDS_OPEN_TRUNC |
6785                                              MDS_OPEN_APPEND))
6786                                                 mode[1] = 'w';
6787                                 }
6788
6789                                 if (strcmp(mode, "---") != 0)
6790                                         printf(" m=%s", mode);
6791
6792                         }
6793
6794                         if (ef->cr_extra_flags & CLFE_XATTR) {
6795                                 struct changelog_ext_xattr *xattr =
6796                                         changelog_rec_xattr(rec);
6797
6798                                 if (xattr->cr_xattr[0] != '\0')
6799                                         printf(" x=%s", xattr->cr_xattr);
6800                         }
6801                 }
6802
6803                 if (rec->cr_namelen)
6804                         printf(" p="DFID" %.*s", PFID(&rec->cr_pfid),
6805                                rec->cr_namelen, changelog_rec_name(rec));
6806
6807                 if (rec->cr_flags & CLF_RENAME) {
6808                         struct changelog_ext_rename *rnm =
6809                                 changelog_rec_rename(rec);
6810
6811                         if (!fid_is_zero(&rnm->cr_sfid))
6812                                 printf(" s="DFID" sp="DFID" %.*s",
6813                                        PFID(&rnm->cr_sfid),
6814                                        PFID(&rnm->cr_spfid),
6815                                        (int)changelog_rec_snamelen(rec),
6816                                        changelog_rec_sname(rec));
6817                 }
6818                 printf("\n");
6819
6820                 llapi_changelog_free(&rec);
6821         }
6822
6823         llapi_changelog_fini(&changelog_priv);
6824
6825         if (rc < 0)
6826                 fprintf(stderr, "%s changelog: cannot access changelog: %s\n",
6827                         progname, strerror(errno = -rc));
6828
6829         return (rc == 1 ? 0 : rc);
6830 }
6831
6832 static int lfs_changelog_clear(int argc, char **argv)
6833 {
6834         long long endrec;
6835         int rc;
6836
6837         if (argc != 4)
6838                 return CMD_HELP;
6839
6840         endrec = strtoll(argv[3], NULL, 10);
6841
6842         rc = llapi_changelog_clear(argv[1], argv[2], endrec);
6843
6844         if (rc == -EINVAL)
6845                 fprintf(stderr, "%s: record out of range: %llu\n",
6846                         argv[0], endrec);
6847         else if (rc == -ENOENT)
6848                 fprintf(stderr, "%s: no changelog user: %s\n",
6849                         argv[0], argv[2]);
6850         else if (rc)
6851                 fprintf(stderr, "%s error: %s\n", argv[0],
6852                         strerror(-rc));
6853
6854         if (rc)
6855                 errno = -rc;
6856
6857         return rc;
6858 }
6859
6860 static int lfs_fid2path(int argc, char **argv)
6861 {
6862         struct option long_opts[] = {
6863                 { .val = 'c',   .name = "cur",  .has_arg = no_argument },
6864                 { .val = 'l',   .name = "link", .has_arg = required_argument },
6865                 { .val = 'r',   .name = "rec",  .has_arg = required_argument },
6866                 { .name = NULL } };
6867         char  short_opts[] = "cl:r:";
6868         char *device, *fid, *path;
6869         long long recno = -1;
6870         int linkno = -1;
6871         int lnktmp;
6872         int printcur = 0;
6873         int rc = 0;
6874         char *endptr = NULL;
6875
6876         while ((rc = getopt_long(argc, argv, short_opts,
6877                 long_opts, NULL)) != -1) {
6878                 switch (rc) {
6879                 case 'c':
6880                         printcur++;
6881                         break;
6882                 case 'l':
6883                         linkno = strtol(optarg, &endptr, 10);
6884                         if (*endptr != '\0') {
6885                                 fprintf(stderr,
6886                                         "%s fid2path: invalid linkno '%s'\n",
6887                                         progname, optarg);
6888                                 return CMD_HELP;
6889                         }
6890                         break;
6891                 case 'r':
6892                         recno = strtoll(optarg, &endptr, 10);
6893                         if (*endptr != '\0') {
6894                                 fprintf(stderr,
6895                                         "%s fid2path: invalid recno '%s'\n",
6896                                         progname, optarg);
6897                                 return CMD_HELP;
6898                         }
6899                         break;
6900                 default:
6901                         fprintf(stderr,
6902                                 "%s fid2path: unrecognized option '%s'\n",
6903                                 progname, argv[optind - 1]);
6904                         return CMD_HELP;
6905                 }
6906         }
6907
6908         if (argc < 3) {
6909                 fprintf(stderr,
6910                         "%s fid2path: <fsname|rootpath> and <fid>... must be specified\n",
6911                         progname);
6912                 return CMD_HELP;
6913         }
6914
6915         device = argv[optind++];
6916         path = calloc(1, PATH_MAX);
6917         if (path == NULL) {
6918                 rc = -errno;
6919                 fprintf(stderr,
6920                         "%s fid2path: cannot allocate memory for path: %s\n",
6921                         progname, strerror(-rc));
6922                 return rc;
6923         }
6924
6925         rc = 0;
6926         while (optind < argc) {
6927                 fid = argv[optind++];
6928
6929                 lnktmp = (linkno >= 0) ? linkno : 0;
6930                 while (1) {
6931                         int oldtmp = lnktmp;
6932                         long long rectmp = recno;
6933                         int rc2;
6934                         rc2 = llapi_fid2path(device, fid, path, PATH_MAX,
6935                                              &rectmp, &lnktmp);
6936                         if (rc2 < 0) {
6937                                 fprintf(stderr,
6938                                         "%s fid2path: cannot find '%s': %s\n",
6939                                         progname, fid, strerror(errno = -rc2));
6940                                 if (rc == 0)
6941                                         rc = rc2;
6942                                 break;
6943                         }
6944
6945                         if (printcur)
6946                                 fprintf(stdout, "%lld ", rectmp);
6947                         if (device[0] == '/') {
6948                                 fprintf(stdout, "%s", device);
6949                                 if (device[strlen(device) - 1] != '/')
6950                                         fprintf(stdout, "/");
6951                         } else if (path[0] == '\0') {
6952                                 fprintf(stdout, "/");
6953                         }
6954                         fprintf(stdout, "%s\n", path);
6955
6956                         if (linkno >= 0)
6957                                 /* specified linkno */
6958                                 break;
6959                         if (oldtmp == lnktmp)
6960                                 /* no more links */
6961                                 break;
6962                 }
6963         }
6964
6965         free(path);
6966         return rc;
6967 }
6968
6969 static int lfs_path2fid(int argc, char **argv)
6970 {
6971         struct option long_opts[] = {
6972                 { .val = 'p', .name = "parents", .has_arg = no_argument },
6973                 { .name = NULL } };
6974         char            **path;
6975         const char        short_opts[] = "p";
6976         const char       *sep = "";
6977         struct lu_fid     fid;
6978         int               rc = 0;
6979         bool              show_parents = false;
6980
6981         while ((rc = getopt_long(argc, argv, short_opts,
6982                                  long_opts, NULL)) != -1) {
6983                 switch (rc) {
6984                 case 'p':
6985                         show_parents = true;
6986                         break;
6987                 default:
6988                         fprintf(stderr,
6989                                 "%s path2fid: unrecognized option '%s'\n",
6990                                 progname, argv[optind - 1]);
6991                         return CMD_HELP;
6992                 }
6993         }
6994
6995         if (optind > argc - 1) {
6996                 fprintf(stderr, "%s path2fid: FILE... must be specified\n",
6997                         progname);
6998                 return CMD_HELP;
6999         }
7000         else if (optind < argc - 1)
7001                 sep = ": ";
7002
7003         rc = 0;
7004         for (path = argv + optind; *path != NULL; path++) {
7005                 int err = 0;
7006                 if (!show_parents) {
7007                         err = llapi_path2fid(*path, &fid);
7008                         if (!err)
7009                                 printf("%s%s"DFID"\n",
7010                                        *sep != '\0' ? *path : "", sep,
7011                                        PFID(&fid));
7012                 } else {
7013                         char            name[NAME_MAX + 1];
7014                         unsigned int    linkno = 0;
7015
7016                         while ((err = llapi_path2parent(*path, linkno, &fid,
7017                                                 name, sizeof(name))) == 0) {
7018                                 if (*sep != '\0' && linkno == 0)
7019                                         printf("%s%s", *path, sep);
7020
7021                                 printf("%s"DFID"/%s", linkno != 0 ? "\t" : "",
7022                                        PFID(&fid), name);
7023                                 linkno++;
7024                         }
7025
7026                         /* err == -ENODATA is end-of-loop */
7027                         if (linkno > 0 && err == -ENODATA) {
7028                                 printf("\n");
7029                                 err = 0;
7030                         }
7031                 }
7032
7033                 if (err) {
7034                         fprintf(stderr,
7035                                 "%s path2fid: cannot get %sfid for '%s': %s\n",
7036                                 progname, show_parents ? "parent " : "", *path,
7037                                 strerror(-err));
7038                         if (rc == 0) {
7039                                 rc = err;
7040                                 errno = -err;
7041                         }
7042                 }
7043         }
7044
7045         return rc;
7046 }
7047
7048 static int lfs_data_version(int argc, char **argv)
7049 {
7050         char *path;
7051         __u64 data_version;
7052         int fd;
7053         int rc;
7054         int c;
7055         int data_version_flags = LL_DV_RD_FLUSH; /* Read by default */
7056
7057         if (argc < 2) {
7058                 fprintf(stderr, "%s data_version: FILE must be specified\n",
7059                         progname);
7060                 return CMD_HELP;
7061         }
7062
7063         while ((c = getopt(argc, argv, "nrw")) != -1) {
7064                 switch (c) {
7065                 case 'n':
7066                         data_version_flags = 0;
7067                         break;
7068                 case 'r':
7069                         data_version_flags |= LL_DV_RD_FLUSH;
7070                         break;
7071                 case 'w':
7072                         data_version_flags |= LL_DV_WR_FLUSH;
7073                         break;
7074                 default:
7075                         fprintf(stderr,
7076                                 "%s data_version: unrecognized option '%s'\n",
7077                                 progname, argv[optind - 1]);
7078                         return CMD_HELP;
7079                 }
7080         }
7081         if (optind == argc) {
7082                 fprintf(stderr, "%s data_version: FILE must be specified\n",
7083                         progname);
7084                 return CMD_HELP;
7085         }
7086
7087         path = argv[optind];
7088         fd = open(path, O_RDONLY);
7089         if (fd < 0) {
7090                 rc = -errno;
7091                 fprintf(stderr, "%s data_version: cannot open file '%s': %s\n",
7092                         progname, path, strerror(-rc));
7093                 return rc;
7094         }
7095
7096         rc = llapi_get_data_version(fd, &data_version, data_version_flags);
7097         if (rc < 0)
7098                 fprintf(stderr,
7099                         "%s data_version: cannot get version for '%s': %s\n",
7100                         progname, path, strerror(-rc));
7101         else
7102                 printf("%ju" "\n", (uintmax_t)data_version);
7103
7104         close(fd);
7105         return rc;
7106 }
7107
7108 static int lfs_hsm_state(int argc, char **argv)
7109 {
7110         int rc;
7111         int i = 1;
7112         char *path;
7113         struct hsm_user_state hus;
7114
7115         if (argc < 2)
7116                 return CMD_HELP;
7117
7118         do {
7119                 path = argv[i];
7120
7121                 rc = llapi_hsm_state_get(path, &hus);
7122                 if (rc) {
7123                         fprintf(stderr, "can't get hsm state for %s: %s\n",
7124                                 path, strerror(errno = -rc));
7125                         return rc;
7126                 }
7127
7128                 /* Display path name and status flags */
7129                 printf("%s: (0x%08x)", path, hus.hus_states);
7130
7131                 if (hus.hus_states & HS_RELEASED)
7132                         printf(" released");
7133                 if (hus.hus_states & HS_EXISTS)
7134                         printf(" exists");
7135                 if (hus.hus_states & HS_DIRTY)
7136                         printf(" dirty");
7137                 if (hus.hus_states & HS_ARCHIVED)
7138                         printf(" archived");
7139                 /* Display user-settable flags */
7140                 if (hus.hus_states & HS_NORELEASE)
7141                         printf(" never_release");
7142                 if (hus.hus_states & HS_NOARCHIVE)
7143                         printf(" never_archive");
7144                 if (hus.hus_states & HS_LOST)
7145                         printf(" lost_from_hsm");
7146
7147                 if (hus.hus_archive_id != 0)
7148                         printf(", archive_id:%d", hus.hus_archive_id);
7149                 printf("\n");
7150
7151         } while (++i < argc);
7152
7153         return 0;
7154 }
7155
7156 #define LFS_HSM_SET   0
7157 #define LFS_HSM_CLEAR 1
7158
7159 /**
7160  * Generic function to set or clear HSM flags.
7161  * Used by hsm_set and hsm_clear.
7162  *
7163  * @mode  if LFS_HSM_SET, set the flags, if LFS_HSM_CLEAR, clear the flags.
7164  */
7165 static int lfs_hsm_change_flags(int argc, char **argv, int mode)
7166 {
7167         struct option long_opts[] = {
7168         { .val = 'A',   .name = "archived",     .has_arg = no_argument },
7169         { .val = 'a',   .name = "noarchive",    .has_arg = no_argument },
7170         { .val = 'd',   .name = "dirty",        .has_arg = no_argument },
7171         { .val = 'e',   .name = "exists",       .has_arg = no_argument },
7172         { .val = 'l',   .name = "lost",         .has_arg = no_argument },
7173         { .val = 'r',   .name = "norelease",    .has_arg = no_argument },
7174         { .val = 'i',   .name = "archive-id",   .has_arg = required_argument },
7175         { .name = NULL } };
7176         char short_opts[] = "lraAdei:";
7177         __u64 mask = 0;
7178         int c, rc;
7179         char *path;
7180         __u32 archive_id = 0;
7181         char *end = NULL;
7182
7183         if (argc < 3)
7184                 return CMD_HELP;
7185
7186         while ((c = getopt_long(argc, argv, short_opts,
7187                                 long_opts, NULL)) != -1) {
7188                 switch (c) {
7189                 case 'l':
7190                         mask |= HS_LOST;
7191                         break;
7192                 case 'a':
7193                         mask |= HS_NOARCHIVE;
7194                         break;
7195                 case 'A':
7196                         mask |= HS_ARCHIVED;
7197                         break;
7198                 case 'r':
7199                         mask |= HS_NORELEASE;
7200                         break;
7201                 case 'd':
7202                         mask |= HS_DIRTY;
7203                         break;
7204                 case 'e':
7205                         mask |= HS_EXISTS;
7206                         break;
7207                 case 'i':
7208                         archive_id = strtol(optarg, &end, 10);
7209                         if (*end != '\0') {
7210                                 fprintf(stderr, "invalid archive_id: '%s'\n",
7211                                         end);
7212                                 return CMD_HELP;
7213                         }
7214                         break;
7215                 case '?':
7216                         return CMD_HELP;
7217                 default:
7218                         fprintf(stderr, "error: %s: option '%s' unrecognized\n",
7219                                 argv[0], argv[optind - 1]);
7220                         return CMD_HELP;
7221                 }
7222         }
7223
7224         /* User should have specified a flag */
7225         if (mask == 0)
7226                 return CMD_HELP;
7227
7228         while (optind < argc) {
7229
7230                 path = argv[optind];
7231
7232                 /* If mode == 0, this means we apply the mask. */
7233                 if (mode == LFS_HSM_SET)
7234                         rc = llapi_hsm_state_set(path, mask, 0, archive_id);
7235                 else
7236                         rc = llapi_hsm_state_set(path, 0, mask, 0);
7237
7238                 if (rc != 0) {
7239                         fprintf(stderr, "Can't change hsm flags for %s: %s\n",
7240                                 path, strerror(errno = -rc));
7241                         return rc;
7242                 }
7243                 optind++;
7244         }
7245
7246         return 0;
7247 }
7248
7249 static int lfs_hsm_action(int argc, char **argv)
7250 {
7251         int                              rc;
7252         int                              i = 1;
7253         char                            *path;
7254         struct hsm_current_action        hca;
7255         struct hsm_extent                he;
7256         enum hsm_user_action             hua;
7257         enum hsm_progress_states         hps;
7258
7259         if (argc < 2)
7260                 return CMD_HELP;
7261
7262         do {
7263                 path = argv[i];
7264
7265                 rc = llapi_hsm_current_action(path, &hca);
7266                 if (rc) {
7267                         fprintf(stderr, "can't get hsm action for %s: %s\n",
7268                                 path, strerror(errno = -rc));
7269                         return rc;
7270                 }
7271                 he = hca.hca_location;
7272                 hua = hca.hca_action;
7273                 hps = hca.hca_state;
7274
7275                 printf("%s: %s", path, hsm_user_action2name(hua));
7276
7277                 /* Skip file without action */
7278                 if (hca.hca_action == HUA_NONE) {
7279                         printf("\n");
7280                         continue;
7281                 }
7282
7283                 printf(" %s ", hsm_progress_state2name(hps));
7284
7285                 if ((hps == HPS_RUNNING) &&
7286                     (hua == HUA_ARCHIVE || hua == HUA_RESTORE))
7287                         printf("(%llu bytes moved)\n",
7288                                (unsigned long long)he.length);
7289                 else if ((he.offset + he.length) == LUSTRE_EOF)
7290                         printf("(from %llu to EOF)\n",
7291                                (unsigned long long)he.offset);
7292                 else
7293                         printf("(from %llu to %llu)\n",
7294                                (unsigned long long)he.offset,
7295                                (unsigned long long)(he.offset + he.length));
7296
7297         } while (++i < argc);
7298
7299         return 0;
7300 }
7301
7302 static int lfs_hsm_set(int argc, char **argv)
7303 {
7304         return lfs_hsm_change_flags(argc, argv, LFS_HSM_SET);
7305 }
7306
7307 static int lfs_hsm_clear(int argc, char **argv)
7308 {
7309         return lfs_hsm_change_flags(argc, argv, LFS_HSM_CLEAR);
7310 }
7311
7312 /**
7313  * Check file state and return its fid, to be used by lfs_hsm_request().
7314  *
7315  * \param[in]     file      Path to file to check
7316  * \param[in,out] fid       Pointer to allocated lu_fid struct.
7317  * \param[in,out] last_dev  Pointer to last device id used.
7318  *
7319  * \return 0 on success.
7320  */
7321 static int lfs_hsm_prepare_file(const char *file, struct lu_fid *fid,
7322                                 dev_t *last_dev)
7323 {
7324         struct stat     st;
7325         int             rc;
7326
7327         rc = lstat(file, &st);
7328         if (rc) {
7329                 fprintf(stderr, "Cannot stat %s: %s\n", file, strerror(errno));
7330                 return -errno;
7331         }
7332         /* Checking for regular file as archiving as posix copytool
7333          * rejects archiving files other than regular files
7334          */
7335         if (!S_ISREG(st.st_mode)) {
7336                 fprintf(stderr, "error: \"%s\" is not a regular file\n", file);
7337                 return CMD_HELP;
7338         }
7339         /* A request should be ... */
7340         if (*last_dev != st.st_dev && *last_dev != 0) {
7341                 fprintf(stderr, "All files should be "
7342                         "on the same filesystem: %s\n", file);
7343                 return -EINVAL;
7344         }
7345         *last_dev = st.st_dev;
7346
7347         rc = llapi_path2fid(file, fid);
7348         if (rc) {
7349                 fprintf(stderr, "Cannot read FID of %s: %s\n",
7350                         file, strerror(-rc));
7351                 return rc;
7352         }
7353         return 0;
7354 }
7355
7356 /* Fill an HSM HUR item with a given file name.
7357  *
7358  * If mntpath is set, then the filename is actually a FID, and no
7359  * lookup on the filesystem will be performed.
7360  *
7361  * \param[in]  hur         the user request to fill
7362  * \param[in]  idx         index of the item inside the HUR to fill
7363  * \param[in]  mntpath     mountpoint of Lustre
7364  * \param[in]  fname       filename (if mtnpath is NULL)
7365  *                         or FID (if mntpath is set)
7366  * \param[in]  last_dev    pointer to last device id used
7367  *
7368  * \retval 0 on success
7369  * \retval CMD_HELP or a negative errno on error
7370  */
7371 static int fill_hur_item(struct hsm_user_request *hur, unsigned int idx,
7372                          const char *mntpath, const char *fname,
7373                          dev_t *last_dev)
7374 {
7375         struct hsm_user_item *hui = &hur->hur_user_item[idx];
7376         int rc;
7377
7378         hui->hui_extent.length = -1;
7379
7380         if (mntpath != NULL) {
7381                 if (*fname == '[')
7382                         fname++;
7383                 rc = sscanf(fname, SFID, RFID(&hui->hui_fid));
7384                 if (rc == 3) {
7385                         rc = 0;
7386                 } else {
7387                         fprintf(stderr, "hsm: '%s' is not a valid FID\n",
7388                                 fname);
7389                         rc = -EINVAL;
7390                 }
7391         } else {
7392                 rc = lfs_hsm_prepare_file(fname, &hui->hui_fid, last_dev);
7393         }
7394
7395         if (rc == 0)
7396                 hur->hur_request.hr_itemcount++;
7397
7398         return rc;
7399 }
7400
7401 static int lfs_hsm_request(int argc, char **argv, int action)
7402 {
7403         struct option long_opts[] = {
7404         { .val = 'a',   .name = "archive",      .has_arg = required_argument },
7405         { .val = 'D',   .name = "data",         .has_arg = required_argument },
7406         { .val = 'l',   .name = "filelist",     .has_arg = required_argument },
7407         { .val = 'm',   .name = "mntpath",      .has_arg = required_argument },
7408         { .name = NULL } };
7409         dev_t                    last_dev = 0;
7410         char                     short_opts[] = "l:D:a:m:";
7411         struct hsm_user_request *hur, *oldhur;
7412         int                      c, i;
7413         size_t                   len;
7414         int                      nbfile;
7415         char                    *line = NULL;
7416         char                    *filelist = NULL;
7417         char                     fullpath[PATH_MAX];
7418         char                    *opaque = NULL;
7419         int                      opaque_len = 0;
7420         int                      archive_id = 0;
7421         FILE                    *fp;
7422         int                      nbfile_alloc = 0;
7423         char                    *some_file = NULL;
7424         char                    *mntpath = NULL;
7425         int                      rc;
7426
7427         if (argc < 2)
7428                 return CMD_HELP;
7429
7430         while ((c = getopt_long(argc, argv, short_opts,
7431                                 long_opts, NULL)) != -1) {
7432                 switch (c) {
7433                 case 'l':
7434                         filelist = optarg;
7435                         break;
7436                 case 'D':
7437                         opaque = optarg;
7438                         break;
7439                 case 'a':
7440                         if (action != HUA_ARCHIVE &&
7441                             action != HUA_REMOVE) {
7442                                 fprintf(stderr,
7443                                         "error: -a is supported only "
7444                                         "when archiving or removing\n");
7445                                 return CMD_HELP;
7446                         }
7447                         archive_id = atoi(optarg);
7448                         break;
7449                 case 'm':
7450                         if (some_file == NULL) {
7451                                 mntpath = optarg;
7452                                 some_file = strdup(optarg);
7453                         }
7454                         break;
7455                 case '?':
7456                         return CMD_HELP;
7457                 default:
7458                         fprintf(stderr, "error: %s: option '%s' unrecognized\n",
7459                                 argv[0], argv[optind - 1]);
7460                         return CMD_HELP;
7461                 }
7462         }
7463
7464         /* All remaining args are files, so we have at least nbfile */
7465         nbfile = argc - optind;
7466
7467         if ((nbfile == 0) && (filelist == NULL))
7468                 return CMD_HELP;
7469
7470         if (opaque != NULL)
7471                 opaque_len = strlen(opaque);
7472
7473         /* Alloc the request structure with enough place to store all files
7474          * from command line. */
7475         hur = llapi_hsm_user_request_alloc(nbfile, opaque_len);
7476         if (hur == NULL) {
7477                 fprintf(stderr, "Cannot create the request: %s\n",
7478                         strerror(errno));
7479                 return errno;
7480         }
7481         nbfile_alloc = nbfile;
7482
7483         hur->hur_request.hr_action = action;
7484         hur->hur_request.hr_archive_id = archive_id;
7485         hur->hur_request.hr_flags = 0;
7486
7487         /* All remaining args are files, add them */
7488         if (nbfile != 0 && some_file == NULL)
7489                 some_file = strdup(argv[optind]);
7490
7491         for (i = 0; i < nbfile; i++) {
7492                 rc = fill_hur_item(hur, i, mntpath, argv[optind + i],
7493                                    &last_dev);
7494                 if (rc)
7495                         goto out_free;
7496         }
7497
7498         /* from here stop using nb_file, use hur->hur_request.hr_itemcount */
7499
7500         /* If a filelist was specified, read the filelist from it. */
7501         if (filelist != NULL) {
7502                 fp = fopen(filelist, "r");
7503                 if (fp == NULL) {
7504                         fprintf(stderr, "Cannot read the file list %s: %s\n",
7505                                 filelist, strerror(errno));
7506                         rc = -errno;
7507                         goto out_free;
7508                 }
7509
7510                 while ((rc = getline(&line, &len, fp)) != -1) {
7511                         /* If allocated buffer was too small, get something
7512                          * larger */
7513                         if (nbfile_alloc <= hur->hur_request.hr_itemcount) {
7514                                 ssize_t size;
7515
7516                                 nbfile_alloc = nbfile_alloc * 2 + 1;
7517                                 oldhur = hur;
7518                                 hur = llapi_hsm_user_request_alloc(nbfile_alloc,
7519                                                                    opaque_len);
7520                                 if (hur == NULL) {
7521                                         fprintf(stderr, "hsm: cannot allocate "
7522                                                 "the request: %s\n",
7523                                                 strerror(errno));
7524                                         hur = oldhur;
7525                                         rc = -errno;
7526                                         fclose(fp);
7527                                         goto out_free;
7528                                 }
7529                                 size = hur_len(oldhur);
7530                                 if (size < 0) {
7531                                         fprintf(stderr, "hsm: cannot allocate "
7532                                                 "%u files + %u bytes data\n",
7533                                             oldhur->hur_request.hr_itemcount,
7534                                             oldhur->hur_request.hr_data_len);
7535                                         free(hur);
7536                                         hur = oldhur;
7537                                         rc = -E2BIG;
7538                                         fclose(fp);
7539                                         goto out_free;
7540                                 }
7541                                 memcpy(hur, oldhur, size);
7542                                 free(oldhur);
7543                         }
7544
7545                         /* Chop CR */
7546                         if (line[strlen(line) - 1] == '\n')
7547                                 line[strlen(line) - 1] = '\0';
7548
7549                         rc = fill_hur_item(hur, hur->hur_request.hr_itemcount,
7550                                            mntpath, line, &last_dev);
7551                         if (rc) {
7552                                 fclose(fp);
7553                                 goto out_free;
7554                         }
7555
7556                         if (some_file == NULL) {
7557                                 some_file = line;
7558                                 line = NULL;
7559                         }
7560                 }
7561
7562                 rc = fclose(fp);
7563                 free(line);
7564         }
7565
7566         /* If a --data was used, add it to the request */
7567         hur->hur_request.hr_data_len = opaque_len;
7568         if (opaque != NULL)
7569                 memcpy(hur_data(hur), opaque, opaque_len);
7570
7571         /* Send the HSM request */
7572         if (realpath(some_file, fullpath) == NULL) {
7573                 fprintf(stderr, "Could not find path '%s': %s\n",
7574                         some_file, strerror(errno));
7575         }
7576         rc = llapi_hsm_request(fullpath, hur);
7577         if (rc) {
7578                 fprintf(stderr, "Cannot send HSM request (use of %s): %s\n",
7579                         some_file, strerror(-rc));
7580                 goto out_free;
7581         }
7582
7583 out_free:
7584         free(some_file);
7585         free(hur);
7586         return rc;
7587 }
7588
7589 static int lfs_hsm_archive(int argc, char **argv)
7590 {
7591         return lfs_hsm_request(argc, argv, HUA_ARCHIVE);
7592 }
7593
7594 static int lfs_hsm_restore(int argc, char **argv)
7595 {
7596         return lfs_hsm_request(argc, argv, HUA_RESTORE);
7597 }
7598
7599 static int lfs_hsm_release(int argc, char **argv)
7600 {
7601         return lfs_hsm_request(argc, argv, HUA_RELEASE);
7602 }
7603
7604 static int lfs_hsm_remove(int argc, char **argv)
7605 {
7606         return lfs_hsm_request(argc, argv, HUA_REMOVE);
7607 }
7608
7609 static int lfs_hsm_cancel(int argc, char **argv)
7610 {
7611         return lfs_hsm_request(argc, argv, HUA_CANCEL);
7612 }
7613
7614 static int lfs_swap_layouts(int argc, char **argv)
7615 {
7616         if (argc != 3)
7617                 return CMD_HELP;
7618
7619         return llapi_swap_layouts(argv[1], argv[2], 0, 0,
7620                                   SWAP_LAYOUTS_KEEP_MTIME |
7621                                   SWAP_LAYOUTS_KEEP_ATIME);
7622 }
7623
7624 static const char *const ladvise_names[] = LU_LADVISE_NAMES;
7625
7626 static const char *const lock_mode_names[] = LOCK_MODE_NAMES;
7627
7628 int lfs_get_mode(const char *string)
7629 {
7630         enum lock_mode_user mode;
7631
7632         for (mode = 0; mode < ARRAY_SIZE(lock_mode_names); mode++) {
7633                 if (lock_mode_names[mode] == NULL)
7634                         continue;
7635                 if (strcmp(string, lock_mode_names[mode]) == 0)
7636                         return mode;
7637         }
7638
7639         return -EINVAL;
7640 }
7641
7642 static enum lu_ladvise_type lfs_get_ladvice(const char *string)
7643 {
7644         enum lu_ladvise_type advice;
7645
7646         for (advice = 0;
7647              advice < ARRAY_SIZE(ladvise_names); advice++) {
7648                 if (ladvise_names[advice] == NULL)
7649                         continue;
7650                 if (strcmp(string, ladvise_names[advice]) == 0)
7651                         return advice;
7652         }
7653
7654         return LU_LADVISE_INVALID;
7655 }
7656
7657 static int lfs_ladvise(int argc, char **argv)
7658 {
7659         struct option long_opts[] = {
7660         { .val = 'a',   .name = "advice",       .has_arg = required_argument },
7661         { .val = 'b',   .name = "background",   .has_arg = no_argument },
7662         { .val = 'e',   .name = "end",          .has_arg = required_argument },
7663         { .val = 'l',   .name = "length",       .has_arg = required_argument },
7664         { .val = 'm',   .name = "mode",         .has_arg = required_argument },
7665         { .val = 's',   .name = "start",        .has_arg = required_argument },
7666         { .val = 'u',   .name = "unset",        .has_arg = no_argument },
7667         { .name = NULL } };
7668         char                     short_opts[] = "a:be:l:m:s:u";
7669         int                      c;
7670         int                      rc = 0;
7671         const char              *path;
7672         int                      fd;
7673         struct llapi_lu_ladvise  advice;
7674         enum lu_ladvise_type     advice_type = LU_LADVISE_INVALID;
7675         unsigned long long       start = 0;
7676         unsigned long long       end = LUSTRE_EOF;
7677         unsigned long long       length = 0;
7678         unsigned long long       size_units;
7679         unsigned long long       flags = 0;
7680         int                      mode = 0;
7681
7682         optind = 0;
7683         while ((c = getopt_long(argc, argv, short_opts,
7684                                 long_opts, NULL)) != -1) {
7685                 switch (c) {
7686                 case 'a':
7687                         advice_type = lfs_get_ladvice(optarg);
7688                         if (advice_type == LU_LADVISE_INVALID) {
7689                                 fprintf(stderr, "%s: invalid advice type "
7690                                         "'%s'\n", argv[0], optarg);
7691                                 fprintf(stderr, "Valid types:");
7692
7693                                 for (advice_type = 0;
7694                                      advice_type < ARRAY_SIZE(ladvise_names);
7695                                      advice_type++) {
7696                                         if (ladvise_names[advice_type] == NULL)
7697                                                 continue;
7698                                         fprintf(stderr, " %s",
7699                                                 ladvise_names[advice_type]);
7700                                 }
7701                                 fprintf(stderr, "\n");
7702
7703                                 return CMD_HELP;
7704                         }
7705                         break;
7706                 case 'b':
7707                         flags |= LF_ASYNC;
7708                         break;
7709                 case 'u':
7710                         flags |= LF_UNSET;
7711                         break;
7712                 case 'e':
7713                         size_units = 1;
7714                         rc = llapi_parse_size(optarg, &end,
7715                                               &size_units, 0);
7716                         if (rc) {
7717                                 fprintf(stderr, "%s: bad end offset '%s'\n",
7718                                         argv[0], optarg);
7719                                 return CMD_HELP;
7720                         }
7721                         break;
7722                 case 's':
7723                         size_units = 1;
7724                         rc = llapi_parse_size(optarg, &start,
7725                                               &size_units, 0);
7726                         if (rc) {
7727                                 fprintf(stderr, "%s: bad start offset "
7728                                         "'%s'\n", argv[0], optarg);
7729                                 return CMD_HELP;
7730                         }
7731                         break;
7732                 case 'l':
7733                         size_units = 1;
7734                         rc = llapi_parse_size(optarg, &length,
7735                                               &size_units, 0);
7736                         if (rc) {
7737                                 fprintf(stderr, "%s: bad length '%s'\n",
7738                                         argv[0], optarg);
7739                                 return CMD_HELP;
7740                         }
7741                         break;
7742                 case 'm':
7743                         mode = lfs_get_mode(optarg);
7744                         if (mode < 0) {
7745                                 fprintf(stderr, "%s: bad mode '%s', valid "
7746                                                  "modes are READ or WRITE\n",
7747                                         argv[0], optarg);
7748                                 return CMD_HELP;
7749                         }
7750                         break;
7751                 case '?':
7752                         return CMD_HELP;
7753                 default:
7754                         fprintf(stderr, "%s: option '%s' unrecognized\n",
7755                                 argv[0], argv[optind - 1]);
7756                         return CMD_HELP;
7757                 }
7758         }
7759
7760         if (advice_type == LU_LADVISE_INVALID) {
7761                 fprintf(stderr, "%s: please give an advice type\n", argv[0]);
7762                 fprintf(stderr, "Valid types:");
7763                 for (advice_type = 0; advice_type < ARRAY_SIZE(ladvise_names);
7764                      advice_type++) {
7765                         if (ladvise_names[advice_type] == NULL)
7766                                 continue;
7767                         fprintf(stderr, " %s", ladvise_names[advice_type]);
7768                 }
7769                 fprintf(stderr, "\n");
7770                 return CMD_HELP;
7771         }
7772
7773         if (advice_type == LU_LADVISE_LOCKNOEXPAND) {
7774                 fprintf(stderr, "%s: Lock no expand advice is a per file "
7775                                  "descriptor advice, so when called from lfs, "
7776                                  "it does nothing.\n", argv[0]);
7777                 return CMD_HELP;
7778         }
7779
7780         if (argc <= optind) {
7781                 fprintf(stderr, "%s: please give one or more file names\n",
7782                         argv[0]);
7783                 return CMD_HELP;
7784         }
7785
7786         if (end != LUSTRE_EOF && length != 0 && end != start + length) {
7787                 fprintf(stderr, "%s: conflicting arguments of -l and -e\n",
7788                         argv[0]);
7789                 return CMD_HELP;
7790         }
7791
7792         if (end == LUSTRE_EOF && length != 0)
7793                 end = start + length;
7794
7795         if (end <= start) {
7796                 fprintf(stderr, "%s: range [%llu, %llu] is invalid\n",
7797                         argv[0], start, end);
7798                 return CMD_HELP;
7799         }
7800
7801         if (advice_type != LU_LADVISE_LOCKAHEAD && mode != 0) {
7802                 fprintf(stderr, "%s: mode is only valid with lockahead\n",
7803                         argv[0]);
7804                 return CMD_HELP;
7805         }
7806
7807         if (advice_type == LU_LADVISE_LOCKAHEAD && mode == 0) {
7808                 fprintf(stderr, "%s: mode is required with lockahead\n",
7809                         argv[0]);
7810                 return CMD_HELP;
7811         }
7812
7813         while (optind < argc) {
7814                 int rc2;
7815
7816                 path = argv[optind++];
7817
7818                 fd = open(path, O_RDONLY);
7819                 if (fd < 0) {
7820                         fprintf(stderr, "%s: cannot open file '%s': %s\n",
7821                                 argv[0], path, strerror(errno));
7822                         rc2 = -errno;
7823                         goto next;
7824                 }
7825
7826                 advice.lla_start = start;
7827                 advice.lla_end = end;
7828                 advice.lla_advice = advice_type;
7829                 advice.lla_value1 = 0;
7830                 advice.lla_value2 = 0;
7831                 advice.lla_value3 = 0;
7832                 advice.lla_value4 = 0;
7833                 if (advice_type == LU_LADVISE_LOCKAHEAD) {
7834                         advice.lla_lockahead_mode = mode;
7835                         advice.lla_peradvice_flags = flags;
7836                 }
7837
7838                 rc2 = llapi_ladvise(fd, flags, 1, &advice);
7839                 close(fd);
7840                 if (rc2 < 0) {
7841                         fprintf(stderr, "%s: cannot give advice '%s' to file "
7842                                 "'%s': %s\n", argv[0],
7843                                 ladvise_names[advice_type],
7844                                 path, strerror(errno));
7845
7846                         goto next;
7847                 }
7848
7849 next:
7850                 if (rc == 0 && rc2 < 0)
7851                         rc = rc2;
7852         }
7853         return rc;
7854 }
7855
7856 /** The input string contains a comma delimited list of component ids and
7857  * ranges, for example "1,2-4,7".
7858  */
7859 static int parse_mirror_ids(__u16 *ids, int size, char *arg)
7860 {
7861         bool end_of_loop = false;
7862         char *ptr = NULL;
7863         int nr = 0;
7864         int rc;
7865
7866         if (arg == NULL)
7867                 return -EINVAL;
7868
7869         while (!end_of_loop) {
7870                 int start_index;
7871                 int end_index;
7872                 int i;
7873                 char *endptr = NULL;
7874
7875                 rc = -EINVAL;
7876                 ptr = strchrnul(arg, ',');
7877                 end_of_loop = *ptr == '\0';
7878                 *ptr = '\0';
7879
7880                 start_index = strtol(arg, &endptr, 0);
7881                 if (endptr == arg) /* no data at all */
7882                         break;
7883                 if (*endptr != '-' && *endptr != '\0') /* has invalid data */
7884                         break;
7885                 if (start_index < 0)
7886                         break;
7887
7888                 end_index = start_index;
7889                 if (*endptr == '-') {
7890                         end_index = strtol(endptr + 1, &endptr, 0);
7891                         if (*endptr != '\0')
7892                                 break;
7893                         if (end_index < start_index)
7894                                 break;
7895                 }
7896
7897                 for (i = start_index; i <= end_index && size > 0; i++) {
7898                         int j;
7899
7900                         /* remove duplicate */
7901                         for (j = 0; j < nr; j++) {
7902                                 if (ids[j] == i)
7903                                         break;
7904                         }
7905                         if (j == nr) { /* no duplicate */
7906                                 ids[nr++] = i;
7907                                 --size;
7908                         }
7909                 }
7910
7911                 if (size == 0 && i < end_index)
7912                         break;
7913
7914                 *ptr = ',';
7915                 arg = ++ptr;
7916                 rc = 0;
7917         }
7918         if (!end_of_loop && ptr != NULL)
7919                 *ptr = ',';
7920
7921         return rc < 0 ? rc : nr;
7922 }
7923
7924 /**
7925  * struct verify_mirror_id - Mirror id to be verified.
7926  * @mirror_id:   A specified mirror id.
7927  * @is_valid_id: @mirror_id is valid or not in the mirrored file.
7928  */
7929 struct verify_mirror_id {
7930         __u16 mirror_id;
7931         bool is_valid_id;
7932 };
7933
7934 /**
7935  * compare_mirror_ids() - Compare mirror ids.
7936  * @layout: Mirror component list.
7937  * @cbdata: Callback data in verify_mirror_id structure.
7938  *
7939  * This is a callback function called by llapi_layout_comp_iterate()
7940  * to compare the specified mirror id with the one in the current
7941  * component of @layout. If they are the same, then the specified
7942  * mirror id is valid.
7943  *
7944  * Return: a negative error code on failure or
7945  *         LLAPI_LAYOUT_ITER_CONT: Proceed iteration
7946  *         LLAPI_LAYOUT_ITER_STOP: Stop iteration
7947  */
7948 static inline
7949 int compare_mirror_ids(struct llapi_layout *layout, void *cbdata)
7950 {
7951         struct verify_mirror_id *mirror_id_cbdata =
7952                                  (struct verify_mirror_id *)cbdata;
7953         uint32_t mirror_id;
7954         int rc = 0;
7955
7956         rc = llapi_layout_mirror_id_get(layout, &mirror_id);
7957         if (rc < 0) {
7958                 rc = -errno;
7959                 fprintf(stderr,
7960                         "%s: llapi_layout_mirror_id_get failed: %s.\n",
7961                         progname, strerror(errno));
7962                 return rc;
7963         }
7964
7965         if (mirror_id_cbdata->mirror_id == mirror_id) {
7966                 mirror_id_cbdata->is_valid_id = true;
7967                 return LLAPI_LAYOUT_ITER_STOP;
7968         }
7969
7970         return LLAPI_LAYOUT_ITER_CONT;
7971 }
7972
7973 /**
7974  * verify_mirror_ids() - Verify specified mirror ids.
7975  * @fname:      Mirrored file name.
7976  * @mirror_ids: Specified mirror ids to be verified.
7977  * @ids_nr:     Number of specified mirror ids.
7978  *
7979  * This function verifies that specified @mirror_ids are valid
7980  * in the mirrored file @fname.
7981  *
7982  * Return: 0 on success or a negative error code on failure.
7983  */
7984 static inline
7985 int verify_mirror_ids(const char *fname, __u16 *mirror_ids, int ids_nr)
7986 {
7987         struct llapi_layout *layout = NULL;
7988         struct verify_mirror_id mirror_id_cbdata = { 0 };
7989         struct stat stbuf;
7990         uint32_t flr_state;
7991         int i;
7992         int fd;
7993         int rc = 0;
7994         int rc2 = 0;
7995
7996         if (ids_nr <= 0)
7997                 return -EINVAL;
7998
7999         if (stat(fname, &stbuf) < 0) {
8000                 fprintf(stderr, "%s: cannot stat file '%s': %s.\n",
8001                         progname, fname, strerror(errno));
8002                 rc = -errno;
8003                 goto error;
8004         }
8005
8006         if (!S_ISREG(stbuf.st_mode)) {
8007                 fprintf(stderr, "%s: '%s' is not a regular file.\n",
8008                         progname, fname);
8009                 rc = -EINVAL;
8010                 goto error;
8011         }
8012
8013         fd = open(fname, O_DIRECT | O_RDONLY);
8014         if (fd < 0) {
8015                 fprintf(stderr, "%s: cannot open '%s': %s.\n",
8016                         progname, fname, strerror(errno));
8017                 rc = -errno;
8018                 goto error;
8019         }
8020
8021         rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
8022         if (rc < 0) {
8023                 fprintf(stderr, "%s: '%s' llapi_lease_acquire failed: %s.\n",
8024                         progname, fname, strerror(errno));
8025                 goto close_fd;
8026         }
8027
8028         layout = llapi_layout_get_by_fd(fd, 0);
8029         if (layout == NULL) {
8030                 fprintf(stderr, "%s: '%s' llapi_layout_get_by_fd failed: %s.\n",
8031                         progname, fname, strerror(errno));
8032                 rc = -errno;
8033                 llapi_lease_release(fd);
8034                 goto close_fd;
8035         }
8036
8037         rc = llapi_layout_flags_get(layout, &flr_state);
8038         if (rc < 0) {
8039                 fprintf(stderr, "%s: '%s' llapi_layout_flags_get failed: %s.\n",
8040                         progname, fname, strerror(errno));
8041                 rc = -errno;
8042                 goto free_layout;
8043         }
8044
8045         flr_state &= LCM_FL_FLR_MASK;
8046         switch (flr_state) {
8047         case LCM_FL_NONE:
8048                 rc = -EINVAL;
8049                 fprintf(stderr, "%s: '%s' file state error: %s.\n",
8050                         progname, fname, llapi_layout_flags_string(flr_state));
8051                 goto free_layout;
8052         default:
8053                 break;
8054         }
8055
8056         rc2 = 0;
8057         for (i = 0; i < ids_nr; i++) {
8058                 mirror_id_cbdata.mirror_id = mirror_ids[i];
8059                 mirror_id_cbdata.is_valid_id = false;
8060
8061                 rc = llapi_layout_comp_iterate(layout, compare_mirror_ids,
8062                                                &mirror_id_cbdata);
8063                 if (rc < 0) {
8064                         rc = -errno;
8065                         fprintf(stderr,
8066                                 "%s: '%s' failed to verify mirror id: %u.\n",
8067                                 progname, fname, mirror_ids[i]);
8068                         goto free_layout;
8069                 }
8070
8071                 if (!mirror_id_cbdata.is_valid_id) {
8072                         rc2 = -EINVAL;
8073                         fprintf(stderr,
8074                                 "%s: '%s' invalid specified mirror id: %u.\n",
8075                                 progname, fname, mirror_ids[i]);
8076                 }
8077         }
8078         rc = rc2;
8079
8080 free_layout:
8081         llapi_layout_free(layout);
8082         llapi_lease_release(fd);
8083 close_fd:
8084         close(fd);
8085 error:
8086         return rc;
8087 }
8088
8089 static inline
8090 int lfs_mirror_resync_file(const char *fname, struct ll_ioc_lease *ioc,
8091                            __u16 *mirror_ids, int ids_nr)
8092 {
8093         struct llapi_resync_comp comp_array[1024] = { { 0 } };
8094         struct llapi_layout *layout;
8095         struct stat stbuf;
8096         uint32_t flr_state;
8097         uint64_t start;
8098         uint64_t end;
8099         int comp_size = 0;
8100         int idx;
8101         int fd;
8102         int rc;
8103
8104         if (stat(fname, &stbuf) < 0) {
8105                 fprintf(stderr, "%s: cannot stat file '%s': %s.\n",
8106                         progname, fname, strerror(errno));
8107                 rc = -errno;
8108                 goto error;
8109         }
8110         if (!S_ISREG(stbuf.st_mode)) {
8111                 fprintf(stderr, "%s: '%s' is not a regular file.\n",
8112                         progname, fname);
8113                 rc = -EINVAL;
8114                 goto error;
8115         }
8116
8117         fd = open(fname, O_DIRECT | O_RDWR);
8118         if (fd < 0) {
8119                 fprintf(stderr, "%s: cannot open '%s': %s.\n",
8120                         progname, fname, strerror(errno));
8121                 rc = -errno;
8122                 goto error;
8123         }
8124
8125         layout = llapi_layout_get_by_fd(fd, 0);
8126         if (layout == NULL) {
8127                 fprintf(stderr, "%s: '%s' llapi_layout_get_by_fd failed: %s.\n",
8128                         progname, fname, strerror(errno));
8129                 rc = -errno;
8130                 goto close_fd;
8131         }
8132
8133         rc = llapi_layout_flags_get(layout, &flr_state);
8134         if (rc) {
8135                 fprintf(stderr, "%s: '%s' llapi_layout_flags_get failed: %s.\n",
8136                         progname, fname, strerror(errno));
8137                 rc = -errno;
8138                 goto free_layout;
8139         }
8140
8141         flr_state &= LCM_FL_FLR_MASK;
8142         if (flr_state == LCM_FL_NONE) {
8143                 rc = -EINVAL;
8144                 fprintf(stderr, "%s: '%s' is not a FLR file.\n",
8145                         progname, fname);
8146                 goto free_layout;
8147         }
8148
8149         /* get stale component info */
8150         comp_size = llapi_mirror_find_stale(layout, comp_array,
8151                                             ARRAY_SIZE(comp_array),
8152                                             mirror_ids, ids_nr);
8153         if (comp_size <= 0) {
8154                 rc = comp_size;
8155                 goto free_layout;
8156         }
8157
8158         ioc->lil_mode = LL_LEASE_WRLCK;
8159         ioc->lil_flags = LL_LEASE_RESYNC;
8160         rc = llapi_lease_set(fd, ioc);
8161         if (rc < 0) {
8162                 if (rc == -EALREADY)
8163                         rc = 0;
8164                 else
8165                         fprintf(stderr,
8166                             "%s: '%s' llapi_lease_get_ext resync failed: %s.\n",
8167                                 progname, fname, strerror(errno));
8168                 goto free_layout;
8169         }
8170
8171         /* get the read range [start, end) */
8172         start = comp_array[0].lrc_start;
8173         end = comp_array[0].lrc_end;
8174         for (idx = 1; idx < comp_size; idx++) {
8175                 if (comp_array[idx].lrc_start < start)
8176                         start = comp_array[idx].lrc_start;
8177                 if (end < comp_array[idx].lrc_end)
8178                         end = comp_array[idx].lrc_end;
8179         }
8180
8181         rc = llapi_lease_check(fd);
8182         if (rc != LL_LEASE_WRLCK) {
8183                 fprintf(stderr, "%s: '%s' lost lease lock.\n",
8184                         progname, fname);
8185                 goto free_layout;
8186         }
8187
8188         rc = llapi_mirror_resync_many(fd, layout, comp_array, comp_size,
8189                                       start, end);
8190         if (rc < 0)
8191                 fprintf(stderr, "%s: '%s' llapi_mirror_resync_many: %d.\n",
8192                         progname, fname, rc);
8193
8194         /* prepare ioc for lease put */
8195         ioc->lil_mode = LL_LEASE_UNLCK;
8196         ioc->lil_flags = LL_LEASE_RESYNC_DONE;
8197         ioc->lil_count = 0;
8198         for (idx = 0; idx < comp_size; idx++) {
8199                 if (comp_array[idx].lrc_synced) {
8200                         ioc->lil_ids[ioc->lil_count] = comp_array[idx].lrc_id;
8201                         ioc->lil_count++;
8202                 }
8203         }
8204
8205         rc = llapi_lease_set(fd, ioc);
8206         if (rc <= 0) {
8207                 if (rc == 0) /* lost lease lock */
8208                         rc = -EBUSY;
8209                 fprintf(stderr, "%s: resync file '%s' failed: %s.\n",
8210                         progname, fname, strerror(errno));
8211                 goto free_layout;
8212         }
8213         /**
8214          * llapi_lease_set returns lease mode when it request to unlock
8215          * the lease lock
8216          */
8217         rc = 0;
8218
8219 free_layout:
8220         llapi_layout_free(layout);
8221 close_fd:
8222         close(fd);
8223 error:
8224         return rc;
8225 }
8226
8227 static inline int lfs_mirror_resync(int argc, char **argv)
8228 {
8229         struct ll_ioc_lease *ioc = NULL;
8230         __u16 mirror_ids[128] = { 0 };
8231         int ids_nr = 0;
8232         int c;
8233         int rc = 0;
8234
8235         struct option long_opts[] = {
8236         { .val = 'o',   .name = "only",         .has_arg = required_argument },
8237         { .name = NULL } };
8238
8239         while ((c = getopt_long(argc, argv, "o:", long_opts, NULL)) >= 0) {
8240                 switch (c) {
8241                 case 'o':
8242                         rc = parse_mirror_ids(mirror_ids,
8243                                         sizeof(mirror_ids) / sizeof(__u16),
8244                                         optarg);
8245                         if (rc < 0) {
8246                                 fprintf(stderr,
8247                                         "%s: bad mirror ids '%s'.\n",
8248                                         argv[0], optarg);
8249                                 goto error;
8250                         }
8251                         ids_nr = rc;
8252                         break;
8253                 default:
8254                         fprintf(stderr, "%s: options '%s' unrecognized.\n",
8255                                 argv[0], argv[optind - 1]);
8256                         rc = -EINVAL;
8257                         goto error;
8258                 }
8259         }
8260
8261         if (argc == optind) {
8262                 fprintf(stderr, "%s: no file name given.\n", argv[0]);
8263                 rc = CMD_HELP;
8264                 goto error;
8265         }
8266
8267         if (ids_nr > 0 && argc > optind + 1) {
8268                 fprintf(stderr,
8269                     "%s: option '--only' cannot be used upon multiple files.\n",
8270                         argv[0]);
8271                 rc = CMD_HELP;
8272                 goto error;
8273
8274         }
8275
8276         if (ids_nr > 0) {
8277                 rc = verify_mirror_ids(argv[optind], mirror_ids, ids_nr);
8278                 if (rc < 0)
8279                         goto error;
8280         }
8281
8282         /* set the lease on the file */
8283         ioc = calloc(sizeof(*ioc) + sizeof(__u32) * 4096, 1);
8284         if (ioc == NULL) {
8285                 fprintf(stderr, "%s: cannot alloc id array for ioc: %s.\n",
8286                         argv[0], strerror(errno));
8287                 rc = -errno;
8288                 goto error;
8289         }
8290
8291         for (; optind < argc; optind++) {
8292                 rc = lfs_mirror_resync_file(argv[optind], ioc,
8293                                             mirror_ids, ids_nr);
8294                 /* ignore previous file's error, continue with next file */
8295
8296                 /* reset ioc */
8297                 memset(ioc, 0, sizeof(*ioc) + sizeof(__u32) * 4096);
8298         }
8299
8300         free(ioc);
8301 error:
8302         return rc;
8303 }
8304
8305 static inline int verify_mirror_id_by_fd(int fd, __u16 mirror_id)
8306 {
8307         struct llapi_layout *layout;
8308         int rc;
8309
8310         layout = llapi_layout_get_by_fd(fd, 0);
8311         if (layout == NULL) {
8312                 fprintf(stderr, "could not get layout.\n");
8313                 return  -EINVAL;
8314         }
8315
8316         rc = llapi_layout_comp_iterate(layout, find_mirror_id, &mirror_id);
8317         if (rc < 0) {
8318                 fprintf(stderr, "failed to iterate layout\n");
8319                 llapi_layout_free(layout);
8320
8321                 return rc;
8322         } else if (rc == LLAPI_LAYOUT_ITER_CONT) {
8323                 fprintf(stderr, "does not find mirror with ID %u\n", mirror_id);
8324                 llapi_layout_free(layout);
8325
8326                 return -EINVAL;
8327         }
8328         llapi_layout_free(layout);
8329
8330         return 0;
8331 }
8332
8333 /**
8334  * Check whether two files are the same file
8335  * \retval      0  same file
8336  * \retval      1  not the same file
8337  * \retval      <0 error code
8338  */
8339 static inline int check_same_file(const char *f1, const char *f2)
8340 {
8341         struct stat stbuf1;
8342         struct stat stbuf2;
8343
8344         if (stat(f1, &stbuf1) < 0) {
8345                 fprintf(stderr, "%s: cannot stat file '%s': %s\n",
8346                         progname, f1, strerror(errno));
8347                 return -errno;
8348         }
8349
8350         if (stat(f2, &stbuf2) < 0) {
8351                 fprintf(stderr, "%s: cannot stat file '%s': %s\n",
8352                         progname, f2, strerror(errno));
8353                 return -errno;
8354         }
8355
8356         if (stbuf1.st_rdev == stbuf2.st_rdev &&
8357             stbuf1.st_ino == stbuf2.st_ino)
8358                 return 0;
8359
8360         return 1;
8361 }
8362
8363 static inline int lfs_mirror_read(int argc, char **argv)
8364 {
8365         int rc = CMD_HELP;
8366         __u16 mirror_id = 0;
8367         const char *outfile = NULL;
8368         char *fname;
8369         int fd = 0;
8370         int outfd;
8371         int c;
8372         void *buf;
8373         const size_t buflen = 4 << 20;
8374         off_t pos;
8375         struct option long_opts[] = {
8376         { .val = 'N',   .name = "mirror-id",    .has_arg = required_argument },
8377         { .val = 'o',   .name = "outfile",      .has_arg = required_argument },
8378         { .name = NULL } };
8379
8380         while ((c = getopt_long(argc, argv, "N:o:", long_opts, NULL)) >= 0) {
8381                 char *end;
8382
8383                 switch (c) {
8384                 case 'N':
8385                         mirror_id = strtoul(optarg, &end, 0);
8386                         if (*end != '\0' || mirror_id == 0) {
8387                                 fprintf(stderr,
8388                                         "%s %s: invalid mirror ID '%s'\n",
8389                                         progname, argv[0], optarg);
8390                                 return rc;
8391                         }
8392                         break;
8393                 case 'o':
8394                         outfile = optarg;
8395                         break;
8396                 default:
8397                         fprintf(stderr, "%s: option '%s' unrecognized.\n",
8398                                 progname, argv[optind - 1]);
8399                         return -EINVAL;
8400                 }
8401         }
8402
8403         if (argc == optind) {
8404                 fprintf(stderr, "%s %s: no mirrored file provided\n",
8405                         progname, argv[0]);
8406                 return rc;
8407         } else if (argc > optind + 1) {
8408                 fprintf(stderr, "%s %s: too many files\n", progname, argv[0]);
8409                 return rc;
8410         }
8411
8412         if (mirror_id == 0) {
8413                 fprintf(stderr, "%s %s: no valid mirror ID is provided\n",
8414                         progname, argv[0]);
8415                 return rc;
8416         }
8417
8418         /* open mirror file */
8419         fname = argv[optind];
8420
8421         if (outfile) {
8422                 rc = check_same_file(fname, outfile);
8423                 if (rc == 0) {
8424                         fprintf(stderr,
8425                         "%s %s: output file cannot be the mirrored file\n",
8426                                 progname, argv[0]);
8427                         return -EINVAL;
8428                 }
8429                 if (rc < 0)
8430                         return rc;
8431         }
8432
8433         fd = open(fname, O_DIRECT | O_RDONLY);
8434         if (fd < 0) {
8435                 fprintf(stderr, "%s %s: cannot open '%s': %s\n",
8436                         progname, argv[0], fname, strerror(errno));
8437                 return rc;
8438         }
8439
8440         /* verify mirror id */
8441         rc = verify_mirror_id_by_fd(fd, mirror_id);
8442         if (rc) {
8443                 fprintf(stderr,
8444                         "%s %s: cannot find mirror with ID %u in '%s'\n",
8445                         progname, argv[0], mirror_id, fname);
8446                 goto close_fd;
8447         }
8448
8449         /* open output file */
8450         if (outfile) {
8451                 outfd = open(outfile, O_EXCL | O_WRONLY | O_CREAT, 0644);
8452                 if (outfd < 0) {
8453                         fprintf(stderr, "%s %s: cannot create file '%s': %s\n",
8454                                 progname, argv[0], outfile, strerror(errno));
8455                         rc = -errno;
8456                         goto close_fd;
8457                 }
8458         } else {
8459                 outfd = STDOUT_FILENO;
8460         }
8461
8462         /* allocate buffer */
8463         rc = posix_memalign(&buf, sysconf(_SC_PAGESIZE), buflen);
8464         if (rc) {
8465                 fprintf(stderr, "%s %s: posix_memalign returns %d\n",
8466                                 progname, argv[0], rc);
8467                 goto close_outfd;
8468         }
8469
8470         pos = 0;
8471         while (1) {
8472                 ssize_t bytes_read;
8473                 ssize_t written = 0;
8474
8475                 bytes_read = llapi_mirror_read(fd, mirror_id, buf, buflen, pos);
8476                 if (bytes_read < 0) {
8477                         rc = bytes_read;
8478                         fprintf(stderr,
8479                                 "%s %s: fail to read data from mirror %u: %s\n",
8480                                 progname, argv[0], mirror_id, strerror(-rc));
8481                         goto free_buf;
8482                 }
8483
8484                 /* EOF reached */
8485                 if (bytes_read == 0)
8486                         break;
8487
8488                 while (written < bytes_read) {
8489                         ssize_t written2;
8490
8491                         written2 = write(outfd, buf + written,
8492                                          bytes_read - written);
8493                         if (written2 < 0) {
8494                                 fprintf(stderr,
8495                                         "%s %s: fail to write %s: %s\n",
8496                                         progname, argv[0], outfile ? : "STDOUT",
8497                                         strerror(errno));
8498                                 rc = -errno;
8499                                 goto free_buf;
8500                         }
8501                         written += written2;
8502                 }
8503
8504                 if (written != bytes_read) {
8505                         fprintf(stderr,
8506                 "%s %s: written %ld bytes does not match with %ld read.\n",
8507                                 progname, argv[0], written, bytes_read);
8508                         rc = -EIO;
8509                         goto free_buf;
8510                 }
8511
8512                 pos += bytes_read;
8513         }
8514
8515         fsync(outfd);
8516         rc = 0;
8517
8518 free_buf:
8519         free(buf);
8520 close_outfd:
8521         if (outfile)
8522                 close(outfd);
8523 close_fd:
8524         close(fd);
8525
8526         return rc;
8527 }
8528
8529 static inline int lfs_mirror_write(int argc, char **argv)
8530 {
8531         int rc = CMD_HELP;
8532         __u16 mirror_id = 0;
8533         const char *inputfile = NULL;
8534         char *fname;
8535         int fd = 0;
8536         int inputfd;
8537         int c;
8538         void *buf;
8539         const size_t buflen = 4 << 20;
8540         off_t pos;
8541         size_t page_size = sysconf(_SC_PAGESIZE);
8542         struct ll_ioc_lease_id ioc;
8543
8544         struct option long_opts[] = {
8545         { .val = 'N',   .name = "mirror-id",    .has_arg = required_argument },
8546         { .val = 'i',   .name = "inputfile",    .has_arg = required_argument },
8547         { .name = NULL } };
8548
8549         while ((c = getopt_long(argc, argv, "N:i:", long_opts, NULL)) >= 0) {
8550                 char *end;
8551
8552                 switch (c) {
8553                 case 'N':
8554                         mirror_id = strtoul(optarg, &end, 0);
8555                         if (*end != '\0' || mirror_id == 0) {
8556                                 fprintf(stderr,
8557                                         "%s %s: invalid mirror ID '%s'\n",
8558                                         progname, argv[0], optarg);
8559                                 return rc;
8560                         }
8561                         break;
8562                 case 'i':
8563                         inputfile = optarg;
8564                         break;
8565                 default:
8566                         fprintf(stderr, "%s: option '%s' unrecognized\n",
8567                                 progname, argv[optind - 1]);
8568                         return -EINVAL;
8569                 }
8570         }
8571
8572         if (argc == optind) {
8573                 fprintf(stderr, "%s %s: no mirrored file provided\n",
8574                         progname, argv[0]);
8575                 return rc;
8576         } else if (argc > optind + 1) {
8577                 fprintf(stderr, "%s %s: too many files\n", progname, argv[0]);
8578                 return rc;
8579         }
8580
8581         if (mirror_id == 0) {
8582                 fprintf(stderr, "%s %s: no valid mirror ID is provided\n",
8583                         progname, argv[0]);
8584                 return rc;
8585         }
8586
8587         /* open mirror file */
8588         fname = argv[optind];
8589
8590         if (inputfile) {
8591                 rc = check_same_file(fname, inputfile);
8592                 if (rc == 0) {
8593                         fprintf(stderr,
8594                         "%s %s: input file cannot be the mirrored file\n",
8595                                 progname, argv[0]);
8596                         return -EINVAL;
8597                 }
8598                 if (rc < 0)
8599                         return rc;
8600         }
8601
8602         fd = open(fname, O_DIRECT | O_WRONLY);
8603         if (fd < 0) {
8604                 fprintf(stderr, "%s %s: cannot open '%s': %s\n",
8605                         progname, argv[0], fname, strerror(errno));
8606                 return rc;
8607         }
8608
8609         /* verify mirror id */
8610         rc = verify_mirror_id_by_fd(fd, mirror_id);
8611         if (rc) {
8612                 fprintf(stderr,
8613                         "%s %s: cannot find mirror with ID %u in '%s'\n",
8614                         progname, argv[0], mirror_id, fname);
8615                 goto close_fd;
8616         }
8617
8618         /* open input file */
8619         if (inputfile) {
8620                 inputfd = open(inputfile, O_RDONLY, 0644);
8621                 if (inputfd < 0) {
8622                         fprintf(stderr, "%s %s: cannot open file '%s': %s\n",
8623                                 progname, argv[0], inputfile, strerror(errno));
8624                         rc = -errno;
8625                         goto close_fd;
8626                 }
8627         } else {
8628                 inputfd = STDIN_FILENO;
8629         }
8630
8631         /* allocate buffer */
8632         rc = posix_memalign(&buf, page_size, buflen);
8633         if (rc) {
8634                 fprintf(stderr, "%s %s: posix_memalign returns %d\n",
8635                         progname, argv[0], rc);
8636                 goto close_inputfd;
8637         }
8638
8639         /* prepare target mirror components instantiation */
8640         ioc.lil_mode = LL_LEASE_WRLCK;
8641         ioc.lil_flags = LL_LEASE_RESYNC;
8642         ioc.lil_mirror_id = mirror_id;
8643         rc = llapi_lease_set(fd, (struct ll_ioc_lease *)&ioc);
8644         if (rc < 0) {
8645                 fprintf(stderr,
8646                         "%s %s: '%s' llapi_lease_get_ext failed: %s\n",
8647                         progname, argv[0], fname, strerror(errno));
8648                 goto free_buf;
8649         }
8650
8651         pos = 0;
8652         while (1) {
8653                 ssize_t bytes_read;
8654                 ssize_t written;
8655                 size_t to_write;
8656
8657                 rc = llapi_lease_check(fd);
8658                 if (rc != LL_LEASE_WRLCK) {
8659                         fprintf(stderr, "%s %s: '%s' lost lease lock\n",
8660                                 progname, argv[0], fname);
8661                         goto free_buf;
8662                 }
8663
8664                 bytes_read = read(inputfd, buf, buflen);
8665                 if (bytes_read < 0) {
8666                         rc = bytes_read;
8667                         fprintf(stderr,
8668                                 "%s %s: fail to read data from '%s': %s\n",
8669                                 progname, argv[0], inputfile ? : "STDIN",
8670                                 strerror(errno));
8671                         rc = -errno;
8672                         goto free_buf;
8673                 }
8674
8675                 /* EOF reached */
8676                 if (bytes_read == 0)
8677                         break;
8678
8679                 /* round up to page align to make direct IO happy. */
8680                 to_write = (bytes_read + page_size - 1) & ~(page_size - 1);
8681
8682                 written = llapi_mirror_write(fd, mirror_id, buf, to_write,
8683                                              pos);
8684                 if (written < 0) {
8685                         rc = written;
8686                         fprintf(stderr,
8687                               "%s %s: fail to write to mirror %u: %s\n",
8688                                 progname, argv[0], mirror_id,
8689                                 strerror(-rc));
8690                         goto free_buf;
8691                 }
8692
8693                 pos += bytes_read;
8694         }
8695
8696         if (pos & (page_size - 1)) {
8697                 rc = llapi_mirror_truncate(fd, mirror_id, pos);
8698                 if (rc < 0)
8699                         goto free_buf;
8700         }
8701
8702         ioc.lil_mode = LL_LEASE_UNLCK;
8703         ioc.lil_flags = LL_LEASE_RESYNC_DONE;
8704         ioc.lil_count = 0;
8705         rc = llapi_lease_set(fd, (struct ll_ioc_lease *)&ioc);
8706         if (rc <= 0) {
8707                 if (rc == 0)
8708                         rc = -EBUSY;
8709                 fprintf(stderr,
8710                         "%s %s: release lease lock of '%s' failed: %s\n",
8711                         progname, argv[0], fname, strerror(errno));
8712                 goto free_buf;
8713         }
8714
8715         rc = 0;
8716
8717 free_buf:
8718         free(buf);
8719 close_inputfd:
8720         if (inputfile)
8721                 close(inputfd);
8722 close_fd:
8723         close(fd);
8724
8725         return rc;
8726 }
8727
8728 /**
8729  * struct verify_chunk - Mirror chunk to be verified.
8730  * @chunk:        [start, end) of the chunk.
8731  * @mirror_count: Number of mirror ids in @mirror_id array.
8732  * @mirror_id:    Array of valid mirror ids that cover the chunk.
8733  */
8734 struct verify_chunk {
8735         struct lu_extent chunk;
8736         unsigned int mirror_count;
8737         __u16 mirror_id[LUSTRE_MIRROR_COUNT_MAX];
8738 };
8739
8740 /**
8741  * print_chunks() - Print chunk information.
8742  * @fname:       Mirrored file name.
8743  * @chunks:      Array of chunks.
8744  * @chunk_count: Number of chunks in @chunks array.
8745  *
8746  * This function prints [start, end) of each chunk in @chunks
8747  * for mirrored file @fname, and also prints the valid mirror ids
8748  * that cover the chunk.
8749  *
8750  * Return: void.
8751  */
8752 static inline
8753 void print_chunks(const char *fname, struct verify_chunk *chunks,
8754                   int chunk_count)
8755 {
8756         int i;
8757         int j;
8758
8759         fprintf(stdout, "Chunks to be verified in %s:\n", fname);
8760         for (i = 0; i < chunk_count; i++) {
8761                 fprintf(stdout, DEXT, PEXT(&chunks[i].chunk));
8762
8763                 if (chunks[i].mirror_count == 0)
8764                         fprintf(stdout, "\t[");
8765                 else {
8766                         fprintf(stdout, "\t[%u", chunks[i].mirror_id[0]);
8767                         for (j = 1; j < chunks[i].mirror_count; j++)
8768                                 fprintf(stdout, ", %u", chunks[i].mirror_id[j]);
8769                 }
8770                 fprintf(stdout, "]\t%u\n", chunks[i].mirror_count);
8771         }
8772         fprintf(stdout, "\n");
8773 }
8774
8775 /**
8776  * print_checksums() - Print CRC-32 checksum values.
8777  * @chunk: A chunk and its corresponding valid mirror ids.
8778  * @crc:   CRC-32 checksum values on the chunk for each valid mirror.
8779  *
8780  * This function prints CRC-32 checksum values on @chunk for
8781  * each valid mirror that covers it.
8782  *
8783  * Return: void.
8784  */
8785 static inline
8786 void print_checksums(struct verify_chunk *chunk, unsigned long *crc)
8787 {
8788         int i;
8789
8790         fprintf(stdout,
8791                 "CRC-32 checksum value for chunk "DEXT":\n",
8792                 PEXT(&chunk->chunk));
8793         for (i = 0; i < chunk->mirror_count; i++)
8794                 fprintf(stdout, "Mirror %u:\t%#lx\n",
8795                         chunk->mirror_id[i], crc[i]);
8796         fprintf(stdout, "\n");
8797 }
8798
8799 /**
8800  * filter_mirror_id() - Filter specified mirror ids.
8801  * @chunks:      Array of chunks.
8802  * @chunk_count: Number of chunks in @chunks array.
8803  * @mirror_ids:  Specified mirror ids to be verified.
8804  * @ids_nr:      Number of specified mirror ids.
8805  *
8806  * This function scans valid mirror ids that cover each chunk in @chunks
8807  * and filters specified mirror ids.
8808  *
8809  * Return: void.
8810  */
8811 static inline
8812 void filter_mirror_id(struct verify_chunk *chunks, int chunk_count,
8813                       __u16 *mirror_ids, int ids_nr)
8814 {
8815         int i;
8816         int j;
8817         int k;
8818         __u16 valid_id[LUSTRE_MIRROR_COUNT_MAX] = { 0 };
8819         unsigned int valid_count = 0;
8820
8821         for (i = 0; i < chunk_count; i++) {
8822                 if (chunks[i].mirror_count == 0)
8823                         continue;
8824
8825                 valid_count = 0;
8826                 for (j = 0; j < ids_nr; j++) {
8827                         for (k = 0; k < chunks[i].mirror_count; k++) {
8828                                 if (chunks[i].mirror_id[k] == mirror_ids[j]) {
8829                                         valid_id[valid_count] = mirror_ids[j];
8830                                         valid_count++;
8831                                         break;
8832                                 }
8833                         }
8834                 }
8835
8836                 memcpy(chunks[i].mirror_id, valid_id,
8837                        sizeof(__u16) * valid_count);
8838                 chunks[i].mirror_count = valid_count;
8839         }
8840 }
8841
8842 /**
8843  * lfs_mirror_prepare_chunk() - Find mirror chunks to be verified.
8844  * @layout:      Mirror component list.
8845  * @chunks:      Array of chunks.
8846  * @chunks_size: Array size of @chunks.
8847  *
8848  * This function scans the components in @layout from offset 0 to LUSTRE_EOF
8849  * to find out chunk segments and store them in @chunks array.
8850  *
8851  * The @mirror_id array in each element of @chunks will store the valid
8852  * mirror ids that cover the chunk. If a mirror component covering the
8853  * chunk has LCME_FL_STALE or LCME_FL_OFFLINE flag, then the mirror id
8854  * will not be stored into the @mirror_id array, and the chunk for that
8855  * mirror will not be verified.
8856  *
8857  * The @mirror_count in each element of @chunks will store the number of
8858  * mirror ids in @mirror_id array. If @mirror_count is 0, it indicates the
8859  * chunk is invalid in all of the mirrors. And if @mirror_count is 1, it
8860  * indicates the chunk is valid in only one mirror. In both cases, the
8861  * chunk will not be verified.
8862  *
8863  * Here is an example:
8864  *
8865  *  0      1M     2M     3M     4M           EOF
8866  *  +------+-------------+--------------------+
8867  *  |      |             |      S             |       mirror1
8868  *  +------+------+------+------+-------------+
8869  *  |             |   S  |   S  |             |       mirror2
8870  *  +-------------+------+------+-------------+
8871  *
8872  * prepared @chunks array will contain 5 elements:
8873  * (([0, 1M), [1, 2], 2),
8874  *  ([1M, 2M), [1, 2], 2),
8875  *  ([2M, 3M), [1], 1),
8876  *  ([3M, 4M], [], 0),
8877  *  ([4M, EOF), [2], 1))
8878  *
8879  * Return: the actual array size of @chunks on success
8880  *         or a negative error code on failure.
8881  */
8882 static inline
8883 int lfs_mirror_prepare_chunk(struct llapi_layout *layout,
8884                              struct verify_chunk *chunks,
8885                              size_t chunks_size)
8886 {
8887         uint64_t start;
8888         uint64_t end;
8889         uint32_t mirror_id;
8890         uint32_t flags;
8891         int idx = 0;
8892         int i = 0;
8893         int rc = 0;
8894
8895         memset(chunks, 0, sizeof(*chunks) * chunks_size);
8896
8897         while (1) {
8898                 rc = llapi_layout_comp_use(layout, LLAPI_LAYOUT_COMP_USE_FIRST);
8899                 if (rc < 0) {
8900                         fprintf(stderr,
8901                                 "%s: move to the first layout component: %s.\n",
8902                                 progname, strerror(errno));
8903                         goto error;
8904                 }
8905
8906                 i = 0;
8907                 rc = 0;
8908                 chunks[idx].chunk.e_end = LUSTRE_EOF;
8909                 while (rc == 0) {
8910                         rc = llapi_layout_comp_extent_get(layout, &start, &end);
8911                         if (rc < 0) {
8912                                 fprintf(stderr,
8913                                         "%s: llapi_layout_comp_extent_get failed: %s.\n",
8914                                         progname, strerror(errno));
8915                                 goto error;
8916                         }
8917
8918                         if (start > chunks[idx].chunk.e_start ||
8919                             end <= chunks[idx].chunk.e_start)
8920                                 goto next;
8921
8922                         if (end < chunks[idx].chunk.e_end)
8923                                 chunks[idx].chunk.e_end = end;
8924
8925                         rc = llapi_layout_comp_flags_get(layout, &flags);
8926                         if (rc < 0) {
8927                                 fprintf(stderr,
8928                                         "%s: llapi_layout_comp_flags_get failed: %s.\n",
8929                                         progname, strerror(errno));
8930                                 goto error;
8931                         }
8932
8933                         if (flags & LCME_FL_STALE || flags & LCME_FL_OFFLINE)
8934                                 goto next;
8935
8936                         rc = llapi_layout_mirror_id_get(layout, &mirror_id);
8937                         if (rc < 0) {
8938                                 fprintf(stderr,
8939                                         "%s: llapi_layout_mirror_id_get failed: %s.\n",
8940                                         progname, strerror(errno));
8941                                 goto error;
8942                         }
8943
8944                         chunks[idx].mirror_id[i] = mirror_id;
8945                         i++;
8946                         if (i >= ARRAY_SIZE(chunks[idx].mirror_id)) {
8947                                 fprintf(stderr,
8948                                         "%s: mirror_id array is too small.\n",
8949                                         progname);
8950                                 rc = -EINVAL;
8951                                 goto error;
8952                         }
8953
8954                 next:
8955                         rc = llapi_layout_comp_use(layout,
8956                                                    LLAPI_LAYOUT_COMP_USE_NEXT);
8957                         if (rc < 0) {
8958                                 fprintf(stderr,
8959                                         "%s: move to the next layout component: %s.\n",
8960                                         progname, strerror(errno));
8961                                 goto error;
8962                         }
8963                 } /* loop through all components */
8964
8965                 chunks[idx].mirror_count = i;
8966
8967                 if (chunks[idx].chunk.e_end == LUSTRE_EOF)
8968                         break;
8969
8970                 idx++;
8971                 if (idx >= chunks_size) {
8972                         fprintf(stderr, "%s: chunks array is too small.\n",
8973                                 progname);
8974                         rc = -EINVAL;
8975                         goto error;
8976                 }
8977
8978                 chunks[idx].chunk.e_start = chunks[idx - 1].chunk.e_end;
8979         }
8980
8981 error:
8982         return rc < 0 ? rc : idx + 1;
8983 }
8984
8985 /**
8986  * lfs_mirror_verify_chunk() - Verify a chunk.
8987  * @fd:        File descriptor of the mirrored file.
8988  * @file_size: Size of the mirrored file.
8989  * @chunk:     A chunk and its corresponding valid mirror ids.
8990  * @verbose:   Verbose mode.
8991  *
8992  * This function verifies a @chunk contains exactly the same data
8993  * ammong the mirrors that cover it.
8994  *
8995  * If @verbose is specified, then the function will print where the
8996  * differences are if the data do not match. Otherwise, it will
8997  * just return an error in that case.
8998  *
8999  * Return: 0 on success or a negative error code on failure.
9000  */
9001 static inline
9002 int lfs_mirror_verify_chunk(int fd, size_t file_size,
9003                             struct verify_chunk *chunk, int verbose)
9004 {
9005         const size_t buflen = 4 * 1024 * 1024; /* 4M */
9006         void *buf;
9007         size_t page_size = sysconf(_SC_PAGESIZE);
9008         ssize_t bytes_read;
9009         ssize_t bytes_done;
9010         size_t count;
9011         off_t pos;
9012         unsigned long crc;
9013         unsigned long crc_array[LUSTRE_MIRROR_COUNT_MAX] = { 0 };
9014         int i;
9015         int rc = 0;
9016
9017         if (file_size == 0)
9018                 return 0;
9019
9020         rc = posix_memalign(&buf, page_size, buflen);
9021         if (rc) /* error code is returned directly */
9022                 return -rc;
9023
9024         if (verbose > 1) {
9025                 fprintf(stdout, "Verifying chunk "DEXT" on mirror:",
9026                         PEXT(&chunk->chunk));
9027                 for (i = 0; i < chunk->mirror_count; i++)
9028                         fprintf(stdout, " %u", chunk->mirror_id[i]);
9029                 fprintf(stdout, "\n");
9030         }
9031
9032         bytes_done = 0;
9033         count = MIN(chunk->chunk.e_end, file_size) - chunk->chunk.e_start;
9034         pos = chunk->chunk.e_start;
9035         while (bytes_done < count) {
9036                 /* compute initial CRC-32 checksum */
9037                 crc = crc32(0L, Z_NULL, 0);
9038                 memset(crc_array, 0, sizeof(crc_array));
9039
9040                 bytes_read = 0;
9041                 for (i = 0; i < chunk->mirror_count; i++) {
9042                         bytes_read = llapi_mirror_read(fd, chunk->mirror_id[i],
9043                                                        buf, buflen, pos);
9044                         if (bytes_read < 0) {
9045                                 rc = bytes_read;
9046                                 fprintf(stderr,
9047                                         "%s: failed to read data from mirror %u: %s.\n",
9048                                         progname, chunk->mirror_id[i],
9049                                         strerror(-rc));
9050                                 goto error;
9051                         }
9052
9053                         /* compute new CRC-32 checksum */
9054                         crc_array[i] = crc32(crc, buf, bytes_read);
9055                 }
9056
9057                 if (verbose)
9058                         print_checksums(chunk, crc_array);
9059
9060                 /* compare CRC-32 checksum values */
9061                 for (i = 1; i < chunk->mirror_count; i++) {
9062                         if (crc_array[i] != crc_array[0]) {
9063                                 rc = -EINVAL;
9064                                 if (!verbose)
9065                                         goto error;
9066
9067                                 fprintf(stderr,
9068                                         "%s: chunk "DEXT" has different checksum value on mirror %u and mirror %u.\n",
9069                                         progname, PEXT(&chunk->chunk),
9070                                         chunk->mirror_id[0],
9071                                         chunk->mirror_id[i]);
9072                         }
9073                 }
9074
9075                 pos += bytes_read;
9076                 bytes_done += bytes_read;
9077         }
9078
9079         if (verbose > 1 && rc == 0) {
9080                 fprintf(stdout, "Verifying chunk "DEXT" on mirror:",
9081                         PEXT(&chunk->chunk));
9082                 for (i = 0; i < chunk->mirror_count; i++)
9083                         fprintf(stdout, " %u", chunk->mirror_id[i]);
9084                 fprintf(stdout, " PASS\n\n");
9085         }
9086
9087 error:
9088         free(buf);
9089         return rc;
9090 }
9091
9092 /**
9093  * lfs_mirror_verify_file() - Verify a mirrored file.
9094  * @fname:      Mirrored file name.
9095  * @mirror_ids: Specified mirror ids to be verified.
9096  * @ids_nr:     Number of specified mirror ids.
9097  * @verbose:    Verbose mode.
9098  *
9099  * This function verifies that each SYNC mirror of a mirrored file
9100  * specified by @fname contains exactly the same data.
9101  *
9102  * If @mirror_ids is specified, then the function will verify the
9103  * mirrors specified by @mirror_ids contain exactly the same data.
9104  *
9105  * If @verbose is specified, then the function will print where the
9106  * differences are if the data do not match. Otherwise, it will
9107  * just return an error in that case.
9108  *
9109  * Return: 0 on success or a negative error code on failure.
9110  */
9111 static inline
9112 int lfs_mirror_verify_file(const char *fname, __u16 *mirror_ids, int ids_nr,
9113                            int verbose)
9114 {
9115         struct verify_chunk chunks_array[1024] = { };
9116         struct llapi_layout *layout = NULL;
9117         struct stat stbuf;
9118         uint32_t flr_state;
9119         int fd;
9120         int chunk_count = 0;
9121         int idx = 0;
9122         int rc = 0;
9123         int rc1 = 0;
9124         int rc2 = 0;
9125
9126         if (stat(fname, &stbuf) < 0) {
9127                 fprintf(stderr, "%s: cannot stat file '%s': %s.\n",
9128                         progname, fname, strerror(errno));
9129                 rc = -errno;
9130                 goto error;
9131         }
9132
9133         if (!S_ISREG(stbuf.st_mode)) {
9134                 fprintf(stderr, "%s: '%s' is not a regular file.\n",
9135                         progname, fname);
9136                 rc = -EINVAL;
9137                 goto error;
9138         }
9139
9140         if (stbuf.st_size == 0) {
9141                 if (verbose)
9142                         fprintf(stdout, "%s: '%s' file size is 0.\n",
9143                                 progname, fname);
9144                 rc = 0;
9145                 goto error;
9146         }
9147
9148         fd = open(fname, O_DIRECT | O_RDONLY);
9149         if (fd < 0) {
9150                 fprintf(stderr, "%s: cannot open '%s': %s.\n",
9151                         progname, fname, strerror(errno));
9152                 rc = -errno;
9153                 goto error;
9154         }
9155
9156         rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
9157         if (rc < 0) {
9158                 fprintf(stderr, "%s: '%s' llapi_lease_acquire failed: %s.\n",
9159                         progname, fname, strerror(errno));
9160                 goto close_fd;
9161         }
9162
9163         layout = llapi_layout_get_by_fd(fd, 0);
9164         if (layout == NULL) {
9165                 fprintf(stderr, "%s: '%s' llapi_layout_get_by_fd failed: %s.\n",
9166                         progname, fname, strerror(errno));
9167                 rc = -errno;
9168                 llapi_lease_release(fd);
9169                 goto close_fd;
9170         }
9171
9172         rc = llapi_layout_flags_get(layout, &flr_state);
9173         if (rc < 0) {
9174                 fprintf(stderr, "%s: '%s' llapi_layout_flags_get failed: %s.\n",
9175                         progname, fname, strerror(errno));
9176                 rc = -errno;
9177                 goto free_layout;
9178         }
9179
9180         flr_state &= LCM_FL_FLR_MASK;
9181         switch (flr_state) {
9182         case LCM_FL_NONE:
9183                 rc = -EINVAL;
9184                 fprintf(stderr, "%s: '%s' file state error: %s.\n",
9185                         progname, fname, llapi_layout_flags_string(flr_state));
9186                 goto free_layout;
9187         default:
9188                 break;
9189         }
9190
9191         /* find out mirror chunks to be verified */
9192         chunk_count = lfs_mirror_prepare_chunk(layout, chunks_array,
9193                                                ARRAY_SIZE(chunks_array));
9194         if (chunk_count < 0) {
9195                 rc = chunk_count;
9196                 goto free_layout;
9197         }
9198
9199         if (ids_nr > 0)
9200                 /* filter specified mirror ids */
9201                 filter_mirror_id(chunks_array, chunk_count, mirror_ids, ids_nr);
9202
9203         if (verbose > 2)
9204                 print_chunks(fname, chunks_array, chunk_count);
9205
9206         for (idx = 0; idx < chunk_count; idx++) {
9207                 if (chunks_array[idx].chunk.e_start >= stbuf.st_size) {
9208                         if (verbose)
9209                                 fprintf(stdout,
9210                                         "%s: '%s' chunk "DEXT" exceeds file size %#llx: skipped\n",
9211                                         progname, fname,
9212                                         PEXT(&chunks_array[idx].chunk),
9213                                         (unsigned long long)stbuf.st_size);
9214                         break;
9215                 }
9216
9217                 if (chunks_array[idx].mirror_count == 0) {
9218                         fprintf(stderr,
9219                                 "%s: '%s' chunk "DEXT" is invalid in all of the mirrors: ",
9220                                 progname, fname,
9221                                 PEXT(&chunks_array[idx].chunk));
9222                         if (verbose) {
9223                                 fprintf(stderr, "skipped\n");
9224                                 continue;
9225                         }
9226                         rc = -EINVAL;
9227                         fprintf(stderr, "failed\n");
9228                         goto free_layout;
9229                 }
9230
9231                 if (chunks_array[idx].mirror_count == 1) {
9232                         if (verbose)
9233                                 fprintf(stdout,
9234                                         "%s: '%s' chunk "DEXT" is only valid in mirror %u: skipped\n",
9235                                         progname, fname,
9236                                         PEXT(&chunks_array[idx].chunk),
9237                                         chunks_array[idx].mirror_id[0]);
9238                         continue;
9239                 }
9240
9241                 rc = llapi_lease_check(fd);
9242                 if (rc != LL_LEASE_RDLCK) {
9243                         fprintf(stderr, "%s: '%s' lost lease lock.\n",
9244                                 progname, fname);
9245                         goto free_layout;
9246                 }
9247
9248                 /* verify one chunk */
9249                 rc1 = lfs_mirror_verify_chunk(fd, stbuf.st_size,
9250                                               &chunks_array[idx], verbose);
9251                 if (rc1 < 0) {
9252                         rc2 = rc1;
9253                         if (!verbose) {
9254                                 rc = rc1;
9255                                 goto free_layout;
9256                         }
9257                 }
9258         }
9259
9260         if (rc2 < 0)
9261                 rc = rc2;
9262
9263 free_layout:
9264         llapi_layout_free(layout);
9265         llapi_lease_release(fd);
9266 close_fd:
9267         close(fd);
9268 error:
9269         return rc;
9270 }
9271
9272 /**
9273  * lfs_mirror_verify() - Parse and execute lfs mirror verify command.
9274  * @argc: The count of lfs mirror verify command line arguments.
9275  * @argv: Array of strings for lfs mirror verify command line arguments.
9276  *
9277  * This function parses lfs mirror verify command and verifies the
9278  * specified mirrored file(s).
9279  *
9280  * Return: 0 on success or a negative error code on failure.
9281  */
9282 static inline int lfs_mirror_verify(int argc, char **argv)
9283 {
9284         __u16 mirror_ids[LUSTRE_MIRROR_COUNT_MAX] = { 0 };
9285         int ids_nr = 0;
9286         int c;
9287         int verbose = 0;
9288         int rc = 0;
9289         int rc1 = 0;
9290         char cmd[PATH_MAX];
9291
9292         struct option long_opts[] = {
9293         { .val = 'o',   .name = "only",         .has_arg = required_argument },
9294         { .val = 'v',   .name = "verbose",      .has_arg = no_argument },
9295         { .name = NULL } };
9296
9297         snprintf(cmd, sizeof(cmd), "%s %s", progname, argv[0]);
9298         progname = cmd;
9299         while ((c = getopt_long(argc, argv, "o:v", long_opts, NULL)) >= 0) {
9300                 switch (c) {
9301                 case 'o':
9302                         rc = parse_mirror_ids(mirror_ids,
9303                                               ARRAY_SIZE(mirror_ids),
9304                                               optarg);
9305                         if (rc < 0) {
9306                                 fprintf(stderr,
9307                                         "%s: bad mirror ids '%s'.\n",
9308                                         progname, optarg);
9309                                 goto error;
9310                         }
9311                         ids_nr = rc;
9312                         if (ids_nr < 2) {
9313                                 fprintf(stderr,
9314                                         "%s: at least 2 mirror ids needed with '--only' option.\n",
9315                                         progname);
9316                                 rc = CMD_HELP;
9317                                 goto error;
9318                         }
9319                         break;
9320                 case 'v':
9321                         verbose++;
9322                         break;
9323                 default:
9324                         fprintf(stderr, "%s: option '%s' unrecognized.\n",
9325                                 progname, argv[optind - 1]);
9326                         rc = -EINVAL;
9327                         goto error;
9328                 }
9329         }
9330
9331         if (argc == optind) {
9332                 fprintf(stderr, "%s: no file name given.\n", progname);
9333                 rc = CMD_HELP;
9334                 goto error;
9335         }
9336
9337         if (ids_nr > 0 && argc > optind + 1) {
9338                 fprintf(stderr,
9339                         "%s: '--only' cannot be used upon multiple files.\n",
9340                         progname);
9341                 rc = CMD_HELP;
9342                 goto error;
9343
9344         }
9345
9346         if (ids_nr > 0) {
9347                 rc = verify_mirror_ids(argv[optind], mirror_ids, ids_nr);
9348                 if (rc < 0)
9349                         goto error;
9350         }
9351
9352         rc = 0;
9353         for (; optind < argc; optind++) {
9354                 rc1 = lfs_mirror_verify_file(argv[optind], mirror_ids, ids_nr,
9355                                              verbose);
9356                 if (rc1 < 0)
9357                         rc = rc1;
9358         }
9359 error:
9360         return rc;
9361 }
9362
9363 /**
9364  * lfs_mirror() - Parse and execute lfs mirror commands.
9365  * @argc: The count of lfs mirror command line arguments.
9366  * @argv: Array of strings for lfs mirror command line arguments.
9367  *
9368  * This function parses lfs mirror commands and performs the
9369  * corresponding functions specified in mirror_cmdlist[].
9370  *
9371  * Return: 0 on success or an error code on failure.
9372  */
9373 static int lfs_mirror(int argc, char **argv)
9374 {
9375         char cmd[PATH_MAX];
9376         int rc = 0;
9377
9378         setlinebuf(stdout);
9379
9380         Parser_init("lfs-mirror > ", mirror_cmdlist);
9381
9382         snprintf(cmd, sizeof(cmd), "%s %s", progname, argv[0]);
9383         progname = cmd;
9384         program_invocation_short_name = cmd;
9385         if (argc > 1)
9386                 rc = Parser_execarg(argc - 1, argv + 1, mirror_cmdlist);
9387         else
9388                 rc = Parser_commands();
9389
9390         return rc < 0 ? -rc : rc;
9391 }
9392
9393 static void lustre_som_swab(struct lustre_som_attrs *attrs)
9394 {
9395 #if __BYTE_ORDER == __BIG_ENDIAN
9396         __swab16s(&attrs->lsa_valid);
9397         __swab64s(&attrs->lsa_size);
9398         __swab64s(&attrs->lsa_blocks);
9399 #endif
9400 }
9401
9402 enum lfs_som_type {
9403         LFS_SOM_SIZE = 0x1,
9404         LFS_SOM_BLOCKS = 0x2,
9405         LFS_SOM_FLAGS = 0x4,
9406         LFS_SOM_ATTR_ALL = LFS_SOM_SIZE | LFS_SOM_BLOCKS |
9407                            LFS_SOM_FLAGS,
9408 };
9409
9410 static int lfs_getsom(int argc, char **argv)
9411 {
9412         const char *path;
9413         struct lustre_som_attrs *attrs;
9414         char buf[sizeof(*attrs) + 64];
9415         enum lfs_som_type type = LFS_SOM_ATTR_ALL;
9416         int rc = 0, c;
9417
9418         while ((c = getopt(argc, argv, "sbf")) != -1) {
9419                 switch (c) {
9420                 case 's':
9421                         type = LFS_SOM_SIZE;
9422                         break;
9423                 case 'b':
9424                         type = LFS_SOM_BLOCKS;
9425                         break;
9426                 case 'f':
9427                         type = LFS_SOM_FLAGS;
9428                         break;
9429                 default:
9430                         fprintf(stderr, "%s: invalid option '%c'\n",
9431                                 progname, optopt);
9432                         return CMD_HELP;
9433                 }
9434         }
9435
9436         argc -= optind;
9437         argv += optind;
9438
9439         if (argc != 1) {
9440                 fprintf(stderr, "%s: %s\n",
9441                         progname, argc == 0 ? "miss file target" :
9442                         "input more than 2 files");
9443                 return CMD_HELP;
9444         }
9445
9446         path = argv[0];
9447         attrs = (void *)buf;
9448         rc = lgetxattr(path, "trusted.som", attrs, sizeof(buf));
9449         if (rc < 0) {
9450                 rc = -errno;
9451                 fprintf(stderr, "%s failed to get som xattr: %s (%d)\n",
9452                         argv[0], strerror(errno), errno);
9453                 return rc;
9454         }
9455
9456         lustre_som_swab(attrs);
9457
9458         switch (type) {
9459         case LFS_SOM_ATTR_ALL:
9460                 printf("file: %s size: %llu blocks: %llu flags: %x\n",
9461                        path, attrs->lsa_size, attrs->lsa_blocks,
9462                        attrs->lsa_valid);
9463                 break;
9464         case LFS_SOM_SIZE:
9465                 printf("%llu\n", attrs->lsa_size);
9466                 break;
9467         case LFS_SOM_BLOCKS:
9468                 printf("%llu\n", attrs->lsa_blocks);
9469                 break;
9470         case LFS_SOM_FLAGS:
9471                 printf("%x\n", attrs->lsa_valid);
9472                 break;
9473         default:
9474                 fprintf(stderr, "%s: unknown option\n", progname);
9475                 return CMD_HELP;
9476         }
9477
9478         return 0;
9479 }
9480
9481 /**
9482  * lfs_mirror_list_commands() - List lfs mirror commands.
9483  * @argc: The count of command line arguments.
9484  * @argv: Array of strings for command line arguments.
9485  *
9486  * This function lists lfs mirror commands defined in mirror_cmdlist[].
9487  *
9488  * Return: 0 on success.
9489  */
9490 static int lfs_mirror_list_commands(int argc, char **argv)
9491 {
9492         char buffer[81] = "";
9493
9494         Parser_list_commands(mirror_cmdlist, buffer, sizeof(buffer),
9495                              NULL, 0, 4);
9496
9497         return 0;
9498 }
9499
9500 static int lfs_list_commands(int argc, char **argv)
9501 {
9502         char buffer[81] = ""; /* 80 printable chars + terminating NUL */
9503
9504         Parser_list_commands(cmdlist, buffer, sizeof(buffer), NULL, 0, 4);
9505
9506         return 0;
9507 }
9508
9509 int main(int argc, char **argv)
9510 {
9511         int rc;
9512
9513         /* Ensure that liblustreapi constructor has run */
9514         if (!llapi_liblustreapi_initialized())
9515                 fprintf(stderr, "liblustreapi was not properly initialized\n");
9516
9517         setlinebuf(stdout);
9518         opterr = 0;
9519
9520         Parser_init("lfs > ", cmdlist);
9521
9522         progname = program_invocation_short_name; /* Used in error messages */
9523         if (argc > 1) {
9524                 llapi_set_command_name(argv[1]);
9525                 rc = Parser_execarg(argc - 1, argv + 1, cmdlist);
9526                 llapi_clear_command_name();
9527         } else {
9528                 rc = Parser_commands();
9529         }
9530
9531         return rc < 0 ? -rc : rc;
9532 }
9533
9534 #ifdef _LUSTRE_IDL_H_
9535 /* Everything we need here should be included by lustreapi.h. */
9536 # error "lfs should not depend on lustre_idl.h"
9537 #endif /* _LUSTRE_IDL_H_ */