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