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