Whamcloud - gitweb
0fff6d1701f27b5e26a73f97c7451d6c30a02b1a
[fs/lustre-release.git] / lustre / scripts / lfs_migrate
1 #!/bin/bash
2
3 # lfs_migrate: a simple tool to copy and check files.
4 #
5 # To avoid allocating objects on one or more OSTs, they should be
6 # deactivated on the MDS via "lctl --device {device_number} deactivate",
7 # where {device_number} is from the output of "lctl dl" on the MDS.
8 #
9 # To guard against corruption, the file is compared after migration
10 # to verify the copy is correct and the file has not been modified.
11 # This is not a protection against the file being open by another
12 # process, but it would catch the worst cases of in-use files, but
13 # to be 100% safe the administrator needs to ensure this is safe.
14
15 RSYNC=${RSYNC:-rsync}
16 OPT_RSYNC=${LFS_MIGRATE_RSYNC_MODE:-false}
17 ECHO=echo
18 LFS=${LFS:-lfs}
19 RSYNC_WITH_HLINKS=false
20 LFS_MIGRATE_TMP=${TMPDIR:-/tmp}
21 MIGRATED_SET="$(mktemp ${LFS_MIGRATE_TMP}/lfs_migrate.links.XXXXXX)"
22 NEWNAME=""
23 REMOVE_FID='s/^\[[0-9a-fx:]*\] //'
24 PROG=$(basename $0)
25
26 add_to_set() {
27         local old_fid="$1"
28         local path="$2"
29
30         echo -e "$old_fid $path" >> "$MIGRATED_SET"
31 }
32
33 path_in_set() {
34         local path="$1"
35
36         sed -e "$REMOVE_FID" $MIGRATED_SET | grep -q "^$path$"
37 }
38
39 old_fid_in_set() {
40         local old_fid="$1"
41
42         grep "^\\$old_fid" "$MIGRATED_SET" | head -n 1 |
43                 sed -e "$REMOVE_FID"
44 }
45
46 usage() {
47     cat -- <<USAGE 1>&2
48 usage: lfs_migrate [--dry-run|-n] [--help|-h] [--no-rsync|--rsync] [--quiet|-q]
49                    [--auto-stripe|-A [-C <cap>]
50                     [--min-free|-M <min_free>] [--max-free|-X <max_free>]]
51                    [--stripe-count|-c <stripe_count>]
52                    [--stripe-size|-S <stripe_size>]
53                    [-D] [-h] [-n] [-S]
54                    [--restripe|-R] [--skip|-s] [--verbose|-v] [--yes|-y] [-0]
55                    [FILE|DIR...]
56         -A         restripe file using an automatically selected stripe count,
57                    uses stripe_count = sqrt(size_in_GB) + 1
58         -c <stripe_count>
59                    restripe file using the specified <stripe_count>
60         -C <cap>   when -A is set, limit the migrated file to use on each OST
61                    at most 1/<cap> of the available space of the smallest OST
62         -D         do not use direct I/O to copy file contents
63         -h         show this usage message
64         -M <min_free>
65                    when -A is set, an OST must contain more available space than
66                    <min_free> KB in order for it to be considered available for
67                    use in the migration
68         --no-rsync do not fall back to rsync mode even if lfs migrate fails
69         -n         only print the names of files to be migrated
70         -q         run quietly (don't print filenames or status)
71         --rsync    force rsync mode instead of using lfs migrate
72         -R         restripe file using default directory striping
73         -s         skip file data comparison after migrate
74         -S <stripe_size>
75                    restripe file using the specified stripe size
76         -v         show verbose debug messages
77         -X <max_free>
78                    when -A is set, limit the amount of space on each OST that
79                    can be considered available for the migration to
80                    <max_free> KB
81         -y         answer 'y' to usage question
82         -0         input file names on stdin are separated by a null character
83
84 Options '-A', '-c', and '-R' are mutually exclusive.
85 Options '-C', '-M', and '-X' are ignored if '-A' is not set.
86
87 The --rsync and --no-rsync options may not be specified at the same time.
88
89 If a directory is an argument, all files in the directory are migrated.
90 If no file/directory is given, the file list is read from standard input.
91
92 Any arguments that are not explicitly recognized by the script are passed
93 through to the 'lfs migrate' utility.
94
95 Examples:
96       lfs_migrate /mnt/lustre/dir
97       lfs_migrate -p newpool /mnt/lustre/dir
98       lfs find /test -O test-OST0004 -size +4G | lfs_migrate -y
99 USAGE
100     exit 1
101 }
102
103 cleanup() {
104         rm -f "$MIGRATED_SET"
105         [ -n "$NEWNAME" ] && rm -f "$NEWNAME"
106 }
107
108 trap cleanup EXIT
109
110 OPT_CHECK=true
111 OPT_DEBUG=false
112 OPT_DRYRUN=false
113 OPT_FILE=()
114 OPT_LAYOUT=()
115 OPT_NO_RSYNC=false
116 OPT_NO_DIRECT=false
117 OPT_NULL=false
118 OPT_PASSTHROUGH=()
119 OPT_RESTRIPE=false
120 OPT_YES=false
121 LFS_OPT_DIRECTIO=""
122 OPT_AUTOSTRIPE=false
123 OPT_STRIPE_COUNT=""
124 OPT_STRIPE_SIZE=""
125 OPT_MINFREE=262144
126 OPT_MAXFREE=""
127 OPT_CAP=100
128
129 # Examine any long options and arguments.  getopts does not support long
130 # options, so they must be stripped out and classified as either options
131 # for the script, or passed through to "lfs migrate".
132 while [ -n "$*" ]; do
133         arg="$1"
134         case "$arg" in
135         -h|--help) usage;;
136         -l|--link) ;; # maintained backward compatibility for now
137         -n|--dry-run) OPT_DRYRUN=true; OPT_YES=true
138            echo "$PROG: -n deprecated, use --dry-run or --non-block" 1>&2;;
139         -q|--quiet) ECHO=:;;
140         -R|--restripe) OPT_RESTRIPE=true;;
141         -s|--skip) OPT_CHECK=false;;
142         -v|--verbose) OPT_DEBUG=true; ECHO=echo; OPT_PASSTHROUGH+=("$arg");;
143         -y|--yes) OPT_YES=true;;
144         -0) OPT_NULL=true;;
145         -b|--block|--non-block|--non-direct|--no-verify)
146            # Always pass non-layout options to 'lfs migrate'
147            OPT_PASSTHROUGH+=("$arg");;
148         --rsync) OPT_RSYNC=true;;
149         --no-rsync) OPT_NO_RSYNC=true;;
150         --copy|--yaml|--file)
151            # these options have files as arguments, pass both through
152            OPT_LAYOUT+="$arg $2"; shift;;
153         --auto-stripe|-A) OPT_AUTOSTRIPE=true;;
154         -C) OPT_CAP="$2"; shift;;
155         -D) LFS_OPT_DIRECTIO="-D";;
156         -M|--min-free) OPT_MINFREE="$2"; shift;;
157         -X|--max-free) OPT_MAXFREE="$2"; shift;;
158         -c|--stripe-count) OPT_STRIPE_COUNT="$2"; shift;;
159         -S|--stripe-size) OPT_STRIPE_SIZE="$2"; shift;;
160         *) # Pass other non-file layout options to 'lfs migrate'
161            [ -e "$arg" ] && OPT_FILE+="$arg " && break || OPT_LAYOUT+="$arg "
162         esac
163         shift
164 done
165
166 if $OPT_RESTRIPE && [ -n "$OPT_LAYOUT" ]; then
167         echo "$PROG: Options $OPT_LAYOUT cannot be used with the -R option" 1>&2
168         exit 1
169 elif $OPT_RESTRIPE && [[ "$OPT_STRIPE_COUNT" || "$OPT_STRIPE_SIZE" ]]; then
170         echo "$(basename $0): Options -c <stripe_count> and -S <stripe_size> "\
171         "may not be specified at the same time as the -R option." 1>&2
172         exit 1
173 elif $OPT_AUTOSTRIPE && [ -n "$OPT_STRIPE_COUNT" ]; then
174         echo ""
175         echo "$(basename $0) error: The -c <stripe_count> option may not" 1>&2
176         echo "be specified at the same time as the -A option." 1>&2
177         exit 1
178 elif $OPT_AUTOSTRIPE && $OPT_RESTRIPE; then
179         echo ""
180         echo "$(basename $0) error: The -A option may not be specified at" 1>&2
181         echo "the same time as the -R option." 1>&2
182         exit 1
183 fi
184
185 if $OPT_RSYNC && $OPT_NO_RSYNC; then
186         echo "$PROG: Options --rsync and --no-rsync may not be" \
187                 "specified at the same time." 1>&2
188         exit 1
189 fi
190
191 if ! $OPT_YES; then
192         echo ""
193         echo "lfs_migrate is currently NOT SAFE for moving in-use files." 1>&2
194         echo "Use it only when you are sure migrated files are unused." 1>&2
195         echo "" 1>&2
196         echo "If emptying an OST that is active on the MDS, new files may" 1>&2
197         echo "use it.  To stop allocating any new objects on OSTNNNN run:" 1>&2
198         echo "  lctl set_param osp.<fsname>-OSTNNNN*.max_create_count=0'" 1>&2
199         echo "on each MDS using the OST(s) being emptied." 1>&2
200         echo -n "Continue? (y/n) "
201         read CHECK
202         [ "$CHECK" != "y" -a "$CHECK" != "yes" ] && exit 1
203 fi
204
205 # if rsync has --xattr support, then try to copy the xattrs.
206 $RSYNC --help 2>&1 | grep -q xattr && RSYNC_OPTS="$RSYNC_OPTS -X"
207 $RSYNC --help 2>&1 | grep -q acls && RSYNC_OPTS="$RSYNC_OPTS -A"
208 # If rsync copies lustre xattrs in the future, then we can skip lfs (bug 22189)
209 strings $(which $RSYNC) 2>&1 | grep -q lustre && LFS=:
210
211 # rsync creates its temporary files with lenient permissions, even if
212 # permissions on the original files are more strict. Tighten umask here
213 # to avoid the brief window where unprivileged users might be able to
214 # access the temporary file.
215 umask 0077
216
217 # Use stripe count = sqrt(size_in_GB) + 1, but cap object size per OST.
218 function calc_stripe()
219 {
220         local filename=$1
221         local filekb=$2
222         local obj_max_kb=$3
223         local filegb=$((filekb / 1048576))
224         local stripe_count=1
225         local ost_max_count=0
226
227         # Files up to 1GB will have 1 stripe if they fit within the object max
228         if [[ $filegb -lt 1 && "$obj_max_kb" && $filekb -le $obj_max_kb ]]; then
229                 echo 1 "$obj_max_kb" && return
230         fi
231
232         stripe_count=$(bc <<< "scale=0; 1 + sqrt($filegb)" 2> /dev/null) ||
233                 { echo "cannot auto calculate stripe count" >&2; return; }
234
235         if [ -z "$obj_max_kb" ]; then
236                 local ost_min_kb=$((1 << 62))
237
238                 # Calculate cap on object size at 1% of smallest OST
239                 # but only include OSTs that have 256MB+ available space
240                 while IFS='' read avail; do
241                         [[ "$OPT_MAXFREE" && $avail -gt $OPT_MAXFREE ]] &&
242                                 avail=$OPT_MAXFREE
243                         if [ $avail -ge $OPT_MINFREE ]; then
244                                 ost_max_count=$((ost_max_count + 1))
245                                 if [ $avail -lt $ost_min_kb ]; then
246                                         ost_min_kb=$avail
247                                 fi
248                         fi
249                 done < <($LFS df $OLDNAME | awk '/OST/ { print $4 }')
250                 # Once this script supports pools, the lfs df command above
251                 # should also include the -p <pool> option to restrict the
252                 # listed OSTs to the correct pool.
253
254                 if [ $ost_max_count -eq 0 ]; then
255                         echo "no OSTs with sufficient available space" >&2
256                         return
257                 fi
258
259                 if [ "$ost_min_kb" -eq $((1 << 62)) ]; then
260                         echo "warning: unable to determine minimum OST size, " \
261                              "object size not capped" >&2
262                         obj_max_kb=0
263                         echo "$stripe_count" "$obj_max_kb"
264                         return
265                 fi
266
267                 obj_max_kb=$((ost_min_kb / $OPT_CAP))
268         elif [ $obj_max_kb -eq 0 ]; then
269                 echo "warning: unable to determine minimum OST size " \
270                      "from previous migrate, object size not capped" >&2
271                 echo "$stripe_count" "$obj_max_kb"
272                 return
273         fi
274
275         # If disk usage would exceed the cap, increase the number of stripes
276         [ $filekb -gt $((stripe_count * $obj_max_kb)) ] &&
277                 stripe_count=$((filekb / $obj_max_kb))
278
279         # Limit the count to the number of eligible OSTs
280         if [ "$stripe_count" -gt $ost_max_count ]; then
281                 echo "$ost_max_count" "$obj_max_kb"
282         else
283                 echo "$stripe_count" "$obj_max_kb"
284         fi
285 }
286
287 lfs_migrate() {
288         while IFS='' read -d '' OLDNAME; do
289                 local hlinks=()
290                 local stripe_size="$OPT_STRIPE_SIZE"
291                 local stripe_count="$OPT_STRIPE_COUNT"
292                 local parent_count=""
293                 local parent_size=""
294                 local stripe_pool
295                 local mirror_count
296                 local layout
297
298                 $ECHO -n "$OLDNAME: "
299
300                 # avoid duplicate stat if possible
301                 local nlink_type=($(LANG=C stat -c "%h %F %s" "$OLDNAME" \
302                                  2> /dev/null))
303
304                 # skip non-regular files, since they don't have any objects
305                 # and there is no point in trying to migrate them.
306                 if [ "${nlink_type[1]}" != "regular" ]; then
307                         echo -e "$OLDNAME: not a regular file, skipped" 1>&2
308                         continue
309                 fi
310
311                 # working out write perms is hard, let the shell do it
312                 if [ ! -w "$OLDNAME" ]; then
313                         echo -e "$OLDNAME: no write permission, skipped" 1>&2
314                         continue
315                 fi
316
317                 if $OPT_DRYRUN && ! $OPT_DEBUG; then
318                         $ECHO "dry run, skipped"
319                         continue
320                 fi
321
322                 # xattrs use absolute file paths, so ensure provided path is
323                 # also absolute so that the names can be compared
324                 local oldname_absolute=$(readlink -f "$OLDNAME")
325                 if [ -z "$oldname_absolute" ]; then
326                         echo -e "$OLDNAME: cannot resolve full path, skipped" 1>&2
327                         continue
328                 fi
329                 OLDNAME=$oldname_absolute
330
331                 # In the future, the path2fid and fid2path calls below
332                 # should be replaced with a single call to
333                 # "lfs path2links" once that command is available.  The logic
334                 # for detecting unlisted hard links could then be removed.
335                 local fid=$($LFS path2fid "$OLDNAME" 2> /dev/null)
336                 if [ $? -ne 0 ]; then
337                         echo -n "\r\e[K$OLDNAME: cannot determine FID; skipping; "
338                         echo "is this a Lustre file system?"
339                         echo -e "$OLDNAME: cannot determine FID; skipping; " 1>&2
340                         echo "is this a Lustre file system?" 1>&2
341                         continue
342                 fi
343
344                 if [[ ${nlink_type[0]} -gt 1 ]] || $RSYNC_WITH_HLINKS; then
345                         # don't migrate a hard link if it was already migrated
346                         if path_in_set "$OLDNAME"; then
347                                 $ECHO "\r\e[Kalready migrated via another hard link"
348                                 continue
349                         fi
350
351                         # There is limited space available in the xattrs
352                         # to store all of the hard links for a file, so it's
353                         # possible that $OLDNAME is part of a link set but is
354                         # not listed in xattrs and therefore not listed as
355                         # being migrated.
356                         local migrated=$(old_fid_in_set "$fid")
357                         if [ -n "$migrated" ]; then
358                                 $ECHO -e "$OLDNAME: already migrated via another hard link"
359                                 if $OPT_RSYNC; then
360                                         # Only the rsync case has to relink.
361                                         # The lfs migrate case preserves the
362                                         # inode so the links are already
363                                         # correct.
364                                         [ "$migrated" != "$OLDNAME" ] &&
365                                                 ln -f "$migrated" "$OLDNAME"
366                                 fi
367                                 add_to_set "$fid" "$OLDNAME"
368                                 continue;
369                         fi
370                 fi
371
372                 if $OPT_RESTRIPE; then
373                         UNLINK=""
374                 else
375                         # if rsync copies Lustre xattrs properly in the future
376                         # (i.e. before the file data, so that it preserves
377                         # striping) then we don't need to do this getstripe
378                         # stuff.
379                         UNLINK="-u"
380
381                         stripe_pool=$($LFS getstripe -p "$OLDNAME" 2> /dev/null)
382                         mirror_count=$($LFS getstripe -N "$OLDFILE" 2> /dev/null)
383
384                         if $OPT_AUTOSTRIPE; then
385                                 local filekb=$((${nlink_type[3]} / 1024))
386                                 read stripe_count OBJ_MAX_KB < <(calc_stripe \
387                                         "$OLDNAME" "$filekb" "$OBJ_MAX_KB")
388                                 [ -z "$stripe_count" ] && exit 1
389                                 [ $stripe_count -lt 1 ] && stripe_count=1
390                         else
391                                 [ "$OPT_STRIPE_COUNT" ] && stripe_count=$OPT_STRIPE_COUNT ||
392                                         stripe_count=$($LFS getstripe -c "$OLDNAME" \
393                                                 2> /dev/null)
394                         fi
395                         [ -z "$stripe_size" ] &&
396                                 stripe_size=$($LFS getstripe -S "$OLDNAME" 2> /dev/null)
397
398                         [ -z "$stripe_count" -o -z "$stripe_size" ] && UNLINK=""
399                 fi
400
401                 if $OPT_DEBUG; then
402                         local parent_count
403                         local parent_size
404
405                         if $OPT_RESTRIPE; then
406                                 parent_count=$($LFS getstripe -c \
407                                                $(dirname "$OLDNAME") 2> \
408                                                /dev/null)
409                                 parent_size=$($LFS getstripe -S \
410                                               $(dirname "$OLDNAME") 2> \
411                                               /dev/null)
412                                 stripe_pool=$($LFS getstripe --pool \
413                                               $(dirname "$OLDNAME") 2> \
414                                               /dev/null)
415                                 mirror_count=$($LFS getstripe -N \
416                                                $(dirname "$OLDFILE") 2> \
417                                                /dev/null)
418                         fi
419
420                         $ECHO -n "stripe" \
421                                 "count=${stripe_count:-$parent_count}," \
422                                 "size=${stripe_size:-$parent_size}," \
423                                 "pool=${stripe_pool}," \
424                                 "mirror_count=${mirror_count}"
425                 fi
426
427                 if $OPT_DRYRUN; then
428                         $ECHO "dry run, skipped"
429                         continue
430                 fi
431
432                 [ -n "$stripe_count" ] && stripe_count="-c $stripe_count"
433                 [ -n "$stripe_size" ] && stripe_size="-S $stripe_size"
434                 [ -n "$stripe_pool" ] && stripe_pool="-p $stripe_pool"
435                 [ -n "$mirror_count" ] && mirror_count="-N $mirror_count"
436                 layout="$stripe_count $stripe_size $stripe_pool $mirror_count \
437                         $OPT_LAYOUT"
438
439                 # detect other hard links and store them on a global
440                 # list so we don't re-migrate them
441                 local mntpoint=$(df -P "$OLDNAME" |
442                                 awk 'NR==2 { print $NF; exit }')
443                 if [ -z "$mntpoint" ]; then
444                         echo -e "$OLDNAME: cannot determine mount point; skipped" 1>&2
445                         continue
446                 fi
447                 hlinks=$($LFS fid2path "$mntpoint" "$fid" 2> /dev/null)
448                 if [ $? -ne 0 ]; then
449                         echo -e "$OLDNAME: cannot determine hard link paths, skipped" 1>&2
450                         continue
451                 fi
452                 hlinks+=("$OLDNAME")
453
454                 # first try to migrate via Lustre tools, then fall back to rsync
455                 if ! $OPT_RSYNC; then
456                         if $LFS migrate "${OPT_PASSTHROUGH[@]}" $layout \
457                            "$OLDNAME"; then
458                                 $ECHO "done migrate"
459                                 for link in ${hlinks[*]}; do
460                                         add_to_set "$fid" "$link"
461                                 done
462                                 continue
463                         elif $OPT_NO_RSYNC; then
464                                 echo -e "$OLDNAME: refusing to fall back to rsync, skipped" 1>&2
465                                 continue
466                         else
467                                 $ECHO -n "falling back to rsync: "
468                                 OPT_RSYNC=true
469                         fi
470                 fi
471
472                 NEWNAME=$(mktemp $UNLINK "$OLDNAME-lfs_migrate.tmp.XXXXXX")
473                 if [ $? -ne 0 -o -z "$NEWNAME" ]; then
474                         echo -e "$OLDNAME: cannot make temp file, skipped" 1>&2
475                         continue
476                 fi
477
478                 if [ "$UNLINK" ]; then
479                         if ! $LFS setstripe "${OPT_PASSTHROUGH[@]}" $layout \
480                              "$NEWNAME"; then
481                                 echo -e "\r\e[K$NEWNAME: setstripe failed, exiting" 1>&2
482                                 exit 2
483                         fi
484                 fi
485
486                 # we use --inplace, since we created our own temp file already
487                 if ! $RSYNC -a --inplace $RSYNC_OPTS "$OLDNAME" "$NEWNAME";then
488                         echo -e "$OLDNAME: copy error, exiting" 1>&2
489                         exit 4
490                 fi
491
492                 if $OPT_CHECK && ! cmp -s "$OLDNAME" "$NEWNAME"; then
493                         echo -e "$NEWNAME: compare failed, exiting" 1>&2
494                         exit 8
495                 fi
496
497                 if ! mv "$NEWNAME" "$OLDNAME"; then
498                         echo -e "$OLDNAME: rename error, exiting" 1>&2
499                         exit 12
500                 fi
501
502                 $ECHO "done migrate via rsync"
503                 for link in ${hlinks[*]}; do
504                         if [ "$link" != "$OLDNAME" ]; then
505                                 ln -f "$OLDNAME" "$link"
506                         fi
507                         add_to_set "$fid" "$link"
508                 done
509
510                 # If the number of hlinks exceeds the space in the xattrs,
511                 # when the final path is statted it will have a link count
512                 # of 1 (all other links will point to the new inode).
513                 # This flag indicates that even paths with a link count of
514                 # 1 are potentially part of a link set.
515                 [ ${#hlinks[*]} -gt 1 ] && RSYNC_WITH_HLINKS=true
516         done
517 }
518
519 if [ "$#" -eq 0 ]; then
520         if $OPT_NULL; then
521                 lfs_migrate
522         else
523                 tr '\n' '\0' | lfs_migrate
524         fi
525 else
526         while [ "$1" ]; do
527                 if [ -d "$1" ]; then
528                         $LFS find "$1" -type f -print0
529                 else
530                         echo -en "$1\0"
531                 fi
532                 shift
533         done | lfs_migrate
534 fi
535