Whamcloud - gitweb
LU-7152 hsm: sync volatile file before setting times
[fs/lustre-release.git] / lustre / tests / sanity-hsm.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 #
6 # exit on error
7 set -e
8 set +o monitor
9
10 SRCDIR=$(dirname $0)
11 export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/utils:$PATH:/sbin:/usr/sbin
12
13 ONLY=${ONLY:-"$*"}
14 # bug number for skipped test:    LU-3815
15 ALWAYS_EXCEPT="$SANITY_HSM_EXCEPT 34 35 36"
16 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
17
18 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
19
20 . $LUSTRE/tests/test-framework.sh
21 init_test_env $@
22 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
23 init_logging
24
25 MULTIOP=${MULTIOP:-multiop}
26 OPENFILE=${OPENFILE:-openfile}
27 MMAP_CAT=${MMAP_CAT:-mmap_cat}
28 MOUNT_2=${MOUNT_2:-"yes"}
29 FAIL_ON_ERROR=false
30
31 # script only handles up to 10 MDTs (because of MDT_PREFIX)
32 [ $MDSCOUNT -gt 9 ] &&
33         error "script cannot handle more than 9 MDTs, please fix" && exit
34
35 check_and_setup_lustre
36
37 if [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ]]; then
38         skip_env "Need MDS version at least 2.4.53" && exit
39 fi
40
41 # $RUNAS_ID may get set incorrectly somewhere else
42 if [[ $UID -eq 0 && $RUNAS_ID -eq 0 ]]; then
43         skip_env "\$RUNAS_ID set to 0, but \$UID is also 0!" && exit
44 fi
45 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
46
47 build_test_filter
48
49 # if there is no CLIENT1 defined, some tests can be ran on localhost
50 CLIENT1=${CLIENT1:-$HOSTNAME}
51 # if CLIENT2 doesn't exist then use CLIENT1 instead
52 # All tests should use CLIENT2 with MOUNT2 only therefore it will work if
53 # $CLIENT2 == CLIENT1
54 # Exception is the test which need two separate nodes
55 CLIENT2=${CLIENT2:-$CLIENT1}
56
57 #
58 # In order to test multiple remote HSM agents, a new facet type named "AGT" and
59 # the following associated variables are added:
60 #
61 # AGTCOUNT: number of agents
62 # AGTDEV{N}: target HSM mount point (root path of the backend)
63 # agt{N}_HOST: hostname of the agent agt{N}
64 # SINGLEAGT: facet of the single agent
65 #
66 # The number of agents is initialized as the number of remote client nodes.
67 # By default, only single copytool is started on a remote client/agent. If there
68 # was no remote client, then the copytool will be started on the local client.
69 #
70 init_agt_vars() {
71         local n
72         local agent
73
74         export AGTCOUNT=${AGTCOUNT:-$((CLIENTCOUNT - 1))}
75         [[ $AGTCOUNT -gt 0 ]] || AGTCOUNT=1
76
77         export SHARED_DIRECTORY=${SHARED_DIRECTORY:-$TMP}
78         if [[ $CLIENTCOUNT -gt 1 ]] &&
79                 ! check_shared_dir $SHARED_DIRECTORY $CLIENTS; then
80                 skip_env "SHARED_DIRECTORY should be accessible"\
81                          "on all client nodes"
82                 exit 0
83         fi
84
85         # We used to put the HSM archive in $SHARED_DIRECTORY but that
86         # meant NFS issues could hose sanity-hsm sessions. So now we
87         # use $TMP instead.
88         for n in $(seq $AGTCOUNT); do
89                 eval export AGTDEV$n=\$\{AGTDEV$n:-"$TMP/arc$n"\}
90                 agent=CLIENT$((n + 1))
91                 if [[ -z "${!agent}" ]]; then
92                         [[ $CLIENTCOUNT -eq 1 ]] && agent=CLIENT1 ||
93                                 agent=CLIENT2
94                 fi
95                 eval export agt${n}_HOST=\$\{agt${n}_HOST:-${!agent}\}
96         done
97
98         export SINGLEAGT=${SINGLEAGT:-agt1}
99
100         export HSMTOOL=${HSMTOOL:-"lhsmtool_posix"}
101         export HSMTOOL_VERBOSE=${HSMTOOL_VERBOSE:-""}
102         export HSMTOOL_UPDATE_INTERVAL=${HSMTOOL_UPDATE_INTERVAL:=""}
103         export HSMTOOL_EVENT_FIFO=${HSMTOOL_EVENT_FIFO:=""}
104         export HSMTOOL_TESTDIR
105         export HSMTOOL_BASE=$(basename "$HSMTOOL" | cut -f1 -d" ")
106         # $hsm_root/$HSMTMP Makes $hsm_root dir path less generic to ensure
107         # rm -rf $hsm_root/* is safe even if $hsm_root becomes unset to avoid
108         # deleting everything in filesystem, independent of any copytool.
109         export HSMTMP=${HSMTMP:-"shsm"}
110
111         HSM_ARCHIVE=$(copytool_device $SINGLEAGT)
112
113         [ -z "${HSM_ARCHIVE// /}" ] && error "HSM_ARCHIVE is empty!"
114         HSM_ARCHIVE=$HSM_ARCHIVE/$HSMTMP
115
116         HSM_ARCHIVE_NUMBER=2
117
118         # The test only support up to 10 MDTs
119         MDT_PREFIX="mdt.$FSNAME-MDT000"
120         HSM_PARAM="${MDT_PREFIX}0.hsm"
121
122         # archive is purged at copytool setup
123         HSM_ARCHIVE_PURGE=true
124
125         # Don't allow copytool error upon start/setup
126         HSMTOOL_NOERROR=false
127 }
128
129 # Get the backend root path for the given agent facet.
130 copytool_device() {
131         local facet=$1
132         local dev=AGTDEV$(facet_number $facet)
133
134         echo -n ${!dev}
135 }
136
137 # Stop copytool and unregister an existing changelog user.
138 cleanup() {
139         copytool_monitor_cleanup
140         copytool_cleanup
141         changelog_cleanup
142         cdt_set_sanity_policy
143 }
144
145 get_mdt_devices() {
146         local mdtno
147         # get MDT device for each mdc
148         for mdtno in $(seq 1 $MDSCOUNT); do
149                 local idx=$(($mdtno - 1))
150                 MDT[$idx]=$($LCTL get_param -n \
151                         mdc.$FSNAME-MDT000${idx}-mdc-*.mds_server_uuid |
152                         awk '{gsub(/_UUID/,""); print $1}' | head -n1)
153         done
154 }
155
156 search_copytools() {
157         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
158         do_nodesv $hosts "pgrep -x $HSMTOOL_BASE"
159 }
160
161 kill_copytools() {
162         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
163
164         echo "Killing existing copytools on $hosts"
165         do_nodesv $hosts "killall -q $HSMTOOL_BASE" || true
166 }
167
168 wait_copytools() {
169         local hosts=${1:-$(facet_active_host $SINGLEAGT)}
170         local wait_timeout=200
171         local wait_start=$SECONDS
172         local wait_end=$((wait_start + wait_timeout))
173
174         while ((SECONDS < wait_end)); do
175                 sleep 2
176                 if ! search_copytools $hosts; then
177                         echo "copytools stopped in $((SECONDS - wait_start))s"
178                         return 0
179                 fi
180
181                 echo "copytools still running on $hosts"
182         done
183
184         # try to dump Copytool's stack
185         do_nodesv $hosts "echo 1 >/proc/sys/kernel/sysrq ; " \
186                          "echo t >/proc/sysrq-trigger"
187
188         echo "copytools failed to stop in ${wait_timeout}s"
189
190         return 1
191 }
192
193 copytool_monitor_setup() {
194         local facet=${1:-$SINGLEAGT}
195         local agent=$(facet_active_host $facet)
196
197         local cmd="mktemp --tmpdir=/tmp -d ${TESTSUITE}.${TESTNAME}.XXXX"
198         local test_dir=$(do_node $agent "$cmd") ||
199                 error "Failed to create tempdir on $agent"
200         export HSMTOOL_MONITOR_DIR=$test_dir
201
202         # Create the fifo and a monitor (cat dies when copytool dies)
203         do_node $agent "mkfifo -m 0644 $test_dir/fifo" ||
204                 error "failed to create copytool fifo on $agent"
205         cmd="cat $test_dir/fifo > $test_dir/events &"
206         cmd+=" echo \\\$! > $test_dir/monitor_pid"
207
208         if [[ $PDSH == *Rmrsh* ]]; then
209                 # This is required for pdsh -Rmrsh and its handling of remote
210                 # shells.
211                 # Regular ssh and pdsh -Rssh work fine without this
212                 # backgrounded subshell nonsense.
213                 (do_node $agent "$cmd") &
214                 export HSMTOOL_MONITOR_PDSH=$!
215
216                 # Slightly racy, but just making a best-effort to catch obvious
217                 # problems.
218                 sleep 1
219                 ps -p $HSMTOOL_MONITOR_PDSH > /dev/null ||
220                         error "Failed to start copytool monitor on $agent"
221         else
222                 do_node $agent "$cmd"
223                 if [ $? != 0 ]; then
224                         error "Failed to start copytool monitor on $agent"
225                 fi
226         fi
227 }
228
229 copytool_monitor_cleanup() {
230         local facet=${1:-$SINGLEAGT}
231         local agent=$(facet_active_host $facet)
232
233         if [ -n "$HSMTOOL_MONITOR_DIR" ]; then
234                 # Should die when the copytool dies, but just in case.
235                 local cmd="kill \\\$(cat $HSMTOOL_MONITOR_DIR/monitor_pid)"
236                 cmd+=" 2>/dev/null || true"
237                 do_node $agent "$cmd"
238                 do_node $agent "rm -fr $HSMTOOL_MONITOR_DIR"
239                 export HSMTOOL_MONITOR_DIR=
240         fi
241
242         # The pdsh should die on its own when the monitor dies. Just
243         # in case, though, try to clean up to avoid any cruft.
244         if [ -n "$HSMTOOL_MONITOR_PDSH" ]; then
245                 kill $HSMTOOL_MONITOR_PDSH 2>/dev/null
246                 export HSMTOOL_MONITOR_PDSH=
247         fi
248 }
249
250 copytool_setup() {
251         local facet=${1:-$SINGLEAGT}
252         # Use MOUNT2 by default if defined
253         local lustre_mntpnt=${2:-${MOUNT2:-$MOUNT}}
254         local arc_id=$3
255         local hsm_root=${4:-$(copytool_device $facet)}
256
257         [ -z "${hsm_root// /}" ] && error "copytool_setup: hsm_root empty!"
258
259         local agent=$(facet_active_host $facet)
260
261         if [[ -z "$arc_id" ]] &&
262                 do_facet $facet "pkill -CONT -x $HSMTOOL_BASE"; then
263                         echo "Only wakeup running copytool $facet on $agent"
264                         return 0
265         fi
266
267         if $HSM_ARCHIVE_PURGE; then
268                 echo "Purging archive on $agent"
269                 do_facet $facet "rm -rf $hsm_root/$HSMTMP/*"
270         fi
271
272         echo "Starting copytool $facet on $agent"
273         do_facet $facet "mkdir -p $hsm_root/$HSMTMP/" ||
274                         error "mkdir '$hsm_root/$HSMTMP' failed"
275         # bandwidth is limited to 1MB/s so the copy time is known and
276         # independent of hardware
277         local cmd="$HSMTOOL $HSMTOOL_VERBOSE --daemon"
278         cmd+=" --hsm-root $hsm_root/$HSMTMP"
279         [[ -z "$arc_id" ]] || cmd+=" --archive $arc_id"
280         [[ -z "$HSMTOOL_UPDATE_INTERVAL" ]] ||
281                 cmd+=" --update-interval $HSMTOOL_UPDATE_INTERVAL"
282         [[ -z "$HSMTOOL_EVENT_FIFO" ]] ||
283                 cmd+=" --event-fifo $HSMTOOL_EVENT_FIFO"
284         cmd+=" --bandwidth 1 $lustre_mntpnt"
285
286         # Redirect the standard output and error to a log file which
287         # can be uploaded to Maloo.
288         local prefix=$TESTLOG_PREFIX
289         [[ -z "$TESTNAME" ]] || prefix=$prefix.$TESTNAME
290         local copytool_log=$prefix.copytool${arc_id}_log.$agent.log
291
292         do_facet $facet "$cmd < /dev/null > $copytool_log 2>&1"
293         if [[ $? !=  0 ]]; then
294                 [[ $HSMTOOL_NOERROR == true ]] ||
295                         error "start copytool $facet on $agent failed"
296                 echo "start copytool $facet on $agent failed"
297         fi
298
299         trap cleanup EXIT
300 }
301
302 get_copytool_event_log() {
303         local facet=${1:-$SINGLEAGT}
304         local agent=$(facet_active_host $facet)
305
306         [ -z "$HSMTOOL_MONITOR_DIR" ] &&
307                 error "Can't get event log: No monitor directory!"
308
309         do_node $agent "cat $HSMTOOL_MONITOR_DIR/events" ||
310                 error "Could not collect event log from $agent"
311 }
312
313 copytool_cleanup() {
314         trap - EXIT
315         local agt_facet=$SINGLEAGT
316         local agt_hosts=${1:-$(facet_active_host $agt_facet)}
317         local hsm_root=$(copytool_device $agt_facet)
318
319         [ -z "${hsm_root// /}" ] && error "copytool_cleanup: hsm_root empty!"
320
321         local i
322         local facet
323         local param
324         local -a state
325
326         kill_copytools $agt_hosts
327         wait_copytools $agt_hosts || error "copytools failed to stop"
328
329         # Clean all CDTs orphans requests from previous tests that
330         # would otherwise need to timeout to clear.
331         for ((i = 0; i < MDSCOUNT; i++)); do
332                 facet=mds$((i + 1))
333                 param=$(printf 'mdt.%s-MDT%04x.hsm_control' $FSNAME $i)
334                 state[$i]=$(do_facet $facet "$LCTL get_param -n $param")
335
336                 # Skip already stopping or stopped CDTs.
337                 [[ "${state[$i]}" =~ ^stop ]] && continue
338
339                 do_facet $facet "$LCTL set_param $param=shutdown"
340         done
341
342         for ((i = 0; i < MDSCOUNT; i++)); do
343                 # Only check and restore CDTs that we stopped in the first loop.
344                 [[ "${state[$i]}" =~ ^stop ]] && continue
345
346                 facet=mds$((i + 1))
347                 param=$(printf 'mdt.%s-MDT%04x.hsm_control' $FSNAME $i)
348
349                 wait_result $facet "$LCTL get_param -n $param" stopped 20 ||
350                         error "$facet CDT state is not stopped"
351
352                 # Restore old CDT state.
353                 do_facet $facet "$LCTL set_param $param=${state[$i]}"
354         done
355
356         for ((i = 0; i < MDSCOUNT; i++)); do
357                 # Only check CDTs that we stopped in the first loop.
358                 [[ "${state[$i]}" =~ ^stop ]] && continue
359
360                 facet=mds$((i + 1))
361                 param=$(printf 'mdt.%s-MDT%04x.hsm_control' $FSNAME $i)
362
363                 # Check that the old CDT state was restored.
364                 wait_result $facet "$LCTL get_param -n $param" "${state[$i]}" \
365                         20 || error "$facet CDT state is not '${state[$i]}'"
366         done
367
368         if do_facet $agt_facet "df $hsm_root" >/dev/null 2>&1 ; then
369                 do_facet $agt_facet "rm -rf $hsm_root/$HSMTMP/*"
370         fi
371 }
372
373 copytool_suspend() {
374         local agents=${1:-$(facet_active_host $SINGLEAGT)}
375
376         do_nodesv $agents "pkill -STOP -x $HSMTOOL_BASE" || return 0
377         echo "Copytool is suspended on $agents"
378 }
379
380 copytool_remove_backend() {
381         local fid=$1
382         local be=$(do_facet $SINGLEAGT find $HSM_ARCHIVE -name $fid)
383         echo "Remove from backend: $fid = $be"
384         do_facet $SINGLEAGT rm -f $be
385 }
386
387 import_file() {
388         do_facet $SINGLEAGT \
389                 "$HSMTOOL --archive $HSM_ARCHIVE_NUMBER --hsm-root $HSM_ARCHIVE\
390                 --import $1 $2 $MOUNT" ||
391                 error "import of $1 to $2 failed"
392 }
393
394 make_archive() {
395         local file=$HSM_ARCHIVE/$1
396         do_facet $SINGLEAGT mkdir -p $(dirname $file)
397         do_facet $SINGLEAGT dd if=/dev/urandom of=$file count=32 bs=1000000 ||
398                 file_creation_failure dd $file $?
399 }
400
401 copy2archive() {
402         local file=$HSM_ARCHIVE/$2
403         do_facet $SINGLEAGT mkdir -p $(dirname $file)
404         do_facet $SINGLEAGT cp -p $1 $file || error "cannot copy $1 to $file"
405 }
406
407 mdts_set_param() {
408         local arg=$1
409         local key=$2
410         local value=$3
411         local mdtno
412         local rc=0
413         if [[ "$value" != "" ]]; then
414                 value="=$value"
415         fi
416         for mdtno in $(seq 1 $MDSCOUNT); do
417                 local idx=$(($mdtno - 1))
418                 local facet=mds${mdtno}
419                 # if $arg include -P option, run 1 set_param per MDT on the MGS
420                 # else, run set_param on each MDT
421                 [[ $arg = *"-P"* ]] && facet=mgs
422                 do_facet $facet $LCTL set_param $arg mdt.${MDT[$idx]}.$key$value
423                 [[ $? != 0 ]] && rc=1
424         done
425         return $rc
426 }
427
428 mdts_check_param() {
429         local key="$1"
430         local target="$2"
431         local timeout="$3"
432         local mdtno
433         for mdtno in $(seq 1 $MDSCOUNT); do
434                 local idx=$(($mdtno - 1))
435                 wait_result mds${mdtno} \
436                         "$LCTL get_param -n $MDT_PREFIX${idx}.$key" "$target" \
437                         $timeout ||
438                         error "$key state is not '$target' on mds${mdtno}"
439         done
440 }
441
442 changelog_setup() {
443         CL_USERS=()
444         local mdtno
445         for mdtno in $(seq 1 $MDSCOUNT); do
446                 local idx=$(($mdtno - 1))
447                 local cl_user=$(do_facet mds${mdtno} $LCTL \
448                              --device ${MDT[$idx]} \
449                              changelog_register -n)
450                 CL_USERS+=($cl_user)
451                 do_facet mds${mdtno} lctl set_param \
452                         mdd.${MDT[$idx]}.changelog_mask="+hsm"
453                 $LFS changelog_clear ${MDT[$idx]} $cl_user 0
454         done
455 }
456
457 changelog_cleanup() {
458         local mdtno
459         for mdtno in $(seq 1 $MDSCOUNT); do
460                 local idx=$(($mdtno - 1))
461                 [[ -z  ${CL_USERS[$idx]} ]] && continue
462                 $LFS changelog_clear ${MDT[$idx]} ${CL_USERS[$idx]} 0
463                 do_facet mds${mdtno} lctl --device ${MDT[$idx]} \
464                         changelog_deregister ${CL_USERS[$idx]}
465         done
466         CL_USERS=()
467 }
468
469 changelog_get_flags() {
470         local mdt=$1
471         local cltype=$2
472         local fid=$3
473
474         $LFS changelog $mdt | awk "/$cltype/ && /t=\[$fid\]/ {print \$5}"
475 }
476
477 get_hsm_param() {
478         local param=$1
479         local val=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.$param)
480         echo $val
481 }
482
483 set_hsm_param() {
484         local param=$1
485         local value=$2
486         local opt=$3
487         mdts_set_param "$opt -n" "hsm.$param" "$value"
488         return $?
489 }
490
491 set_test_state() {
492         local cmd=$1
493         local target=$2
494         mdts_set_param "" hsm_control "$cmd"
495         mdts_check_param hsm_control "$target" 10
496 }
497
498 cdt_set_sanity_policy() {
499         if [[ "$CDT_POLICY_HAD_CHANGED" ]]
500         then
501                 # clear all
502                 mdts_set_param "" hsm.policy "+NRA"
503                 mdts_set_param "" hsm.policy "-NBR"
504                 CDT_POLICY_HAD_CHANGED=
505         fi
506 }
507
508 cdt_set_no_retry() {
509         mdts_set_param "" hsm.policy "+NRA"
510         CDT_POLICY_HAD_CHANGED=true
511 }
512
513 cdt_clear_no_retry() {
514         mdts_set_param "" hsm.policy "-NRA"
515         CDT_POLICY_HAD_CHANGED=true
516 }
517
518 cdt_set_non_blocking_restore() {
519         mdts_set_param "" hsm.policy "+NBR"
520         CDT_POLICY_HAD_CHANGED=true
521 }
522
523 cdt_clear_non_blocking_restore() {
524         mdts_set_param "" hsm.policy "-NBR"
525         CDT_POLICY_HAD_CHANGED=true
526 }
527
528 cdt_clear_mount_state() {
529         mdts_set_param "-P -d" hsm_control ""
530 }
531
532 cdt_set_mount_state() {
533         mdts_set_param "-P" hsm_control "$1"
534         # set_param -P is asynchronous operation and could race with set_param.
535         # In such case configs could be retrieved and applied at mgc after
536         # set_param -P completion. Sleep here to avoid race with set_param.
537         # We need at least 20 seconds. 10 for mgc_requeue_thread to wake up
538         # MGC_TIMEOUT_MIN_SECONDS + MGC_TIMEOUT_RAND_CENTISEC(5 + 5)
539         # and 10 seconds to retrieve config from server.
540         sleep 20
541 }
542
543 cdt_check_state() {
544         mdts_check_param hsm_control "$1" 20
545 }
546
547 cdt_disable() {
548         set_test_state disabled disabled
549 }
550
551 cdt_enable() {
552         set_test_state enabled enabled
553 }
554
555 cdt_shutdown() {
556         set_test_state shutdown stopped
557 }
558
559 cdt_purge() {
560         set_test_state purge enabled
561 }
562
563 cdt_restart() {
564         cdt_shutdown
565         cdt_enable
566         cdt_set_sanity_policy
567 }
568
569 needclients() {
570         local client_count=$1
571         if [[ $CLIENTCOUNT -lt $client_count ]]; then
572                 skip "Need $client_count or more clients, have $CLIENTCOUNT"
573                 return 1
574         fi
575         return 0
576 }
577
578 path2fid() {
579         $LFS path2fid $1 | tr -d '[]'
580         return ${PIPESTATUS[0]}
581 }
582
583 get_hsm_flags() {
584         local f=$1
585         local u=$2
586         local st
587
588         if [[ $u == "user" ]]; then
589                 st=$($RUNAS $LFS hsm_state $f)
590         else
591                 u=root
592                 st=$($LFS hsm_state $f)
593         fi
594
595         [[ $? == 0 ]] || error "$LFS hsm_state $f failed (run as $u)"
596
597         st=$(echo $st | cut -f 2 -d" " | tr -d "()," )
598         echo $st
599 }
600
601 get_hsm_archive_id() {
602         local f=$1
603         local st
604         st=$($LFS hsm_state $f)
605         [[ $? == 0 ]] || error "$LFS hsm_state $f failed"
606
607         local ar=$(echo $st | grep "archive_id" | cut -f5 -d" " |
608                    cut -f2 -d:)
609         echo $ar
610 }
611
612 check_hsm_flags() {
613         local f=$1
614         local fl=$2
615
616         local st=$(get_hsm_flags $f)
617         [[ $st == $fl ]] || error "hsm flags on $f are $st != $fl"
618 }
619
620 check_hsm_flags_user() {
621         local f=$1
622         local fl=$2
623
624         local st=$(get_hsm_flags $f user)
625         [[ $st == $fl ]] || error "hsm flags on $f are $st != $fl"
626 }
627
628 file_creation_failure() {
629         local cmd=$1
630         local f=$2
631         local err=$3
632
633         df $MOUNT $MOUNT2 >&2
634         error "cannot create $f with $cmd, status=$err"
635 }
636
637 copy_file() {
638         local f=
639
640         if [[ -d $2 ]]; then
641                 f=$2/$(basename $1)
642         else
643                 f=$2
644         fi
645
646         if [[ "$3" != 1 ]]; then
647                 f=${f/$DIR/$DIR2}
648         fi
649         rm -f $f
650         cp $1 $f || file_creation_failure cp $f $?
651
652         path2fid $f || error "cannot get fid on $f"
653 }
654
655 make_small() {
656         local file2=${1/$DIR/$DIR2}
657         dd if=/dev/urandom of=$file2 count=2 bs=1M conv=fsync ||
658                 file_creation_failure dd $file2 $?
659
660         path2fid $1 || error "cannot get fid on $1"
661 }
662
663 make_small_sync() {
664         dd if=/dev/urandom of=$1 count=1 bs=1M conv=sync ||
665                 file_creation_failure dd $1 $?
666         path2fid $1 || error "cannot get fid on $1"
667 }
668
669 cleanup_large_files() {
670         local ratio=$(df -P $MOUNT | tail -1 | awk '{print $5}' |
671                       sed 's/%//g')
672         [ $ratio -gt 50 ] && find $MOUNT -size +10M -exec rm -f {} \;
673 }
674
675 check_enough_free_space() {
676         local nb=$1
677         local unit=$2
678         local need=$((nb * unit /1024))
679         local free=$(df -kP $MOUNT | tail -1 | awk '{print $4}')
680         (( $need >= $free )) && return 1
681         return 0
682 }
683
684 make_large_for_striping() {
685         local file2=${1/$DIR/$DIR2}
686         local sz=$($LCTL get_param -n lov.*-clilov-*.stripesize | head -n1)
687
688         cleanup_large_files
689
690         check_enough_free_space 5 $sz
691         [ $? != 0 ] && return $?
692
693         dd if=/dev/urandom of=$file2 count=5 bs=$sz conv=fsync ||
694                 file_creation_failure dd $file2 $?
695
696         path2fid $1 || error "cannot get fid on $1"
697 }
698
699 make_large_for_progress() {
700         local file2=${1/$DIR/$DIR2}
701
702         cleanup_large_files
703
704         check_enough_free_space 39 1000000
705         [ $? != 0 ] && return $?
706
707         # big file is large enough, so copy time is > 30s
708         # so copytool make 1 progress
709         # size is not a multiple of 1M to avoid stripe
710         # aligment
711         dd if=/dev/urandom of=$file2 count=39 bs=1000000 conv=fsync ||
712                 file_creation_failure dd $file2 $?
713
714         path2fid $1 || error "cannot get fid on $1"
715 }
716
717 make_large_for_progress_aligned() {
718         local file2=${1/$DIR/$DIR2}
719
720         cleanup_large_files
721
722         check_enough_free_space 33 1048576
723         [ $? != 0 ] && return $?
724
725         # big file is large enough, so copy time is > 30s
726         # so copytool make 1 progress
727         # size is a multiple of 1M to have stripe
728         # aligment
729         dd if=/dev/urandom of=$file2 count=33 bs=1M conv=fsync ||
730                 file_creation_failure dd $file2 $?
731         path2fid $1 || error "cannot get fid on $1"
732 }
733
734 make_large_for_cancel() {
735         local file2=${1/$DIR/$DIR2}
736
737         cleanup_large_files
738
739         check_enough_free_space 103 1048576
740         [ $? != 0 ] && return $?
741
742         # Copy timeout is 100s. 105MB => 105s
743         dd if=/dev/urandom of=$file2 count=103 bs=1M conv=fsync ||
744                 file_creation_failure dd $file2 $?
745         path2fid $1 || error "cannot get fid on $1"
746 }
747
748 wait_result() {
749         local facet=$1
750         shift
751         wait_update --verbose $(facet_active_host $facet) "$@"
752 }
753
754 wait_request_state() {
755         local fid=$1
756         local request=$2
757         local state=$3
758         # 4th arg (mdt index) is optional
759         local mdtidx=${4:-0}
760         local mds=mds$(($mdtidx + 1))
761
762         local cmd="$LCTL get_param -n ${MDT_PREFIX}${mdtidx}.hsm.actions"
763         cmd+=" | awk '/'$fid'.*action='$request'/ {print \\\$13}' | cut -f2 -d="
764
765         wait_result $mds "$cmd" $state 200 ||
766                 error "request on $fid is not $state on $mds"
767 }
768
769 get_request_state() {
770         local fid=$1
771         local request=$2
772
773         do_facet $SINGLEMDS "$LCTL get_param -n $HSM_PARAM.actions |"\
774                 "awk '/'$fid'.*action='$request'/ {print \\\$13}' | cut -f2 -d="
775 }
776
777 get_request_count() {
778         local fid=$1
779         local request=$2
780
781         do_facet $SINGLEMDS "$LCTL get_param -n $HSM_PARAM.actions |"\
782                 "awk -vn=0 '/'$fid'.*action='$request'/ {n++}; END {print n}'"
783 }
784
785 wait_all_done() {
786         local timeout=$1
787         local fid=$2
788
789         local cmd="$LCTL get_param -n $HSM_PARAM.actions"
790         [[ -n $fid ]] && cmd+=" | grep '$fid'"
791         cmd+=" | egrep 'WAITING|STARTED'"
792
793         wait_result $SINGLEMDS "$cmd" "" $timeout ||
794                 error "requests did not complete"
795 }
796
797 wait_for_grace_delay() {
798         local val=$(get_hsm_param grace_delay)
799         sleep $val
800 }
801
802 parse_json_event() {
803         local raw_event=$1
804
805         # python2.6 in EL6 includes an internal json module
806         local json_parser='import json; import fileinput;'
807         json_parser+=' print "\n".join(["local %s=\"%s\"" % tuple for tuple in '
808         json_parser+='json.loads([line for line in '
809         json_parser+='fileinput.input()][0]).items()])'
810
811         echo $raw_event | python -c "$json_parser"
812 }
813
814 # initiate variables
815 init_agt_vars
816
817 # populate MDT device array
818 get_mdt_devices
819
820 # cleanup from previous bad setup
821 kill_copytools
822
823 # for recovery tests, coordinator needs to be started at mount
824 # so force it
825 # the lustre conf must be without hsm on (like for sanity.sh)
826 echo "Set HSM on and start"
827 cdt_set_mount_state enabled
828 cdt_check_state enabled
829
830 echo "Start copytool"
831 copytool_setup
832
833 echo "Set sanity-hsm HSM policy"
834 cdt_set_sanity_policy
835
836 # finished requests are quickly removed from list
837 set_hsm_param grace_delay 10
838
839 test_1() {
840         mkdir -p $DIR/$tdir
841         chmod 777 $DIR/$tdir
842
843         local f=$DIR/$tdir/$tfile
844         $RUNAS touch $f
845
846         # User flags
847         check_hsm_flags_user $f "0x00000000"
848
849         $RUNAS $LFS hsm_set --norelease $f ||
850                 error "user could not change hsm flags"
851         check_hsm_flags_user $f "0x00000010"
852
853         $RUNAS $LFS hsm_clear --norelease $f ||
854                 error "user could not clear hsm flags"
855         check_hsm_flags_user $f "0x00000000"
856
857         # User could not change those flags...
858         $RUNAS $LFS hsm_set --exists $f &&
859                 error "user should not set this flag"
860         check_hsm_flags_user $f "0x00000000"
861
862         # ...but root can
863         $LFS hsm_set --exists $f ||
864                 error "root could not change hsm flags"
865         check_hsm_flags_user $f "0x00000001"
866
867         $LFS hsm_clear --exists $f ||
868                 error "root could not clear hsm state"
869         check_hsm_flags_user $f "0x00000000"
870
871 }
872 run_test 1 "lfs hsm flags root/non-root access"
873
874 test_1a() {
875         mkdir -p $DIR/$tdir
876         local f=$DIR/$tdir/$tfile
877         local fid=$(make_small $f)
878
879         $LFS hsm_archive $f || error "could not archive file"
880         wait_request_state $fid ARCHIVE SUCCEED
881
882         # Release and check states
883         $LFS hsm_release $f || error "could not release file"
884         echo -n "Verifying released state: "
885         check_hsm_flags $f "0x0000000d"
886
887         $MMAP_CAT $f > /dev/null || error "failed mmap & cat release file"
888 }
889 run_test 1a "mmap & cat a HSM released file"
890
891 test_2() {
892         mkdir -p $DIR/$tdir
893         local f=$DIR/$tdir/$tfile
894         touch $f
895         # New files are not dirty
896         check_hsm_flags $f "0x00000000"
897
898         # For test, we simulate an archived file.
899         $LFS hsm_set --exists $f || error "user could not change hsm flags"
900         check_hsm_flags $f "0x00000001"
901
902         # chmod do not put the file dirty
903         chmod 600 $f || error "could not chmod test file"
904         check_hsm_flags $f "0x00000001"
905
906         # chown do not put the file dirty
907         chown $RUNAS_ID $f || error "could not chown test file"
908         check_hsm_flags $f "0x00000001"
909
910         # truncate put the file dirty
911         $TRUNCATE $f 1 || error "could not truncate test file"
912         check_hsm_flags $f "0x00000003"
913
914         $LFS hsm_clear --dirty $f || error "could not clear hsm flags"
915         check_hsm_flags $f "0x00000001"
916 }
917 run_test 2 "Check file dirtyness when doing setattr"
918
919 test_3() {
920         mkdir -p $DIR/$tdir
921         f=$DIR/$tdir/$tfile
922
923         # New files are not dirty
924         cp -p /etc/passwd $f
925         check_hsm_flags $f "0x00000000"
926
927         # For test, we simulate an archived file.
928         $LFS hsm_set --exists $f ||
929                 error "user could not change hsm flags"
930         check_hsm_flags $f "0x00000001"
931
932         # Reading a file, does not set dirty
933         cat $f > /dev/null || error "could not read file"
934         check_hsm_flags $f "0x00000001"
935
936         # Open for write without modifying data, does not set dirty
937         openfile -f O_WRONLY $f || error "could not open test file"
938         check_hsm_flags $f "0x00000001"
939
940         # Append to a file sets it dirty
941         cp -p /etc/passwd $f.append || error "could not create file"
942         $LFS hsm_set --exists $f.append ||
943                 error "user could not change hsm flags"
944         dd if=/etc/passwd of=$f.append bs=1 count=3\
945            conv=notrunc oflag=append status=noxfer ||
946                 file_creation_failure dd $f.append $?
947         check_hsm_flags $f.append "0x00000003"
948
949         # Modify a file sets it dirty
950         cp -p /etc/passwd $f.modify || error "could not create file"
951         $LFS hsm_set --exists $f.modify ||
952                 error "user could not change hsm flags"
953         dd if=/dev/zero of=$f.modify bs=1 count=3\
954            conv=notrunc status=noxfer ||
955                 file_creation_failure dd $f.modify $?
956         check_hsm_flags $f.modify "0x00000003"
957
958         # Open O_TRUNC sets dirty
959         cp -p /etc/passwd $f.trunc || error "could not create file"
960         $LFS hsm_set --exists $f.trunc ||
961                 error "user could not change hsm flags"
962         cp /etc/group $f.trunc || error "could not override a file"
963         check_hsm_flags $f.trunc "0x00000003"
964
965         # Mmapped a file sets dirty
966         cp -p /etc/passwd $f.mmap || error "could not create file"
967         $LFS hsm_set --exists $f.mmap ||
968                 error "user could not change hsm flags"
969         multiop $f.mmap OSMWUc || error "could not mmap a file"
970         check_hsm_flags $f.mmap "0x00000003"
971 }
972 run_test 3 "Check file dirtyness when opening for write"
973
974 test_4() {
975         mkdir -p $DIR/$tdir
976         local f=$DIR/$tdir/$tfile
977         local fid=$(make_small $f)
978
979         $LFS hsm_cancel $f
980         local st=$(get_request_state $fid CANCEL)
981         [[ -z "$st" ]] || error "hsm_cancel must not be registered (state=$st)"
982 }
983 run_test 4 "Useless cancel must not be registered"
984
985 test_8() {
986         # test needs a running copytool
987         copytool_setup
988
989         mkdir -p $DIR/$tdir
990         local f=$DIR/$tdir/$tfile
991         local fid=$(copy_file /etc/passwd $f)
992         $LFS hsm_archive $f
993         wait_request_state $fid ARCHIVE SUCCEED
994
995         check_hsm_flags $f "0x00000009"
996
997         copytool_cleanup
998 }
999 run_test 8 "Test default archive number"
1000
1001 test_9() {
1002         mkdir -p $DIR/$tdir
1003         local f=$DIR/$tdir/$tfile
1004         local fid=$(copy_file /etc/passwd $f)
1005         # we do not use the default one to be sure
1006         local new_an=$((HSM_ARCHIVE_NUMBER + 1))
1007         copytool_cleanup
1008         copytool_setup $SINGLEAGT $MOUNT $new_an
1009         $LFS hsm_archive --archive $new_an $f
1010         wait_request_state $fid ARCHIVE SUCCEED
1011
1012         check_hsm_flags $f "0x00000009"
1013
1014         copytool_cleanup
1015 }
1016 run_test 9 "Use of explicit archive number, with dedicated copytool"
1017
1018 test_9a() {
1019         needclients 3 || return 0
1020
1021         local n
1022         local file
1023         local fid
1024
1025         copytool_cleanup $(comma_list $(agts_nodes))
1026
1027         # start all of the copytools
1028         for n in $(seq $AGTCOUNT); do
1029                 copytool_setup agt$n
1030         done
1031
1032         trap "copytool_cleanup $(comma_list $(agts_nodes))" EXIT
1033         # archive files
1034         mkdir -p $DIR/$tdir
1035         for n in $(seq $AGTCOUNT); do
1036                 file=$DIR/$tdir/$tfile.$n
1037                 fid=$(make_small $file)
1038
1039                 $LFS hsm_archive $file || error "could not archive file $file"
1040                 wait_request_state $fid ARCHIVE SUCCEED
1041                 check_hsm_flags $file "0x00000009"
1042         done
1043
1044         trap - EXIT
1045         copytool_cleanup $(comma_list $(agts_nodes))
1046 }
1047 run_test 9a "Multiple remote agents"
1048
1049 test_10a() {
1050         # test needs a running copytool
1051         copytool_setup
1052
1053         mkdir -p $DIR/$tdir/d1
1054         local f=$DIR/$tdir/$tfile
1055         local fid=$(copy_file /etc/hosts $f)
1056         $LFS hsm_archive -a $HSM_ARCHIVE_NUMBER $f ||
1057                 error "hsm_archive failed"
1058         wait_request_state $fid ARCHIVE SUCCEED
1059
1060         local AFILE=$(do_facet $SINGLEAGT ls $HSM_ARCHIVE'/*/*/*/*/*/*/'$fid) ||
1061                 error "fid $fid not in archive $HSM_ARCHIVE"
1062         echo "Verifying content"
1063         do_facet $SINGLEAGT diff $f $AFILE || error "archived file differs"
1064         echo "Verifying hsm state "
1065         check_hsm_flags $f "0x00000009"
1066
1067         echo "Verifying archive number is $HSM_ARCHIVE_NUMBER"
1068         local st=$(get_hsm_archive_id $f)
1069         [[ $st == $HSM_ARCHIVE_NUMBER ]] ||
1070                 error "Wrong archive number, $st != $HSM_ARCHIVE_NUMBER"
1071
1072         copytool_cleanup
1073
1074 }
1075 run_test 10a "Archive a file"
1076
1077 test_10b() {
1078         # test needs a running copytool
1079         copytool_setup
1080
1081         mkdir -p $DIR/$tdir
1082         local f=$DIR/$tdir/$tfile
1083         local fid=$(copy_file /etc/hosts $f)
1084         $LFS hsm_archive $f || error "archive request failed"
1085         wait_request_state $fid ARCHIVE SUCCEED
1086
1087         $LFS hsm_archive $f || error "archive of non dirty file failed"
1088         local cnt=$(get_request_count $fid ARCHIVE)
1089         [[ "$cnt" == "1" ]] ||
1090                 error "archive of non dirty file must not make a request"
1091
1092         copytool_cleanup
1093 }
1094 run_test 10b "Archive of non dirty file must work without doing request"
1095
1096 test_10c() {
1097         # test needs a running copytool
1098         copytool_setup
1099
1100         mkdir -p $DIR/$tdir
1101         local f=$DIR/$tdir/$tfile
1102         local fid=$(copy_file /etc/hosts $f)
1103         $LFS hsm_set --noarchive $f
1104         $LFS hsm_archive $f && error "archive a noarchive file must fail"
1105
1106         copytool_cleanup
1107 }
1108 run_test 10c "Check forbidden archive"
1109
1110 test_10d() {
1111         # test needs a running copytool
1112         copytool_setup
1113
1114         mkdir -p $DIR/$tdir
1115         local f=$DIR/$tdir/$tfile
1116         local fid=$(copy_file /etc/hosts $f)
1117         $LFS hsm_archive $f || error "cannot archive $f"
1118         wait_request_state $fid ARCHIVE SUCCEED
1119
1120         local ar=$(get_hsm_archive_id $f)
1121         local dflt=$(get_hsm_param default_archive_id)
1122         [[ $ar == $dflt ]] ||
1123                 error "archived file is not on default archive: $ar != $dflt"
1124
1125         copytool_cleanup
1126 }
1127 run_test 10d "Archive a file on the default archive id"
1128
1129 test_11a() {
1130         mkdir -p $DIR/$tdir
1131         copy2archive /etc/hosts $tdir/$tfile
1132         local f=$DIR/$tdir/$tfile
1133
1134         import_file $tdir/$tfile $f
1135         echo -n "Verifying released state: "
1136         check_hsm_flags $f "0x0000000d"
1137
1138         local LSZ=$(stat -c "%s" $f)
1139         local ASZ=$(do_facet $SINGLEAGT stat -c "%s" $HSM_ARCHIVE/$tdir/$tfile)
1140
1141         echo "Verifying imported size $LSZ=$ASZ"
1142         [[ $LSZ -eq $ASZ ]] || error "Incorrect size $LSZ != $ASZ"
1143         echo -n "Verifying released pattern: "
1144         local PTRN=$($GETSTRIPE -L $f)
1145         echo $PTRN
1146         [[ $PTRN == 80000001 ]] || error "Is not released"
1147         local fid=$(path2fid $f)
1148         echo "Verifying new fid $fid in archive"
1149
1150         local AFILE=$(do_facet $SINGLEAGT ls $HSM_ARCHIVE'/*/*/*/*/*/*/'$fid) ||
1151                 error "fid $fid not in archive $HSM_ARCHIVE"
1152 }
1153 run_test 11a "Import a file"
1154
1155 test_11b() {
1156         # test needs a running copytool
1157         copytool_setup
1158
1159         mkdir -p $DIR/$tdir
1160         local f=$DIR/$tdir/$tfile
1161         local fid=$(copy_file /etc/hosts $f)
1162         $LFS hsm_archive -a $HSM_ARCHIVE_NUMBER $f ||
1163                 error "hsm_archive failed"
1164         wait_request_state $fid ARCHIVE SUCCEED
1165
1166         local FILE_HASH=$(md5sum $f)
1167         rm -f $f
1168
1169         import_file $fid $f
1170
1171         echo "$FILE_HASH" | md5sum -c
1172
1173         [[ $? -eq 0 ]] || error "Restored file differs"
1174
1175         copytool_cleanup
1176 }
1177 run_test 11b "Import a deleted file using its FID"
1178
1179 test_12a() {
1180         # test needs a running copytool
1181         copytool_setup
1182
1183         mkdir -p $DIR/$tdir
1184         copy2archive /etc/hosts $tdir/$tfile
1185
1186         local f=$DIR/$tdir/$tfile
1187         import_file $tdir/$tfile $f
1188         local f2=$DIR2/$tdir/$tfile
1189         echo "Verifying released state: "
1190         check_hsm_flags $f2 "0x0000000d"
1191
1192         local fid=$(path2fid $f2)
1193         $LFS hsm_restore $f2
1194         wait_request_state $fid RESTORE SUCCEED
1195
1196         echo "Verifying file state: "
1197         check_hsm_flags $f2 "0x00000009"
1198
1199         do_facet $SINGLEAGT diff -q $HSM_ARCHIVE/$tdir/$tfile $f
1200
1201         [[ $? -eq 0 ]] || error "Restored file differs"
1202
1203         copytool_cleanup
1204 }
1205 run_test 12a "Restore an imported file explicitly"
1206
1207 test_12b() {
1208         # test needs a running copytool
1209         copytool_setup
1210
1211         mkdir -p $DIR/$tdir
1212         copy2archive /etc/hosts $tdir/$tfile
1213
1214         local f=$DIR/$tdir/$tfile
1215         import_file $tdir/$tfile $f
1216         echo "Verifying released state: "
1217         check_hsm_flags $f "0x0000000d"
1218
1219         cat $f > /dev/null || error "File read failed"
1220
1221         echo "Verifying file state after restore: "
1222         check_hsm_flags $f "0x00000009"
1223
1224         do_facet $SINGLEAGT diff -q $HSM_ARCHIVE/$tdir/$tfile $f
1225
1226         [[ $? -eq 0 ]] || error "Restored file differs"
1227
1228         copytool_cleanup
1229 }
1230 run_test 12b "Restore an imported file implicitly"
1231
1232 test_12c() {
1233         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1234
1235         # test needs a running copytool
1236         copytool_setup
1237
1238         mkdir -p $DIR/$tdir
1239         local f=$DIR/$tdir/$tfile
1240         $LFS setstripe -c 2 $f
1241         local fid
1242         fid=$(make_large_for_striping $f)
1243         [ $? != 0 ] && skip "not enough free space" && return
1244
1245         local FILE_CRC=$(md5sum $f)
1246
1247         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1248         wait_request_state $fid ARCHIVE SUCCEED
1249         $LFS hsm_release $f || error "release $f failed"
1250
1251         echo "$FILE_CRC" | md5sum -c
1252
1253         [[ $? -eq 0 ]] || error "Restored file differs"
1254
1255         copytool_cleanup
1256 }
1257 run_test 12c "Restore a file with stripe of 2"
1258
1259 test_12d() {
1260         # test needs a running copytool
1261         copytool_setup
1262
1263         mkdir -p $DIR/$tdir
1264
1265         local f=$DIR/$tdir/$tfile
1266         local fid=$(copy_file /etc/hosts $f)
1267         $LFS hsm_restore $f || error "restore of non archived file failed"
1268         local cnt=$(get_request_count $fid RESTORE)
1269         [[ "$cnt" == "0" ]] ||
1270                 error "restore non archived must not make a request"
1271         $LFS hsm_archive $f ||
1272                 error "archive request failed"
1273         wait_request_state $fid ARCHIVE SUCCEED
1274         $LFS hsm_restore $f ||
1275                 error "restore of non released file failed"
1276         local cnt=$(get_request_count $fid RESTORE)
1277         [[ "$cnt" == "0" ]] ||
1278                 error "restore a non dirty file must not make a request"
1279
1280         copytool_cleanup
1281 }
1282 run_test 12d "Restore of a non archived, non released file must work"\
1283                 " without doing request"
1284
1285 test_12e() {
1286         # test needs a running copytool
1287         copytool_setup
1288
1289         mkdir -p $DIR/$tdir $HSM_ARCHIVE/$tdir
1290         local f=$DIR/$tdir/$tfile
1291         local fid=$(copy_file /etc/hosts $f)
1292         $LFS hsm_archive $f || error "archive request failed"
1293         wait_request_state $fid ARCHIVE SUCCEED
1294
1295         # make file dirty
1296         cat /etc/hosts >> $f
1297         sync
1298         $LFS hsm_state $f
1299
1300         $LFS hsm_restore $f && error "restore a dirty file must fail"
1301
1302         copytool_cleanup
1303 }
1304 run_test 12e "Check forbidden restore"
1305
1306 test_12f() {
1307         # test needs a running copytool
1308         copytool_setup
1309
1310         mkdir -p $DIR/$tdir
1311         local f=$DIR/$tdir/$tfile
1312         local fid=$(copy_file /etc/hosts $f)
1313
1314         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1315         wait_request_state $fid ARCHIVE SUCCEED
1316         $LFS hsm_release $f || error "release of $f failed"
1317         $LFS hsm_restore $f
1318         wait_request_state $fid RESTORE SUCCEED
1319
1320         echo -n "Verifying file state: "
1321         check_hsm_flags $f "0x00000009"
1322
1323         diff -q /etc/hosts $f
1324
1325         [[ $? -eq 0 ]] || error "Restored file differs"
1326
1327         copytool_cleanup
1328 }
1329 run_test 12f "Restore a released file explicitly"
1330
1331 test_12g() {
1332         # test needs a running copytool
1333         copytool_setup
1334
1335         mkdir -p $DIR/$tdir
1336         local f=$DIR/$tdir/$tfile
1337         local fid=$(copy_file /etc/hosts $f)
1338
1339         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1340         wait_request_state $fid ARCHIVE SUCCEED
1341         $LFS hsm_release $f || error "release of $f failed"
1342
1343         diff -q /etc/hosts $f
1344         local st=$?
1345
1346         # we check we had a restore done
1347         wait_request_state $fid RESTORE SUCCEED
1348
1349         [[ $st -eq 0 ]] || error "Restored file differs"
1350
1351         copytool_cleanup
1352 }
1353 run_test 12g "Restore a released file implicitly"
1354
1355 test_12h() {
1356         needclients 2 || return 0
1357
1358         # test needs a running copytool
1359         copytool_setup
1360
1361         mkdir -p $DIR/$tdir
1362         local f=$DIR/$tdir/$tfile
1363         local fid=$(copy_file /etc/hosts $f)
1364
1365         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1366         wait_request_state $fid ARCHIVE SUCCEED
1367         $LFS hsm_release $f || error "release of $f failed"
1368
1369         do_node $CLIENT2 diff -q /etc/hosts $f
1370         local st=$?
1371
1372         # we check we had a restore done
1373         wait_request_state $fid RESTORE SUCCEED
1374
1375         [[ $st -eq 0 ]] || error "Restored file differs"
1376
1377         copytool_cleanup
1378 }
1379 run_test 12h "Restore a released file implicitly from a second node"
1380
1381 test_12m() {
1382         # test needs a running copytool
1383         copytool_setup
1384
1385         mkdir -p $DIR/$tdir
1386         local f=$DIR/$tdir/$tfile
1387         local fid=$(copy_file /etc/passwd $f)
1388         $LFS hsm_archive $f || error "archive of $f failed"
1389         wait_request_state $fid ARCHIVE SUCCEED
1390
1391         $LFS hsm_release $f || error "release of $f failed"
1392
1393         cmp /etc/passwd $f
1394
1395         [[ $? -eq 0 ]] || error "Restored file differs"
1396
1397         copytool_cleanup
1398 }
1399 run_test 12m "Archive/release/implicit restore"
1400
1401 test_12n() {
1402         # test needs a running copytool
1403         copytool_setup
1404
1405         mkdir -p $DIR/$tdir
1406         copy2archive /etc/hosts $tdir/$tfile
1407
1408         local f=$DIR/$tdir/$tfile
1409         import_file $tdir/$tfile $f
1410
1411         do_facet $SINGLEAGT cmp /etc/hosts $f ||
1412                 error "Restored file differs"
1413
1414         $LFS hsm_release $f || error "release of $f failed"
1415
1416         copytool_cleanup
1417 }
1418 run_test 12n "Import/implicit restore/release"
1419
1420 test_12o() {
1421         # test needs a running copytool
1422         copytool_setup
1423
1424         mkdir -p $DIR/$tdir
1425         local f=$DIR/$tdir/$tfile
1426         local fid=$(copy_file /etc/hosts $f)
1427
1428         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1429         wait_request_state $fid ARCHIVE SUCCEED
1430         $LFS hsm_release $f || error "release of $f failed"
1431
1432 #define OBD_FAIL_MDS_HSM_SWAP_LAYOUTS           0x152
1433         do_facet $SINGLEMDS lctl set_param fail_loc=0x152
1434
1435         # set no retry action mode
1436         cdt_set_no_retry
1437
1438         diff -q /etc/hosts $f
1439         local st=$?
1440
1441         # we check we had a restore failure
1442         wait_request_state $fid RESTORE FAILED
1443
1444         [[ $st -eq 0 ]] && error "Restore must fail"
1445
1446         # remove no retry action mode
1447         cdt_clear_no_retry
1448
1449         # check file is still released
1450         check_hsm_flags $f "0x0000000d"
1451
1452         # retry w/o failure injection
1453         do_facet $SINGLEMDS lctl set_param fail_loc=0
1454
1455         # to be sure previous RESTORE result is gone
1456         cdt_purge
1457         wait_for_grace_delay
1458
1459         diff -q /etc/hosts $f
1460         st=$?
1461
1462         # we check we had a restore done
1463         wait_request_state $fid RESTORE SUCCEED
1464
1465         [[ $st -eq 0 ]] || error "Restored file differs"
1466
1467         copytool_cleanup
1468 }
1469 run_test 12o "Layout-swap failure during Restore leaves file released"
1470
1471 test_12p() {
1472         # test needs a running copytool
1473         copytool_setup
1474
1475         mkdir $DIR/$tdir
1476         local f=$DIR/$tdir/$tfile
1477         local fid=$(copy_file /etc/hosts $f)
1478
1479         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1480         wait_request_state $fid ARCHIVE SUCCEED
1481         do_facet $SINGLEAGT cat $f > /dev/null || error "cannot cat $f"
1482         $LFS hsm_release $f || error "cannot release $f"
1483         do_facet $SINGLEAGT cat $f > /dev/null || error "cannot cat $f"
1484         $LFS hsm_release $f || error "cannot release $f"
1485         do_facet $SINGLEAGT cat $f > /dev/null || error "cannot cat $f"
1486
1487         copytool_cleanup
1488 }
1489 run_test 12p "implicit restore of a file on copytool mount point"
1490
1491 cleanup_test_12q() {
1492         trap 0
1493         zconf_umount $(facet_host $SINGLEAGT) $MOUNT3 ||
1494                 error "cannot umount $MOUNT3 on $SINGLEAGT"
1495 }
1496
1497 test_12q() {
1498         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.58) ] &&
1499                 skip "need MDS version at least 2.7.58" && return 0
1500
1501         zconf_mount $(facet_host $SINGLEAGT) $MOUNT3 ||
1502                 error "cannot mount $MOUNT3 on $SINGLEAGT"
1503
1504         trap cleanup_test_12q EXIT
1505
1506         # test needs a running copytool
1507         copytool_setup $SINGLEAGT $MOUNT3
1508
1509         mkdir $DIR/$tdir
1510         local f=$DIR/$tdir/$tfile
1511         local f2=$DIR2/$tdir/$tfile
1512         local fid=$(make_small $f)
1513         local orig_size=$(stat -c "%s" $f)
1514
1515         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1516         wait_request_state $fid ARCHIVE SUCCEED
1517
1518         $LFS hsm_release $f || error "could not release file"
1519         check_hsm_flags $f "0x0000000d"
1520
1521         kill_copytools
1522         wait_copytools || error "copytool failed to stop"
1523
1524         cat $f > /dev/null &
1525
1526         # wait a bit to allow implicit restore request to be handled.
1527         # if not, next stat would also block on layout-lock.
1528         sleep 5
1529
1530         local size=$(stat -c "%s" $f2)
1531         [ $size -eq $orig_size ] ||
1532                 error "$f2: wrong size after archive: $size != $orig_size"
1533
1534         HSM_ARCHIVE_PURGE=false copytool_setup $SINGLEAGT /mnt/lustre3
1535
1536         wait
1537
1538         size=$(stat -c "%s" $f)
1539         [ $size -eq $orig_size ] ||
1540                 error "$f: wrong size after restore: $size != $orig_size"
1541
1542         size=$(stat -c "%s" $f2)
1543         [ $size -eq $orig_size ] ||
1544                 error "$f2: wrong size after restore: $size != $orig_size"
1545
1546         :>$f
1547
1548         size=$(stat -c "%s" $f)
1549         [ $size -eq 0 ] ||
1550                 error "$f: wrong size after overwrite: $size != 0"
1551
1552         size=$(stat -c "%s" $f2)
1553         [ $size -eq 0 ] ||
1554                 error "$f2: wrong size after overwrite: $size != 0"
1555
1556         copytool_cleanup
1557         zconf_umount $(facet_host $SINGLEAGT) $MOUNT3 ||
1558                 error "cannot umount $MOUNT3 on $SINGLEAGT"
1559 }
1560 run_test 12q "file attributes are refreshed after restore"
1561
1562 test_13() {
1563         # test needs a running copytool
1564         copytool_setup
1565
1566         local ARC_SUBDIR="import.orig"
1567         local d=""
1568         local f=""
1569
1570         # populate directory to be imported
1571         for d in $(seq 1 10); do
1572                 local CURR_DIR="$HSM_ARCHIVE/$ARC_SUBDIR/dir.$d"
1573                 do_facet $SINGLEAGT mkdir -p "$CURR_DIR"
1574                 for f in $(seq 1 10); do
1575                         CURR_FILE="$CURR_DIR/$tfile.$f"
1576                         # write file-specific data
1577                         do_facet $SINGLEAGT \
1578                                 "echo d=$d, f=$f, dir=$CURR_DIR, "\
1579                                         "file=$CURR_FILE > $CURR_FILE"
1580                 done
1581         done
1582         # import to Lustre
1583         import_file "$ARC_SUBDIR" $DIR/$tdir
1584         # diff lustre content and origin (triggers file restoration)
1585         # there must be 10x10 identical files, and no difference
1586         local cnt_ok=$(do_facet $SINGLEAGT diff -rs $HSM_ARCHIVE/$ARC_SUBDIR \
1587                        $DIR/$tdir/$ARC_SUBDIR | grep identical | wc -l)
1588         local cnt_diff=$(do_facet $SINGLEAGT diff -r $HSM_ARCHIVE/$ARC_SUBDIR \
1589                          $DIR/$tdir/$ARC_SUBDIR | wc -l)
1590
1591         [ $cnt_diff -eq 0 ] ||
1592                 error "$cnt_diff imported files differ from read data"
1593         [ $cnt_ok -eq 100 ] ||
1594                 error "not enough identical files ($cnt_ok != 100)"
1595
1596         copytool_cleanup
1597 }
1598 run_test 13 "Recursively import and restore a directory"
1599
1600 test_14() {
1601         # test needs a running copytool
1602         copytool_setup
1603
1604         # archive a file
1605         mkdir -p $DIR/$tdir
1606         local f=$DIR/$tdir/$tfile
1607         local fid=$(make_small $f)
1608         local sum=$(md5sum $f | awk '{print $1}')
1609         $LFS hsm_archive $f || error "could not archive file"
1610         wait_request_state $fid ARCHIVE SUCCEED
1611
1612         # delete the file
1613         rm -f $f
1614         # create released file (simulate llapi_hsm_import call)
1615         touch $f
1616         local fid2=$(path2fid $f)
1617         $LFS hsm_set --archived --exists $f || error "could not force hsm flags"
1618         $LFS hsm_release $f || error "could not release file"
1619
1620         # rebind the archive to the newly created file
1621         echo "rebind $fid to $fid2"
1622
1623         do_facet $SINGLEAGT \
1624                 "$HSMTOOL --archive $HSM_ARCHIVE_NUMBER --hsm-root $HSM_ARCHIVE\
1625                  --rebind $fid $fid2 $DIR" || error "could not rebind file"
1626
1627         # restore file and compare md5sum
1628         local sum2=$(md5sum $f | awk '{print $1}')
1629
1630         [[ $sum == $sum2 ]] || error "md5sum mismatch after restore"
1631
1632         copytool_cleanup
1633 }
1634 run_test 14 "Rebind archived file to a new fid"
1635
1636 test_15() {
1637         # test needs a running copytool
1638         copytool_setup
1639
1640         # archive files
1641         mkdir -p $DIR/$tdir
1642         local f=$DIR/$tdir/$tfile
1643         local count=5
1644         local tmpfile=$SHARED_DIRECTORY/tmp.$$
1645
1646         local fids=()
1647         local sums=()
1648         for i in $(seq 1 $count); do
1649                 fids[$i]=$(make_small $f.$i)
1650                 sums[$i]=$(md5sum $f.$i | awk '{print $1}')
1651                 $LFS hsm_archive $f.$i || error "could not archive file"
1652         done
1653         wait_all_done $(($count*60))
1654
1655         :>$tmpfile
1656         # delete the files
1657         for i in $(seq 1 $count); do
1658                 rm -f $f.$i
1659                 touch $f.$i
1660                 local fid2=$(path2fid $f.$i)
1661                 # add the rebind operation to the list
1662                 echo ${fids[$i]} $fid2 >> $tmpfile
1663
1664                 # set it released (simulate llapi_hsm_import call)
1665                 $LFS hsm_set --archived --exists $f.$i ||
1666                         error "could not force hsm flags"
1667                 $LFS hsm_release $f.$i || error "could not release file"
1668         done
1669         nl=$(wc -l < $tmpfile)
1670         [[ $nl == $count ]] || error "$nl files in list, $count expected"
1671
1672         echo "rebind list of files"
1673         do_facet $SINGLEAGT \
1674                 "$HSMTOOL --archive $HSM_ARCHIVE_NUMBER --hsm-root $HSM_ARCHIVE\
1675                  --rebind $tmpfile $DIR" || error "could not rebind file list"
1676
1677         # restore files and compare md5sum
1678         for i in $(seq 1 $count); do
1679                 local sum2=$(md5sum $f.$i | awk '{print $1}')
1680                 [[ $sum2 == ${sums[$i]} ]] ||
1681                     error "md5sum mismatch after restore ($sum2 != ${sums[$i]})"
1682         done
1683
1684         rm -f $tmpfile
1685         copytool_cleanup
1686 }
1687 run_test 15 "Rebind a list of files"
1688
1689 test_16() {
1690         # test needs a running copytool
1691         copytool_setup
1692
1693         local ref=/tmp/ref
1694         # create a known size file so we can verify transfer speed
1695         # 20 MB <-> 20s
1696         local goal=20
1697         dd if=/dev/zero of=$ref bs=1M count=20
1698
1699         mkdir -p $DIR/$tdir
1700         local f=$DIR/$tdir/$tfile
1701         local fid=$(copy_file $ref $f)
1702         rm $ref
1703         local start=$(date +%s)
1704         $LFS hsm_archive $f
1705         wait_request_state $fid ARCHIVE SUCCEED
1706         local end=$(date +%s)
1707         local duration=$((end - start))
1708
1709         [[ $duration -ge $goal ]] ||
1710                 error "Transfer is too fast $duration < $goal"
1711
1712         copytool_cleanup
1713 }
1714 run_test 16 "Test CT bandwith control option"
1715
1716 test_20() {
1717         mkdir -p $DIR/$tdir
1718
1719         local f=$DIR/$tdir/$tfile
1720         touch $f || error "touch $f failed"
1721
1722         # Could not release a non-archived file
1723         $LFS hsm_release $f && error "release should not succeed"
1724
1725         # For following tests, we must test them with HS_ARCHIVED set
1726         $LFS hsm_set --exists --archived $f || error "could not add flag"
1727
1728         # Could not release a file if no-release is set
1729         $LFS hsm_set --norelease $f || error "could not add flag"
1730         $LFS hsm_release $f && error "release should not succeed"
1731         $LFS hsm_clear --norelease $f || error "could not remove flag"
1732
1733         # Could not release a file if lost
1734         $LFS hsm_set --lost $f || error "could not add flag"
1735         $LFS hsm_release $f && error "release should not succeed"
1736         $LFS hsm_clear --lost $f || error "could not remove flag"
1737
1738         # Could not release a file if dirty
1739         $LFS hsm_set --dirty $f || error "could not add flag"
1740         $LFS hsm_release $f && error "release should not succeed"
1741         $LFS hsm_clear --dirty $f || error "could not remove flag"
1742 }
1743 run_test 20 "Release is not permitted"
1744
1745 test_21() {
1746         # test needs a running copytool
1747         copytool_setup
1748
1749         mkdir -p $DIR/$tdir
1750         local f=$DIR/$tdir/test_release
1751
1752         # Create a file and check its states
1753         local fid=$(make_small $f)
1754         check_hsm_flags $f "0x00000000"
1755
1756         # LU-4388/LU-4389 - ZFS does not report full number of blocks
1757         # used until file is flushed to disk
1758         if [  $(facet_fstype ost1) == "zfs" ]; then
1759             # this causes an OST_SYNC rpc to be sent
1760             dd if=/dev/zero of=$f bs=512 count=1 oflag=sync conv=notrunc,fsync
1761             # clear locks to reread file data
1762             cancel_lru_locks osc
1763         fi
1764
1765         local orig_size=$(stat -c "%s" $f)
1766         local orig_blocks=$(stat -c "%b" $f)
1767
1768         start_full_debug_logging
1769
1770         $LFS hsm_archive $f || error "could not archive file"
1771         wait_request_state $fid ARCHIVE SUCCEED
1772
1773         local blocks=$(stat -c "%b" $f)
1774         [ $blocks -eq $orig_blocks ] ||
1775                 error "$f: wrong block number after archive: " \
1776                       "$blocks != $orig_blocks"
1777         local size=$(stat -c "%s" $f)
1778         [ $size -eq $orig_size ] ||
1779                 error "$f: wrong size after archive: $size != $orig_size"
1780
1781         # Release and check states
1782         $LFS hsm_release $f || error "could not release file"
1783         check_hsm_flags $f "0x0000000d"
1784
1785         blocks=$(stat -c "%b" $f)
1786         [ $blocks -gt 5 ] &&
1787                 error "$f: too many blocks after release: $blocks > 5"
1788         size=$(stat -c "%s" $f)
1789         [ $size -ne $orig_size ] &&
1790                 error "$f: wrong size after release: $size != $orig_size"
1791
1792         # Check we can release an file without stripe info
1793         f=$f.nolov
1794         $MCREATE $f
1795         fid=$(path2fid $f)
1796         check_hsm_flags $f "0x00000000"
1797         $LFS hsm_archive $f || error "could not archive file"
1798         wait_request_state $fid ARCHIVE SUCCEED
1799
1800         # Release and check states
1801         $LFS hsm_release $f || error "could not release file"
1802         check_hsm_flags $f "0x0000000d"
1803
1804         # Release again a file that is already released is OK
1805         $LFS hsm_release $f || fail "second release should succeed"
1806         check_hsm_flags $f "0x0000000d"
1807
1808         stop_full_debug_logging
1809
1810         copytool_cleanup
1811 }
1812 run_test 21 "Simple release tests"
1813
1814 test_22() {
1815         # test needs a running copytool
1816         copytool_setup
1817
1818         mkdir -p $DIR/$tdir
1819
1820         local f=$DIR/$tdir/test_release
1821         local swap=$DIR/$tdir/test_swap
1822
1823         # Create a file and check its states
1824         local fid=$(make_small $f)
1825         check_hsm_flags $f "0x00000000"
1826
1827         $LFS hsm_archive $f || error "could not archive file"
1828         wait_request_state $fid ARCHIVE SUCCEED
1829
1830         # Release and check states
1831         $LFS hsm_release $f || error "could not release file"
1832         check_hsm_flags $f "0x0000000d"
1833
1834         make_small $swap
1835         $LFS swap_layouts $swap $f && error "swap_layouts should failed"
1836
1837         true
1838         copytool_cleanup
1839 }
1840 run_test 22 "Could not swap a release file"
1841
1842 test_23() {
1843         # test needs a running copytool
1844         copytool_setup
1845
1846         mkdir -p $DIR/$tdir
1847
1848         local f=$DIR/$tdir/test_mtime
1849
1850         # Create a file and check its states
1851         local fid=$(make_small $f)
1852         check_hsm_flags $f "0x00000000"
1853
1854         $LFS hsm_archive $f || error "could not archive file"
1855         wait_request_state $fid ARCHIVE SUCCEED
1856
1857         # Set modification time in the past
1858         touch -m -a -d @978261179 $f
1859
1860         # Release and check states
1861         $LFS hsm_release $f || error "could not release file"
1862         check_hsm_flags $f "0x0000000d"
1863
1864         local MTIME=$(stat -c "%Y" $f)
1865         local ATIME=$(stat -c "%X" $f)
1866         [ $MTIME -eq "978261179" ] || fail "bad mtime: $MTIME"
1867         [ $ATIME -eq "978261179" ] || fail "bad atime: $ATIME"
1868
1869         copytool_cleanup
1870 }
1871 run_test 23 "Release does not change a/mtime (utime)"
1872
1873 test_24a() {
1874         local file=$DIR/$tdir/$tfile
1875         local fid
1876         local atime0
1877         local atime1
1878         local mtime0
1879         local mtime1
1880         local ctime0
1881         local ctime1
1882
1883         # test needs a running copytool
1884         copytool_setup
1885
1886         mkdir -p $DIR/$tdir
1887         rm -f $file
1888         fid=$(make_small $file)
1889
1890         # Create a file and check its states
1891         check_hsm_flags $file "0x00000000"
1892
1893         # Ensure atime is less than mtime and ctime.
1894         sleep 1
1895         echo >> $file
1896
1897         atime0=$(stat -c "%X" $file)
1898         mtime0=$(stat -c "%Y" $file)
1899         ctime0=$(stat -c "%Z" $file)
1900
1901         [ $atime0 -lt $mtime0 ] ||
1902                 error "atime $atime0 is not less than mtime $mtime0"
1903
1904         [ $atime0 -lt $ctime0 ] ||
1905                 error "atime $atime0 is not less than ctime $ctime0"
1906
1907         # Archive should not change any timestamps.
1908         $LFS hsm_archive $file || error "cannot archive '$file'"
1909         wait_request_state $fid ARCHIVE SUCCEED
1910
1911         atime1=$(stat -c "%X" $file)
1912         mtime1=$(stat -c "%Y" $file)
1913         ctime1=$(stat -c "%Z" $file)
1914
1915         [ $atime0 -eq $atime1 ] ||
1916                 error "archive changed atime from $atime0 to $atime1"
1917
1918         [ $mtime0 -eq $mtime1 ] ||
1919                 error "archive changed mtime from $mtime0 to $mtime1"
1920
1921         [ $ctime0 -eq $ctime1 ] ||
1922                 error "archive changed ctime from $ctime0 to $ctime1"
1923
1924         # Release should not change any timestamps.
1925         $LFS hsm_release $file || error "cannot release '$file'"
1926         check_hsm_flags $file "0x0000000d"
1927
1928         atime1=$(stat -c "%X" $file)
1929         mtime1=$(stat -c "%Y" $file)
1930         ctime1=$(stat -c "%Z" $file)
1931
1932         [ $atime0 -eq $atime1 ] ||
1933                 error "release changed atime from $atime0 to $atime1"
1934
1935         [ $mtime0 -eq $mtime1 ] ||
1936                 error "release changed mtime from $mtime0 to $mtime1"
1937
1938         [ $ctime0 -eq $ctime1 ] ||
1939                 error "release changed ctime from $ctime0 to $ctime1"
1940
1941         # Restore should not change any timestamps.
1942         $LFS hsm_restore $file
1943         wait_request_state $fid RESTORE SUCCEED
1944
1945         atime1=$(stat -c "%X" $file)
1946         mtime1=$(stat -c "%Y" $file)
1947         ctime1=$(stat -c "%Z" $file)
1948
1949         [ $atime0 -eq $atime1 ] ||
1950                 error "restore changed atime from $atime0 to $atime1"
1951
1952         [ $mtime0 -eq $mtime1 ] ||
1953                 error "restore changed mtime from $mtime0 to $mtime1"
1954
1955         [ $ctime0 -eq $ctime1 ] ||
1956                 error "restore changed ctime from $ctime0 to $ctime1"
1957
1958         copytool_cleanup
1959
1960         # Once more, after unmount and mount.
1961         umount_client $MOUNT || error "cannot unmount '$MOUNT'"
1962         mount_client $MOUNT || error "cannot mount '$MOUNT'"
1963
1964         atime1=$(stat -c "%X" $file)
1965         mtime1=$(stat -c "%Y" $file)
1966         ctime1=$(stat -c "%Z" $file)
1967
1968         [ $atime0 -eq $atime1 ] ||
1969                 error "remount changed atime from $atime0 to $atime1"
1970
1971         [ $mtime0 -eq $mtime1 ] ||
1972                 error "remount changed mtime from $mtime0 to $mtime1"
1973
1974         [ $ctime0 -eq $ctime1 ] ||
1975                 error "remount changed ctime from $ctime0 to $ctime1"
1976 }
1977 run_test 24a "Archive, release, and restore does not change a/mtime (i/o)"
1978
1979 test_24b() {
1980         local file=$DIR/$tdir/$tfile
1981         local fid
1982         local sum0
1983         local sum1
1984         # LU-3811
1985
1986         # Test needs a running copytool.
1987         copytool_setup
1988         mkdir -p $DIR/$tdir
1989
1990         # Check that root can do HSM actions on a regular user's file.
1991         rm -f $file
1992         fid=$(make_small $file)
1993         sum0=$(md5sum $file)
1994
1995         chown $RUNAS_ID:$RUNAS_GID $file ||
1996                 error "cannot chown '$file' to '$RUNAS_ID'"
1997
1998         chmod ugo-w $DIR/$tdir ||
1999                 error "cannot chmod '$DIR/$tdir'"
2000
2001         $LFS hsm_archive $file
2002         wait_request_state $fid ARCHIVE SUCCEED
2003
2004         $LFS hsm_release $file
2005         check_hsm_flags $file "0x0000000d"
2006
2007         $LFS hsm_restore $file
2008         wait_request_state $fid RESTORE SUCCEED
2009
2010         # Check that ordinary user can get HSM state.
2011         $RUNAS $LFS hsm_state $file ||
2012                 error "user '$RUNAS_ID' cannot get HSM state of '$file'"
2013
2014         $LFS hsm_release $file
2015         check_hsm_flags $file "0x0000000d"
2016
2017         # Check that ordinary user can accessed released file.
2018         sum1=$($RUNAS md5sum $file) ||
2019                 error "user '$RUNAS_ID' cannot read '$file'"
2020
2021         [ "$sum0" == "$sum1" ] ||
2022                 error "md5sum mismatch for '$file'"
2023
2024         copytool_cleanup
2025 }
2026 run_test 24b "root can archive, release, and restore user files"
2027
2028 cleanup_test_24c() {
2029         trap 0
2030         set_hsm_param user_request_mask RESTORE
2031         set_hsm_param group_request_mask RESTORE
2032         set_hsm_param other_request_mask RESTORE
2033 }
2034
2035 test_24c() {
2036         local file=$DIR/$tdir/$tfile
2037         local action=archive
2038         local user_save
2039         local group_save
2040         local other_save
2041
2042         # test needs a running copytool
2043         copytool_setup
2044
2045         mkdir -p $DIR/$tdir
2046
2047         # Save the default masks and check that cleanup_24c will
2048         # restore the request masks correctly.
2049         user_save=$(get_hsm_param user_request_mask)
2050         group_save=$(get_hsm_param group_request_mask)
2051         other_save=$(get_hsm_param other_request_mask)
2052
2053         [ "$user_save" == RESTORE ] ||
2054                 error "user_request_mask is '$user_save' expected 'RESTORE'"
2055         [ "$group_save" == RESTORE ] ||
2056                 error "group_request_mask is '$group_save' expected 'RESTORE'"
2057         [ "$other_save" == RESTORE ] ||
2058                 error "other_request_mask is '$other_save' expected 'RESTORE'"
2059
2060         trap cleanup_test_24c EXIT
2061
2062         # User.
2063         rm -f $file
2064         make_small $file
2065         chown $RUNAS_ID:nobody $file ||
2066                 error "cannot chown '$file' to '$RUNAS_ID:nobody'"
2067
2068         set_hsm_param user_request_mask ""
2069         $RUNAS $LFS hsm_$action $file &&
2070                 error "$action by user should fail"
2071
2072         set_hsm_param user_request_mask $action
2073         $RUNAS $LFS hsm_$action $file ||
2074                 error "$action by user should succeed"
2075
2076         # Group.
2077         rm -f $file
2078         make_small $file
2079         chown nobody:$RUNAS_GID $file ||
2080                 error "cannot chown '$file' to 'nobody:$RUNAS_GID'"
2081
2082         set_hsm_param group_request_mask ""
2083         $RUNAS $LFS hsm_$action $file &&
2084                 error "$action by group should fail"
2085
2086         set_hsm_param group_request_mask $action
2087         $RUNAS $LFS hsm_$action $file ||
2088                 error "$action by group should succeed"
2089
2090         # Other.
2091         rm -f $file
2092         make_small $file
2093         chown nobody:nobody $file ||
2094                 error "cannot chown '$file' to 'nobody:nobody'"
2095
2096         set_hsm_param other_request_mask ""
2097         $RUNAS $LFS hsm_$action $file &&
2098                 error "$action by other should fail"
2099
2100         set_hsm_param other_request_mask $action
2101         $RUNAS $LFS hsm_$action $file ||
2102                 error "$action by other should succeed"
2103
2104         copytool_cleanup
2105         cleanup_test_24c
2106 }
2107 run_test 24c "check that user,group,other request masks work"
2108
2109 cleanup_test_24d() {
2110         trap 0
2111         mount -o remount,rw $MOUNT2
2112 }
2113
2114 test_24d() {
2115         local file1=$DIR/$tdir/$tfile
2116         local file2=$DIR2/$tdir/$tfile
2117         local fid1
2118         local fid2
2119
2120         copytool_setup
2121
2122         mkdir -p $DIR/$tdir
2123         rm -f $file1
2124         fid1=$(make_small $file1)
2125
2126         trap cleanup_test_24d EXIT
2127
2128         mount -o remount,ro $MOUNT2
2129
2130         fid2=$(path2fid $file2)
2131         [ "$fid1" == "$fid2" ] ||
2132                 error "FID mismatch '$fid1' != '$fid2'"
2133
2134         $LFS hsm_archive $file2 &&
2135                 error "archive should fail on read-only mount"
2136         check_hsm_flags $file1 "0x00000000"
2137
2138         $LFS hsm_archive $file1
2139         wait_request_state $fid1 ARCHIVE SUCCEED
2140
2141         $LFS hsm_release $file1
2142         $LFS hsm_restore $file2
2143         wait_request_state $fid1 RESTORE SUCCEED
2144
2145         $LFS hsm_release $file1 || error "cannot release '$file1'"
2146         dd if=$file2 of=/dev/null bs=1M || "cannot read '$file2'"
2147
2148         $LFS hsm_release $file2 &&
2149                 error "release should fail on read-only mount"
2150
2151         copytool_cleanup
2152         cleanup_test_24d
2153 }
2154 run_test 24d "check that read-only mounts are respected"
2155
2156 test_24e() {
2157         copytool_setup
2158
2159         mkdir -p $DIR/$tdir
2160
2161         local f=$DIR/$tdir/$tfile
2162         local fid
2163
2164         fid=$(make_small $f) || error "cannot create $f"
2165         $LFS hsm_archive $f || error "cannot archive $f"
2166         wait_request_state $fid ARCHIVE SUCCEED
2167         $LFS hsm_release $f || error "cannot release $f"
2168         while ! $LFS hsm_state $f | grep released; do
2169                 sleep 1
2170         done
2171
2172         tar -cf $TMP/$tfile.tar $DIR/$tdir || error "cannot tar $DIR/$tdir"
2173
2174         copytool_cleanup
2175 }
2176 run_test 24e "tar succeeds on HSM released files" # LU-6213
2177
2178 test_24f() {
2179
2180         # test needs a running copytool
2181         copytool_setup
2182
2183         mkdir -p $DIR/$tdir/d1
2184         local f=$DIR/$tdir/$tfile
2185         local fid=$(copy_file /etc/hosts $f)
2186         sum0=$(md5sum $f)
2187         echo $sum0
2188         $LFS hsm_archive -a $HSM_ARCHIVE_NUMBER $f ||
2189                 error "hsm_archive failed"
2190         wait_request_state $fid ARCHIVE SUCCEED
2191         $LFS hsm_release $f || error "cannot release $f"
2192         tar --xattrs -cvf $f.tar -C $DIR/$tdir $tfile
2193         rm -f $f
2194         sync
2195         tar --xattrs -xvf $f.tar -C $DIR/$tdir ||
2196                 error "Can not recover the tar contents"
2197         sum1=$(md5sum $f)
2198         echo "Sum0 = $sum0, sum1 = $sum1"
2199         [ "$sum0" == "$sum1" ] || error "md5sum mismatch for '$tfile'"
2200
2201         copytool_cleanup
2202 }
2203 run_test 24f "root can archive, release, and restore tar files"
2204
2205 test_25a() {
2206         # test needs a running copytool
2207         copytool_setup
2208
2209         mkdir -p $DIR/$tdir
2210         copy2archive /etc/hosts $tdir/$tfile
2211
2212         local f=$DIR/$tdir/$tfile
2213
2214         import_file $tdir/$tfile $f
2215
2216         $LFS hsm_set --lost $f
2217
2218         md5sum $f
2219         local st=$?
2220
2221         [[ $st == 1 ]] || error "lost file access should failed (returns $st)"
2222
2223         copytool_cleanup
2224 }
2225 run_test 25a "Restore lost file (HS_LOST flag) from import"\
2226              " (Operation not permitted)"
2227
2228 test_25b() {
2229         # test needs a running copytool
2230         copytool_setup
2231
2232         mkdir -p $DIR/$tdir
2233
2234         local f=$DIR/$tdir/$tfile
2235         local fid=$(copy_file /etc/passwd $f)
2236
2237         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2238         wait_request_state $fid ARCHIVE SUCCEED
2239
2240         $LFS hsm_release $f
2241         $LFS hsm_set --lost $f
2242         md5sum $f
2243         st=$?
2244
2245         [[ $st == 1 ]] || error "lost file access should failed (returns $st)"
2246
2247         copytool_cleanup
2248 }
2249 run_test 25b "Restore lost file (HS_LOST flag) after release"\
2250              " (Operation not permitted)"
2251
2252 test_26() {
2253         # test needs a running copytool
2254         copytool_setup
2255
2256         mkdir -p $DIR/$tdir
2257         local f=$DIR/$tdir/$tfile
2258         local fid
2259         fid=$(make_large_for_progress $f)
2260         [ $? != 0 ] && skip "not enough free space" && return
2261
2262         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2263         wait_request_state $fid ARCHIVE SUCCEED
2264
2265         $LFS hsm_remove $f
2266         wait_request_state $fid REMOVE SUCCEED
2267
2268         check_hsm_flags $f "0x00000000"
2269
2270         copytool_cleanup
2271 }
2272 run_test 26 "Remove the archive of a valid file"
2273
2274 test_27a() {
2275         # test needs a running copytool
2276         copytool_setup
2277
2278         mkdir -p $DIR/$tdir
2279         make_archive $tdir/$tfile
2280         local f=$DIR/$tdir/$tfile
2281         import_file $tdir/$tfile $f
2282         local fid=$(path2fid $f)
2283
2284         $LFS hsm_remove $f
2285
2286         [[ $? != 0 ]] || error "Remove of a released file should fail"
2287
2288         copytool_cleanup
2289 }
2290 run_test 27a "Remove the archive of an imported file (Operation not permitted)"
2291
2292 test_27b() {
2293         # test needs a running copytool
2294         copytool_setup
2295
2296         mkdir -p $DIR/$tdir
2297         local f=$DIR/$tdir/$tfile
2298         local fid
2299         fid=$(make_large_for_progress $f)
2300         [ $? != 0 ] && skip "not enough free space" && return
2301
2302         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2303         wait_request_state $fid ARCHIVE SUCCEED
2304         $LFS hsm_release $f
2305
2306         $LFS hsm_remove $f
2307
2308         [[ $? != 0 ]] || error "Remove of a released file should fail"
2309
2310         copytool_cleanup
2311 }
2312 run_test 27b "Remove the archive of a relased file (Operation not permitted)"
2313
2314 test_28() {
2315         # test needs a running copytool
2316         copytool_setup
2317
2318         mkdir -p $DIR/$tdir
2319         local f=$DIR/$tdir/$tfile
2320         local fid
2321         fid=$(make_large_for_progress $f)
2322         [ $? != 0 ] && skip "not enough free space" && return
2323
2324         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2325         wait_request_state $fid ARCHIVE SUCCEED
2326
2327         cdt_disable
2328         $LFS hsm_remove $f
2329
2330         rm -f $f
2331
2332         cdt_enable
2333
2334         wait_request_state $fid REMOVE SUCCEED
2335
2336         copytool_cleanup
2337 }
2338 run_test 28 "Concurrent archive/file remove"
2339
2340 test_29a() {
2341         # Tests --mntpath and --archive options
2342
2343         local archive_id=7
2344         copytool_setup $SINGLEAGT $MOUNT $archive_id
2345
2346         # Bad archive number
2347         $LFS hsm_remove -m $MOUNT -a 33 0x857765760:0x8:0x2 2>&1 |
2348                 grep "Invalid argument" ||
2349                 error "unexpected hsm_remove failure (1)"
2350
2351         # mntpath is present but file is given
2352         $LFS hsm_remove --mntpath $MOUNT --archive 30 /qwerty/uyt 2>&1 |
2353                 grep "hsm: '/qwerty/uyt' is not a valid FID" ||
2354                 error "unexpected hsm_remove failure (2)"
2355
2356         copytool_cleanup
2357 }
2358 run_test 29a "Tests --mntpath and --archive options"
2359
2360 test_29b() {
2361         # test needs a running copytool
2362         copytool_setup
2363
2364         mkdir -p $DIR/$tdir
2365         local f=$DIR/$tdir/$tfile
2366         local fid=$(make_small $f)
2367
2368         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2369         wait_request_state $fid ARCHIVE SUCCEED
2370
2371         rm -f $f
2372
2373         $LFS hsm_remove -m $MOUNT -a $HSM_ARCHIVE_NUMBER $fid
2374         wait_request_state $fid REMOVE SUCCEED
2375
2376         copytool_cleanup
2377 }
2378 run_test 29b "Archive/delete/remove by FID from the archive."
2379
2380 test_29c() {
2381         # test needs a running copytool
2382         copytool_setup
2383
2384         mkdir -p $DIR/$tdir
2385         local fid1=$(make_small $DIR/$tdir/$tfile-1)
2386         local fid2=$(make_small $DIR/$tdir/$tfile-2)
2387         local fid3=$(make_small $DIR/$tdir/$tfile-3)
2388
2389         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tdir/$tfile-[1-3]
2390         wait_request_state $fid1 ARCHIVE SUCCEED
2391         wait_request_state $fid2 ARCHIVE SUCCEED
2392         wait_request_state $fid3 ARCHIVE SUCCEED
2393
2394         rm -f $DIR/$tdir/$tfile-[1-3]
2395
2396         echo $fid1 > $DIR/$tdir/list
2397         echo $fid2 >> $DIR/$tdir/list
2398         echo $fid3 >> $DIR/$tdir/list
2399
2400         $LFS hsm_remove -m $MOUNT -a $HSM_ARCHIVE_NUMBER \
2401                 --filelist $DIR/$tdir/list
2402         wait_request_state $fid1 REMOVE SUCCEED
2403         wait_request_state $fid2 REMOVE SUCCEED
2404         wait_request_state $fid3 REMOVE SUCCEED
2405
2406         copytool_cleanup
2407 }
2408 run_test 29c "Archive/delete/remove by FID, using a file list."
2409
2410 test_30a() {
2411         # restore at exec cannot work on agent node (because of Linux kernel
2412         # protection of executables)
2413         needclients 2 || return 0
2414
2415         # test needs a running copytool
2416         copytool_setup
2417
2418         mkdir -p $DIR/$tdir
2419         copy2archive /bin/true $tdir/$tfile
2420
2421         local f=$DIR/$tdir/true
2422         import_file $tdir/$tfile $f
2423
2424         local fid=$(path2fid $f)
2425
2426         # set no retry action mode
2427         cdt_set_no_retry
2428         do_node $CLIENT2 $f
2429         local st=$?
2430
2431         # cleanup
2432         # remove no try action mode
2433         cdt_clear_no_retry
2434         $LFS hsm_state $f
2435
2436         [[ $st == 0 ]] || error "Failed to exec a released file"
2437
2438         copytool_cleanup
2439 }
2440 run_test 30a "Restore at exec (import case)"
2441
2442 test_30b() {
2443         # restore at exec cannot work on agent node (because of Linux kernel
2444         # protection of executables)
2445         needclients 2 || return 0
2446
2447         # test needs a running copytool
2448         copytool_setup
2449
2450         mkdir -p $DIR/$tdir
2451         local f=$DIR/$tdir/true
2452         local fid=$(copy_file /bin/true $f)
2453         chmod 755 $f
2454         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2455         wait_request_state $fid ARCHIVE SUCCEED
2456         $LFS hsm_release $f
2457         $LFS hsm_state $f
2458         # set no retry action mode
2459         cdt_set_no_retry
2460         do_node $CLIENT2 $f
2461         local st=$?
2462
2463         # cleanup
2464         # remove no try action mode
2465         cdt_clear_no_retry
2466         $LFS hsm_state $f
2467
2468         [[ $st == 0 ]] || error "Failed to exec a released file"
2469
2470         copytool_cleanup
2471 }
2472 run_test 30b "Restore at exec (release case)"
2473
2474 test_30c() {
2475         needclients 2 || return 0
2476
2477         # test needs a running copytool
2478         copytool_setup
2479
2480         mkdir -p $DIR/$tdir
2481         local f=$DIR/$tdir/SLEEP
2482         local slp_sum1=$(md5sum /bin/sleep)
2483         local fid=$(copy_file /bin/sleep $f)
2484         chmod 755 $f
2485         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2486         wait_request_state $fid ARCHIVE SUCCEED
2487         $LFS hsm_release $f
2488         check_hsm_flags $f "0x0000000d"
2489         # set no retry action mode
2490         cdt_set_no_retry
2491         do_node $CLIENT2 "$f 10" &
2492         local pid=$!
2493         sleep 3
2494         echo 'Hi!' > $f
2495         [[ $? == 0 ]] && error "Update during exec of released file must fail"
2496         wait $pid
2497         [[ $? == 0 ]] || error "Execution failed during run"
2498         cmp /bin/sleep $f
2499         if [[ $? != 0 ]]; then
2500                 local slp_sum2=$(md5sum /bin/sleep)
2501                 # in case sleep file is modified during the test
2502                 [[ $slp_sum1 == $slp_sum2 ]] &&
2503                         error "Binary overwritten during exec"
2504         fi
2505
2506         # cleanup
2507         # remove no try action mode
2508         cdt_clear_no_retry
2509         check_hsm_flags $f "0x00000009"
2510
2511         copytool_cleanup
2512 }
2513 run_test 30c "Update during exec of released file must fail"
2514
2515 restore_and_check_size() {
2516         local f=$1
2517         local fid=$2
2518         local s=$(stat -c "%s" $f)
2519         local n=$s
2520         local st=$(get_hsm_flags $f)
2521         local err=0
2522         local cpt=0
2523         $LFS hsm_restore $f
2524         while [[ "$st" != "0x00000009" && $cpt -le 10 ]]
2525         do
2526                 n=$(stat -c "%s" $f)
2527                 # we echo in both cases to show stat is not
2528                 # hang
2529                 if [[ $n != $s ]]; then
2530                         echo "size seen is $n != $s"
2531                         err=1
2532                 else
2533                         echo "size seen is right: $n == $s"
2534                 fi
2535                 st=$(get_hsm_flags $f)
2536                 sleep 10
2537                 cpt=$((cpt + 1))
2538         done
2539         if [[ $cpt -lt 10 ]]; then
2540                 echo " "done
2541         else
2542                 echo " restore is too long"
2543                 wait_request_state $fid RESTORE SUCCEED
2544         fi
2545         return $err
2546 }
2547
2548 test_31a() {
2549         # test needs a running copytool
2550         copytool_setup
2551
2552         mkdir -p $DIR/$tdir
2553
2554         make_archive $tdir/$tfile
2555         local f=$DIR/$tdir/$tfile
2556         import_file $tdir/$tfile $f
2557         local fid=$($LFS path2fid $f)
2558         HSM_ARCHIVE_PURGE=false copytool_setup
2559
2560         restore_and_check_size $f $fid
2561         local err=$?
2562
2563         [[ $err -eq 0 ]] || error "File size changed during restore"
2564
2565         copytool_cleanup
2566 }
2567 run_test 31a "Import a large file and check size during restore"
2568
2569
2570 test_31b() {
2571         # test needs a running copytool
2572         copytool_setup
2573
2574         mkdir -p $DIR/$tdir
2575
2576         local f=$DIR/$tdir/$tfile
2577         local fid
2578         fid=$(make_large_for_progress $f)
2579         [ $? != 0 ] && skip "not enough free space" && return
2580
2581         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2582         wait_request_state $fid ARCHIVE SUCCEED
2583         $LFS hsm_release $f
2584
2585         restore_and_check_size $f $fid
2586         local err=$?
2587
2588         [[ $err -eq 0 ]] || error "File size changed during restore"
2589
2590         copytool_cleanup
2591 }
2592 run_test 31b "Restore a large unaligned file and check size during restore"
2593
2594 test_31c() {
2595         # test needs a running copytool
2596         copytool_setup
2597
2598         mkdir -p $DIR/$tdir
2599
2600         local f=$DIR/$tdir/$tfile
2601         local fid
2602         fid=$(make_large_for_progress_aligned $f)
2603         [ $? != 0 ] && skip "not enough free space" && return
2604
2605         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2606         wait_request_state $fid ARCHIVE SUCCEED
2607         $LFS hsm_release $f
2608
2609         restore_and_check_size $f $fid
2610         local err=$?
2611
2612         [[ $err -eq 0 ]] || error "File size changed during restore"
2613
2614         copytool_cleanup
2615 }
2616 run_test 31c "Restore a large aligned file and check size during restore"
2617
2618 test_33() {
2619         # test needs a running copytool
2620         copytool_setup
2621
2622         mkdir -p $DIR/$tdir
2623
2624         local f=$DIR/$tdir/$tfile
2625         local fid
2626         fid=$(make_large_for_progress $f)
2627         [ $? != 0 ] && skip "not enough free space" && return
2628
2629         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2630         wait_request_state $fid ARCHIVE SUCCEED
2631         $LFS hsm_release $f
2632
2633         # to be sure wait_all_done will not be mislead by previous tests
2634         # and ops.
2635         cdt_purge
2636         wait_for_grace_delay
2637         # Also raise grace_delay significantly so the Canceled
2638         # Restore action will stay enough long avail.
2639         local old_grace=$(get_hsm_param grace_delay)
2640         set_hsm_param grace_delay 100
2641
2642         md5sum $f >/dev/null &
2643         local pid=$!
2644         wait_request_state $fid RESTORE STARTED
2645
2646         kill -15 $pid
2647         sleep 1
2648
2649         # Check restore trigger process was killed
2650         local killed=$(ps -o pid,comm hp $pid >/dev/null)
2651
2652         $LFS hsm_cancel $f
2653
2654         # instead of waiting+checking both Restore and Cancel ops
2655         # sequentially, wait for both to be finished and then check
2656         # each results.
2657         wait_all_done 100 $fid
2658         local rstate=$(get_request_state $fid RESTORE)
2659         local cstate=$(get_request_state $fid CANCEL)
2660
2661         # restore orig grace_delay.
2662         set_hsm_param grace_delay $old_grace
2663
2664         if [[ "$rstate" == "CANCELED" ]] ; then
2665                 [[ "$cstate" == "SUCCEED" ]] ||
2666                         error "Restore state is CANCELED and Cancel state " \
2667                                "is not SUCCEED but $cstate"
2668                 echo "Restore state is CANCELED, Cancel state is SUCCEED"
2669         elif [[ "$rstate" == "SUCCEED" ]] ; then
2670                 [[ "$cstate" == "FAILED" ]] ||
2671                         error "Restore state is SUCCEED and Cancel state " \
2672                                 "is not FAILED but $cstate"
2673                 echo "Restore state is SUCCEED, Cancel state is FAILED"
2674         else
2675                 error "Restore state is $rstate and Cancel state is $cstate"
2676         fi
2677
2678         [ -z $killed ] ||
2679                 error "Cannot kill process waiting for restore ($killed)"
2680
2681         copytool_cleanup
2682 }
2683 run_test 33 "Kill a restore waiting process"
2684
2685 test_34() {
2686         # test needs a running copytool
2687         copytool_setup
2688
2689         mkdir -p $DIR/$tdir
2690
2691         local f=$DIR/$tdir/$tfile
2692         local fid
2693         fid=$(make_large_for_progress $f)
2694         [ $? != 0 ] && skip "not enough free space" && return
2695
2696         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2697         wait_request_state $fid ARCHIVE SUCCEED
2698         $LFS hsm_release $f
2699
2700         md5sum $f >/dev/null &
2701         local pid=$!
2702         wait_request_state $fid RESTORE STARTED
2703
2704         rm $f || error "rm $f failed"
2705         # rm must not block during restore
2706         wait_request_state $fid RESTORE STARTED
2707
2708         wait_request_state $fid RESTORE SUCCEED
2709         # check md5sum pgm finished
2710         local there=$(ps -o pid,comm hp $pid >/dev/null)
2711         [[ -z $there ]] || error "Restore initiator does not exit"
2712
2713         local rc=$(wait $pid)
2714         [[ $rc -eq 0 ]] || error "Restore initiator failed with $rc"
2715
2716         copytool_cleanup
2717 }
2718 run_test 34 "Remove file during restore"
2719
2720 test_35() {
2721         # test needs a running copytool
2722         copytool_setup
2723
2724         mkdir -p $DIR/$tdir
2725
2726         local f=$DIR/$tdir/$tfile
2727         local f1=$DIR/$tdir/$tfile-1
2728         local fid
2729         fid=$(make_large_for_progress $f)
2730         [ $? != 0 ] && skip "not enough free space" && return
2731
2732         local fid1=$(copy_file /etc/passwd $f1)
2733         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2734         wait_request_state $fid ARCHIVE SUCCEED
2735         $LFS hsm_release $f
2736
2737         md5sum $f >/dev/null &
2738         local pid=$!
2739         wait_request_state $fid RESTORE STARTED
2740
2741         mv $f1 $f || error "mv $f1 $f failed"
2742         # mv must not block during restore
2743         wait_request_state $fid RESTORE STARTED
2744
2745         wait_request_state $fid RESTORE SUCCEED
2746         # check md5sum pgm finished
2747         local there=$(ps -o pid,comm hp $pid >/dev/null)
2748         [[ -z $there ]] || error "Restore initiator does not exit"
2749
2750         local rc=$(wait $pid)
2751         [[ $rc -eq 0 ]] || error "Restore initiator failed with $rc"
2752
2753         fid2=$(path2fid $f)
2754         [[ $fid2 == $fid1 ]] || error "Wrong fid after mv $fid2 != $fid1"
2755
2756         copytool_cleanup
2757 }
2758 run_test 35 "Overwrite file during restore"
2759
2760 test_36() {
2761         # test needs a running copytool
2762         copytool_setup
2763
2764         mkdir -p $DIR/$tdir
2765
2766         local f=$DIR/$tdir/$tfile
2767         local fid
2768         fid=$(make_large_for_progress $f)
2769         [ $? != 0 ] && skip "not enough free space" && return
2770
2771         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2772         wait_request_state $fid ARCHIVE SUCCEED
2773         $LFS hsm_release $f
2774
2775         md5sum $f >/dev/null &
2776         local pid=$!
2777         wait_request_state $fid RESTORE STARTED
2778
2779         mv $f $f.new
2780         # rm must not block during restore
2781         wait_request_state $fid RESTORE STARTED
2782
2783         wait_request_state $fid RESTORE SUCCEED
2784         # check md5sum pgm finished
2785         local there=$(ps -o pid,comm hp $pid >/dev/null)
2786         [[ -z $there ]] ||
2787                 error "Restore initiator does not exit"
2788
2789         local rc=$(wait $pid)
2790         [[ $rc -eq 0 ]] ||
2791                 error "Restore initiator failed with $rc"
2792
2793         copytool_cleanup
2794 }
2795 run_test 36 "Move file during restore"
2796
2797 test_37() {
2798         # LU-5683: check that an archived dirty file can be rearchived.
2799         copytool_cleanup
2800         copytool_setup $SINGLEAGT $MOUNT2
2801
2802         mkdir -p $DIR/$tdir
2803         local f=$DIR/$tdir/$tfile
2804         local fid
2805
2806         fid=$(make_small $f) || error "cannot create small file"
2807
2808         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2809         wait_request_state $fid ARCHIVE SUCCEED
2810         $LFS hsm_release $f || error "cannot release $f"
2811
2812         # Dirty file.
2813         dd if=/dev/urandom of=$f bs=1M count=1 || error "cannot dirty file"
2814
2815         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2816         wait_request_state $fid ARCHIVE SUCCEED
2817
2818         copytool_cleanup
2819 }
2820 run_test 37 "re-archive a dirty file"
2821
2822 multi_archive() {
2823         local prefix=$1
2824         local count=$2
2825         local n=""
2826
2827         for n in $(seq 1 $count); do
2828                 $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $prefix.$n
2829         done
2830         echo "$count archive requests submitted"
2831 }
2832
2833 test_40() {
2834         local stream_count=4
2835         local file_count=100
2836         mkdir -p $DIR/$tdir
2837         local f=$DIR/$tdir/$tfile
2838         local i=""
2839         local p=""
2840         local fid=""
2841
2842         for i in $(seq 1 $file_count); do
2843                 for p in $(seq 1 $stream_count); do
2844                         fid=$(copy_file /etc/hosts $f.$p.$i)
2845                 done
2846         done
2847         # force copytool to use a local/temp archive dir to ensure best
2848         # performance vs remote/NFS mounts used in auto-tests
2849         if do_facet $SINGLEAGT "df --local $HSM_ARCHIVE" >/dev/null 2>&1 ; then
2850                 copytool_setup
2851         else
2852                 copytool_setup $SINGLEAGT $MOUNT $HSM_ARCHIVE_NUMBER $TMP/$tdir
2853         fi
2854         # to be sure wait_all_done will not be mislead by previous tests
2855         cdt_purge
2856         wait_for_grace_delay
2857         typeset -a pids
2858         # start archive streams in background (archive files in parallel)
2859         for p in $(seq 1 $stream_count); do
2860                 multi_archive $f.$p $file_count &
2861                 pids[$p]=$!
2862         done
2863         echo -n  "Wait for all requests being enqueued..."
2864         wait ${pids[*]}
2865         echo OK
2866         wait_all_done 100
2867         copytool_cleanup
2868 }
2869 run_test 40 "Parallel archive requests"
2870
2871 test_52() {
2872         # test needs a running copytool
2873         copytool_setup
2874
2875         mkdir -p $DIR/$tdir
2876         local f=$DIR/$tdir/$tfile
2877         local fid=$(copy_file /etc/motd $f 1)
2878
2879         $LFS hsm_archive $f || error "could not archive file"
2880         wait_request_state $fid ARCHIVE SUCCEED
2881         check_hsm_flags $f "0x00000009"
2882
2883         multiop_bg_pause $f O_c || error "multiop failed"
2884         local MULTIPID=$!
2885
2886         mds_evict_client
2887         client_up || client_up || true
2888
2889         kill -USR1 $MULTIPID
2890         wait $MULTIPID || error "multiop close failed"
2891
2892         check_hsm_flags $f "0x0000000b"
2893
2894         copytool_cleanup
2895 }
2896 run_test 52 "Opened for write file on an evicted client should be set dirty"
2897
2898 test_53() {
2899         # test needs a running copytool
2900         copytool_setup
2901
2902         mkdir -p $DIR/$tdir
2903         local f=$DIR/$tdir/$tfile
2904         local fid=$(copy_file /etc/motd $f 1)
2905
2906         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2907                 error "could not archive file"
2908         wait_request_state $fid ARCHIVE SUCCEED
2909         check_hsm_flags $f "0x00000009"
2910
2911         multiop_bg_pause $f o_c || error "multiop failed"
2912         MULTIPID=$!
2913
2914         mds_evict_client
2915         client_up || client_up || true
2916
2917         kill -USR1 $MULTIPID
2918         wait $MULTIPID || error "multiop close failed"
2919
2920         check_hsm_flags $f "0x00000009"
2921
2922         copytool_cleanup
2923 }
2924 run_test 53 "Opened for read file on an evicted client should not be set dirty"
2925
2926 test_54() {
2927         # test needs a running copytool
2928         copytool_setup
2929
2930         mkdir -p $DIR/$tdir
2931         local f=$DIR/$tdir/$tfile
2932         local fid=$(make_large_for_progress $f)
2933
2934         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2935                 error "could not archive file"
2936         wait_request_state $fid ARCHIVE STARTED
2937
2938         check_hsm_flags $f "0x00000001"
2939
2940         # Avoid coordinator resending this request as soon it has failed.
2941         cdt_set_no_retry
2942
2943         echo "foo" >> $f
2944         sync
2945         wait_request_state $fid ARCHIVE FAILED
2946
2947         check_hsm_flags $f "0x00000003"
2948
2949         cdt_clear_no_retry
2950         copytool_cleanup
2951 }
2952 run_test 54 "Write during an archive cancels it"
2953
2954 test_55() {
2955         # test needs a running copytool
2956         copytool_setup
2957
2958         mkdir -p $DIR/$tdir
2959         local f=$DIR/$tdir/$tfile
2960         local fid=$(make_large_for_progress $f)
2961
2962         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2963                 error "could not archive file"
2964         wait_request_state $fid ARCHIVE STARTED
2965
2966         check_hsm_flags $f "0x00000001"
2967
2968         # Avoid coordinator resending this request as soon it has failed.
2969         cdt_set_no_retry
2970
2971         $TRUNCATE $f 1024 || error "truncate failed"
2972         sync
2973         wait_request_state $fid ARCHIVE FAILED
2974
2975         check_hsm_flags $f "0x00000003"
2976
2977         cdt_clear_no_retry
2978         copytool_cleanup
2979 }
2980 run_test 55 "Truncate during an archive cancels it"
2981
2982 test_56() {
2983         # test needs a running copytool
2984         copytool_setup
2985
2986         mkdir -p $DIR/$tdir
2987         local f=$DIR/$tdir/$tfile
2988         local fid
2989         fid=$(make_large_for_progress $f)
2990         [ $? != 0 ] && skip "not enough free space" && return
2991
2992         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2993                 error "could not archive file"
2994         wait_request_state $fid ARCHIVE STARTED
2995
2996         check_hsm_flags $f "0x00000001"
2997
2998         # Change metadata and sync to be sure we are not changing only
2999         # in memory.
3000         chmod 644 $f
3001         chgrp sys $f
3002         sync
3003         wait_request_state $fid ARCHIVE SUCCEED
3004
3005         check_hsm_flags $f "0x00000009"
3006
3007         copytool_cleanup
3008 }
3009 run_test 56 "Setattr during an archive is ok"
3010
3011 test_57() {
3012         # Need one client for I/O, one for request
3013         needclients 2 || return 0
3014
3015         # test needs a running copytool
3016         copytool_setup
3017
3018         mkdir -p $DIR/$tdir
3019         local f=$DIR/$tdir/test_archive_remote
3020         # Create a file on a remote node
3021         do_node $CLIENT2 "dd if=/dev/urandom of=$f bs=1M "\
3022                 "count=2 conv=fsync"
3023
3024         # And archive it
3025         do_node $CLIENT2 "$LFS hsm_archive -a $HSM_ARCHIVE_NUMBER $f" ||
3026                 error "hsm_archive failed"
3027         local fid=$(path2fid $f)
3028         wait_request_state $fid ARCHIVE SUCCEED
3029
3030         # Release and implicit restore it
3031         do_node $CLIENT2 "$LFS hsm_release $f" ||
3032                 error "hsm_release failed"
3033         do_node $CLIENT2 "md5sum $f" ||
3034                 error "hsm_restore failed"
3035
3036         wait_request_state $fid RESTORE SUCCEED
3037
3038         copytool_cleanup
3039 }
3040 run_test 57 "Archive a file with dirty cache on another node"
3041
3042 truncate_released_file() {
3043         local src_file=$1
3044         local trunc_to=$2
3045
3046         local sz=$(stat -c %s $src_file)
3047         local f=$DIR/$tdir/$tfile
3048         local fid=$(copy_file $1 $f)
3049         local ref=$f-ref
3050         cp $f $f-ref
3051
3052         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
3053                 error "could not archive file"
3054         wait_request_state $fid ARCHIVE SUCCEED
3055
3056         $LFS hsm_release $f || error "could not release file"
3057
3058         $TRUNCATE $f $trunc_to || error "truncate failed"
3059         sync
3060
3061         local sz1=$(stat -c %s $f)
3062         [[ $sz1 == $trunc_to ]] ||
3063                 error "size after trunc: $sz1 expect $trunc_to, original $sz"
3064
3065         $LFS hsm_state $f
3066         check_hsm_flags $f "0x0000000b"
3067
3068         local state=$(get_request_state $fid RESTORE)
3069         [[ "$state" == "SUCCEED" ]] ||
3070                 error "truncate $sz does not trig restore, state = $state"
3071
3072         $TRUNCATE $ref $trunc_to
3073         cmp $ref $f || error "file data wrong after truncate"
3074
3075         rm -f $f $f-ref
3076 }
3077
3078 test_58() {
3079         # test needs a running copytool
3080         copytool_setup
3081
3082         mkdir -p $DIR/$tdir
3083
3084         local sz=$(stat -c %s /etc/passwd)
3085
3086         echo "truncate up from $sz to $((sz*2))"
3087         truncate_released_file /etc/passwd $((sz*2))
3088
3089         echo "truncate down from $sz to $((sz/2))"
3090         truncate_released_file /etc/passwd $((sz/2))
3091
3092         echo "truncate to 0"
3093         truncate_released_file /etc/passwd 0
3094
3095         copytool_cleanup
3096 }
3097 run_test 58 "Truncate a released file will trigger restore"
3098
3099 test_59() {
3100         local fid
3101         local server_version=$(lustre_version_code $SINGLEMDS)
3102         [[ $server_version -lt $(version_code 2.7.63) ]] &&
3103                 skip "Need MDS version at least 2.7.63" && return
3104
3105         copytool_setup
3106         $MCREATE $DIR/$tfile || error "mcreate failed"
3107         $TRUNCATE $DIR/$tfile 42 || error "truncate failed"
3108         $LFS hsm_archive $DIR/$tfile || error "archive request failed"
3109         fid=$(path2fid $DIR/$tfile)
3110         wait_request_state $fid ARCHIVE SUCCEED
3111         $LFS hsm_release $DIR/$tfile || error "release failed"
3112         copytool_cleanup
3113 }
3114 run_test 59 "Release stripeless file with non-zero size"
3115
3116 test_60() {
3117         # This test validates the fix for LU-4512. Ensure that the -u
3118         # option changes the progress reporting interval from the
3119         # default (30 seconds) to the user-specified interval.
3120         local interval=5
3121         local progress_timeout=$((interval * 4))
3122
3123         # test needs a new running copytool
3124         copytool_cleanup
3125         HSMTOOL_UPDATE_INTERVAL=$interval copytool_setup
3126
3127         mkdir -p $DIR/$tdir
3128         local f=$DIR/$tdir/$tfile
3129         local fid
3130         fid=$(make_large_for_progress $f)
3131         [ $? != 0 ] && skip "not enough free space" && return
3132
3133         local mdtidx=0
3134         local mdt=${MDT_PREFIX}${mdtidx}
3135         local mds=mds$((mdtidx + 1))
3136
3137         # Wait for copytool to register
3138         wait_update_facet $mds \
3139                 "$LCTL get_param -n ${mdt}.hsm.agents | grep -o ^uuid" \
3140                 uuid 100 || error "coyptool failed to register with $mdt"
3141
3142         local start_at=$(date +%s)
3143         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
3144                 error "could not archive file"
3145
3146         local agent=$(facet_active_host $SINGLEAGT)
3147         local prefix=$TESTLOG_PREFIX
3148         [[ -z "$TESTNAME" ]] || prefix=$prefix.$TESTNAME
3149         local copytool_log=$prefix.copytool_log.$agent.log
3150
3151
3152         wait_update $agent \
3153             "grep -o start.copy $copytool_log" "start copy" 100 ||
3154                 error "copytool failed to start"
3155
3156         local cmd="$LCTL get_param -n ${mdt}.hsm.active_requests"
3157         cmd+=" | awk '/'$fid'.*action=ARCHIVE/ {print \\\$12}' | cut -f2 -d="
3158
3159         local RESULT
3160         local WAIT=0
3161         local sleep=1
3162
3163         echo -n "Expecting a progress update within $progress_timeout seconds... "
3164         while [ true ]; do
3165                 RESULT=$(do_node $(facet_active_host $mds) "$cmd")
3166                 if [ $RESULT -gt 0 ]; then
3167                         echo "$RESULT bytes copied in $WAIT seconds."
3168                         break
3169                 elif [ $WAIT -ge $progress_timeout ]; then
3170                         error "Timed out waiting for progress update!"
3171                         break
3172                 fi
3173                 WAIT=$((WAIT + sleep))
3174                 sleep $sleep
3175         done
3176
3177         local finish_at=$(date +%s)
3178         local elapsed=$((finish_at - start_at))
3179
3180         # Ensure that the progress update occurred within the expected window.
3181         if [ $elapsed -lt $((interval - 1)) ]; then
3182                 error "Expected progress update after at least $interval seconds"
3183         fi
3184
3185         cdt_clear_no_retry
3186         copytool_cleanup
3187 }
3188 run_test 60 "Changing progress update interval from default"
3189
3190 test_70() {
3191         # test needs a new running copytool
3192         copytool_cleanup
3193         copytool_monitor_setup
3194         HSMTOOL_EVENT_FIFO=$HSMTOOL_MONITOR_DIR/fifo copytool_setup
3195
3196         # Just start and stop the copytool to generate events.
3197         cdt_clear_no_retry
3198
3199         # Wait for the copytool to register.
3200         wait_update --verbose $(facet_active_host mds1) \
3201                 "$LCTL get_param -n ${MDT_PREFIX}0.hsm.agents | grep -o ^uuid" \
3202                 uuid 100 ||
3203                 error "copytool failed to register with MDT0000"
3204
3205         copytool_cleanup
3206
3207         local REGISTER_EVENT
3208         local UNREGISTER_EVENT
3209         while read event; do
3210                 local parsed=$(parse_json_event "$event")
3211                 if [ -z "$parsed" ]; then
3212                         error "Copytool sent malformed event: $event"
3213                 fi
3214                 eval $parsed
3215
3216                 if [ $event_type == "REGISTER" ]; then
3217                         REGISTER_EVENT=$event
3218                 elif [ $event_type == "UNREGISTER" ]; then
3219                         UNREGISTER_EVENT=$event
3220                 fi
3221         done < <(echo $"$(get_copytool_event_log)")
3222
3223         if [ -z "$REGISTER_EVENT" ]; then
3224                 error "Copytool failed to send register event to FIFO"
3225         fi
3226
3227         if [ -z "$UNREGISTER_EVENT" ]; then
3228                 error "Copytool failed to send unregister event to FIFO"
3229         fi
3230
3231         copytool_monitor_cleanup
3232         echo "Register/Unregister events look OK."
3233 }
3234 run_test 70 "Copytool logs JSON register/unregister events to FIFO"
3235
3236 test_71() {
3237         # Bump progress interval for livelier events.
3238         local interval=5
3239
3240         # test needs a new running copytool
3241         copytool_cleanup
3242         copytool_monitor_setup
3243         HSMTOOL_UPDATE_INTERVAL=$interval \
3244         HSMTOOL_EVENT_FIFO=$HSMTOOL_MONITOR_DIR/fifo copytool_setup
3245
3246         mkdir -p $DIR/$tdir
3247         local f=$DIR/$tdir/$tfile
3248         local fid
3249         fid=$(make_large_for_progress $f)
3250         [ $? != 0 ] && skip "not enough free space" && return
3251
3252         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
3253                 error "could not archive file"
3254         wait_request_state $fid ARCHIVE SUCCEED
3255
3256         local expected_fields="event_time data_fid source_fid"
3257         expected_fields+=" total_bytes current_bytes"
3258
3259         local START_EVENT
3260         local FINISH_EVENT
3261         while read event; do
3262                 # Make sure we're not getting anything from previous events.
3263                 for field in $expected_fields; do
3264                         unset $field
3265                 done
3266
3267                 local parsed=$(parse_json_event "$event")
3268                 if [ -z "$parsed" ]; then
3269                         error "Copytool sent malformed event: $event"
3270                 fi
3271                 eval $parsed
3272
3273                 if [ $event_type == "ARCHIVE_START" ]; then
3274                         START_EVENT=$event
3275                         continue
3276                 elif [ $event_type == "ARCHIVE_FINISH" ]; then
3277                         FINISH_EVENT=$event
3278                         continue
3279                 elif [ $event_type != "ARCHIVE_RUNNING" ]; then
3280                         continue
3281                 fi
3282
3283                 # Do some simple checking of the progress update events.
3284                 for expected_field in $expected_fields; do
3285                         if [ -z ${!expected_field+x} ]; then
3286                                 error "Missing $expected_field field in event"
3287                         fi
3288                 done
3289
3290                 if [ $total_bytes -eq 0 ]; then
3291                         error "Expected total_bytes to be > 0"
3292                 fi
3293
3294                 # These should be identical throughout an archive
3295                 # operation.
3296                 if [ $source_fid != $data_fid ]; then
3297                         error "Expected source_fid to equal data_fid"
3298                 fi
3299         done < <(echo $"$(get_copytool_event_log)")
3300
3301         if [ -z "$START_EVENT" ]; then
3302                 error "Copytool failed to send archive start event to FIFO"
3303         fi
3304
3305         if [ -z "$FINISH_EVENT" ]; then
3306                 error "Copytool failed to send archive finish event to FIFO"
3307         fi
3308
3309         echo "Archive events look OK."
3310
3311         cdt_clear_no_retry
3312         copytool_cleanup
3313         copytool_monitor_cleanup
3314 }
3315 run_test 71 "Copytool logs JSON archive events to FIFO"
3316
3317 test_72() {
3318         # Bump progress interval for livelier events.
3319         local interval=5
3320
3321         # test needs a new running copytool
3322         copytool_cleanup
3323         copytool_monitor_setup
3324         HSMTOOL_UPDATE_INTERVAL=$interval \
3325         HSMTOOL_EVENT_FIFO=$HSMTOOL_MONITOR_DIR/fifo copytool_setup
3326         local test_file=$HSMTOOL_MONITOR_DIR/file
3327
3328         local cmd="dd if=/dev/urandom of=$test_file count=16 bs=1000000 "
3329         cmd+="conv=fsync"
3330         do_facet $SINGLEAGT "$cmd" ||
3331                 error "cannot create $test_file on $SINGLEAGT"
3332         copy2archive $test_file $tdir/$tfile
3333
3334         mkdir -p $DIR/$tdir
3335         local f=$DIR/$tdir/$tfile
3336         import_file $tdir/$tfile $f
3337         f=$DIR2/$tdir/$tfile
3338         echo "Verifying released state: "
3339         check_hsm_flags $f "0x0000000d"
3340
3341         local fid=$(path2fid $f)
3342         $LFS hsm_restore $f
3343         wait_request_state $fid RESTORE SUCCEED
3344
3345         local expected_fields="event_time data_fid source_fid"
3346         expected_fields+=" total_bytes current_bytes"
3347
3348         local START_EVENT
3349         local FINISH_EVENT
3350         while read event; do
3351                 # Make sure we're not getting anything from previous events.
3352                 for field in $expected_fields; do
3353                         unset $field
3354                 done
3355
3356                 local parsed=$(parse_json_event "$event")
3357                 if [ -z "$parsed" ]; then
3358                         error "Copytool sent malformed event: $event"
3359                 fi
3360                 eval $parsed
3361
3362                 if [ $event_type == "RESTORE_START" ]; then
3363                         START_EVENT=$event
3364                         if [ $source_fid != $data_fid ]; then
3365                                 error "source_fid should == data_fid at start"
3366                         fi
3367                         continue
3368                 elif [ $event_type == "RESTORE_FINISH" ]; then
3369                         FINISH_EVENT=$event
3370                         if [ $source_fid != $data_fid ]; then
3371                                 error "source_fid should == data_fid at finish"
3372                         fi
3373                         continue
3374                 elif [ $event_type != "RESTORE_RUNNING" ]; then
3375                         continue
3376                 fi
3377
3378                 # Do some simple checking of the progress update events.
3379                 for expected_field in $expected_fields; do
3380                         if [ -z ${!expected_field+x} ]; then
3381                                 error "Missing $expected_field field in event"
3382                         fi
3383                 done
3384
3385                 if [ $total_bytes -eq 0 ]; then
3386                         error "Expected total_bytes to be > 0"
3387                 fi
3388
3389                 # When a restore starts out, the data fid is the same as the
3390                 # source fid. After the restore has gotten going, we learn
3391                 # the new data fid. Once the restore has finished, the source
3392                 # fid is set to the new data fid.
3393                 #
3394                 # We test this because some monitoring software may depend on
3395                 # this behavior. If it changes, then the consumers of these
3396                 # events may need to be modified.
3397                 if [ $source_fid == $data_fid ]; then
3398                         error "source_fid should != data_fid during restore"
3399                 fi
3400         done < <(echo $"$(get_copytool_event_log)")
3401
3402         if [ -z "$START_EVENT" ]; then
3403                 error "Copytool failed to send restore start event to FIFO"
3404         fi
3405
3406         if [ -z "$FINISH_EVENT" ]; then
3407                 error "Copytool failed to send restore finish event to FIFO"
3408         fi
3409
3410         echo "Restore events look OK."
3411
3412         cdt_clear_no_retry
3413         copytool_cleanup
3414         copytool_monitor_cleanup
3415
3416         rm -rf $test_dir
3417 }
3418 run_test 72 "Copytool logs JSON restore events to FIFO"
3419
3420 test_90() {
3421         file_count=51 # Max number of files constrained by LNET message size
3422         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3423         local f=$DIR/$tdir/$tfile
3424         local FILELIST=/tmp/filelist.txt
3425         local i=""
3426
3427         rm -f $FILELIST
3428         for i in $(seq 1 $file_count); do
3429                 fid=$(copy_file /etc/hosts $f.$i)
3430                 echo $f.$i >> $FILELIST
3431         done
3432         # force copytool to use a local/temp archive dir to ensure best
3433         # performance vs remote/NFS mounts used in auto-tests
3434         if do_facet $SINGLEAGT "df --local $HSM_ARCHIVE" >/dev/null 2>&1 ; then
3435                 copytool_setup
3436         else
3437                 local dai=$(get_hsm_param default_archive_id)
3438                 copytool_setup $SINGLEAGT $MOUNT $dai $TMP/$tdir
3439         fi
3440         # to be sure wait_all_done will not be mislead by previous tests
3441         cdt_purge
3442         wait_for_grace_delay
3443         $LFS hsm_archive --filelist $FILELIST ||
3444                 error "cannot archive a file list"
3445         wait_all_done 100
3446         $LFS hsm_release --filelist $FILELIST ||
3447                 error "cannot release a file list"
3448         $LFS hsm_restore --filelist $FILELIST ||
3449                 error "cannot restore a file list"
3450         wait_all_done 100
3451         copytool_cleanup
3452 }
3453 run_test 90 "Archive/restore a file list"
3454
3455 double_verify_reset_hsm_param() {
3456         local p=$1
3457         echo "Testing $HSM_PARAM.$p"
3458         local val=$(get_hsm_param $p)
3459         local save=$val
3460         local val2=$(($val * 2))
3461         set_hsm_param $p $val2
3462         val=$(get_hsm_param $p)
3463         [[ $val == $val2 ]] ||
3464                 error "$HSM_PARAM.$p: $val != $val2 should be (2 * $save)"
3465         echo "Set $p to 0 must failed"
3466         set_hsm_param $p 0
3467         local rc=$?
3468         # restore value
3469         set_hsm_param $p $save
3470
3471         if [[ $rc == 0 ]]; then
3472                 error "we must not be able to set $HSM_PARAM.$p to 0"
3473         fi
3474 }
3475
3476 test_100() {
3477         double_verify_reset_hsm_param loop_period
3478         double_verify_reset_hsm_param grace_delay
3479         double_verify_reset_hsm_param active_request_timeout
3480         double_verify_reset_hsm_param max_requests
3481         double_verify_reset_hsm_param default_archive_id
3482 }
3483 run_test 100 "Set coordinator /proc tunables"
3484
3485 test_102() {
3486         cdt_disable
3487         cdt_enable
3488         cdt_restart
3489 }
3490 run_test 102 "Verify coordinator control"
3491
3492 test_103() {
3493         # test needs a running copytool
3494         copytool_setup
3495
3496         local i=""
3497         local fid=""
3498
3499         mkdir -p $DIR/$tdir
3500         for i in $(seq 1 20); do
3501                 fid=$(copy_file /etc/passwd $DIR/$tdir/$i)
3502         done
3503         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tdir/*
3504
3505         cdt_purge
3506
3507         echo "Current requests"
3508         local res=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3509                         $HSM_PARAM.actions |\
3510                         grep -v CANCELED | grep -v SUCCEED | grep -v FAILED")
3511
3512         [[ -z "$res" ]] || error "Some request have not been canceled"
3513
3514         copytool_cleanup
3515 }
3516 run_test 103 "Purge all requests"
3517
3518 DATA=CEA
3519 DATAHEX='[434541]'
3520 test_104() {
3521         # test needs a running copytool
3522         copytool_setup
3523
3524         mkdir -p $DIR/$tdir
3525         local f=$DIR/$tdir/$tfile
3526         local fid
3527         fid=$(make_large_for_progress $f)
3528         [ $? != 0 ] && skip "not enough free space" && return
3529
3530         # if cdt is on, it can serve too quickly the request
3531         cdt_disable
3532         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER --data $DATA $f
3533         local data1=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3534                         $HSM_PARAM.actions |\
3535                         grep $fid | cut -f16 -d=")
3536         cdt_enable
3537
3538         [[ "$data1" == "$DATAHEX" ]] ||
3539                 error "Data field in records is ($data1) and not ($DATAHEX)"
3540
3541         copytool_cleanup
3542 }
3543 run_test 104 "Copy tool data field"
3544
3545 test_105() {
3546         mkdir -p $DIR/$tdir
3547         local i=""
3548
3549         cdt_disable
3550         for i in $(seq -w 1 10); do
3551                 cp /etc/passwd $DIR/$tdir/$i
3552                 $LFS hsm_archive $DIR/$tdir/$i
3553         done
3554         local reqcnt1=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3555                         $HSM_PARAM.actions |\
3556                         grep WAITING | wc -l")
3557         cdt_restart
3558         cdt_disable
3559         local reqcnt2=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3560                         $HSM_PARAM.actions |\
3561                         grep WAITING | wc -l")
3562         cdt_enable
3563         cdt_purge
3564         [[ "$reqcnt1" == "$reqcnt2" ]] ||
3565                 error "Requests count after shutdown $reqcnt2 != "\
3566                       "before shutdown $reqcnt1"
3567 }
3568 run_test 105 "Restart of coordinator"
3569
3570 get_agent_by_uuid_mdt() {
3571         local uuid=$1
3572         local mdtidx=$2
3573         local mds=mds$(($mdtidx + 1))
3574         do_facet $mds "$LCTL get_param -n ${MDT_PREFIX}${mdtidx}.hsm.agents |\
3575                  grep $uuid"
3576 }
3577
3578 check_agent_registered_by_mdt() {
3579         local uuid=$1
3580         local mdtidx=$2
3581         local mds=mds$(($mdtidx + 1))
3582         local agent=$(get_agent_by_uuid_mdt $uuid $mdtidx)
3583         if [[ ! -z "$agent" ]]; then
3584                 echo "found agent $agent on $mds"
3585         else
3586                 error "uuid $uuid not found in agent list on $mds"
3587         fi
3588 }
3589
3590 check_agent_unregistered_by_mdt() {
3591         local uuid=$1
3592         local mdtidx=$2
3593         local mds=mds$(($mdtidx + 1))
3594         local agent=$(get_agent_by_uuid_mdt $uuid $mdtidx)
3595         if [[ -z "$agent" ]]; then
3596                 echo "uuid not found in agent list on $mds"
3597         else
3598                 error "uuid found in agent list on $mds: $agent"
3599         fi
3600 }
3601
3602 check_agent_registered() {
3603         local uuid=$1
3604         local mdsno
3605         for mdsno in $(seq 1 $MDSCOUNT); do
3606                 check_agent_registered_by_mdt $uuid $((mdsno - 1))
3607         done
3608 }
3609
3610 check_agent_unregistered() {
3611         local uuid=$1
3612         local mdsno
3613         for mdsno in $(seq 1 $MDSCOUNT); do
3614                 check_agent_unregistered_by_mdt $uuid $((mdsno - 1))
3615         done
3616 }
3617
3618 get_agent_uuid() {
3619         local agent=${1:-$(facet_active_host $SINGLEAGT)}
3620
3621         # Lustre mount-point is mandatory and last parameter on
3622         # copytool cmd-line.
3623         local mntpnt=$(do_rpc_nodes $agent pgrep -fl $HSMTOOL_BASE |
3624                        grep -v pgrep | awk '{print $NF}')
3625         [ -n "$mntpnt" ] || error "Found no Agent or with no mount-point "\
3626                                   "parameter"
3627         do_rpc_nodes $agent get_client_uuid $mntpnt | cut -d' ' -f2
3628 }
3629
3630 test_106() {
3631         # test needs a running copytool
3632         copytool_setup
3633
3634         local uuid=$(get_agent_uuid $(facet_active_host $SINGLEAGT))
3635
3636         check_agent_registered $uuid
3637
3638         search_copytools || error "No copytool found"
3639
3640         copytool_cleanup
3641         check_agent_unregistered $uuid
3642
3643         copytool_setup
3644         uuid=$(get_agent_uuid $(facet_active_host $SINGLEAGT))
3645         check_agent_registered $uuid
3646
3647         copytool_cleanup
3648 }
3649 run_test 106 "Copytool register/unregister"
3650
3651 test_107() {
3652         # test needs a running copytool
3653         copytool_setup
3654         # create and archive file
3655         mkdir -p $DIR/$tdir
3656         local f1=$DIR/$tdir/$tfile
3657         local fid=$(copy_file /etc/passwd $f1)
3658         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f1
3659         wait_request_state $fid ARCHIVE SUCCEED
3660         # shutdown and restart MDS
3661         fail $SINGLEMDS
3662         # check the copytool still gets messages from MDT
3663         local f2=$DIR/$tdir/2
3664         local fid=$(copy_file /etc/passwd $f2)
3665         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f2
3666         # main check of this sanity: this request MUST succeed
3667         wait_request_state $fid ARCHIVE SUCCEED
3668         copytool_cleanup
3669 }
3670 run_test 107 "Copytool re-register after MDS restart"
3671
3672 policy_set_and_test()
3673 {
3674         local change="$1"
3675         local target="$2"
3676         do_facet $SINGLEMDS $LCTL set_param "$HSM_PARAM.policy=\\\"$change\\\""
3677         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
3678         [[ "$policy" == "$target" ]] ||
3679                 error "Wrong policy after '$change': '$policy' != '$target'"
3680 }
3681
3682 test_109() {
3683         # to force default policy setting if error
3684         CDT_POLICY_HAD_CHANGED=true
3685
3686         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
3687         local default="NonBlockingRestore [NoRetryAction]"
3688         [[ "$policy" == "$default" ]] ||
3689                 error "default policy has changed,"\
3690                       " '$policy' != '$default' update the test"
3691         policy_set_and_test "+NBR" "[NonBlockingRestore] [NoRetryAction]"
3692         policy_set_and_test "+NRA" "[NonBlockingRestore] [NoRetryAction]"
3693         policy_set_and_test "-NBR" "NonBlockingRestore [NoRetryAction]"
3694         policy_set_and_test "-NRA" "NonBlockingRestore NoRetryAction"
3695         policy_set_and_test "NRA NBR" "[NonBlockingRestore] [NoRetryAction]"
3696         # useless bacause we know but safer for futur changes to use real value
3697         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
3698         echo "Next set_param must failed"
3699         policy_set_and_test "wrong" "$policy"
3700
3701         # return to default
3702         echo "Back to default policy"
3703         cdt_set_sanity_policy
3704 }
3705 run_test 109 "Policy display/change"
3706
3707 test_110a() {
3708         # test needs a running copytool
3709         copytool_setup
3710
3711         mkdir -p $DIR/$tdir
3712
3713         copy2archive /etc/passwd $tdir/$tfile
3714
3715         local f=$DIR/$tdir/$tfile
3716         import_file $tdir/$tfile $f
3717         local fid=$(path2fid $f)
3718
3719         cdt_set_non_blocking_restore
3720         md5sum $f
3721         local st=$?
3722
3723         # cleanup
3724         wait_request_state $fid RESTORE SUCCEED
3725         cdt_clear_non_blocking_restore
3726
3727         # Test result
3728         [[ $st == 1 ]] ||
3729                 error "md5sum returns $st != 1, "\
3730                         "should also perror ENODATA (No data available)"
3731
3732         copytool_cleanup
3733 }
3734 run_test 110a "Non blocking restore policy (import case)"
3735
3736 test_110b() {
3737         # test needs a running copytool
3738         copytool_setup
3739
3740         mkdir -p $DIR/$tdir
3741         local f=$DIR/$tdir/$tfile
3742         local fid=$(copy_file /etc/passwd $f)
3743         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3744         wait_request_state $fid ARCHIVE SUCCEED
3745         $LFS hsm_release $f
3746
3747         cdt_set_non_blocking_restore
3748         md5sum $f
3749         local st=$?
3750
3751         # cleanup
3752         wait_request_state $fid RESTORE SUCCEED
3753         cdt_clear_non_blocking_restore
3754
3755         # Test result
3756         [[ $st == 1 ]] ||
3757                 error "md5sum returns $st != 1, "\
3758                         "should also perror ENODATA (No data available)"
3759
3760         copytool_cleanup
3761 }
3762 run_test 110b "Non blocking restore policy (release case)"
3763
3764 test_111a() {
3765         # test needs a running copytool
3766         copytool_setup
3767
3768         mkdir -p $DIR/$tdir
3769         copy2archive /etc/passwd $tdir/$tfile
3770
3771         local f=$DIR/$tdir/$tfile
3772
3773         import_file $tdir/$tfile $f
3774         local fid=$(path2fid $f)
3775
3776         cdt_set_no_retry
3777
3778         copytool_remove_backend $fid
3779
3780         $LFS hsm_restore $f
3781         wait_request_state $fid RESTORE FAILED
3782         local st=$?
3783
3784         # cleanup
3785         cdt_clear_no_retry
3786
3787         # Test result
3788         [[ $st == 0 ]] || error "Restore does not failed"
3789
3790         copytool_cleanup
3791 }
3792 run_test 111a "No retry policy (import case), restore will error"\
3793               " (No such file or directory)"
3794
3795 test_111b() {
3796         # test needs a running copytool
3797         copytool_setup
3798
3799         mkdir -p $DIR/$tdir
3800         local f=$DIR/$tdir/$tfile
3801         local fid=$(copy_file /etc/passwd $f)
3802         cdt_set_no_retry
3803         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3804         wait_request_state $fid ARCHIVE SUCCEED
3805         $LFS hsm_release $f
3806
3807         copytool_remove_backend $fid
3808
3809         $LFS hsm_restore $f
3810         wait_request_state $fid RESTORE FAILED
3811         local st=$?
3812
3813         # cleanup
3814         cdt_clear_no_retry
3815
3816         # Test result
3817         [[ $st == 0 ]] || error "Restore does not failed"
3818
3819         copytool_cleanup
3820 }
3821 run_test 111b "No retry policy (release case), restore will error"\
3822               " (No such file or directory)"
3823
3824 test_112() {
3825         # test needs a running copytool
3826         copytool_setup
3827
3828         mkdir -p $DIR/$tdir
3829         local f=$DIR/$tdir/$tfile
3830         local fid=$(copy_file /etc/passwd $f)
3831         cdt_disable
3832         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3833         local l=$($LFS hsm_action $f)
3834         echo $l
3835         local res=$(echo $l | cut -f 2- -d" " | grep ARCHIVE)
3836
3837         # cleanup
3838         cdt_enable
3839         wait_request_state $fid ARCHIVE SUCCEED
3840
3841         # Test result
3842         [[ ! -z "$res" ]] || error "action is $l which is not an ARCHIVE"
3843
3844         copytool_cleanup
3845 }
3846 run_test 112 "State of recorded request"
3847
3848 test_200() {
3849         # test needs a running copytool
3850         copytool_setup
3851
3852         mkdir -p $DIR/$tdir
3853         local f=$DIR/$tdir/$tfile
3854         local fid
3855         fid=$(make_large_for_cancel $f)
3856         [ $? != 0 ] && skip "not enough free space" && return
3857
3858         # test with cdt on is made in test_221
3859         cdt_disable
3860         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3861         # wait archive to register at CDT
3862         wait_request_state $fid ARCHIVE WAITING
3863         $LFS hsm_cancel $f
3864         cdt_enable
3865         wait_request_state $fid ARCHIVE CANCELED
3866         wait_request_state $fid CANCEL SUCCEED
3867
3868         copytool_cleanup
3869 }
3870 run_test 200 "Register/Cancel archive"
3871
3872 test_201() {
3873         # test needs a running copytool
3874         copytool_setup
3875
3876         mkdir -p $DIR/$tdir
3877         local f=$DIR/$tdir/$tfile
3878         make_archive $tdir/$tfile
3879         import_file $tdir/$tfile $f
3880         local fid=$(path2fid $f)
3881
3882         # test with cdt on is made in test_222
3883         cdt_disable
3884         $LFS hsm_restore $f
3885         # wait restore to register at CDT
3886         wait_request_state $fid RESTORE WAITING
3887         $LFS hsm_cancel $f
3888         cdt_enable
3889         wait_request_state $fid RESTORE CANCELED
3890         wait_request_state $fid CANCEL SUCCEED
3891
3892         copytool_cleanup
3893 }
3894 run_test 201 "Register/Cancel restore"
3895
3896 test_202() {
3897         # test needs a running copytool
3898         copytool_setup
3899
3900         mkdir -p $DIR/$tdir
3901         local f=$DIR/$tdir/$tfile
3902         local fid
3903         fid=$(make_large_for_progress $f)
3904         [ $? != 0 ] && skip "not enough free space" && return
3905
3906         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3907         wait_request_state $fid ARCHIVE SUCCEED
3908
3909         cdt_disable
3910         $LFS hsm_remove $f
3911         # wait remove to register at CDT
3912         wait_request_state $fid REMOVE WAITING
3913         $LFS hsm_cancel $f
3914         cdt_enable
3915         wait_request_state $fid REMOVE CANCELED
3916
3917         copytool_cleanup
3918 }
3919 run_test 202 "Register/Cancel remove"
3920
3921 test_220() {
3922         # test needs a running copytool
3923         copytool_setup
3924
3925         mkdir -p $DIR/$tdir
3926
3927         local f=$DIR/$tdir/$tfile
3928         local fid=$(copy_file /etc/passwd $f)
3929
3930         changelog_setup
3931
3932         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3933         wait_request_state $fid ARCHIVE SUCCEED
3934
3935         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3936         changelog_cleanup
3937
3938         local target=0x0
3939         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
3940
3941         copytool_cleanup
3942 }
3943 run_test 220 "Changelog for archive"
3944
3945 test_221() {
3946         # test needs a running copytool
3947         copytool_setup
3948
3949         mkdir -p $DIR/$tdir
3950
3951         local f=$DIR/$tdir/$tfile
3952         local fid
3953         fid=$(make_large_for_cancel $f)
3954         [ $? != 0 ] && skip "not enough free space" && return
3955
3956         changelog_setup
3957
3958         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3959         wait_request_state $fid ARCHIVE STARTED
3960         $LFS hsm_cancel $f
3961         wait_request_state $fid ARCHIVE CANCELED
3962         wait_request_state $fid CANCEL SUCCEED
3963
3964         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3965
3966         local target=0x7d
3967         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
3968
3969         cleanup
3970 }
3971 run_test 221 "Changelog for archive canceled"
3972
3973 test_222a() {
3974         # test needs a running copytool
3975         copytool_setup
3976
3977         mkdir -p $DIR/$tdir
3978         copy2archive /etc/passwd $tdir/$tfile
3979
3980         local f=$DIR/$tdir/$tfile
3981         import_file $tdir/$tfile $f
3982         local fid=$(path2fid $f)
3983
3984         changelog_setup
3985
3986         $LFS hsm_restore $f
3987         wait_request_state $fid RESTORE SUCCEED
3988
3989         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3990
3991         local target=0x80
3992         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
3993
3994         cleanup
3995 }
3996 run_test 222a "Changelog for explicit restore"
3997
3998 test_222b() {
3999         # test needs a running copytool
4000         copytool_setup
4001
4002         mkdir -p $DIR/$tdir
4003         local f=$DIR/$tdir/$tfile
4004         local fid=$(copy_file /etc/passwd $f)
4005
4006         changelog_setup
4007         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
4008         wait_request_state $fid ARCHIVE SUCCEED
4009         $LFS hsm_release $f
4010
4011         md5sum $f
4012
4013         wait_request_state $fid RESTORE SUCCEED
4014
4015         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
4016
4017         local target=0x80
4018         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
4019
4020         cleanup
4021 }
4022 run_test 222b "Changelog for implicit restore"
4023
4024 test_223a() {
4025         # test needs a running copytool
4026         copytool_setup
4027
4028         mkdir -p $DIR/$tdir
4029
4030         local f=$DIR/$tdir/$tfile
4031         make_archive $tdir/$tfile
4032
4033         changelog_setup
4034
4035         import_file $tdir/$tfile $f
4036         local fid=$(path2fid $f)
4037
4038         $LFS hsm_restore $f
4039         wait_request_state $fid RESTORE STARTED
4040         $LFS hsm_cancel $f
4041         wait_request_state $fid RESTORE CANCELED
4042         wait_request_state $fid CANCEL SUCCEED
4043
4044         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
4045
4046         local target=0xfd
4047         [[ $flags == $target ]] ||
4048                 error "Changelog flag is $flags not $target"
4049
4050         cleanup
4051 }
4052 run_test 223a "Changelog for restore canceled (import case)"
4053
4054 test_223b() {
4055         # test needs a running copytool
4056         copytool_setup
4057
4058         mkdir -p $DIR/$tdir
4059
4060         local f=$DIR/$tdir/$tfile
4061         local fid
4062         fid=$(make_large_for_progress $f)
4063         [ $? != 0 ] && skip "not enough free space" && return
4064
4065         changelog_setup
4066         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
4067         wait_request_state $fid ARCHIVE SUCCEED
4068         $LFS hsm_release $f
4069         $LFS hsm_restore $f
4070         wait_request_state $fid RESTORE STARTED
4071         $LFS hsm_cancel $f
4072         wait_request_state $fid RESTORE CANCELED
4073         wait_request_state $fid CANCEL SUCCEED
4074
4075         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
4076
4077         local target=0xfd
4078         [[ $flags == $target ]] ||
4079                 error "Changelog flag is $flags not $target"
4080
4081         cleanup
4082 }
4083 run_test 223b "Changelog for restore canceled (release case)"
4084
4085 test_224() {
4086         # test needs a running copytool
4087         copytool_setup
4088
4089         mkdir -p $DIR/$tdir
4090
4091         local f=$DIR/$tdir/$tfile
4092         local fid=$(copy_file /etc/passwd $f)
4093
4094         changelog_setup
4095         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
4096         wait_request_state $fid ARCHIVE SUCCEED
4097
4098         $LFS hsm_remove $f
4099         wait_request_state $fid REMOVE SUCCEED
4100
4101         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -n 1)
4102
4103         local target=0x200
4104         [[ $flags == $target ]] ||
4105                 error "Changelog flag is $flags not $target"
4106
4107         cleanup
4108 }
4109 run_test 224 "Changelog for remove"
4110
4111 test_225() {
4112         # test needs a running copytool
4113         copytool_setup
4114
4115         # test is not usable because remove request is too fast
4116         # so it is always finished before cancel can be done ...
4117         echo "Test disabled"
4118         copytool_cleanup
4119         return 0
4120
4121         mkdir -p $DIR/$tdir
4122         local f=$DIR/$tdir/$tfile
4123         local fid
4124         fid=$(make_large_for_progress $f)
4125         [ $? != 0 ] && skip "not enough free space" && return
4126
4127         changelog_setup
4128         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
4129         wait_request_state $fid ARCHIVE SUCCEED
4130
4131         # if cdt is on, it can serve too quickly the request
4132         cdt_disable
4133         $LFS hsm_remove $f
4134         $LFS hsm_cancel $f
4135         cdt_enable
4136         wait_request_state $fid REMOVE CANCELED
4137         wait_request_state $fid CANCEL SUCCEED
4138
4139         flags=$(changelog_get_flags ${MDT[0]} RENME $fid2)
4140         local flags=$($LFS changelog ${MDT[0]} | grep HSM | grep $fid |
4141                 tail -n 1 | awk '{print $5}')
4142
4143         local target=0x27d
4144         [[ $flags == $target ]] ||
4145                 error "Changelog flag is $flags not $target"
4146
4147         cleanup
4148 }
4149 run_test 225 "Changelog for remove canceled"
4150
4151 test_226() {
4152         # test needs a running copytool
4153         copytool_setup
4154
4155         mkdir -p $DIR/$tdir
4156
4157         local f1=$DIR/$tdir/$tfile-1
4158         local f2=$DIR/$tdir/$tfile-2
4159         local f3=$DIR/$tdir/$tfile-3
4160         local fid1=$(copy_file /etc/passwd $f1)
4161         local fid2=$(copy_file /etc/passwd $f2)
4162         copy_file /etc/passwd $f3
4163
4164         changelog_setup
4165         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f1
4166         wait_request_state $fid1 ARCHIVE SUCCEED
4167
4168         $LFS hsm_archive $f2
4169         wait_request_state $fid2 ARCHIVE SUCCEED
4170
4171         rm $f1 || error "rm $f1 failed"
4172
4173         local flags=$(changelog_get_flags ${MDT[0]} UNLNK $fid1)
4174
4175         local target=0x3
4176         [[ $flags == $target ]] ||
4177                 error "Changelog flag is $flags not $target"
4178
4179         mv $f3 $f2 || error "mv $f3 $f2 failed"
4180
4181         flags=$(changelog_get_flags ${MDT[0]} RENME $fid2)
4182
4183         target=0x3
4184         [[ $flags == $target ]] ||
4185                 error "Changelog flag is $flags not $target"
4186
4187         cleanup
4188 }
4189 run_test 226 "changelog for last rm/mv with exiting archive"
4190
4191 check_flags_changes() {
4192         local f=$1
4193         local fid=$2
4194         local hsm_flag=$3
4195         local fst=$4
4196         local cnt=$5
4197
4198         local target=0x280
4199         $LFS hsm_set --$hsm_flag $f ||
4200                 error "Cannot set $hsm_flag on $f"
4201         local flags=($(changelog_get_flags ${MDT[0]} HSM $fid))
4202         local seen=${#flags[*]}
4203         cnt=$((fst + cnt))
4204         [[ $seen == $cnt ]] ||
4205                 error "set $hsm_flag: Changelog events $seen != $cnt"
4206         [[ ${flags[$((cnt - 1))]} == $target ]] ||
4207                 error "set $hsm_flag: Changelog flags are "\
4208                         "${flags[$((cnt - 1))]} not $target"
4209
4210         $LFS hsm_clear --$hsm_flag $f ||
4211                 error "Cannot clear $hsm_flag on $f"
4212         flags=($(changelog_get_flags ${MDT[0]} HSM $fid))
4213         seen=${#flags[*]}
4214         cnt=$(($cnt + 1))
4215         [[ $cnt == $seen ]] ||
4216                 error "clear $hsm_flag: Changelog events $seen != $cnt"
4217
4218         [[ ${flags[$((cnt - 1))]} == $target ]] ||
4219                 error "clear $hsm_flag: Changelog flag is "\
4220                         "${flags[$((cnt - 1))]} not $target"
4221 }
4222
4223 test_227() {
4224         # test needs a running copytool
4225         copytool_setup
4226         changelog_setup
4227
4228         mkdir -p $DIR/$tdir
4229         typeset -a flags
4230
4231         for i in norelease noarchive exists archived
4232         do
4233                 local f=$DIR/$tdir/$tfile-$i
4234                 local fid=$(copy_file /etc/passwd $f)
4235                 check_flags_changes $f $fid $i 0 1
4236         done
4237
4238         f=$DIR/$tdir/$tfile---lost
4239         fid=$(copy_file /etc/passwd $f)
4240         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
4241         wait_request_state $fid ARCHIVE SUCCEED
4242         check_flags_changes $f $fid lost 3 1
4243
4244         cleanup
4245 }
4246 run_test 227 "changelog when explicit setting of HSM flags"
4247
4248 test_228() {
4249         # test needs a running copytool
4250         copytool_setup
4251
4252         local fid=$(make_small_sync $DIR/$tfile)
4253         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tfile
4254         wait_request_state $fid ARCHIVE SUCCEED
4255
4256         $LFS hsm_release $DIR/$tfile
4257         check_hsm_flags $DIR/$tfile "0x0000000d"
4258
4259         filefrag $DIR/$tfile | grep " 1 extent found" ||
4260                 error "filefrag on released file must return only one extent"
4261
4262         # only newer versions of cp detect sparse files by stat/FIEMAP
4263         # (LU-2580)
4264         cp --sparse=auto $DIR/$tfile $DIR/$tfile.2 ||
4265                 error "copying $DIR/$tfile"
4266         cmp $DIR/$tfile $DIR/$tfile.2 || error "comparing copied $DIR/$tfile"
4267
4268         $LFS hsm_release $DIR/$tfile
4269         check_hsm_flags $DIR/$tfile "0x0000000d"
4270
4271         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
4272
4273         tar cf - --sparse $DIR/$tfile | tar xvf - -C $DIR/$tdir ||
4274                 error "tar failed"
4275         cmp $DIR/$tfile $DIR/$tdir/$DIR/$tfile ||
4276                 error "comparing untarred $DIR/$tfile"
4277
4278         rm -f $DIR/$tfile $DIR/$tfile.2 ||
4279                 error "rm $DIR/$tfile or $DIR/$tfile.2 failed"
4280         copytool_cleanup
4281 }
4282 run_test 228 "On released file, return extend to FIEMAP. For [cp,tar] --sparse"
4283
4284 test_250() {
4285         # test needs a running copytool
4286         copytool_setup
4287
4288         mkdir -p $DIR/$tdir
4289         local maxrequest=$(get_hsm_param max_requests)
4290         local rqcnt=$(($maxrequest * 3))
4291         local i=""
4292
4293         cdt_disable
4294         for i in $(seq -w 1 $rqcnt); do
4295                 rm -f $DIR/$tdir/$i
4296                 dd if=/dev/urandom of=$DIR/$tdir/$i bs=1M count=10 conv=fsync
4297         done
4298         # we do it in 2 steps, so all requests arrive at the same time
4299         for i in $(seq -w 1 $rqcnt); do
4300                 $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tdir/$i
4301         done
4302         cdt_enable
4303         local cnt=$rqcnt
4304         local wt=$rqcnt
4305         while [[ $cnt != 0 || $wt != 0 ]]; do
4306                 sleep 1
4307                 cnt=$(do_facet $SINGLEMDS "$LCTL get_param -n\
4308                         $HSM_PARAM.actions |\
4309                         grep STARTED | grep -v CANCEL | wc -l")
4310                 [[ $cnt -le $maxrequest ]] ||
4311                         error "$cnt > $maxrequest too many started requests"
4312                 wt=$(do_facet $SINGLEMDS "$LCTL get_param\
4313                         $HSM_PARAM.actions |\
4314                         grep WAITING | wc -l")
4315                 echo "max=$maxrequest started=$cnt waiting=$wt"
4316         done
4317
4318         copytool_cleanup
4319 }
4320 run_test 250 "Coordinator max request"
4321
4322 test_251() {
4323         # test needs a running copytool
4324         copytool_setup
4325
4326         mkdir -p $DIR/$tdir
4327         local f=$DIR/$tdir/$tfile
4328         local fid
4329         fid=$(make_large_for_cancel $f)
4330         [ $? != 0 ] && skip "not enough free space" && return
4331
4332         cdt_disable
4333         # to have a short test
4334         local old_to=$(get_hsm_param active_request_timeout)
4335         set_hsm_param active_request_timeout 4
4336         # to be sure the cdt will wake up frequently so
4337         # it will be able to cancel the "old" request
4338         local old_loop=$(get_hsm_param loop_period)
4339         set_hsm_param loop_period 2
4340         cdt_enable
4341
4342         # clear locks to avoid extra delay caused by flush/cancel
4343         # and thus prevent early copytool death to timeout.
4344         cancel_lru_locks osc
4345
4346         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
4347         wait_request_state $fid ARCHIVE STARTED
4348         sleep 5
4349         wait_request_state $fid ARCHIVE CANCELED
4350
4351         set_hsm_param active_request_timeout $old_to
4352         set_hsm_param loop_period $old_loop
4353
4354         copytool_cleanup
4355 }
4356 run_test 251 "Coordinator request timeout"
4357
4358 test_300() {
4359         # the only way to test ondisk conf is to restart MDS ...
4360         echo "Stop coordinator and remove coordinator state at mount"
4361         # stop coordinator
4362         cdt_shutdown
4363         # clean on disk conf set by default
4364         cdt_clear_mount_state
4365         cdt_check_state stopped
4366
4367         # check cdt still off after umount/remount
4368         fail $SINGLEMDS
4369         cdt_check_state stopped
4370
4371         echo "Set coordinator start at mount, and start coordinator"
4372         cdt_set_mount_state enabled
4373
4374         # check cdt is on
4375         cdt_check_state enabled
4376
4377         # check cdt still on after umount/remount
4378         fail $SINGLEMDS
4379         cdt_check_state enabled
4380
4381         # we are back to original state (cdt started at mount)
4382 }
4383 run_test 300 "On disk coordinator state kept between MDT umount/mount"
4384
4385 test_301() {
4386         local ai=$(get_hsm_param default_archive_id)
4387         local new=$((ai + 1))
4388
4389         set_hsm_param default_archive_id $new -P
4390         fail $SINGLEMDS
4391         local res=$(get_hsm_param default_archive_id)
4392
4393         # clear value
4394         set_hsm_param default_archive_id "" "-P -d"
4395
4396         [[ $new == $res ]] || error "Value after MDS restart is $res != $new"
4397 }
4398 run_test 301 "HSM tunnable are persistent"
4399
4400 test_302() {
4401         local ai=$(get_hsm_param default_archive_id)
4402         local new=$((ai + 1))
4403
4404         # stop coordinator
4405         cdt_shutdown
4406
4407         set_hsm_param default_archive_id $new -P
4408
4409         local mdtno
4410         for mdtno in $(seq 1 $MDSCOUNT); do
4411                 fail mds${mdtno}
4412         done
4413
4414         # check cdt is on
4415         cdt_check_state enabled
4416
4417         local res=$(get_hsm_param default_archive_id)
4418
4419         # clear value
4420         set_hsm_param default_archive_id "" "-P -d"
4421
4422         [[ $new == $res ]] || error "Value after MDS restart is $res != $new"
4423 }
4424 run_test 302 "HSM tunnable are persistent when CDT is off"
4425
4426 test_400() {
4427         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4428
4429         copytool_setup
4430
4431         mkdir -p $DIR/$tdir
4432
4433         local dir_mdt0=$DIR/$tdir/mdt0
4434         local dir_mdt1=$DIR/$tdir/mdt1
4435
4436         # create 1 dir per MDT
4437         $LFS mkdir -i 0 $dir_mdt0 || error "lfs mkdir"
4438         $LFS mkdir -i 1 $dir_mdt1 || error "lfs mkdir"
4439
4440         # create 1 file in each MDT
4441         local fid1=$(make_small $dir_mdt0/$tfile)
4442         local fid2=$(make_small $dir_mdt1/$tfile)
4443
4444         # check that hsm request on mdt0 is sent to the right MDS
4445         $LFS hsm_archive $dir_mdt0/$tfile || error "lfs hsm_archive"
4446         wait_request_state $fid1 ARCHIVE SUCCEED 0 &&
4447                 echo "archive successful on mdt0"
4448
4449         # check that hsm request on mdt1 is sent to the right MDS
4450         $LFS hsm_archive $dir_mdt1/$tfile || error "lfs hsm_archive"
4451         wait_request_state $fid2 ARCHIVE SUCCEED 1 &&
4452                 echo "archive successful on mdt1"
4453
4454         copytool_cleanup
4455         # clean test files and directories
4456         rm -rf $dir_mdt0 $dir_mdt1
4457 }
4458 run_test 400 "Single request is sent to the right MDT"
4459
4460 test_401() {
4461         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4462
4463         copytool_setup
4464
4465         mkdir -p $DIR/$tdir
4466
4467         local dir_mdt0=$DIR/$tdir/mdt0
4468         local dir_mdt1=$DIR/$tdir/mdt1
4469
4470         # create 1 dir per MDT
4471         $LFS mkdir -i 0 $dir_mdt0 || error "lfs mkdir"
4472         $LFS mkdir -i 1 $dir_mdt1 || error "lfs mkdir"
4473
4474         # create 1 file in each MDT
4475         local fid1=$(make_small $dir_mdt0/$tfile)
4476         local fid2=$(make_small $dir_mdt1/$tfile)
4477
4478         # check that compound requests are shunt to the rights MDTs
4479         $LFS hsm_archive $dir_mdt0/$tfile $dir_mdt1/$tfile ||
4480                 error "lfs hsm_archive"
4481         wait_request_state $fid1 ARCHIVE SUCCEED 0 &&
4482                 echo "archive successful on mdt0"
4483         wait_request_state $fid2 ARCHIVE SUCCEED 1 &&
4484                 echo "archive successful on mdt1"
4485
4486         copytool_cleanup
4487         # clean test files and directories
4488         rm -rf $dir_mdt0 $dir_mdt1
4489 }
4490 run_test 401 "Compound requests split and sent to their respective MDTs"
4491
4492 mdc_change_state() # facet, MDT_pattern, activate|deactivate
4493 {
4494         local facet=$1
4495         local pattern="$2"
4496         local state=$3
4497         local node=$(facet_active_host $facet)
4498         local mdc
4499         for mdc in $(do_facet $facet "$LCTL dl | grep -E ${pattern}-mdc" |
4500                         awk '{print $4}'); do
4501                 echo "$3 $mdc on $node"
4502                 do_facet $facet "$LCTL --device $mdc $state" || return 1
4503         done
4504 }
4505
4506 test_402() {
4507         # make sure there is no running copytool
4508         copytool_cleanup
4509
4510         # deactivate all mdc on agent1
4511         mdc_change_state $SINGLEAGT "$FSNAME-MDT000." "deactivate"
4512
4513         HSMTOOL_NOERROR=true copytool_setup $SINGLEAGT
4514
4515         check_agent_unregistered "uuid" # match any agent
4516
4517         # no expected running copytool
4518         search_copytools $agent && error "Copytool start should have failed"
4519
4520         # reactivate MDCs
4521         mdc_change_state $SINGLEAGT "$FSNAME-MDT000." "activate"
4522 }
4523 run_test 402 "Copytool start fails if all MDTs are inactive"
4524
4525 test_403() {
4526         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4527
4528         # make sure there is no running copytool
4529         copytool_cleanup
4530
4531         local agent=$(facet_active_host $SINGLEAGT)
4532
4533         # deactivate all mdc for MDT0001
4534         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "deactivate"
4535
4536         copytool_setup
4537         local uuid=$(get_agent_uuid $agent)
4538         # check the agent is registered on MDT0000, and not on MDT0001
4539         check_agent_registered_by_mdt $uuid 0
4540         check_agent_unregistered_by_mdt $uuid 1
4541
4542         # check running copytool process
4543         search_copytools $agent || error "No running copytools on $agent"
4544
4545         # reactivate all mdc for MDT0001
4546         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "activate"
4547
4548         # make sure the copytool is now registered to all MDTs
4549         check_agent_registered $uuid
4550
4551         copytool_cleanup
4552 }
4553 run_test 403 "Copytool starts with inactive MDT and register on reconnect"
4554
4555 test_404() {
4556         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4557
4558         copytool_setup
4559
4560         # create files on both MDT0000 and MDT0001
4561         mkdir -p $DIR/$tdir
4562
4563         local dir_mdt0=$DIR/$tdir/mdt0
4564         $LFS mkdir -i 0 $dir_mdt0 || error "lfs mkdir"
4565
4566         # create 1 file on mdt0
4567         local fid1=$(make_small $dir_mdt0/$tfile)
4568
4569         # deactivate all mdc for MDT0001
4570         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "deactivate"
4571
4572         # send an HSM request for files in MDT0000
4573         $LFS hsm_archive $dir_mdt0/$tfile || error "lfs hsm_archive"
4574
4575         # check for completion of files in MDT0000
4576         wait_request_state $fid1 ARCHIVE SUCCEED 0 &&
4577                 echo "archive successful on mdt0"
4578
4579         # reactivate all mdc for MDT0001
4580         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "activate"
4581
4582         copytool_cleanup
4583         # clean test files and directories
4584         rm -rf $dir_mdt0
4585 }
4586 run_test 404 "Inactive MDT does not block requests for active MDTs"
4587
4588 test_405() {
4589         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4590
4591         copytool_setup
4592
4593         mkdir -p $DIR/$tdir
4594
4595         local striped_dir=$DIR/$tdir/striped_dir
4596
4597         # create striped dir on all of MDTs
4598         $LFS mkdir -i 0 -c $MDSCOUNT $striped_dir || error "lfs mkdir"
4599
4600         local fid1=$(make_small_sync $striped_dir/${tfile}_0)
4601         local fid2=$(make_small_sync $striped_dir/${tfile}_1)
4602         local fid3=$(make_small_sync $striped_dir/${tfile}_2)
4603         local fid4=$(make_small_sync $striped_dir/${tfile}_3)
4604
4605         local idx1=$($LFS getstripe -M $striped_dir/${tfile}_0)
4606         local idx2=$($LFS getstripe -M $striped_dir/${tfile}_1)
4607         local idx3=$($LFS getstripe -M $striped_dir/${tfile}_2)
4608         local idx4=$($LFS getstripe -M $striped_dir/${tfile}_3)
4609
4610         # check that compound requests are shunt to the rights MDTs
4611         $LFS hsm_archive $striped_dir/${tfile}_0 $striped_dir/${tfile}_1  \
4612                          $striped_dir/${tfile}_2 $striped_dir/${tfile}_3 ||
4613                 error "lfs hsm_archive"
4614
4615         wait_request_state $fid1 ARCHIVE SUCCEED $idx1 &&
4616                 echo "archive successful on $fid1"
4617         wait_request_state $fid2 ARCHIVE SUCCEED $idx2 &&
4618                 echo "archive successful on $fid2"
4619         wait_request_state $fid3 ARCHIVE SUCCEED $idx3 &&
4620                 echo "archive successful on $fid3"
4621         wait_request_state $fid4 ARCHIVE SUCCEED $idx4 &&
4622                 echo "archive successful on $fid4"
4623
4624         $LFS hsm_release $striped_dir/${tfile}_0 || error "lfs hsm_release 1"
4625         $LFS hsm_release $striped_dir/${tfile}_1 || error "lfs hsm_release 2"
4626         $LFS hsm_release $striped_dir/${tfile}_2 || error "lfs hsm_release 3"
4627         $LFS hsm_release $striped_dir/${tfile}_3 || error "lfs hsm_release 4"
4628
4629         cat $striped_dir/${tfile}_0 > /dev/null || error "cat ${tfile}_0 failed"
4630         cat $striped_dir/${tfile}_1 > /dev/null || error "cat ${tfile}_1 failed"
4631         cat $striped_dir/${tfile}_2 > /dev/null || error "cat ${tfile}_2 failed"
4632         cat $striped_dir/${tfile}_3 > /dev/null || error "cat ${tfile}_3 failed"
4633
4634         copytool_cleanup
4635 }
4636 run_test 405 "archive and release under striped directory"
4637
4638 test_406() {
4639         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4640
4641         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
4642                 skip "need MDS version at least 2.7.64" && return 0
4643
4644         local fid
4645         local mdt_index
4646
4647         copytool_setup
4648         mkdir -p $DIR/$tdir
4649         fid=$(make_small $DIR/$tdir/$tfile)
4650         echo "old fid $fid"
4651
4652         $LFS hsm_archive $DIR/$tdir/$tfile
4653         wait_request_state "$fid" ARCHIVE SUCCEED
4654         $LFS hsm_release $DIR/$tdir/$tfile
4655
4656         # Should migrate $tdir but not $tfile.
4657         $LFS mv -M1 $DIR/$tdir &&
4658                 error "migrating HSM an archived file should fail"
4659
4660         $LFS hsm_restore $DIR/$tdir/$tfile
4661         wait_request_state "$fid" RESTORE SUCCEED
4662
4663         $LFS hsm_remove $DIR/$tdir/$tfile
4664         wait_request_state "$fid" REMOVE SUCCEED
4665
4666         cat $DIR/$tdir/$tfile > /dev/null ||
4667                 error "cannot read $DIR/$tdir/$tfile"
4668
4669         $LFS mv -M1 $DIR/$tdir ||
4670                 error "cannot complete migration after HSM remove"
4671
4672         mdt_index=$($LFS getstripe -M $DIR/$tdir)
4673         if ((mdt_index != 1)); then
4674                 error "expected MDT index 1, got $mdt_index"
4675         fi
4676
4677         # Refresh fid after migration.
4678         fid=$(path2fid $DIR/$tdir/$tfile)
4679         echo "new fid $fid"
4680
4681         $LFS hsm_archive $DIR/$tdir/$tfile
4682         wait_request_state "$fid" ARCHIVE SUCCEED 1
4683
4684         lctl set_param debug=+trace
4685         $LFS hsm_release $DIR/$tdir/$tfile ||
4686                 error "cannot release $DIR/$tdir/$tfile"
4687
4688         $LFS hsm_restore $DIR/$tdir/$tfile
4689         wait_request_state "$fid" RESTORE SUCCEED 1
4690
4691         cat $DIR/$tdir/$tfile > /dev/null ||
4692                 error "cannot read $DIR/$tdir/$tfile"
4693
4694         copytool_cleanup
4695 }
4696 run_test 406 "attempting to migrate HSM archived files is safe"
4697
4698 test_500()
4699 {
4700         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
4701                 skip "HSM migrate is not supported" && return
4702
4703         # Stop the existing copytool
4704         copytool_cleanup
4705
4706         test_mkdir -p $DIR/$tdir
4707         llapi_hsm_test -d $DIR/$tdir || error "One llapi HSM test failed"
4708 }
4709 run_test 500 "various LLAPI HSM tests"
4710
4711 copytool_cleanup
4712
4713 complete $SECONDS
4714 check_and_cleanup_lustre
4715 exit_status