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