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