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