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