4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
34 * Author: Peter J. Braam <braam@clusterfs.com>
35 * Author: Phil Schwan <phil@clusterfs.com>
36 * Author: Robert Read <rread@clusterfs.com>
55 #include <sys/ioctl.h>
56 #include <sys/quota.h>
58 #include <sys/types.h>
60 #include <sys/param.h>
67 #include "lfs_project.h"
69 #include <libcfs/util/string.h>
70 #include <libcfs/util/ioctl.h>
71 #include <libcfs/util/parser.h>
72 #include <lustre/lustreapi.h>
73 #include <linux/lustre/lustre_ver.h>
74 #include <linux/lustre/lustre_param.h>
75 #include <linux/lnet/nidstr.h>
79 # define ARRAY_SIZE(a) ((sizeof(a)) / (sizeof((a)[0])))
80 #endif /* !ARRAY_SIZE */
83 static int lfs_find(int argc, char **argv);
84 static int lfs_getstripe(int argc, char **argv);
85 static int lfs_getdirstripe(int argc, char **argv);
86 static int lfs_setdirstripe(int argc, char **argv);
87 static int lfs_rmentry(int argc, char **argv);
88 static int lfs_osts(int argc, char **argv);
89 static int lfs_mdts(int argc, char **argv);
90 static int lfs_df(int argc, char **argv);
91 static int lfs_getname(int argc, char **argv);
92 static int lfs_check(int argc, char **argv);
93 #ifdef HAVE_SYS_QUOTA_H
94 static int lfs_setquota(int argc, char **argv);
95 static int lfs_quota(int argc, char **argv);
96 static int lfs_project(int argc, char **argv);
98 static int lfs_flushctx(int argc, char **argv);
99 static int lfs_cp(int argc, char **argv);
100 static int lfs_ls(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_mirror(int argc, char **argv);
120 static int lfs_mirror_list_commands(int argc, char **argv);
121 static int lfs_list_commands(int argc, char **argv);
122 static inline int lfs_mirror_resync(int argc, char **argv);
123 static inline int lfs_mirror_verify(int argc, char **argv);
125 enum setstripe_origin {
132 static int lfs_setstripe_internal(int argc, char **argv,
133 enum setstripe_origin opc);
135 static inline int lfs_setstripe(int argc, char **argv)
137 return lfs_setstripe_internal(argc, argv, SO_SETSTRIPE);
139 static inline int lfs_setstripe_migrate(int argc, char **argv)
141 return lfs_setstripe_internal(argc, argv, SO_MIGRATE);
143 static inline int lfs_mirror_create(int argc, char **argv)
145 return lfs_setstripe_internal(argc, argv, SO_MIRROR_CREATE);
147 static inline int lfs_mirror_extend(int argc, char **argv)
149 return lfs_setstripe_internal(argc, argv, SO_MIRROR_EXTEND);
151 static inline int lfs_mirror_split(int argc, char **argv)
153 return lfs_setstripe_internal(argc, argv, SO_MIRROR_SPLIT);
156 /* Setstripe and migrate share mostly the same parameters */
157 #define SSM_CMD_COMMON(cmd) \
158 "usage: "cmd" [--component-end|-E <comp_end>]\n" \
159 " [--stripe-count|-c <stripe_count>]\n" \
160 " [--stripe-index|-i <start_ost_idx>]\n" \
161 " [--stripe-size|-S <stripe_size>]\n" \
162 " [--layout|-L <pattern>]\n" \
163 " [--pool|-p <pool_name>]\n" \
164 " [--ost|-o <ost_indices>]\n" \
165 " [--yaml|-y <yaml_template_file>]\n" \
166 " [--copy=<lustre_src>]\n"
168 #define SSM_HELP_COMMON \
169 "\tstripe_count: Number of OSTs to stripe over (0=fs default, -1 all)\n" \
170 "\tstart_ost_idx: OST index of first stripe (-1=default round robin)\n"\
171 "\tstripe_size: Number of bytes on each OST (0=fs default)\n" \
172 "\t Can be specified with K, M or G (for KB, MB, GB\n" \
173 "\t respectively)\n" \
174 "\tpool_name: Name of OST pool to use (default none)\n" \
175 "\tlayout: stripe pattern type: raid0, mdt (default raid0)\n"\
176 "\tost_indices: List of OST indices, can be repeated multiple times\n"\
177 "\t Indices be specified in a format of:\n" \
178 "\t -o <ost_1>,<ost_i>-<ost_j>,<ost_n>\n" \
180 "\t -o <ost_1> -o <ost_i>-<ost_j> -o <ost_n>\n" \
181 "\t If --pool is set with --ost, then the OSTs\n" \
182 "\t must be the members of the pool.\n" \
183 "\tcomp_end: Extent end of component, start after previous end.\n"\
184 "\t Can be specified with K, M or G (for KB, MB, GB\n" \
185 "\t respectively, -1 for EOF). Must be a multiple of\n"\
186 "\t stripe_size.\n" \
187 "\tyaml_template_file:\n" \
188 "\t YAML layout template file, can't be used with -c,\n" \
189 "\t -i, -S, -p, -o, or -E arguments.\n" \
190 "\tlustre_src: Lustre file/dir whose layout info is used to set\n" \
191 "\t another lustre file or directory, can't used with\n" \
192 "\t -c, -i, -S, -p, -o, or -E arguments.\n"
194 #define MIRROR_CREATE_HELP \
195 "\tmirror_count: Number of mirrors to be created with the upcoming\n" \
196 "\t setstripe layout options\n" \
197 "\t It defaults to 1 if not specified; if specified,\n" \
198 "\t it must follow the option without a space.\n" \
199 "\t The option can also be repeated multiple times to\n" \
200 "\t separate mirrors that have different layouts.\n" \
201 "\tsetstripe options: Mirror layout\n" \
202 "\t It can be a plain layout or a composite layout.\n" \
203 "\t If not specified, the stripe options inherited\n" \
204 "\t from the previous component will be used.\n" \
205 "\tflags: set flags to the component of the current mirror.\n" \
206 "\t Only \"prefer\" flag is supported so far.\n"
208 #define MIRROR_EXTEND_HELP \
210 "\tvictim_file: The layout of victim_file will be split and used\n" \
211 "\t as a mirror added to the mirrored file.\n" \
212 "\tno-verify: This option indicates not to verify the mirror(s)\n" \
213 "\t from victim file(s) in case the victim file(s)\n" \
214 "\t contains the same data as the original mirrored\n" \
217 #define MIRROR_EXTEND_USAGE \
218 " <--mirror-count|-N[mirror_count]>\n" \
219 " [setstripe options|-f <victim_file>]\n" \
222 #define SETSTRIPE_USAGE \
223 SSM_CMD_COMMON("setstripe") \
224 MIRROR_EXTEND_USAGE \
225 " <directory|filename>\n" \
229 #define MIGRATE_USAGE \
230 SSM_CMD_COMMON("migrate ") \
232 " [--non-block|-n]\n" \
233 " [--non-direct|-D]\n" \
237 "\tblock: Block file access during data migration (default)\n" \
238 "\tnon-block: Abort migrations if concurrent access is detected\n" \
239 "\tnon-direct: Do not use direct I/O to copy file contents\n" \
241 #define SETDIRSTRIPE_USAGE \
242 " [--mdt-count|-c stripe_count>\n" \
243 " [--mdt-index|-i mdt_index]\n" \
244 " [--mdt-hash|-H mdt_hash]\n" \
245 " [--default|-D] [--mode|-m mode] <dir>\n" \
246 "\tstripe_count: stripe count of the striped directory\n" \
247 "\tmdt_index: MDT index of first stripe\n" \
248 "\tmdt_hash: hash type of the striped directory. mdt types:\n" \
249 " fnv_1a_64 FNV-1a hash algorithm (default)\n" \
250 " all_char sum of characters % MDT_COUNT (not recommended)\n" \
251 "\tdefault_stripe: set default dirstripe of the directory\n" \
252 "\tmode: the mode of the directory\n"
255 * command_t mirror_cmdlist - lfs mirror commands.
257 command_t mirror_cmdlist[] = {
258 { .pc_name = "create", .pc_func = lfs_mirror_create,
259 .pc_help = "Create a mirrored file.\n"
260 "usage: lfs mirror create "
261 "<--mirror-count|-N[mirror_count]> "
262 "[setstripe options] ... <filename|directory>\n"
263 MIRROR_CREATE_HELP },
264 { .pc_name = "extend", .pc_func = lfs_mirror_extend,
265 .pc_help = "Extend a mirrored file.\n"
266 "usage: lfs mirror extend "
267 "<--mirror-count|-N[mirror_count]> [--no-verify] "
268 "[setstripe options|-f <victim_file>] ... <filename>\n"
269 MIRROR_EXTEND_HELP },
270 { .pc_name = "split", .pc_func = lfs_mirror_split,
271 .pc_help = "Split a mirrored file.\n"
272 "usage: lfs mirror split <--mirror-id <mirror_id>> [--destroy|-d] "
273 "[-f <new_file>] <mirrored file>\n"
274 "\tmirror_id: The numerical unique identifier for a mirror. It\n"
275 "\t can be fetched by lfs getstripe command.\n"
276 "\tnew_file: This option indicates the layout of the split\n"
277 "\t mirror will be stored into. If not specified,\n"
278 "\t a new file named <mirrored_file>.mirror~<mirror_id>\n"
279 "\t will be used.\n" },
280 { .pc_name = "resync", .pc_func = lfs_mirror_resync,
281 .pc_help = "Resynchronizes out-of-sync mirrored file(s).\n"
282 "usage: lfs mirror resync [--only <mirror_id[,...]>] "
283 "<mirrored file> [<mirrored file2>...]\n"},
284 { .pc_name = "verify", .pc_func = lfs_mirror_verify,
285 .pc_help = "Verify mirrored file(s).\n"
286 "usage: lfs mirror verify "
287 "[--only <mirror_id,mirror_id2[,...]>] "
288 "[--verbose|-v] <mirrored_file> [<mirrored_file2> ...]\n"},
289 { .pc_name = "--list-commands", .pc_func = lfs_mirror_list_commands,
290 .pc_help = "list commands supported by lfs mirror"},
291 { .pc_name = "help", .pc_func = Parser_help, .pc_help = "help" },
292 { .pc_name = "exit", .pc_func = Parser_quit, .pc_help = "quit" },
293 { .pc_name = "quit", .pc_func = Parser_quit, .pc_help = "quit" },
297 /* all available commands */
298 command_t cmdlist[] = {
299 {"setstripe", lfs_setstripe, 0,
300 "To create a file with specified striping/composite layout, or\n"
301 "create/replace the default layout on an existing directory:\n"
302 SSM_CMD_COMMON("setstripe")
303 " <directory|filename>\n"
305 "To add component(s) to an existing composite file:\n"
306 SSM_CMD_COMMON("setstripe --component-add")
308 "To totally delete the default striping from an existing directory:\n"
309 "usage: setstripe -d <directory>\n"
311 "To delete the last component(s) from an existing composite file\n"
312 "(note that this will also delete any data in those components):\n"
313 "usage: setstripe --component-del [--component-id|-I <comp_id>]\n"
314 " [--component-flags|-F <comp_flags>]\n"
316 "\tcomp_id: Unique component ID to delete\n"
317 "\tcomp_flags: 'init' indicating all instantiated components\n"
318 "\t '^init' indicating all uninstantiated components\n"
319 "\t-I and -F cannot be specified at the same time\n"},
320 {"getstripe", lfs_getstripe, 0,
321 "To list the layout pattern for a given file or files in a\n"
322 "directory or recursively for all files in a directory tree.\n"
323 "usage: getstripe [--ost|-O <uuid>] [--quiet|-q] [--verbose|-v]\n"
324 " [--stripe-count|-c] [--stripe-index|-i] [--fid|-F]\n"
325 " [--pool|-p] [--stripe-size|-S] [--directory|-d]\n"
326 " [--mdt-index|-m] [--recursive|-r] [--raw|-R]\n"
327 " [--layout|-L] [--generation|-g] [--yaml|-y]\n"
328 " [--component-id[=comp_id]|-I[comp_id]]\n"
329 " [--component-flags[=comp_flags]]\n"
330 " [--component-count]\n"
331 " [--component-start[=[+-]comp_start]]\n"
332 " [--component-end[=[+-]comp_end]|-E[[+-]comp_end]]\n"
333 " <directory|filename> ..."},
334 {"setdirstripe", lfs_setdirstripe, 0,
335 "To create a striped directory on a specified MDT. This can only\n"
336 "be done on MDT0 with the right of administrator.\n"
337 "usage: setdirstripe [OPTION] <directory>\n"
339 {"getdirstripe", lfs_getdirstripe, 0,
340 "To list the layout pattern info for a given directory\n"
341 "or recursively for all directories in a directory tree.\n"
342 "usage: getdirstripe [--mdt-count|-c] [--mdt-index|-m|-i]\n"
343 " [--mdt-hash|-H] [--obd|-O <uuid>]\n"
344 " [--recursive|-r] [--yaml|-y]\n"
345 " [--default|-D] <dir> ..."},
346 {"mkdir", lfs_setdirstripe, 0,
347 "To create a striped directory on a specified MDT. This can only\n"
348 "be done on MDT0 with the right of administrator.\n"
349 "usage: mkdir [OPTION] <directory>\n"
351 {"rm_entry", lfs_rmentry, 0,
352 "To remove the name entry of the remote directory. Note: This\n"
353 "command will only delete the name entry, i.e. the remote directory\n"
354 "will become inaccessable after this command. This can only be done\n"
355 "by the administrator\n"
356 "usage: rm_entry <dir>\n"},
357 {"pool_list", lfs_poollist, 0,
358 "List pools or pool OSTs\n"
359 "usage: pool_list <fsname>[.<pool>] | <pathname>\n"},
360 {"find", lfs_find, 0,
361 "find files matching given attributes recursively in directory tree.\n"
362 "usage: find <directory|filename> ...\n"
363 " [[!] --atime|-A [+-]N] [[!] --ctime|-C [+-]N]\n"
364 " [[!] --mtime|-M [+-]N] [--maxdepth|-D N] [[!] --blocks|-b N]\n"
365 " [[!] --mdt-index|--mdt|-m <uuid|index,...>]\n"
366 " [[!] --name|-n <pattern>] [[!] --ost|-O <uuid|index,...>]\n"
367 " [--print|-P] [--print0|-0] [[!] --size|-s [+-]N[bkMGTPE]]\n"
368 " [[!] --stripe-count|-c [+-]<stripes>]\n"
369 " [[!] --stripe-index|-i <index,...>]\n"
370 " [[!] --stripe-size|-S [+-]N[kMGT]] [[!] --type|-t <filetype>]\n"
371 " [[!] --gid|-g|--group|-G <gid>|<gname>]\n"
372 " [[!] --uid|-u|--user|-U <uid>|<uname>] [[!] --pool <pool>]\n"
373 " [[!] --projid <projid>]\n"
374 " [[!] --layout|-L released,raid0,mdt]\n"
375 " [[!] --component-count [+-]<comp_cnt>]\n"
376 " [[!] --component-start [+-]N[kMGTPE]]\n"
377 " [[!] --component-end|-E [+-]N[kMGTPE]]\n"
378 " [[!] --component-flags <comp_flags>]\n"
379 " [[!] --mirror-count|-N [+-]<n>]\n"
380 " [[!] --mirror-state <[^]state>]\n"
381 " [[!] --mdt-count|-T [+-]<stripes>]\n"
382 " [[!] --mdt-hash|-H <hashtype>\n"
383 "\t !: used before an option indicates 'NOT' requested attribute\n"
384 "\t -: used before a value indicates less than requested value\n"
385 "\t +: used before a value indicates more than requested value\n"
386 "\thashtype: hash type of the striped directory.\n"
387 "\t fnv_1a_64 FNV-1a hash algorithm\n"
388 "\t all_char sum of characters % MDT_COUNT\n"},
389 {"check", lfs_check, 0,
390 "Display the status of MDS or OSTs (as specified in the command)\n"
391 "or all the servers (MDS and OSTs).\n"
392 "usage: check <osts|mds|servers>"},
393 {"osts", lfs_osts, 0, "list OSTs connected to client "
394 "[for specified path only]\n" "usage: osts [path]"},
395 {"mdts", lfs_mdts, 0, "list MDTs connected to client "
396 "[for specified path only]\n" "usage: mdts [path]"},
398 "report filesystem disk space usage or inodes usage"
399 "of each MDS and all OSDs or a batch belonging to a specific pool .\n"
400 "Usage: df [-i] [-h] [--lazy|-l] [--pool|-p <fsname>[.<pool>] [path]"},
401 {"getname", lfs_getname, 0, "list instances and specified mount points "
402 "[for specified path only]\n"
403 "Usage: getname [-h]|[path ...] "},
404 #ifdef HAVE_SYS_QUOTA_H
405 {"setquota", lfs_setquota, 0, "Set filesystem quotas.\n"
406 "usage: setquota <-u|-g|-p> <uname>|<uid>|<gname>|<gid>|<projid>\n"
407 " -b <block-softlimit> -B <block-hardlimit>\n"
408 " -i <inode-softlimit> -I <inode-hardlimit> <filesystem>\n"
409 " setquota <-u|--user|-g|--group|-p|--projid> <uname>|<uid>|<gname>|<gid>|<projid>\n"
410 " [--block-softlimit <block-softlimit>]\n"
411 " [--block-hardlimit <block-hardlimit>]\n"
412 " [--inode-softlimit <inode-softlimit>]\n"
413 " [--inode-hardlimit <inode-hardlimit>] <filesystem>\n"
414 " setquota [-t] <-u|--user|-g|--group|-p|--projid>\n"
415 " [--block-grace <block-grace>]\n"
416 " [--inode-grace <inode-grace>] <filesystem>\n"
417 " -b can be used instead of --block-softlimit/--block-grace\n"
418 " -B can be used instead of --block-hardlimit\n"
419 " -i can be used instead of --inode-softlimit/--inode-grace\n"
420 " -I can be used instead of --inode-hardlimit\n\n"
421 "Note: The total quota space will be split into many qunits and\n"
422 " balanced over all server targets, the minimal qunit size is\n"
423 " 1M bytes for block space and 1K inodes for inode space.\n\n"
424 " Quota space rebalancing process will stop when this mininum\n"
425 " value is reached. As a result, quota exceeded can be returned\n"
426 " while many targets still have 1MB or 1K inodes of spare\n"
428 {"quota", lfs_quota, 0, "Display disk usage and limits.\n"
429 "usage: quota [-q] [-v] [-h] [-o <obd_uuid>|-i <mdt_idx>|-I "
431 " [<-u|-g|-p> <uname>|<uid>|<gname>|<gid>|<projid>] <filesystem>\n"
432 " quota [-o <obd_uuid>|-i <mdt_idx>|-I <ost_idx>] -t <-u|-g|-p> <filesystem>"},
433 {"project", lfs_project, 0,
434 "Change or list project attribute for specified file or directory.\n"
435 "usage: project [-d|-r] <file|directory...>\n"
436 " list project ID and flags on file(s) or directories\n"
437 " project [-p id] [-s] [-r] <file|directory...>\n"
438 " set project ID and/or inherit flag for specified file(s) or directories\n"
439 " project -c [-d|-r [-p id] [-0]] <file|directory...>\n"
440 " check project ID and flags on file(s) or directories, print outliers\n"
441 " project -C [-r] [-k] <file|directory...>\n"
442 " clear the project inherit flag and ID on the file or directory\n"
445 {"flushctx", lfs_flushctx, 0, "Flush security context for current user.\n"
446 "usage: flushctx [-k] [mountpoint...]"},
448 "Remote user copy files and directories.\n"
449 "usage: cp [OPTION]... [-T] SOURCE DEST\n\tcp [OPTION]... SOURCE... DIRECTORY\n\tcp [OPTION]... -t DIRECTORY SOURCE..."},
451 "Remote user list directory contents.\n"
452 "usage: ls [OPTION]... [FILE]..."},
453 {"changelog", lfs_changelog, 0,
454 "Show the metadata changes on an MDT."
455 "\nusage: changelog <mdtname> [startrec [endrec]]"},
456 {"changelog_clear", lfs_changelog_clear, 0,
457 "Indicate that old changelog records up to <endrec> are no longer of "
458 "interest to consumer <id>, allowing the system to free up space.\n"
459 "An <endrec> of 0 means all records.\n"
460 "usage: changelog_clear <mdtname> <id> <endrec>"},
461 {"fid2path", lfs_fid2path, 0,
462 "Resolve the full path(s) for given FID(s). For a specific hardlink "
463 "specify link number <linkno>.\n"
464 /* "For a historical link name, specify changelog record <recno>.\n" */
465 "usage: fid2path [--link <linkno>] <fsname|rootpath> <fid> ..."
466 /* [ --rec <recno> ] */ },
467 {"path2fid", lfs_path2fid, 0, "Display the fid(s) for a given path(s).\n"
468 "usage: path2fid [--parents] <path> ..."},
469 {"data_version", lfs_data_version, 0, "Display file data version for "
470 "a given path.\n" "usage: data_version -[n|r|w] <path>"},
471 {"hsm_state", lfs_hsm_state, 0, "Display the HSM information (states, "
472 "undergoing actions) for given files.\n usage: hsm_state <file> ..."},
473 {"hsm_set", lfs_hsm_set, 0, "Set HSM user flag on specified files.\n"
474 "usage: hsm_set [--norelease] [--noarchive] [--dirty] [--exists] "
475 "[--archived] [--lost] [--archive-id NUM] <file> ..."},
476 {"hsm_clear", lfs_hsm_clear, 0, "Clear HSM user flag on specified "
478 "usage: hsm_clear [--norelease] [--noarchive] [--dirty] [--exists] "
479 "[--archived] [--lost] <file> ..."},
480 {"hsm_action", lfs_hsm_action, 0, "Display current HSM request for "
481 "given files.\n" "usage: hsm_action <file> ..."},
482 {"hsm_archive", lfs_hsm_archive, 0,
483 "Archive file to external storage.\n"
484 "usage: hsm_archive [--filelist FILELIST] [--data DATA] [--archive NUM] "
486 {"hsm_restore", lfs_hsm_restore, 0,
487 "Restore file from external storage.\n"
488 "usage: hsm_restore [--filelist FILELIST] [--data DATA] <file> ..."},
489 {"hsm_release", lfs_hsm_release, 0,
490 "Release files from Lustre.\n"
491 "usage: hsm_release [--filelist FILELIST] [--data DATA] <file> ..."},
492 {"hsm_remove", lfs_hsm_remove, 0,
493 "Remove file copy from external storage.\n"
494 "usage: hsm_remove [--filelist FILELIST] [--data DATA] "
496 " (FILE [FILE ...] | "
497 "--mntpath MOUNTPATH FID [FID ...])\n"
499 "Note: To remove an archived copy of a file already deleted from a "
501 "--mntpath option and a list of FIDs must be specified"
503 {"hsm_cancel", lfs_hsm_cancel, 0,
504 "Cancel requests related to specified files.\n"
505 "usage: hsm_cancel [--filelist FILELIST] [--data DATA] <file> ..."},
506 {"swap_layouts", lfs_swap_layouts, 0, "Swap layouts between 2 files.\n"
507 "usage: swap_layouts <path1> <path2>"},
508 {"migrate", lfs_setstripe_migrate, 0,
509 "migrate a directory between MDTs.\n"
510 "usage: migrate --mdt-index <mdt_idx> [--verbose|-v] "
512 "\tmdt_idx: index of the destination MDT\n"
514 "migrate file objects from one OST "
515 "layout\nto another (may be not safe with concurent writes).\n"
517 "[--stripe-count|-c] <stripe_count>\n"
518 " [--stripe-index|-i] <start_ost_index>\n"
519 " [--stripe-size|-S] <stripe_size>\n"
520 " [--pool|-p] <pool_name>\n"
521 " [--ost|-o] <ost_indices>\n"
523 " [--non-block|-n]\n"
524 " [--non-direct|-D]\n"
525 " <file|directory>\n"
526 "\tstripe_count: number of OSTs to stripe a file over\n"
527 "\tstripe_ost_index: index of the first OST to stripe a file over\n"
528 "\tstripe_size: number of bytes to store before moving to the next OST\n"
529 "\tpool_name: name of the predefined pool of OSTs\n"
530 "\tost_indices: OSTs to stripe over, in order\n"
531 "\tblock: wait for the operation to return before continuing\n"
532 "\tnon-block: do not wait for the operation to return\n"
533 "\tnon-direct: do not use direct I/O to copy file contents.\n"},
535 "To move directories between MDTs. This command is deprecated, "
536 "use \"migrate\" instead.\n"
537 "usage: mv <directory|filename> [--mdt-index|-m] <mdt_index> "
539 {"ladvise", lfs_ladvise, 0,
540 "Provide servers with advice about access patterns for a file.\n"
541 "usage: ladvise [--advice|-a ADVICE] [--start|-s START[kMGT]]\n"
542 " [--background|-b] [--unset|-u]\n\n"
543 " {[--end|-e END[kMGT]] | [--length|-l LENGTH[kMGT]]}\n"
544 " {[--mode|-m [READ,WRITE]}\n"
546 {"mirror", lfs_mirror, mirror_cmdlist,
547 "lfs commands used to manage files with mirrored components:\n"
548 "lfs mirror create - create a mirrored file or directory\n"
549 "lfs mirror extend - add mirror(s) to an existing file\n"
550 "lfs mirror split - split a mirror from an existing mirrored file\n"
551 "lfs mirror resync - resynchronize out-of-sync mirrored file(s)\n"
552 "lfs mirror verify - verify mirrored file(s)\n"},
553 {"help", Parser_help, 0, "help"},
554 {"exit", Parser_quit, 0, "quit"},
555 {"quit", Parser_quit, 0, "quit"},
556 {"--version", Parser_version, 0,
557 "output build version of the utility and exit"},
558 {"--list-commands", lfs_list_commands, 0,
559 "list commands supported by the utility and exit"},
564 static int check_hashtype(const char *hashtype)
568 for (i = LMV_HASH_TYPE_ALL_CHARS; i < LMV_HASH_TYPE_MAX; i++)
569 if (strcmp(hashtype, mdt_hash_name[i]) == 0)
576 static const char *error_loc = "syserror";
579 MIGRATION_NONBLOCK = 1 << 0,
580 MIGRATION_MIRROR = 1 << 1,
581 MIGRATION_NONDIRECT = 1 << 2,
584 static int lfs_component_create(char *fname, int open_flags, mode_t open_mode,
585 struct llapi_layout *layout);
588 migrate_open_files(const char *name, __u64 migration_flags,
589 const struct llapi_stripe_param *param,
590 struct llapi_layout *layout, int *fd_src, int *fd_tgt)
597 char parent[PATH_MAX];
598 char volatile_file[PATH_MAX];
604 if (param == NULL && layout == NULL) {
605 error_loc = "layout information";
609 /* search for file directory pathname */
610 if (strlen(name) > sizeof(parent) - 1) {
611 error_loc = "source file name";
615 strncpy(parent, name, sizeof(parent));
616 ptr = strrchr(parent, '/');
618 if (getcwd(parent, sizeof(parent)) == NULL) {
619 error_loc = "getcwd";
623 if (ptr == parent) /* leading '/' */
628 /* open file, direct io */
629 /* even if the file is only read, WR mode is nedeed to allow
630 * layout swap on fd */
632 if (!(migration_flags & MIGRATION_NONDIRECT))
634 fd = open(name, rflags);
637 error_loc = "cannot open source file";
641 rc = llapi_file_fget_mdtidx(fd, &mdt_index);
643 error_loc = "cannot get MDT index";
648 int open_flags = O_WRONLY | O_CREAT | O_EXCL | O_NOFOLLOW;
649 mode_t open_mode = S_IRUSR | S_IWUSR;
651 random_value = random();
652 rc = snprintf(volatile_file, sizeof(volatile_file),
653 "%s/%s:%.4X:%.4X", parent, LUSTRE_VOLATILE_HDR,
654 mdt_index, random_value);
655 if (rc >= sizeof(volatile_file)) {
660 /* create, open a volatile file, use caching (ie no directio) */
662 fdv = llapi_file_open_param(volatile_file, open_flags,
665 fdv = lfs_component_create(volatile_file, open_flags,
667 } while (fdv < 0 && (rc = fdv) == -EEXIST);
670 error_loc = "cannot create volatile file";
674 /* In case the MDT does not support creation of volatile files
675 * we should try to unlink it. */
676 (void)unlink(volatile_file);
678 /* Not-owner (root?) special case.
679 * Need to set owner/group of volatile file like original.
680 * This will allow to pass related check during layout_swap.
685 error_loc = "cannot stat source file";
689 rc = fstat(fdv, &stv);
692 error_loc = "cannot stat volatile";
696 if (st.st_uid != stv.st_uid || st.st_gid != stv.st_gid) {
697 rc = fchown(fdv, st.st_uid, st.st_gid);
700 error_loc = "cannot change ownwership of volatile";
719 static int migrate_copy_data(int fd_src, int fd_dst, int (*check_file)(int))
721 struct llapi_layout *layout;
722 size_t buf_size = 4 * 1024 * 1024;
731 layout = llapi_layout_get_by_fd(fd_src, 0);
732 if (layout != NULL) {
733 uint64_t stripe_size;
735 rc = llapi_layout_stripe_size_get(layout, &stripe_size);
737 buf_size = stripe_size;
739 llapi_layout_free(layout);
742 /* Use a page-aligned buffer for direct I/O */
743 rc = posix_memalign(&buf, getpagesize(), buf_size);
748 /* read new data only if we have written all
749 * previously read data */
752 rc = check_file(fd_src);
757 rsize = read(fd_src, buf, buf_size);
769 wsize = write(fd_dst, buf + bufoff, rpos - wpos);
788 static int migrate_copy_timestamps(int fd, int fdv)
792 if (fstat(fd, &st) == 0) {
793 struct timeval tv[2] = {
794 {.tv_sec = st.st_atime},
795 {.tv_sec = st.st_mtime}
798 return futimes(fdv, tv);
804 static int migrate_block(int fd, int fdv)
811 rc = llapi_get_data_version(fd, &dv1, LL_DV_RD_FLUSH);
813 error_loc = "cannot get dataversion";
821 /* The grouplock blocks all concurrent accesses to the file.
822 * It has to be taken after llapi_get_data_version as it would
824 rc = llapi_group_lock(fd, gid);
826 error_loc = "cannot get group lock";
830 rc = migrate_copy_data(fd, fdv, NULL);
832 error_loc = "data copy failed";
836 /* Make sure we keep original atime/mtime values */
837 rc = migrate_copy_timestamps(fd, fdv);
839 error_loc = "timestamp copy failed";
844 * for a migration we need to check data version on file did
847 * Pass in gid=0 since we already own grouplock. */
848 rc = llapi_fswap_layouts_grouplock(fd, fdv, dv1, 0, 0,
849 SWAP_LAYOUTS_CHECK_DV1);
851 error_loc = "file changed";
854 error_loc = "cannot swap layout";
859 rc2 = llapi_group_unlock(fd, gid);
860 if (rc2 < 0 && rc == 0) {
861 error_loc = "unlock group lock";
869 * Internal helper for migrate_copy_data(). Check lease and report error if
872 * \param[in] fd File descriptor on which to check the lease.
874 * \retval 0 Migration can keep on going.
875 * \retval -errno Error occurred, abort migration.
877 static int check_lease(int fd)
881 rc = llapi_lease_check(fd);
883 return 0; /* llapi_check_lease returns > 0 on success. */
888 static int migrate_nonblock(int fd, int fdv)
894 rc = llapi_get_data_version(fd, &dv1, LL_DV_RD_FLUSH);
896 error_loc = "cannot get data version";
900 rc = migrate_copy_data(fd, fdv, check_lease);
902 error_loc = "data copy failed";
906 rc = llapi_get_data_version(fd, &dv2, LL_DV_RD_FLUSH);
908 error_loc = "cannot get data version";
914 error_loc = "source file changed";
918 /* Make sure we keep original atime/mtime values */
919 rc = migrate_copy_timestamps(fd, fdv);
921 error_loc = "timestamp copy failed";
928 static int lfs_component_set(char *fname, int comp_id,
929 __u32 flags, __u32 neg_flags)
932 __u32 flags_array[2];
937 ids[count] = comp_id;
938 flags_array[count] = flags;
943 ids[count] = comp_id;
944 flags_array[count] = neg_flags | LCME_FL_NEG;
948 rc = llapi_layout_file_comp_set(fname, ids, flags_array, count);
951 "%s: cannot change the flags of component '%#x' of file '%s': %x / ^(%x)\n",
952 progname, comp_id, fname, flags, neg_flags);
957 static int lfs_component_del(char *fname, __u32 comp_id,
958 __u32 flags, __u32 neg_flags)
962 if (flags && neg_flags)
965 if (!flags && neg_flags)
966 flags = neg_flags | LCME_FL_NEG;
968 if ((flags && comp_id) || (!flags && !comp_id))
971 /* LCME_FL_INIT is the only supported flag in PFL */
973 if (flags & ~LCME_KNOWN_FLAGS) {
975 "%s setstripe: unknown flags %#x\n",
979 } else if (comp_id > LCME_ID_MAX) {
980 fprintf(stderr, "%s setstripe: invalid component id %u\n",
985 rc = llapi_layout_file_comp_del(fname, comp_id, flags);
988 "%s setstripe: cannot delete component %#x from '%s': %s\n",
989 progname, comp_id, fname, strerror(errno));
993 static int lfs_component_add(char *fname, struct llapi_layout *layout)
1000 rc = llapi_layout_file_comp_add(fname, layout);
1002 fprintf(stderr, "Add layout component(s) to %s failed. %s\n",
1003 fname, strerror(errno));
1007 static int lfs_component_create(char *fname, int open_flags, mode_t open_mode,
1008 struct llapi_layout *layout)
1016 fd = lstat(fname, &st);
1017 if (fd == 0 && S_ISDIR(st.st_mode))
1018 open_flags = O_DIRECTORY | O_RDONLY;
1020 fd = llapi_layout_file_open(fname, open_flags, open_mode, layout);
1022 fprintf(stderr, "%s: cannot %s '%s': %s\n", progname,
1023 S_ISDIR(st.st_mode) ?
1024 "set default composite layout for" :
1025 "create composite file",
1026 fname, strerror(errno));
1030 static int lfs_migrate(char *name, __u64 migration_flags,
1031 struct llapi_stripe_param *param,
1032 struct llapi_layout *layout)
1038 rc = migrate_open_files(name, migration_flags, param, layout,
1043 if (!(migration_flags & MIGRATION_NONBLOCK)) {
1044 /* Blocking mode (forced if servers do not support file lease).
1045 * It is also the default mode, since we cannot distinguish
1046 * between a broken lease and a server that does not support
1047 * atomic swap/close (LU-6785) */
1048 rc = migrate_block(fd, fdv);
1052 rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
1054 error_loc = "cannot get lease";
1058 rc = migrate_nonblock(fd, fdv);
1060 llapi_lease_release(fd);
1064 /* Atomically put lease, swap layouts and close.
1065 * for a migration we need to check data version on file did
1067 rc = llapi_fswap_layouts(fd, fdv, 0, 0, SWAP_LAYOUTS_CLOSE);
1069 error_loc = "cannot swap layout";
1081 fprintf(stderr, "error: %s: %s: %s: %s\n",
1082 progname, name, error_loc, strerror(-rc));
1086 static int comp_str2flags(char *string, __u32 *flags, __u32 *neg_flags)
1095 for (name = strtok(string, ","); name; name = strtok(NULL, ",")) {
1099 for (i = 0; i < ARRAY_SIZE(comp_flags_table); i++) {
1100 __u32 comp_flag = comp_flags_table[i].cfn_flag;
1101 const char *comp_name = comp_flags_table[i].cfn_name;
1103 if (strcmp(name, comp_name) == 0) {
1104 *flags |= comp_flag;
1106 } else if (strncmp(name, "^", 1) == 0 &&
1107 strcmp(name + 1, comp_name) == 0) {
1108 *neg_flags |= comp_flag;
1113 llapi_printf(LLAPI_MSG_ERROR,
1114 "%s: component flag '%s' not supported\n",
1120 if (!*flags && !*neg_flags)
1123 /* don't allow to set and exclude the same flag */
1124 if (*flags & *neg_flags)
1130 static int mirror_str2state(char *string, __u16 *state, __u16 *neg_state)
1138 if (strncmp(string, "^", 1) == 0) {
1139 *neg_state = llapi_layout_string_flags(string + 1);
1140 if (*neg_state != 0)
1143 *state = llapi_layout_string_flags(string);
1148 llapi_printf(LLAPI_MSG_ERROR,
1149 "%s: mirrored file state '%s' not supported\n",
1155 * struct mirror_args - Command-line arguments for mirror(s).
1156 * @m_count: Number of mirrors to be created with this layout.
1157 * @m_flags: Mirror level flags, only 'prefer' is supported.
1158 * @m_layout: Mirror layout.
1159 * @m_file: A victim file. Its layout will be split and used as a mirror.
1160 * @m_next: Point to the next node of the list.
1162 * Command-line arguments for mirror(s) will be parsed and stored in
1163 * a linked list that consists of this structure.
1165 struct mirror_args {
1168 struct llapi_layout *m_layout;
1170 struct mirror_args *m_next;
1173 static int mirror_sanity_check_flags(struct llapi_layout *layout, void *unused)
1178 rc = llapi_layout_comp_flags_get(layout, &flags);
1182 if (flags & LCME_FL_NEG) {
1183 fprintf(stderr, "error: %s: negative flags are not supported\n",
1188 if (flags & LCME_FL_STALE) {
1189 fprintf(stderr, "error: %s: setting '%s' is not supported\n",
1190 progname, comp_flags_table[LCME_FL_STALE].cfn_name);
1194 return LLAPI_LAYOUT_ITER_CONT;
1197 static inline int mirror_sanity_check_one(struct llapi_layout *layout)
1199 uint64_t start, end;
1203 /* LU-10112: do not support dom+flr in phase 1 */
1204 rc = llapi_layout_comp_use(layout, LLAPI_LAYOUT_COMP_USE_FIRST);
1208 rc = llapi_layout_pattern_get(layout, &pattern);
1212 if (pattern == LOV_PATTERN_MDT || pattern == LLAPI_LAYOUT_MDT) {
1213 fprintf(stderr, "error: %s: doesn't support dom+flr for now\n",
1218 rc = llapi_layout_comp_use(layout, LLAPI_LAYOUT_COMP_USE_LAST);
1222 rc = llapi_layout_comp_extent_get(layout, &start, &end);
1226 if (end != LUSTRE_EOF) {
1227 fprintf(stderr, "error: %s: mirror layout doesn't reach eof\n",
1232 rc = llapi_layout_comp_iterate(layout, mirror_sanity_check_flags, NULL);
1237 * enum mirror_flags - Flags for extending a mirrored file.
1238 * @MF_NO_VERIFY: Indicates not to verify the mirror(s) from victim file(s)
1239 * in case the victim file(s) contains the same data as the
1240 * original mirrored file.
1241 * @MF_DESTROY: Indicates to delete the mirror from the mirrored file.
1243 * Flags for extending a mirrored file.
1251 * mirror_create_sanity_check() - Check mirror list.
1252 * @list: A linked list that stores the mirror arguments.
1254 * This function does a sanity check on @list for creating
1257 * Return: 0 on success or a negative error code on failure.
1259 static int mirror_create_sanity_check(const char *fname,
1260 struct mirror_args *list)
1263 bool has_m_file = false;
1264 bool has_m_layout = false;
1270 struct llapi_layout *layout;
1272 layout = llapi_layout_get_by_path(fname, 0);
1275 "error: %s: file '%s' couldn't get layout\n",
1280 rc = mirror_sanity_check_one(layout);
1281 llapi_layout_free(layout);
1287 while (list != NULL) {
1288 if (list->m_file != NULL) {
1290 llapi_layout_free(list->m_layout);
1293 llapi_layout_get_by_path(list->m_file, 0);
1294 if (list->m_layout == NULL) {
1296 "error: %s: file '%s' has no layout\n",
1297 progname, list->m_file);
1301 has_m_layout = true;
1302 if (list->m_layout == NULL) {
1303 fprintf(stderr, "error: %s: no mirror layout\n",
1309 rc = mirror_sanity_check_one(list->m_layout);
1313 list = list->m_next;
1316 if (has_m_file && has_m_layout) {
1318 "error: %s: -f <victim_file> option should not be specified with setstripe options\n",
1326 static int mirror_set_flags(struct llapi_layout *layout, void *cbdata)
1328 __u32 mirror_flags = *(__u32 *)cbdata;
1332 rc = llapi_layout_comp_flags_get(layout, &flags);
1337 rc = llapi_layout_comp_flags_set(layout, mirror_flags);
1342 return LLAPI_LAYOUT_ITER_CONT;
1346 * mirror_create() - Create a mirrored file.
1347 * @fname: The file to be created.
1348 * @mirror_list: A linked list that stores the mirror arguments.
1350 * This function creates a mirrored file @fname with the mirror(s)
1351 * from @mirror_list.
1353 * Return: 0 on success or a negative error code on failure.
1355 static int mirror_create(char *fname, struct mirror_args *mirror_list)
1357 struct llapi_layout *layout = NULL;
1358 struct mirror_args *cur_mirror = NULL;
1359 uint16_t mirror_count = 0;
1363 rc = mirror_create_sanity_check(NULL, mirror_list);
1367 cur_mirror = mirror_list;
1368 while (cur_mirror != NULL) {
1369 rc = llapi_layout_comp_iterate(cur_mirror->m_layout,
1371 &cur_mirror->m_flags);
1374 fprintf(stderr, "%s: failed to set mirror flags\n",
1379 for (i = 0; i < cur_mirror->m_count; i++) {
1380 rc = llapi_layout_merge(&layout, cur_mirror->m_layout);
1383 fprintf(stderr, "error: %s: "
1384 "merge layout failed: %s\n",
1385 progname, strerror(errno));
1389 mirror_count += cur_mirror->m_count;
1390 cur_mirror = cur_mirror->m_next;
1393 if (layout == NULL) {
1394 fprintf(stderr, "error: %s: layout is NULL\n", progname);
1398 rc = llapi_layout_mirror_count_set(layout, mirror_count);
1401 fprintf(stderr, "error: %s: set mirror count failed: %s\n",
1402 progname, strerror(errno));
1406 rc = lfs_component_create(fname, O_CREAT | O_WRONLY, 0644,
1414 llapi_layout_free(layout);
1419 * Compare files and check lease on @fd.
1421 * \retval bytes number of bytes are the same
1423 static ssize_t mirror_file_compare(int fd, int fdv)
1425 const size_t buflen = 4 * 1024 * 1024; /* 4M */
1427 ssize_t bytes_done = 0;
1428 ssize_t bytes_read = 0;
1430 buf = malloc(buflen * 2);
1435 if (!llapi_lease_check(fd)) {
1436 bytes_done = -EBUSY;
1440 bytes_read = read(fd, buf, buflen);
1441 if (bytes_read <= 0)
1444 if (bytes_read != read(fdv, buf + buflen, buflen))
1447 /* XXX: should compute the checksum on each buffer and then
1448 * compare checksum to avoid cache collision */
1449 if (memcmp(buf, buf + buflen, bytes_read))
1452 bytes_done += bytes_read;
1460 static int mirror_extend_file(const char *fname, const char *victim_file,
1461 enum mirror_flags mirror_flags)
1466 struct stat stbuf_v;
1467 struct ll_ioc_lease *data = NULL;
1470 fd = open(fname, O_RDWR);
1472 error_loc = "open source file";
1477 fdv = open(victim_file, O_RDWR);
1479 error_loc = "open target file";
1484 if (fstat(fd, &stbuf) || fstat(fdv, &stbuf_v)) {
1485 error_loc = "stat source or target file";
1490 if (stbuf.st_dev != stbuf_v.st_dev) {
1491 error_loc = "stat source and target file";
1496 /* mirrors should be of the same size */
1497 if (stbuf.st_size != stbuf_v.st_size) {
1498 error_loc = "file sizes don't match";
1503 rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
1505 error_loc = "cannot get lease";
1509 if (!(mirror_flags & MF_NO_VERIFY)) {
1511 /* mirrors should have the same contents */
1512 ret = mirror_file_compare(fd, fdv);
1513 if (ret != stbuf.st_size) {
1514 error_loc = "file busy or contents don't match";
1515 rc = ret < 0 ? ret : -EINVAL;
1520 /* Get rid of caching pages from clients */
1521 rc = llapi_file_flush(fd);
1523 error_loc = "cannot get data version";
1527 rc = llapi_file_flush(fdv);
1529 error_loc = "cannot get data version";
1534 /* Make sure we keep original atime/mtime values */
1535 rc = migrate_copy_timestamps(fd, fdv);
1537 error_loc = "cannot copy timestamp";
1541 /* Atomically put lease, merge layouts and close. */
1542 data = calloc(1, offsetof(typeof(*data), lil_ids[1]));
1544 error_loc = "memory allocation";
1547 data->lil_mode = LL_LEASE_UNLCK;
1548 data->lil_flags = LL_LEASE_LAYOUT_MERGE;
1549 data->lil_count = 1;
1550 data->lil_ids[0] = fdv;
1551 rc = llapi_lease_set(fd, data);
1553 error_loc = "cannot merge layout";
1555 } else if (rc == 0) {
1557 error_loc = "lost lease lock";
1570 (void) unlink(victim_file);
1572 fprintf(stderr, "error: %s: %s: %s: %s\n",
1573 progname, fname, error_loc, strerror(-rc));
1577 static int mirror_extend_layout(char *name, struct llapi_layout *layout)
1579 struct ll_ioc_lease *data = NULL;
1584 rc = migrate_open_files(name, 0, NULL, layout, &fd, &fdv);
1588 rc = llapi_lease_acquire(fd, LL_LEASE_RDLCK);
1590 error_loc = "cannot get lease";
1594 rc = migrate_nonblock(fd, fdv);
1596 llapi_lease_release(fd);
1600 /* Atomically put lease, merge layouts and close. */
1601 data = calloc(1, offsetof(typeof(*data), lil_ids[1]));
1603 error_loc = "memory allocation";
1606 data->lil_mode = LL_LEASE_UNLCK;
1607 data->lil_flags = LL_LEASE_LAYOUT_MERGE;
1608 data->lil_count = 1;
1609 data->lil_ids[0] = fdv;
1610 rc = llapi_lease_set(fd, data);
1612 error_loc = "cannot merge layout";
1614 } else if (rc == 0) {
1616 error_loc = "lost lease lock";
1629 fprintf(stderr, "error: %s: %s: %s: %s\n",
1630 progname, name, error_loc, strerror(-rc));
1634 static int mirror_extend(char *fname, struct mirror_args *mirror_list,
1635 enum mirror_flags mirror_flags)
1639 rc = mirror_create_sanity_check(fname, mirror_list);
1643 while (mirror_list) {
1644 if (mirror_list->m_file != NULL) {
1645 rc = mirror_extend_file(fname, mirror_list->m_file,
1648 __u32 mirror_count = mirror_list->m_count;
1650 while (mirror_count > 0) {
1651 rc = mirror_extend_layout(fname,
1652 mirror_list->m_layout);
1662 mirror_list = mirror_list->m_next;
1668 static int verify_id(struct llapi_layout *layout, void *cbdata)
1673 rc = llapi_layout_mirror_id_get(layout, &id);
1677 if ((__u16)id == *(__u16 *)cbdata)
1678 return LLAPI_LAYOUT_ITER_STOP;
1680 return LLAPI_LAYOUT_ITER_CONT;
1683 static int mirror_split(const char *fname, __u16 mirror_id,
1684 enum mirror_flags mflags, const char *victim_file)
1686 struct llapi_layout *layout;
1687 char parent[PATH_MAX];
1688 char victim[PATH_MAX];
1689 int flags = O_CREAT | O_EXCL | O_LOV_DELAY_CREATE | O_NOFOLLOW;
1691 struct ll_ioc_lease *data;
1692 uint16_t mirror_count;
1697 /* check fname contains mirror with mirror_id */
1698 layout = llapi_layout_get_by_path(fname, 0);
1701 "error %s: file '%s' couldn't get layout\n",
1706 rc = mirror_sanity_check_one(layout);
1710 rc = llapi_layout_mirror_count_get(layout, &mirror_count);
1713 "error %s: file '%s' couldn't get mirror count\n",
1717 if (mirror_count < 2) {
1719 "error %s: file '%s' has %d component, cannot split\n",
1720 progname, fname, mirror_count);
1724 rc = llapi_layout_comp_iterate(layout, verify_id, &mirror_id);
1726 fprintf(stderr, "error %s: failed to iterate layout of '%s'\n",
1729 } else if (rc == LLAPI_LAYOUT_ITER_CONT) {
1731 "error %s: file '%s' does not contain mirror with id %u\n",
1732 progname, fname, mirror_id);
1736 fd = open(fname, O_RDWR);
1739 "error %s: open file '%s' failed: %s\n",
1740 progname, fname, strerror(errno));
1744 /* get victim file directory pathname */
1745 if (strlen(fname) > sizeof(parent) - 1) {
1746 fprintf(stderr, "error %s: file name of '%s' too long\n",
1751 strncpy(parent, fname, sizeof(parent));
1752 ptr = strrchr(parent, '/');
1754 if (getcwd(parent, sizeof(parent)) == NULL) {
1755 fprintf(stderr, "error %s: getcwd failed: %s\n",
1756 progname, strerror(errno));
1766 rc = llapi_file_fget_mdtidx(fd, &mdt_index);
1768 fprintf(stderr, "%s: cannot get MDT index of '%s'\n",
1773 if (victim_file == NULL) {
1774 /* use a temp file to store the splitted layout */
1775 if (mflags & MF_DESTROY) {
1776 fdv = llapi_create_volatile_idx(parent, mdt_index,
1777 O_LOV_DELAY_CREATE);
1779 snprintf(victim, sizeof(victim), "%s.mirror~%u",
1781 fdv = open(victim, flags, S_IRUSR | S_IWUSR);
1784 /* user specified victim file */
1785 fdv = open(victim_file, flags, S_IRUSR | S_IWUSR);
1790 "error %s: create victim file failed: %s\n",
1791 progname, strerror(errno));
1795 /* get lease lock of fname */
1796 rc = llapi_lease_acquire(fd, LL_LEASE_WRLCK);
1799 "error %s: cannot get lease of file '%s': %d\n",
1800 progname, fname, rc);
1804 /* Atomatically put lease, split layouts and close. */
1805 data = malloc(offsetof(typeof(*data), lil_ids[2]));
1811 data->lil_mode = LL_LEASE_UNLCK;
1812 data->lil_flags = LL_LEASE_LAYOUT_SPLIT;
1813 data->lil_count = 2;
1814 data->lil_ids[0] = fdv;
1815 data->lil_ids[1] = mirror_id;
1816 rc = llapi_lease_set(fd, data);
1818 if (rc == 0) /* lost lease lock */
1821 "error %s: cannot split '%s': %s\n",
1822 progname, fname, strerror(-rc));
1833 llapi_layout_free(layout);
1838 * Parse a string containing an target index list into an array of integers.
1840 * The input string contains a comma delimited list of individual
1841 * indices and ranges, for example "1,2-4,7". Add the indices into the
1842 * \a tgts array and remove duplicates.
1844 * \param[out] tgts array to store indices in
1845 * \param[in] size size of \a tgts array
1846 * \param[in] offset starting index in \a tgts
1847 * \param[in] arg string containing OST index list
1849 * \retval positive number of indices in \a tgts
1850 * \retval -EINVAL unable to parse \a arg
1852 static int parse_targets(__u32 *tgts, int size, int offset, char *arg)
1856 int slots = size - offset;
1863 end_of_loop = false;
1864 while (!end_of_loop) {
1868 char *endptr = NULL;
1872 ptr = strchrnul(arg, ',');
1874 end_of_loop = *ptr == '\0';
1877 start_index = strtol(arg, &endptr, 0);
1878 if (endptr == arg) /* no data at all */
1880 if (*endptr != '-' && *endptr != '\0') /* has invalid data */
1883 end_index = start_index;
1884 if (*endptr == '-') {
1885 end_index = strtol(endptr + 1, &endptr, 0);
1886 if (*endptr != '\0')
1888 if (end_index < start_index)
1892 for (i = start_index; i <= end_index && slots > 0; i++) {
1895 /* remove duplicate */
1896 for (j = 0; j < offset; j++) {
1900 if (j == offset) { /* no duplicate */
1905 if (slots == 0 && i < end_index)
1913 if (!end_of_loop && ptr != NULL)
1916 return rc < 0 ? rc : nr;
1919 struct lfs_setstripe_args {
1920 unsigned long long lsa_comp_end;
1921 unsigned long long lsa_stripe_size;
1922 long long lsa_stripe_count;
1923 long long lsa_stripe_off;
1924 __u32 lsa_comp_flags;
1925 __u32 lsa_comp_neg_flags;
1926 unsigned long long lsa_pattern;
1927 unsigned int lsa_mirror_count;
1929 bool lsa_first_comp;
1931 char *lsa_pool_name;
1934 static inline void setstripe_args_init(struct lfs_setstripe_args *lsa)
1936 unsigned int mirror_count = lsa->lsa_mirror_count;
1937 bool first_comp = lsa->lsa_first_comp;
1939 memset(lsa, 0, sizeof(*lsa));
1941 lsa->lsa_stripe_size = LLAPI_LAYOUT_DEFAULT;
1942 lsa->lsa_stripe_count = LLAPI_LAYOUT_DEFAULT;
1943 lsa->lsa_stripe_off = LLAPI_LAYOUT_DEFAULT;
1944 lsa->lsa_pattern = LLAPI_LAYOUT_RAID0;
1945 lsa->lsa_pool_name = NULL;
1947 lsa->lsa_mirror_count = mirror_count;
1948 lsa->lsa_first_comp = first_comp;
1952 * setstripe_args_init_inherit() - Initialize and inherit stripe options.
1953 * @lsa: Stripe options to be initialized and inherited.
1955 * This function initializes stripe options in @lsa and inherit
1956 * stripe_size, stripe_count and OST pool_name options.
1960 static inline void setstripe_args_init_inherit(struct lfs_setstripe_args *lsa)
1962 unsigned long long stripe_size;
1963 long long stripe_count;
1964 char *pool_name = NULL;
1966 stripe_size = lsa->lsa_stripe_size;
1967 stripe_count = lsa->lsa_stripe_count;
1968 pool_name = lsa->lsa_pool_name;
1970 setstripe_args_init(lsa);
1972 lsa->lsa_stripe_size = stripe_size;
1973 lsa->lsa_stripe_count = stripe_count;
1974 lsa->lsa_pool_name = pool_name;
1977 static inline bool setstripe_args_specified(struct lfs_setstripe_args *lsa)
1979 return (lsa->lsa_stripe_size != LLAPI_LAYOUT_DEFAULT ||
1980 lsa->lsa_stripe_count != LLAPI_LAYOUT_DEFAULT ||
1981 lsa->lsa_stripe_off != LLAPI_LAYOUT_DEFAULT ||
1982 lsa->lsa_pattern != LLAPI_LAYOUT_RAID0 ||
1983 lsa->lsa_pool_name != NULL ||
1984 lsa->lsa_comp_end != 0);
1988 * comp_args_to_layout() - Create or extend a composite layout.
1989 * @composite: Pointer to the composite layout.
1990 * @lsa: Stripe options for the new component.
1992 * This function creates or extends a composite layout by adding a new
1993 * component with stripe options from @lsa.
1995 * Return: 0 on success or an error code on failure.
1997 static int comp_args_to_layout(struct llapi_layout **composite,
1998 struct lfs_setstripe_args *lsa,
2001 struct llapi_layout *layout = *composite;
2002 uint64_t prev_end = 0;
2005 if (layout == NULL) {
2006 layout = llapi_layout_alloc();
2007 if (layout == NULL) {
2008 fprintf(stderr, "Alloc llapi_layout failed. %s\n",
2012 *composite = layout;
2016 /* Get current component extent, current component
2017 * must be the tail component. */
2018 rc = llapi_layout_comp_extent_get(layout, &start, &prev_end);
2020 fprintf(stderr, "Get comp extent failed. %s\n",
2025 if (lsa->lsa_first_comp)
2028 if (lsa->lsa_first_comp)
2029 rc = llapi_layout_add_first_comp(layout);
2031 rc = llapi_layout_comp_add(layout);
2033 fprintf(stderr, "Add component failed. %s\n",
2038 /* reset lsa_first_comp */
2039 lsa->lsa_first_comp = false;
2042 rc = llapi_layout_comp_extent_set(layout, prev_end,
2045 fprintf(stderr, "Set extent [%lu, %llu) failed. %s\n",
2046 prev_end, lsa->lsa_comp_end, strerror(errno));
2051 /* Data-on-MDT component setting */
2052 if (lsa->lsa_pattern == LLAPI_LAYOUT_MDT) {
2053 /* In case of Data-on-MDT patterns the only extra option
2054 * applicable is stripe size option. */
2055 if (lsa->lsa_stripe_count != LLAPI_LAYOUT_DEFAULT) {
2056 fprintf(stderr, "Option 'stripe-count' can't be "
2057 "specified with Data-on-MDT component: %lld\n",
2058 lsa->lsa_stripe_count);
2061 if (lsa->lsa_stripe_size != LLAPI_LAYOUT_DEFAULT) {
2062 fprintf(stderr, "Option 'stripe-size' can't be "
2063 "specified with Data-on-MDT component: %llu\n",
2064 lsa->lsa_stripe_size);
2067 if (lsa->lsa_nr_tgts != 0) {
2068 fprintf(stderr, "Option 'ost-list' can't be specified "
2069 "with Data-on-MDT component: '%i'\n",
2073 if (lsa->lsa_stripe_off != LLAPI_LAYOUT_DEFAULT) {
2074 fprintf(stderr, "Option 'stripe-offset' can't be "
2075 "specified with Data-on-MDT component: %lld\n",
2076 lsa->lsa_stripe_off);
2079 if (lsa->lsa_pool_name != 0) {
2080 fprintf(stderr, "Option 'pool' can't be specified "
2081 "with Data-on-MDT component: '%s'\n",
2082 lsa->lsa_pool_name);
2086 rc = llapi_layout_pattern_set(layout, lsa->lsa_pattern);
2088 fprintf(stderr, "Set stripe pattern %#llx failed. %s\n",
2089 lsa->lsa_pattern, strerror(errno));
2092 /* Data-on-MDT component has always single stripe up to end */
2093 lsa->lsa_stripe_size = lsa->lsa_comp_end;
2096 rc = llapi_layout_stripe_size_set(layout, lsa->lsa_stripe_size);
2098 fprintf(stderr, "Set stripe size %llu failed: %s\n",
2099 lsa->lsa_stripe_size, strerror(errno));
2103 rc = llapi_layout_stripe_count_set(layout, lsa->lsa_stripe_count);
2105 fprintf(stderr, "Set stripe count %lld failed: %s\n",
2106 lsa->lsa_stripe_count, strerror(errno));
2110 rc = llapi_layout_comp_flags_set(layout, lsa->lsa_comp_flags);
2112 fprintf(stderr, "Set flags 0x%x failed: %s\n",
2113 lsa->lsa_comp_flags, strerror(errno));
2117 if (lsa->lsa_pool_name != NULL) {
2118 rc = llapi_layout_pool_name_set(layout, lsa->lsa_pool_name);
2120 fprintf(stderr, "Set pool name: %s failed. %s\n",
2121 lsa->lsa_pool_name, strerror(errno));
2125 rc = llapi_layout_pool_name_set(layout, "");
2127 fprintf(stderr, "Clear pool name failed: %s\n",
2133 if (lsa->lsa_nr_tgts > 0) {
2134 if (lsa->lsa_stripe_count > 0 &&
2135 lsa->lsa_stripe_count != LLAPI_LAYOUT_DEFAULT &&
2136 lsa->lsa_stripe_count != LLAPI_LAYOUT_WIDE &&
2137 lsa->lsa_nr_tgts != lsa->lsa_stripe_count) {
2138 fprintf(stderr, "stripe_count(%lld) != nr_tgts(%d)\n",
2139 lsa->lsa_stripe_count, lsa->lsa_nr_tgts);
2142 for (i = 0; i < lsa->lsa_nr_tgts; i++) {
2143 rc = llapi_layout_ost_index_set(layout, i,
2148 } else if (lsa->lsa_stripe_off != LLAPI_LAYOUT_DEFAULT &&
2149 lsa->lsa_stripe_off != -1) {
2150 rc = llapi_layout_ost_index_set(layout, 0, lsa->lsa_stripe_off);
2153 fprintf(stderr, "Set ost index %d failed. %s\n",
2154 i, strerror(errno));
2161 static int build_component(struct llapi_layout **layout,
2162 struct lfs_setstripe_args *lsa, bool set_extent)
2166 rc = comp_args_to_layout(layout, lsa, set_extent);
2170 if (lsa->lsa_mirror_count > 0) {
2171 rc = llapi_layout_mirror_count_set(*layout,
2172 lsa->lsa_mirror_count);
2176 rc = llapi_layout_flags_set(*layout, LCM_FL_RDONLY);
2179 lsa->lsa_mirror_count = 0;
2185 static int build_layout_from_yaml_node(struct cYAML *node,
2186 struct llapi_layout **layout,
2187 struct lfs_setstripe_args *lsa,
2194 string = node->cy_string;
2195 /* skip leading lmm_ if present, to simplify parsing */
2196 if (string != NULL && strncmp(string, "lmm_", 4) == 0)
2199 if (node->cy_type == CYAML_TYPE_STRING) {
2200 if (!strcmp(string, "lcme_extent.e_end")) {
2201 if (!strcmp(node->cy_valuestring, "EOF") ||
2202 !strcmp(node->cy_valuestring, "eof"))
2203 lsa->lsa_comp_end = LUSTRE_EOF;
2204 } else if (!strcmp(string, "pool")) {
2205 lsa->lsa_pool_name = node->cy_valuestring;
2206 } else if (!strcmp(string, "pattern")) {
2207 if (!strcmp(node->cy_valuestring, "mdt"))
2208 lsa->lsa_pattern = LLAPI_LAYOUT_MDT;
2210 } else if (node->cy_type == CYAML_TYPE_NUMBER) {
2211 if (!strcmp(string, "lcm_mirror_count")) {
2212 lsa->lsa_mirror_count = node->cy_valueint;
2213 } else if (!strcmp(string, "lcme_extent.e_start")) {
2214 if (node->cy_valueint != 0 || *layout != NULL) {
2215 rc = build_component(layout, lsa, true);
2220 if (node->cy_valueint == 0)
2221 lsa->lsa_first_comp = true;
2223 /* initialize lsa */
2224 setstripe_args_init(lsa);
2225 lsa->lsa_tgts = osts;
2226 } else if (!strcmp(string, "lcme_extent.e_end")) {
2227 if (node->cy_valueint == -1)
2228 lsa->lsa_comp_end = LUSTRE_EOF;
2230 lsa->lsa_comp_end = node->cy_valueint;
2231 } else if (!strcmp(string, "stripe_count")) {
2232 lsa->lsa_stripe_count = node->cy_valueint;
2233 } else if (!strcmp(string, "stripe_size")) {
2234 lsa->lsa_stripe_size = node->cy_valueint;
2235 } else if (!strcmp(string, "stripe_offset")) {
2236 lsa->lsa_stripe_off = node->cy_valueint;
2237 } else if (!strcmp(string, "l_ost_idx")) {
2238 osts[lsa->lsa_nr_tgts] = node->cy_valueint;
2241 } else if (node->cy_type == CYAML_TYPE_OBJECT) {
2242 /* go deep to sub blocks */
2243 rc = build_layout_from_yaml_node(node->cy_child, layout,
2248 node = node->cy_next;
2254 static int lfs_comp_create_from_yaml(char *template,
2255 struct llapi_layout **layout,
2256 struct lfs_setstripe_args *lsa,
2259 struct cYAML *tree = NULL, *err_rc = NULL;
2262 tree = cYAML_build_tree(template, NULL, 0, &err_rc, false);
2264 fprintf(stderr, "%s: cannot parse YAML file %s\n",
2265 progname, template);
2266 cYAML_build_error(-EINVAL, -1, "yaml", "from comp yaml",
2267 "can't parse", &err_rc);
2268 cYAML_print_tree2file(stderr, err_rc);
2269 cYAML_free_tree(err_rc);
2274 /* initialize lsa for plain file */
2275 setstripe_args_init(lsa);
2276 lsa->lsa_tgts = osts;
2278 rc = build_layout_from_yaml_node(tree, layout, lsa, osts);
2280 fprintf(stderr, "%s: cannot build layout from YAML file %s.\n",
2281 progname, template);
2284 rc = build_component(layout, lsa, *layout != NULL);
2286 /* clean clean lsa */
2287 setstripe_args_init(lsa);
2291 cYAML_free_tree(tree);
2295 /* In 'lfs setstripe --component-add' mode, we need to fetch the extent
2296 * end of the last component in the existing file, and adjust the
2297 * first extent start of the components to be added accordingly. */
2298 static int adjust_first_extent(char *fname, struct llapi_layout *layout)
2300 struct llapi_layout *head;
2301 uint64_t start, end, stripe_size, prev_end = 0;
2304 if (layout == NULL) {
2306 "%s setstripe: layout must be specified\n",
2312 head = llapi_layout_get_by_path(fname, 0);
2315 "%s setstripe: cannot read layout from '%s': %s\n",
2316 progname, fname, strerror(errno));
2318 } else if (errno == ENODATA) {
2319 /* file without LOVEA, this component-add will be turned
2320 * into a component-create. */
2321 llapi_layout_free(head);
2323 } else if (!llapi_layout_is_composite(head)) {
2324 fprintf(stderr, "%s setstripe: '%s' not a composite file\n",
2326 llapi_layout_free(head);
2330 rc = llapi_layout_comp_extent_get(head, &start, &prev_end);
2332 fprintf(stderr, "%s setstripe: cannot get prev extent: %s\n",
2333 progname, strerror(errno));
2334 llapi_layout_free(head);
2338 llapi_layout_free(head);
2340 /* Make sure we use the first component of the layout to be added. */
2341 rc = llapi_layout_comp_use(layout, LLAPI_LAYOUT_COMP_USE_FIRST);
2344 "%s setstripe: cannot move component cursor: %s\n",
2345 progname, strerror(errno));
2349 rc = llapi_layout_comp_extent_get(layout, &start, &end);
2351 fprintf(stderr, "%s setstripe: cannot get extent: %s\n",
2352 progname, strerror(errno));
2356 if (start > prev_end || end <= prev_end) {
2358 "%s setstripe: first extent [%lu, %lu) not adjacent with extent end %lu\n",
2359 progname, start, end, prev_end);
2363 rc = llapi_layout_stripe_size_get(layout, &stripe_size);
2365 fprintf(stderr, "%s setstripe: cannot get stripe size: %s\n",
2366 progname, strerror(errno));
2370 if (stripe_size != LLAPI_LAYOUT_DEFAULT &&
2371 (prev_end & (stripe_size - 1))) {
2373 "%s setstripe: stripe size %lu not aligned with %lu\n",
2374 progname, stripe_size, prev_end);
2378 rc = llapi_layout_comp_extent_set(layout, prev_end, end);
2381 "%s setstripe: cannot set component extent [%lu, %lu): %s\n",
2382 progname, prev_end, end, strerror(errno));
2389 static inline bool arg_is_eof(char *arg)
2391 return !strncmp(arg, "-1", strlen("-1")) ||
2392 !strncmp(arg, "EOF", strlen("EOF")) ||
2393 !strncmp(arg, "eof", strlen("eof"));
2397 * lfs_mirror_alloc() - Allocate a mirror argument structure.
2399 * Return: Valid mirror_args pointer on success and
2400 * NULL if memory allocation fails.
2402 static struct mirror_args *lfs_mirror_alloc(void)
2404 struct mirror_args *mirror = NULL;
2407 mirror = calloc(1, sizeof(*mirror));
2418 * lfs_mirror_free() - Free memory allocated for a mirror argument
2420 * @mirror: Previously allocated mirror argument structure by
2421 * lfs_mirror_alloc().
2423 * Free memory allocated for @mirror.
2427 static void lfs_mirror_free(struct mirror_args *mirror)
2429 if (mirror->m_layout != NULL)
2430 llapi_layout_free(mirror->m_layout);
2435 * lfs_mirror_list_free() - Free memory allocated for a mirror list.
2436 * @mirror_list: Previously allocated mirror list.
2438 * Free memory allocated for @mirror_list.
2442 static void lfs_mirror_list_free(struct mirror_args *mirror_list)
2444 struct mirror_args *next_mirror = NULL;
2446 while (mirror_list != NULL) {
2447 next_mirror = mirror_list->m_next;
2448 lfs_mirror_free(mirror_list);
2449 mirror_list = next_mirror;
2461 LFS_COMP_NO_VERIFY_OPT,
2463 LFS_MIRROR_FLAGS_OPT,
2465 LFS_MIRROR_STATE_OPT,
2470 static int lfs_setstripe_internal(int argc, char **argv,
2471 enum setstripe_origin opc)
2473 struct lfs_setstripe_args lsa = { 0 };
2474 struct llapi_stripe_param *param = NULL;
2475 struct find_param migrate_mdt_param = {
2485 char *mdt_idx_arg = NULL;
2486 unsigned long long size_units = 1;
2487 bool migrate_mode = false;
2488 bool migration_block = false;
2489 __u64 migration_flags = 0;
2490 __u32 osts[LOV_MAX_STRIPE_COUNT] = { 0 };
2491 int comp_del = 0, comp_set = 0;
2494 struct llapi_layout *layout = NULL;
2495 struct llapi_layout **lpp = &layout;
2496 bool mirror_mode = false;
2497 bool has_m_file = false;
2498 __u32 mirror_count = 0;
2499 enum mirror_flags mirror_flags = 0;
2500 struct mirror_args *mirror_list = NULL;
2501 struct mirror_args *new_mirror = NULL;
2502 struct mirror_args *last_mirror = NULL;
2503 __u16 mirror_id = 0;
2505 bool from_yaml = false;
2506 bool from_copy = false;
2507 char *template = NULL;
2509 struct option long_opts[] = {
2510 /* find { .val = 'A', .name = "atime", .has_arg = required_argument }*/
2511 /* --block is only valid in migrate mode */
2512 { .val = 'b', .name = "block", .has_arg = no_argument },
2513 { .val = LFS_COMP_ADD_OPT,
2514 .name = "comp-add", .has_arg = no_argument },
2515 { .val = LFS_COMP_ADD_OPT,
2516 .name = "component-add", .has_arg = no_argument },
2517 { .val = LFS_COMP_DEL_OPT,
2518 .name = "comp-del", .has_arg = no_argument },
2519 { .val = LFS_COMP_DEL_OPT,
2520 .name = "component-del", .has_arg = no_argument },
2521 { .val = LFS_COMP_FLAGS_OPT,
2522 .name = "comp-flags", .has_arg = required_argument },
2523 { .val = LFS_COMP_FLAGS_OPT,
2524 .name = "component-flags",
2525 .has_arg = required_argument },
2526 { .val = LFS_COMP_SET_OPT,
2527 .name = "comp-set", .has_arg = no_argument },
2528 { .val = LFS_COMP_SET_OPT,
2529 .name = "component-set",
2530 .has_arg = no_argument},
2531 { .val = LFS_COMP_NO_VERIFY_OPT,
2532 .name = "no-verify", .has_arg = no_argument},
2533 { .val = LFS_MIRROR_FLAGS_OPT,
2534 .name = "flags", .has_arg = required_argument},
2535 { .val = LFS_MIRROR_ID_OPT,
2536 .name = "mirror-id", .has_arg = required_argument},
2537 { .val = LFS_LAYOUT_COPY,
2538 .name = "copy", .has_arg = required_argument},
2539 { .val = 'c', .name = "stripe-count", .has_arg = required_argument},
2540 { .val = 'c', .name = "stripe_count", .has_arg = required_argument},
2541 /* find { .val = 'C', .name = "ctime", .has_arg = required_argument }*/
2542 { .val = 'd', .name = "delete", .has_arg = no_argument},
2543 { .val = 'd', .name = "destroy", .has_arg = no_argument},
2544 /* --non-direct is only valid in migrate mode */
2545 { .val = 'D', .name = "non-direct", .has_arg = no_argument },
2546 { .val = 'E', .name = "comp-end", .has_arg = required_argument},
2547 { .val = 'E', .name = "component-end",
2548 .has_arg = required_argument},
2549 { .val = 'f', .name = "file", .has_arg = required_argument },
2550 /* find { .val = 'F', .name = "fid", .has_arg = no_argument }, */
2551 /* find { .val = 'g', .name = "gid", .has_arg = no_argument }, */
2552 /* find { .val = 'G', .name = "group", .has_arg = required_argument }*/
2553 /* dirstripe { .val = 'H', .name = "mdt-hash", .has_arg = required_argument }*/
2554 { .val = 'i', .name = "stripe-index", .has_arg = required_argument},
2555 { .val = 'i', .name = "stripe_index", .has_arg = required_argument},
2556 { .val = 'I', .name = "comp-id", .has_arg = required_argument},
2557 { .val = 'I', .name = "component-id", .has_arg = required_argument},
2558 { .val = 'L', .name = "layout", .has_arg = required_argument },
2559 { .val = 'm', .name = "mdt", .has_arg = required_argument},
2560 { .val = 'm', .name = "mdt-index", .has_arg = required_argument},
2561 { .val = 'm', .name = "mdt_index", .has_arg = required_argument},
2562 /* --non-block is only valid in migrate mode */
2563 { .val = 'n', .name = "non-block", .has_arg = no_argument },
2564 { .val = 'N', .name = "mirror-count", .has_arg = optional_argument},
2565 { .val = 'o', .name = "ost", .has_arg = required_argument },
2566 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
2567 { .val = 'o', .name = "ost-list", .has_arg = required_argument },
2568 { .val = 'o', .name = "ost_list", .has_arg = required_argument },
2570 { .val = 'p', .name = "pool", .has_arg = required_argument },
2571 /* find { .val = 'P', .name = "print", .has_arg = no_argument }, */
2572 /* getstripe { .val = 'q', .name = "quiet", .has_arg = no_argument }, */
2573 /* getstripe { .val = 'r', .name = "recursive", .has_arg = no_argument }, */
2574 /* getstripe { .val = 'R', .name = "raw", .has_arg = no_argument }, */
2575 { .val = 'S', .name = "stripe-size", .has_arg = required_argument },
2576 { .val = 'S', .name = "stripe_size", .has_arg = required_argument },
2577 /* find { .val = 't', .name = "type", .has_arg = required_argument }*/
2578 /* dirstripe { .val = 'T', .name = "mdt-count", .has_arg = required_argument }*/
2579 /* find { .val = 'u', .name = "uid", .has_arg = required_argument }*/
2580 /* find { .val = 'U', .name = "user", .has_arg = required_argument }*/
2581 /* --verbose is only valid in migrate mode */
2582 { .val = 'v', .name = "verbose", .has_arg = no_argument},
2583 { .val = 'y', .name = "yaml", .has_arg = required_argument },
2586 setstripe_args_init(&lsa);
2588 migrate_mode = (opc == SO_MIGRATE);
2589 mirror_mode = (opc == SO_MIRROR_CREATE || opc == SO_MIRROR_EXTEND);
2591 snprintf(cmd, sizeof(cmd), "%s %s", progname, argv[0]);
2593 while ((c = getopt_long(argc, argv, "bc:dDE:f:i:I:m:N::no:p:L:s:S:vy:",
2594 long_opts, NULL)) >= 0) {
2599 case LFS_COMP_ADD_OPT:
2602 case LFS_COMP_DEL_OPT:
2605 case LFS_COMP_FLAGS_OPT:
2606 result = comp_str2flags(optarg, &lsa.lsa_comp_flags,
2607 &lsa.lsa_comp_neg_flags);
2610 if (mirror_mode && lsa.lsa_comp_neg_flags) {
2611 fprintf(stderr, "%s: inverted flags are not supported\n",
2615 if (lsa.lsa_comp_neg_flags & LCME_FL_STALE) {
2617 "%s: cannot clear 'stale' flags from component. Please use lfs-mirror-resync(1) instead\n",
2624 case LFS_COMP_SET_OPT:
2627 case LFS_COMP_NO_VERIFY_OPT:
2628 mirror_flags |= MF_NO_VERIFY;
2630 case LFS_MIRROR_ID_OPT:
2631 mirror_id = strtoul(optarg, &end, 0);
2632 if (*end != '\0' || mirror_id == 0) {
2634 "%s %s: invalid mirror ID '%s'\n",
2635 progname, argv[0], optarg);
2639 case LFS_MIRROR_FLAGS_OPT: {
2642 if (!mirror_mode || !last_mirror) {
2643 fprintf(stderr, "error: %s: --flags must be specified with --mirror-count|-N option\n",
2648 result = comp_str2flags(optarg, &last_mirror->m_flags,
2654 fprintf(stderr, "%s: inverted flags are not supported\n",
2659 if (last_mirror->m_flags & ~LCME_USER_FLAGS) {
2661 "%s: unsupported mirror flags: %s\n",
2668 case LFS_LAYOUT_COPY:
2673 if (!migrate_mode) {
2675 "%s %s: -b|--block valid only for migrate command\n",
2679 migration_block = true;
2682 lsa.lsa_stripe_count = strtoul(optarg, &end, 0);
2685 "%s %s: invalid stripe count '%s'\n",
2686 progname, argv[0], optarg);
2690 if (lsa.lsa_stripe_count == -1)
2691 lsa.lsa_stripe_count = LLAPI_LAYOUT_WIDE;
2694 /* delete the default striping pattern */
2696 if (opc == SO_MIRROR_SPLIT) {
2699 "%s %s: -d cannot used with -f\n",
2703 mirror_flags |= MF_DESTROY;
2707 if (!migrate_mode) {
2709 "%s %s: -D|--non-direct is valid "
2710 "only for migrate command\n",
2714 migration_flags |= MIGRATION_NONDIRECT;
2717 if (lsa.lsa_comp_end != 0) {
2718 result = comp_args_to_layout(lpp, &lsa, true);
2721 "%s %s: invalid layout\n",
2726 setstripe_args_init_inherit(&lsa);
2729 if (arg_is_eof(optarg)) {
2730 lsa.lsa_comp_end = LUSTRE_EOF;
2732 result = llapi_parse_size(optarg,
2737 "%s %s: invalid component end '%s'\n",
2738 progname, argv[0], optarg);
2744 lsa.lsa_stripe_off = strtol(optarg, &end, 0);
2747 "%s %s: invalid stripe offset '%s'\n",
2748 progname, argv[0], optarg);
2751 if (lsa.lsa_stripe_off == -1)
2752 lsa.lsa_stripe_off = LLAPI_LAYOUT_DEFAULT;
2755 comp_id = strtoul(optarg, &end, 0);
2756 if (*end != '\0' || comp_id == 0 ||
2757 comp_id > LCME_ID_MAX) {
2759 "%s %s: invalid component ID '%s'\n",
2760 progname, argv[0], optarg);
2765 if (opc != SO_MIRROR_EXTEND && opc != SO_MIRROR_SPLIT) {
2767 "error: %s: invalid option: %s\n",
2768 progname, argv[optopt + 1]);
2771 if (opc == SO_MIRROR_EXTEND) {
2772 if (last_mirror == NULL) {
2774 "error: %s: '-N' must exist in front of '%s'\n",
2775 progname, argv[optopt + 1]);
2778 last_mirror->m_file = optarg;
2779 last_mirror->m_count = 1;
2782 if (mirror_list == NULL)
2783 mirror_list = lfs_mirror_alloc();
2784 mirror_list->m_file = optarg;
2789 if (strcmp(argv[optind - 1], "mdt") == 0) {
2790 /* Can be only the first component */
2791 if (layout != NULL) {
2793 fprintf(stderr, "error: 'mdt' layout "
2794 "can be only the first one\n");
2797 if (lsa.lsa_comp_end > (1ULL << 30)) { /* 1Gb */
2799 fprintf(stderr, "error: 'mdt' layout "
2800 "size is too big\n");
2803 lsa.lsa_pattern = LLAPI_LAYOUT_MDT;
2804 } else if (strcmp(argv[optind - 1], "raid0") != 0) {
2806 fprintf(stderr, "error: layout '%s' is "
2807 "unknown, supported layouts are: "
2808 "'mdt', 'raid0'\n", argv[optind]);
2813 if (!migrate_mode) {
2815 "%s %s: -m|--mdt-index valid only for migrate command\n",
2819 mdt_idx_arg = optarg;
2822 if (!migrate_mode) {
2824 "%s %s: -n|--non-block valid only for migrate command\n",
2828 migration_flags |= MIGRATION_NONBLOCK;
2831 if (opc == SO_SETSTRIPE) {
2832 opc = SO_MIRROR_CREATE;
2836 if (optarg != NULL) {
2837 mirror_count = strtoul(optarg, &end, 0);
2838 if (*end != '\0' || mirror_count == 0) {
2840 "error: %s: bad mirror count: %s\n",
2847 new_mirror = lfs_mirror_alloc();
2848 new_mirror->m_count = mirror_count;
2850 if (mirror_list == NULL)
2851 mirror_list = new_mirror;
2853 if (last_mirror != NULL) {
2854 /* wrap up last mirror */
2855 if (lsa.lsa_comp_end == 0)
2856 lsa.lsa_comp_end = LUSTRE_EOF;
2858 result = comp_args_to_layout(lpp, &lsa, true);
2860 lfs_mirror_free(new_mirror);
2864 setstripe_args_init_inherit(&lsa);
2866 last_mirror->m_next = new_mirror;
2869 last_mirror = new_mirror;
2870 lpp = &last_mirror->m_layout;
2873 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
2874 if (strcmp(argv[optind - 1], "--ost-list") == 0)
2875 fprintf(stderr, "warning: '--ost-list' is "
2876 "deprecated, use '--ost' instead\n");
2878 lsa.lsa_nr_tgts = parse_targets(osts,
2879 sizeof(osts) / sizeof(__u32),
2880 lsa.lsa_nr_tgts, optarg);
2881 if (lsa.lsa_nr_tgts < 0) {
2883 "%s %s: invalid OST target(s) '%s'\n",
2884 progname, argv[0], optarg);
2888 lsa.lsa_tgts = osts;
2889 if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT)
2890 lsa.lsa_stripe_off = osts[0];
2895 lsa.lsa_pool_name = optarg;
2897 if (strlen(lsa.lsa_pool_name) == 0 ||
2898 strncmp(lsa.lsa_pool_name, "none",
2899 LOV_MAXPOOLNAME) == 0)
2900 lsa.lsa_pool_name = NULL;
2903 result = llapi_parse_size(optarg, &lsa.lsa_stripe_size,
2907 "%s %s: invalid stripe size '%s'\n",
2908 progname, argv[0], optarg);
2913 if (!migrate_mode) {
2915 "%s %s: -v|--verbose valid only for migrate command\n",
2919 migrate_mdt_param.fp_verbose = VERBOSE_DETAIL;
2926 fprintf(stderr, "%s %s: unrecognized option '%s'\n",
2927 progname, argv[0], argv[optind - 1]);
2932 fname = argv[optind];
2934 if (optind == argc) {
2935 fprintf(stderr, "%s %s: FILE must be specified\n",
2940 if (mirror_mode && mirror_count == 0) {
2942 "error: %s: --mirror-count|-N option is required\n",
2949 if (lsa.lsa_comp_end == 0)
2950 lsa.lsa_comp_end = LUSTRE_EOF;
2953 if (lsa.lsa_comp_end != 0) {
2954 result = comp_args_to_layout(lpp, &lsa, true);
2959 if (mirror_flags & MF_NO_VERIFY) {
2960 if (opc != SO_MIRROR_EXTEND) {
2962 "error: %s: --no-verify is valid only for lfs mirror extend command\n",
2966 } else if (!has_m_file) {
2968 "error: %s: --no-verify must be specified with -f <victim_file> option\n",
2975 /* Only LCME_FL_INIT flags is used in PFL, and it shouldn't be
2976 * altered by user space tool, so we don't need to support the
2977 * --component-set for this moment. */
2978 if (comp_set && !comp_id) {
2979 fprintf(stderr, "%s %s: --component-set doesn't have component-id set\n",
2984 if ((delete + comp_set + comp_del + comp_add) > 1) {
2986 "%s %s: options --component-set, --component-del, --component-add and -d are mutually exclusive\n",
2991 if (delete && (setstripe_args_specified(&lsa) || comp_id != 0 ||
2992 lsa.lsa_comp_flags != 0 || layout != NULL)) {
2994 "%s %s: option -d is mutually exclusive with -s, -c, -o, -p, -I, -F and -E options\n",
2999 if ((comp_set || comp_del) &&
3000 (setstripe_args_specified(&lsa) || layout != NULL)) {
3002 "%s %s: options --component-del and --component-set are mutually exclusive when used with -c, -E, -o, -p, or -s\n",
3007 if (comp_del && comp_id != 0 && lsa.lsa_comp_flags != 0) {
3009 "%s %s: options -I and -F are mutually exclusive when used with --component-del\n",
3014 if (comp_add || comp_del) {
3017 result = lstat(fname, &st);
3018 if (result == 0 && S_ISDIR(st.st_mode)) {
3020 "%s setstripe: cannot use --component-add or --component-del for directory\n",
3026 fprintf(stderr, "error: %s: can't use --component-add "
3027 "or --component-del for mirror operation\n",
3034 if (layout == NULL) {
3036 "%s %s: option -E must be specified with --component-add\n",
3041 result = adjust_first_extent(fname, layout);
3042 if (result == -ENODATA)
3044 else if (result != 0)
3048 if (from_yaml && from_copy) {
3050 "%s: can't specify --yaml and --copy together\n",
3055 if ((from_yaml || from_copy) &&
3056 (setstripe_args_specified(&lsa) || layout != NULL)) {
3057 fprintf(stderr, "error: %s: can't specify --yaml with "
3058 "-c, -S, -i, -o, -p or -E options.\n",
3063 if (mdt_idx_arg != NULL && optind > 3) {
3065 "%s %s: option -m cannot be used with other options\n",
3070 if ((migration_flags & MIGRATION_NONBLOCK) && migration_block) {
3072 "%s %s: options --non-block and --block are mutually exclusive\n",
3077 if (!comp_del && !comp_set && comp_id != 0) {
3079 "%s %s: option -I can only be used with --component-del\n",
3084 if (mdt_idx_arg != NULL) {
3085 /* initialize migrate mdt parameters */
3086 migrate_mdt_param.fp_mdt_index = strtoul(mdt_idx_arg, &end, 0);
3088 fprintf(stderr, "%s %s: invalid MDT index '%s'\n",
3089 progname, argv[0], mdt_idx_arg);
3092 migrate_mdt_param.fp_migrate = 1;
3093 } else if (layout == NULL) {
3094 /* initialize stripe parameters */
3095 param = calloc(1, offsetof(typeof(*param),
3096 lsp_osts[lsa.lsa_nr_tgts]));
3097 if (param == NULL) {
3099 "%s %s: cannot allocate memory for parameters: %s\n",
3100 progname, argv[0], strerror(ENOMEM));
3105 if (lsa.lsa_stripe_size != LLAPI_LAYOUT_DEFAULT)
3106 param->lsp_stripe_size = lsa.lsa_stripe_size;
3107 if (lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT) {
3108 if (lsa.lsa_stripe_count == LLAPI_LAYOUT_WIDE)
3109 param->lsp_stripe_count = -1;
3111 param->lsp_stripe_count = lsa.lsa_stripe_count;
3113 if (lsa.lsa_stripe_off == LLAPI_LAYOUT_DEFAULT)
3114 param->lsp_stripe_offset = -1;
3116 param->lsp_stripe_offset = lsa.lsa_stripe_off;
3117 param->lsp_pool = lsa.lsa_pool_name;
3118 param->lsp_is_specific = false;
3119 if (lsa.lsa_nr_tgts > 0) {
3120 if (lsa.lsa_stripe_count > 0 &&
3121 lsa.lsa_stripe_count != LLAPI_LAYOUT_DEFAULT &&
3122 lsa.lsa_stripe_count != LLAPI_LAYOUT_WIDE &&
3123 lsa.lsa_nr_tgts != lsa.lsa_stripe_count) {
3124 fprintf(stderr, "error: %s: stripe count %lld "
3125 "doesn't match the number of OSTs: %d\n"
3126 , argv[0], lsa.lsa_stripe_count,
3132 param->lsp_is_specific = true;
3133 param->lsp_stripe_count = lsa.lsa_nr_tgts;
3134 memcpy(param->lsp_osts, osts,
3135 sizeof(*osts) * lsa.lsa_nr_tgts);
3140 /* generate a layout from a YAML template */
3141 result = lfs_comp_create_from_yaml(template, &layout,
3144 fprintf(stderr, "error: %s: can't create composite "
3145 "layout from template file %s\n",
3149 } else if (from_copy) {
3150 layout = llapi_layout_get_by_path(template, 0);
3151 if (layout == NULL) {
3153 "%s: can't create composite layout from file %s.\n",
3154 progname, template);
3159 for (fname = argv[optind]; fname != NULL; fname = argv[++optind]) {
3160 if (mdt_idx_arg != NULL) {
3161 result = llapi_migrate_mdt(fname, &migrate_mdt_param);
3162 } else if (migrate_mode) {
3163 result = lfs_migrate(fname, migration_flags, param,
3165 } else if (comp_set != 0) {
3166 result = lfs_component_set(fname, comp_id,
3168 lsa.lsa_comp_neg_flags);
3169 } else if (comp_del != 0) {
3170 result = lfs_component_del(fname, comp_id,
3172 lsa.lsa_comp_neg_flags);
3173 } else if (comp_add != 0) {
3174 result = lfs_component_add(fname, layout);
3175 } else if (opc == SO_MIRROR_CREATE) {
3176 result = mirror_create(fname, mirror_list);
3177 } else if (opc == SO_MIRROR_EXTEND) {
3178 result = mirror_extend(fname, mirror_list,
3180 } else if (opc == SO_MIRROR_SPLIT) {
3181 if (mirror_id == 0) {
3183 "%s %s: no mirror id is specified\n",
3187 result = mirror_split(fname, mirror_id, mirror_flags,
3188 has_m_file ? mirror_list->m_file :
3190 } else if (layout != NULL) {
3191 result = lfs_component_create(fname, O_CREAT | O_WRONLY,
3198 result = llapi_file_open_param(fname,
3207 /* Save the first error encountered. */
3215 llapi_layout_free(layout);
3216 lfs_mirror_list_free(mirror_list);
3221 llapi_layout_free(layout);
3222 lfs_mirror_list_free(mirror_list);
3226 static int lfs_poollist(int argc, char **argv)
3231 return llapi_poollist(argv[1]);
3234 static int set_time(time_t *time, time_t *set, char *str)
3241 else if (str[0] == '-')
3247 t = strtol(str, NULL, 0);
3248 if (*time < t * 24 * 60 * 60) {
3251 fprintf(stderr, "Wrong time '%s' is specified.\n", str);
3255 *set = *time - t * 24 * 60 * 60;
3258 static int name2uid(unsigned int *id, const char *name)
3260 struct passwd *passwd;
3262 passwd = getpwnam(name);
3265 *id = passwd->pw_uid;
3270 static int name2gid(unsigned int *id, const char *name)
3272 struct group *group;
3274 group = getgrnam(name);
3277 *id = group->gr_gid;
3282 static inline int name2projid(unsigned int *id, const char *name)
3287 static int uid2name(char **name, unsigned int id)
3289 struct passwd *passwd;
3291 passwd = getpwuid(id);
3294 *name = passwd->pw_name;
3299 static inline int gid2name(char **name, unsigned int id)
3301 struct group *group;
3303 group = getgrgid(id);
3306 *name = group->gr_name;
3311 static int name2layout(__u32 *layout, char *name)
3313 char *ptr, *layout_name;
3316 for (ptr = name; ; ptr = NULL) {
3317 layout_name = strtok(ptr, ",");
3318 if (layout_name == NULL)
3320 if (strcmp(layout_name, "released") == 0)
3321 *layout |= LOV_PATTERN_F_RELEASED;
3322 else if (strcmp(layout_name, "raid0") == 0)
3323 *layout |= LOV_PATTERN_RAID0;
3324 else if (strcmp(layout_name, "mdt") == 0)
3325 *layout |= LOV_PATTERN_MDT;
3332 static int lfs_find(int argc, char **argv)
3337 struct find_param param = {
3341 struct option long_opts[] = {
3342 { .val = 'A', .name = "atime", .has_arg = required_argument },
3343 { .val = 'b', .name = "blocks", .has_arg = required_argument },
3344 { .val = LFS_COMP_COUNT_OPT,
3345 .name = "comp-count", .has_arg = required_argument },
3346 { .val = LFS_COMP_COUNT_OPT,
3347 .name = "component-count",
3348 .has_arg = required_argument },
3349 { .val = LFS_COMP_FLAGS_OPT,
3350 .name = "comp-flags", .has_arg = required_argument },
3351 { .val = LFS_COMP_FLAGS_OPT,
3352 .name = "component-flags",
3353 .has_arg = required_argument },
3354 { .val = LFS_COMP_START_OPT,
3355 .name = "comp-start", .has_arg = required_argument },
3356 { .val = LFS_COMP_START_OPT,
3357 .name = "component-start",
3358 .has_arg = required_argument },
3359 { .val = LFS_MIRROR_STATE_OPT,
3360 .name = "mirror-state", .has_arg = required_argument },
3361 { .val = 'c', .name = "stripe-count", .has_arg = required_argument },
3362 { .val = 'c', .name = "stripe_count", .has_arg = required_argument },
3363 { .val = 'C', .name = "ctime", .has_arg = required_argument },
3364 /* getstripe { .val = 'd', .name = "directory", .has_arg = no_argument }, */
3365 { .val = 'D', .name = "maxdepth", .has_arg = required_argument },
3366 { .val = 'E', .name = "comp-end", .has_arg = required_argument },
3367 { .val = 'E', .name = "component-end",
3368 .has_arg = required_argument },
3369 /* find { .val = 'F', .name = "fid", .has_arg = no_argument }, */
3370 { .val = 'g', .name = "gid", .has_arg = required_argument },
3371 { .val = 'G', .name = "group", .has_arg = required_argument },
3372 { .val = 'H', .name = "mdt-hash", .has_arg = required_argument },
3373 { .val = 'i', .name = "stripe-index", .has_arg = required_argument },
3374 { .val = 'i', .name = "stripe_index", .has_arg = required_argument },
3375 /* getstripe { .val = 'I', .name = "comp-id", .has_arg = required_argument }*/
3376 { .val = 'L', .name = "layout", .has_arg = required_argument },
3377 { .val = 'm', .name = "mdt", .has_arg = required_argument },
3378 { .val = 'm', .name = "mdt-index", .has_arg = required_argument },
3379 { .val = 'm', .name = "mdt_index", .has_arg = required_argument },
3380 { .val = 'M', .name = "mtime", .has_arg = required_argument },
3381 { .val = 'n', .name = "name", .has_arg = required_argument },
3382 { .val = 'N', .name = "mirror-count", .has_arg = required_argument },
3383 /* find { .val = 'o' .name = "or", .has_arg = no_argument }, like find(1) */
3384 { .val = 'O', .name = "obd", .has_arg = required_argument },
3385 { .val = 'O', .name = "ost", .has_arg = required_argument },
3386 /* no short option for pool yet, can be 'p' after 2.18 */
3387 { .val = LFS_POOL_OPT,
3388 .name = "pool", .has_arg = required_argument },
3389 { .val = '0', .name = "print0", .has_arg = no_argument },
3390 { .val = 'P', .name = "print", .has_arg = no_argument },
3391 { .val = LFS_PROJID_OPT,
3392 .name = "projid", .has_arg = required_argument },
3393 /* getstripe { .val = 'q', .name = "quiet", .has_arg = no_argument }, */
3394 /* getstripe { .val = 'r', .name = "recursive", .has_arg = no_argument }, */
3395 /* getstripe { .val = 'R', .name = "raw", .has_arg = no_argument }, */
3396 { .val = 's', .name = "size", .has_arg = required_argument },
3397 { .val = 'S', .name = "stripe-size", .has_arg = required_argument },
3398 { .val = 'S', .name = "stripe_size", .has_arg = required_argument },
3399 { .val = 't', .name = "type", .has_arg = required_argument },
3400 { .val = 'T', .name = "mdt-count", .has_arg = required_argument },
3401 { .val = 'u', .name = "uid", .has_arg = required_argument },
3402 { .val = 'U', .name = "user", .has_arg = required_argument },
3403 /* getstripe { .val = 'v', .name = "verbose", .has_arg = no_argument }, */
3404 /* getstripe { .val = 'y', .name = "yaml", .has_arg = no_argument }, */
3416 /* when getopt_long_only() hits '!' it returns 1, puts "!" in optarg */
3417 while ((c = getopt_long_only(argc, argv,
3418 "-0A:b:c:C:D:E:g:G:H:i:L:m:M:n:N:O:Ppqrs:S:t:T:u:U:v",
3419 long_opts, NULL)) >= 0) {
3424 /* '!' is part of option */
3425 /* when getopt_long_only() finds a string which is not
3426 * an option nor a known option argument it returns 1
3427 * in that case if we already have found pathstart and pathend
3428 * (i.e. we have the list of pathnames),
3429 * the only supported value is "!"
3431 isoption = (c != 1) || (strcmp(optarg, "!") == 0);
3432 if (!isoption && pathend != -1) {
3433 fprintf(stderr, "err: %s: filename|dirname must either "
3434 "precede options or follow options\n",
3439 if (!isoption && pathstart == -1)
3440 pathstart = optind - 1;
3441 if (isoption && pathstart != -1 && pathend == -1)
3442 pathend = optind - 2;
3448 /* unknown; opt is "!" or path component,
3449 * checking done above.
3451 if (strcmp(optarg, "!") == 0)
3455 xtime = ¶m.fp_atime;
3456 xsign = ¶m.fp_asign;
3457 param.fp_exclude_atime = !!neg_opt;
3458 /* no break, this falls through to 'C' for ctime */
3461 xtime = ¶m.fp_ctime;
3462 xsign = ¶m.fp_csign;
3463 param.fp_exclude_ctime = !!neg_opt;
3465 /* no break, this falls through to 'M' for mtime */
3468 xtime = ¶m.fp_mtime;
3469 xsign = ¶m.fp_msign;
3470 param.fp_exclude_mtime = !!neg_opt;
3472 rc = set_time(&t, xtime, optarg);
3473 if (rc == INT_MAX) {
3481 if (optarg[0] == '+') {
3482 param.fp_blocks_sign = -1;
3484 } else if (optarg[0] == '-') {
3485 param.fp_blocks_sign = 1;
3489 param.fp_blocks_units = 1024;
3490 ret = llapi_parse_size(optarg, ¶m.fp_blocks,
3491 ¶m.fp_blocks_units, 0);
3493 fprintf(stderr, "error: bad blocks '%s'\n",
3497 param.fp_check_blocks = 1;
3498 param.fp_exclude_blocks = !!neg_opt;
3500 case LFS_COMP_COUNT_OPT:
3501 if (optarg[0] == '+') {
3502 param.fp_comp_count_sign = -1;
3504 } else if (optarg[0] == '-') {
3505 param.fp_comp_count_sign = 1;