Whamcloud - gitweb
28a8d0222ec6a275843229b69584e74ee984fe4f
[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 cmd="$LCTL get_param -n ${mdt}.hsm.active_requests"
2807         cmd+=" | awk '/'$fid'.*action=ARCHIVE/ {print \\\$12}' | cut -f2 -d="
2808
2809         local RESULT
2810         local WAIT=0
2811         local sleep=1
2812
2813         echo -n "Expecting a progress update within $progress_timeout seconds... "
2814         while [ true ]; do
2815                 RESULT=$(do_node $(facet_active_host $mds) "$cmd")
2816                 if [ $RESULT -gt 0 ]; then
2817                         echo "$RESULT bytes copied in $WAIT seconds."
2818                         break
2819                 elif [ $WAIT -ge $progress_timeout ]; then
2820                         error "Timed out waiting for progress update!"
2821                         break
2822                 fi
2823                 WAIT=$((WAIT + sleep))
2824                 sleep $sleep
2825         done
2826
2827         local finish_at=$(date +%s)
2828         local elapsed=$((finish_at - start_at))
2829
2830         # Ensure that the progress update occurred within the expected window.
2831         if [ $elapsed -lt $interval ]; then
2832                 error "Expected progress update after at least $interval seconds"
2833         fi
2834
2835         cdt_clear_no_retry
2836         copytool_cleanup
2837 }
2838 run_test 60 "Changing progress update interval from default"
2839
2840 test_70() {
2841         # test needs a new running copytool
2842         copytool_cleanup
2843         copytool_monitor_setup
2844         HSMTOOL_EVENT_FIFO=$HSMTOOL_MONITOR_DIR/fifo copytool_setup
2845
2846         # Just start and stop the copytool to generate events.
2847         cdt_clear_no_retry
2848
2849         # Wait for the copytool to register.
2850         wait_update --verbose $(facet_active_host mds1) \
2851                 "$LCTL get_param -n ${MDT_PREFIX}0.hsm.agents | grep -o ^uuid" \
2852                 uuid 100 ||
2853                 error "copytool failed to register with MDT0000"
2854
2855         copytool_cleanup
2856
2857         local REGISTER_EVENT
2858         local UNREGISTER_EVENT
2859         while read event; do
2860                 local parsed=$(parse_json_event "$event")
2861                 if [ -z "$parsed" ]; then
2862                         error "Copytool sent malformed event: $event"
2863                 fi
2864                 eval $parsed
2865
2866                 if [ $event_type == "REGISTER" ]; then
2867                         REGISTER_EVENT=$event
2868                 elif [ $event_type == "UNREGISTER" ]; then
2869                         UNREGISTER_EVENT=$event
2870                 fi
2871         done < <(echo $"$(get_copytool_event_log)")
2872
2873         if [ -z "$REGISTER_EVENT" ]; then
2874                 error "Copytool failed to send register event to FIFO"
2875         fi
2876
2877         if [ -z "$UNREGISTER_EVENT" ]; then
2878                 error "Copytool failed to send unregister event to FIFO"
2879         fi
2880
2881         copytool_monitor_cleanup
2882         echo "Register/Unregister events look OK."
2883 }
2884 run_test 70 "Copytool logs JSON register/unregister events to FIFO"
2885
2886 test_71() {
2887         # Bump progress interval for livelier events.
2888         local interval=5
2889
2890         # test needs a new running copytool
2891         copytool_cleanup
2892         copytool_monitor_setup
2893         HSMTOOL_UPDATE_INTERVAL=$interval \
2894         HSMTOOL_EVENT_FIFO=$HSMTOOL_MONITOR_DIR/fifo copytool_setup
2895
2896         mkdir -p $DIR/$tdir
2897         local f=$DIR/$tdir/$tfile
2898         local fid
2899         fid=$(make_large_for_progress $f)
2900         [ $? != 0 ] && skip "not enough free space" && return
2901
2902         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2903                 error "could not archive file"
2904         wait_request_state $fid ARCHIVE SUCCEED
2905
2906         local expected_fields="event_time data_fid source_fid"
2907         expected_fields+=" total_bytes current_bytes"
2908
2909         local START_EVENT
2910         local FINISH_EVENT
2911         while read event; do
2912                 # Make sure we're not getting anything from previous events.
2913                 for field in $expected_fields; do
2914                         unset $field
2915                 done
2916
2917                 local parsed=$(parse_json_event "$event")
2918                 if [ -z "$parsed" ]; then
2919                         error "Copytool sent malformed event: $event"
2920                 fi
2921                 eval $parsed
2922
2923                 if [ $event_type == "ARCHIVE_START" ]; then
2924                         START_EVENT=$event
2925                         continue
2926                 elif [ $event_type == "ARCHIVE_FINISH" ]; then
2927                         FINISH_EVENT=$event
2928                         continue
2929                 elif [ $event_type != "ARCHIVE_RUNNING" ]; then
2930                         continue
2931                 fi
2932
2933                 # Do some simple checking of the progress update events.
2934                 for expected_field in $expected_fields; do
2935                         if [ -z ${!expected_field+x} ]; then
2936                                 error "Missing $expected_field field in event"
2937                         fi
2938                 done
2939
2940                 if [ $total_bytes -eq 0 ]; then
2941                         error "Expected total_bytes to be > 0"
2942                 fi
2943
2944                 # These should be identical throughout an archive
2945                 # operation.
2946                 if [ $source_fid != $data_fid ]; then
2947                         error "Expected source_fid to equal data_fid"
2948                 fi
2949         done < <(echo $"$(get_copytool_event_log)")
2950
2951         if [ -z "$START_EVENT" ]; then
2952                 error "Copytool failed to send archive start event to FIFO"
2953         fi
2954
2955         if [ -z "$FINISH_EVENT" ]; then
2956                 error "Copytool failed to send archive finish event to FIFO"
2957         fi
2958
2959         echo "Archive events look OK."
2960
2961         cdt_clear_no_retry
2962         copytool_cleanup
2963         copytool_monitor_cleanup
2964 }
2965 run_test 71 "Copytool logs JSON archive events to FIFO"
2966
2967 test_72() {
2968         # Bump progress interval for livelier events.
2969         local interval=5
2970
2971         # test needs a new running copytool
2972         copytool_cleanup
2973         copytool_monitor_setup
2974         HSMTOOL_UPDATE_INTERVAL=$interval \
2975         HSMTOOL_EVENT_FIFO=$HSMTOOL_MONITOR_DIR/fifo copytool_setup
2976         local test_file=$HSMTOOL_MONITOR_DIR/file
2977
2978         local cmd="dd if=/dev/urandom of=$test_file count=16 bs=1000000 "
2979         cmd+="conv=fsync"
2980         do_facet $SINGLEAGT "$cmd" ||
2981                 error "cannot create $test_file on $SINGLEAGT"
2982         copy2archive $test_file $tdir/$tfile
2983
2984         mkdir -p $DIR/$tdir
2985         local f=$DIR/$tdir/$tfile
2986         import_file $tdir/$tfile $f
2987         f=$DIR2/$tdir/$tfile
2988         echo "Verifying released state: "
2989         check_hsm_flags $f "0x0000000d"
2990
2991         local fid=$(path2fid $f)
2992         $LFS hsm_restore $f
2993         wait_request_state $fid RESTORE SUCCEED
2994
2995         local expected_fields="event_time data_fid source_fid"
2996         expected_fields+=" total_bytes current_bytes"
2997
2998         local START_EVENT
2999         local FINISH_EVENT
3000         while read event; do
3001                 # Make sure we're not getting anything from previous events.
3002                 for field in $expected_fields; do
3003                         unset $field
3004                 done
3005
3006                 local parsed=$(parse_json_event "$event")
3007                 if [ -z "$parsed" ]; then
3008                         error "Copytool sent malformed event: $event"
3009                 fi
3010                 eval $parsed
3011
3012                 if [ $event_type == "RESTORE_START" ]; then
3013                         START_EVENT=$event
3014                         if [ $source_fid != $data_fid ]; then
3015                                 error "source_fid should == data_fid at start"
3016                         fi
3017                         continue
3018                 elif [ $event_type == "RESTORE_FINISH" ]; then
3019                         FINISH_EVENT=$event
3020                         if [ $source_fid != $data_fid ]; then
3021                                 error "source_fid should == data_fid at finish"
3022                         fi
3023                         continue
3024                 elif [ $event_type != "RESTORE_RUNNING" ]; then
3025                         continue
3026                 fi
3027
3028                 # Do some simple checking of the progress update events.
3029                 for expected_field in $expected_fields; do
3030                         if [ -z ${!expected_field+x} ]; then
3031                                 error "Missing $expected_field field in event"
3032                         fi
3033                 done
3034
3035                 if [ $total_bytes -eq 0 ]; then
3036                         error "Expected total_bytes to be > 0"
3037                 fi
3038
3039                 # When a restore starts out, the data fid is the same as the
3040                 # source fid. After the restore has gotten going, we learn
3041                 # the new data fid. Once the restore has finished, the source
3042                 # fid is set to the new data fid.
3043                 #
3044                 # We test this because some monitoring software may depend on
3045                 # this behavior. If it changes, then the consumers of these
3046                 # events may need to be modified.
3047                 if [ $source_fid == $data_fid ]; then
3048                         error "source_fid should != data_fid during restore"
3049                 fi
3050         done < <(echo $"$(get_copytool_event_log)")
3051
3052         if [ -z "$START_EVENT" ]; then
3053                 error "Copytool failed to send restore start event to FIFO"
3054         fi
3055
3056         if [ -z "$FINISH_EVENT" ]; then
3057                 error "Copytool failed to send restore finish event to FIFO"
3058         fi
3059
3060         echo "Restore events look OK."
3061
3062         cdt_clear_no_retry
3063         copytool_cleanup
3064         copytool_monitor_cleanup
3065
3066         rm -rf $test_dir
3067 }
3068 run_test 72 "Copytool logs JSON restore events to FIFO"
3069
3070 test_90() {
3071         file_count=51 # Max number of files constrained by LNET message size
3072         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3073         local f=$DIR/$tdir/$tfile
3074         local FILELIST=/tmp/filelist.txt
3075         local i=""
3076
3077         rm -f $FILELIST
3078         for i in $(seq 1 $file_count); do
3079                 fid=$(copy_file /etc/hosts $f.$i)
3080                 echo $f.$i >> $FILELIST
3081         done
3082         # force copytool to use a local/temp archive dir to ensure best
3083         # performance vs remote/NFS mounts used in auto-tests
3084         if do_facet $SINGLEAGT "df --local $HSM_ARCHIVE" >/dev/null 2>&1 ; then
3085                 copytool_setup
3086         else
3087                 local dai=$(get_hsm_param default_archive_id)
3088                 copytool_setup $SINGLEAGT $MOUNT $dai $TMP/$tdir
3089         fi
3090         # to be sure wait_all_done will not be mislead by previous tests
3091         cdt_purge
3092         wait_for_grace_delay
3093         $LFS hsm_archive --filelist $FILELIST ||
3094                 error "cannot archive a file list"
3095         wait_all_done 100
3096         $LFS hsm_release --filelist $FILELIST ||
3097                 error "cannot release a file list"
3098         $LFS hsm_restore --filelist $FILELIST ||
3099                 error "cannot restore a file list"
3100         wait_all_done 100
3101         copytool_cleanup
3102 }
3103 run_test 90 "Archive/restore a file list"
3104
3105 double_verify_reset_hsm_param() {
3106         local p=$1
3107         echo "Testing $HSM_PARAM.$p"
3108         local val=$(get_hsm_param $p)
3109         local save=$val
3110         local val2=$(($val * 2))
3111         set_hsm_param $p $val2
3112         val=$(get_hsm_param $p)
3113         [[ $val == $val2 ]] ||
3114                 error "$HSM_PARAM.$p: $val != $val2 should be (2 * $save)"
3115         echo "Set $p to 0 must failed"
3116         set_hsm_param $p 0
3117         local rc=$?
3118         # restore value
3119         set_hsm_param $p $save
3120
3121         if [[ $rc == 0 ]]; then
3122                 error "we must not be able to set $HSM_PARAM.$p to 0"
3123         fi
3124 }
3125
3126 test_100() {
3127         double_verify_reset_hsm_param loop_period
3128         double_verify_reset_hsm_param grace_delay
3129         double_verify_reset_hsm_param active_request_timeout
3130         double_verify_reset_hsm_param max_requests
3131         double_verify_reset_hsm_param default_archive_id
3132 }
3133 run_test 100 "Set coordinator /proc tunables"
3134
3135 test_102() {
3136         cdt_disable
3137         cdt_enable
3138         cdt_restart
3139 }
3140 run_test 102 "Verify coordinator control"
3141
3142 test_103() {
3143         # test needs a running copytool
3144         copytool_setup
3145
3146         local i=""
3147         local fid=""
3148
3149         mkdir -p $DIR/$tdir
3150         for i in $(seq 1 20); do
3151                 fid=$(copy_file /etc/passwd $DIR/$tdir/$i)
3152         done
3153         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tdir/*
3154
3155         cdt_purge
3156
3157         echo "Current requests"
3158         local res=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3159                         $HSM_PARAM.actions |\
3160                         grep -v CANCELED | grep -v SUCCEED | grep -v FAILED")
3161
3162         [[ -z "$res" ]] || error "Some request have not been canceled"
3163
3164         copytool_cleanup
3165 }
3166 run_test 103 "Purge all requests"
3167
3168 DATA=CEA
3169 DATAHEX='[434541]'
3170 test_104() {
3171         # test needs a running copytool
3172         copytool_setup
3173
3174         mkdir -p $DIR/$tdir
3175         local f=$DIR/$tdir/$tfile
3176         local fid
3177         fid=$(make_large_for_progress $f)
3178         [ $? != 0 ] && skip "not enough free space" && return
3179
3180         # if cdt is on, it can serve too quickly the request
3181         cdt_disable
3182         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER --data $DATA $f
3183         local data1=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3184                         $HSM_PARAM.actions |\
3185                         grep $fid | cut -f16 -d=")
3186         cdt_enable
3187
3188         [[ "$data1" == "$DATAHEX" ]] ||
3189                 error "Data field in records is ($data1) and not ($DATAHEX)"
3190
3191         copytool_cleanup
3192 }
3193 run_test 104 "Copy tool data field"
3194
3195 test_105() {
3196         mkdir -p $DIR/$tdir
3197         local i=""
3198
3199         cdt_disable
3200         for i in $(seq -w 1 10); do
3201                 cp /etc/passwd $DIR/$tdir/$i
3202                 $LFS hsm_archive $DIR/$tdir/$i
3203         done
3204         local reqcnt1=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3205                         $HSM_PARAM.actions |\
3206                         grep WAITING | wc -l")
3207         cdt_restart
3208         cdt_disable
3209         local reqcnt2=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3210                         $HSM_PARAM.actions |\
3211                         grep WAITING | wc -l")
3212         cdt_enable
3213         cdt_purge
3214         [[ "$reqcnt1" == "$reqcnt2" ]] ||
3215                 error "Requests count after shutdown $reqcnt2 != "\
3216                       "before shutdown $reqcnt1"
3217 }
3218 run_test 105 "Restart of coordinator"
3219
3220 get_agent_by_uuid_mdt() {
3221         local uuid=$1
3222         local mdtidx=$2
3223         local mds=mds$(($mdtidx + 1))
3224         do_facet $mds "$LCTL get_param -n ${MDT_PREFIX}${mdtidx}.hsm.agents |\
3225                  grep $uuid"
3226 }
3227
3228 check_agent_registered_by_mdt() {
3229         local uuid=$1
3230         local mdtidx=$2
3231         local mds=mds$(($mdtidx + 1))
3232         local agent=$(get_agent_by_uuid_mdt $uuid $mdtidx)
3233         if [[ ! -z "$agent" ]]; then
3234                 echo "found agent $agent on $mds"
3235         else
3236                 error "uuid $uuid not found in agent list on $mds"
3237         fi
3238 }
3239
3240 check_agent_unregistered_by_mdt() {
3241         local uuid=$1
3242         local mdtidx=$2
3243         local mds=mds$(($mdtidx + 1))
3244         local agent=$(get_agent_by_uuid_mdt $uuid $mdtidx)
3245         if [[ -z "$agent" ]]; then
3246                 echo "uuid not found in agent list on $mds"
3247         else
3248                 error "uuid found in agent list on $mds: $agent"
3249         fi
3250 }
3251
3252 check_agent_registered() {
3253         local uuid=$1
3254         local mdsno
3255         for mdsno in $(seq 1 $MDSCOUNT); do
3256                 check_agent_registered_by_mdt $uuid $((mdsno - 1))
3257         done
3258 }
3259
3260 check_agent_unregistered() {
3261         local uuid=$1
3262         local mdsno
3263         for mdsno in $(seq 1 $MDSCOUNT); do
3264                 check_agent_unregistered_by_mdt $uuid $((mdsno - 1))
3265         done
3266 }
3267
3268 test_106() {
3269         local uuid=$(do_rpc_nodes $(facet_active_host $SINGLEAGT) \
3270                 get_client_uuid $MOUNT | cut -d' ' -f2)
3271
3272         copytool_setup
3273         check_agent_registered $uuid
3274
3275         search_copytools || error "No copytool found"
3276
3277         copytool_cleanup
3278         check_agent_unregistered $uuid
3279
3280         copytool_setup
3281         check_agent_registered $uuid
3282
3283         copytool_cleanup
3284 }
3285 run_test 106 "Copytool register/unregister"
3286
3287 test_107() {
3288         # test needs a running copytool
3289         copytool_setup
3290         # create and archive file
3291         mkdir -p $DIR/$tdir
3292         local f1=$DIR/$tdir/$tfile
3293         local fid=$(copy_file /etc/passwd $f1)
3294         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f1
3295         wait_request_state $fid ARCHIVE SUCCEED
3296         # shutdown and restart MDS
3297         fail $SINGLEMDS
3298         # check the copytool still gets messages from MDT
3299         local f2=$DIR/$tdir/2
3300         local fid=$(copy_file /etc/passwd $f2)
3301         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f2
3302         # main check of this sanity: this request MUST succeed
3303         wait_request_state $fid ARCHIVE SUCCEED
3304         copytool_cleanup
3305 }
3306 run_test 107 "Copytool re-register after MDS restart"
3307
3308 policy_set_and_test()
3309 {
3310         local change="$1"
3311         local target="$2"
3312         do_facet $SINGLEMDS $LCTL set_param "$HSM_PARAM.policy=\\\"$change\\\""
3313         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
3314         [[ "$policy" == "$target" ]] ||
3315                 error "Wrong policy after '$change': '$policy' != '$target'"
3316 }
3317
3318 test_109() {
3319         # to force default policy setting if error
3320         CDT_POLICY_HAD_CHANGED=true
3321
3322         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
3323         local default="NonBlockingRestore [NoRetryAction]"
3324         [[ "$policy" == "$default" ]] ||
3325                 error "default policy has changed,"\
3326                       " '$policy' != '$default' update the test"
3327         policy_set_and_test "+NBR" "[NonBlockingRestore] [NoRetryAction]"
3328         policy_set_and_test "+NRA" "[NonBlockingRestore] [NoRetryAction]"
3329         policy_set_and_test "-NBR" "NonBlockingRestore [NoRetryAction]"
3330         policy_set_and_test "-NRA" "NonBlockingRestore NoRetryAction"
3331         policy_set_and_test "NRA NBR" "[NonBlockingRestore] [NoRetryAction]"
3332         # useless bacause we know but safer for futur changes to use real value
3333         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
3334         echo "Next set_param must failed"
3335         policy_set_and_test "wrong" "$policy"
3336
3337         # return to default
3338         echo "Back to default policy"
3339         cdt_set_sanity_policy
3340 }
3341 run_test 109 "Policy display/change"
3342
3343 test_110a() {
3344         # test needs a running copytool
3345         copytool_setup
3346
3347         mkdir -p $DIR/$tdir
3348
3349         copy2archive /etc/passwd $tdir/$tfile
3350
3351         local f=$DIR/$tdir/$tfile
3352         import_file $tdir/$tfile $f
3353         local fid=$(path2fid $f)
3354
3355         cdt_set_non_blocking_restore
3356         md5sum $f
3357         local st=$?
3358
3359         # cleanup
3360         wait_request_state $fid RESTORE SUCCEED
3361         cdt_clear_non_blocking_restore
3362
3363         # Test result
3364         [[ $st == 1 ]] ||
3365                 error "md5sum returns $st != 1, "\
3366                         "should also perror ENODATA (No data available)"
3367
3368         copytool_cleanup
3369 }
3370 run_test 110a "Non blocking restore policy (import case)"
3371
3372 test_110b() {
3373         # test needs a running copytool
3374         copytool_setup
3375
3376         mkdir -p $DIR/$tdir
3377         local f=$DIR/$tdir/$tfile
3378         local fid=$(copy_file /etc/passwd $f)
3379         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3380         wait_request_state $fid ARCHIVE SUCCEED
3381         $LFS hsm_release $f
3382
3383         cdt_set_non_blocking_restore
3384         md5sum $f
3385         local st=$?
3386
3387         # cleanup
3388         wait_request_state $fid RESTORE SUCCEED
3389         cdt_clear_non_blocking_restore
3390
3391         # Test result
3392         [[ $st == 1 ]] ||
3393                 error "md5sum returns $st != 1, "\
3394                         "should also perror ENODATA (No data available)"
3395
3396         copytool_cleanup
3397 }
3398 run_test 110b "Non blocking restore policy (release case)"
3399
3400 test_111a() {
3401         # test needs a running copytool
3402         copytool_setup
3403
3404         mkdir -p $DIR/$tdir
3405         copy2archive /etc/passwd $tdir/$tfile
3406
3407         local f=$DIR/$tdir/$tfile
3408
3409         import_file $tdir/$tfile $f
3410         local fid=$(path2fid $f)
3411
3412         cdt_set_no_retry
3413
3414         copytool_remove_backend $fid
3415
3416         $LFS hsm_restore $f
3417         wait_request_state $fid RESTORE FAILED
3418         local st=$?
3419
3420         # cleanup
3421         cdt_clear_no_retry
3422
3423         # Test result
3424         [[ $st == 0 ]] || error "Restore does not failed"
3425
3426         copytool_cleanup
3427 }
3428 run_test 111a "No retry policy (import case), restore will error"\
3429               " (No such file or directory)"
3430
3431 test_111b() {
3432         # test needs a running copytool
3433         copytool_setup
3434
3435         mkdir -p $DIR/$tdir
3436         local f=$DIR/$tdir/$tfile
3437         local fid=$(copy_file /etc/passwd $f)
3438         cdt_set_no_retry
3439         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3440         wait_request_state $fid ARCHIVE SUCCEED
3441         $LFS hsm_release $f
3442
3443         copytool_remove_backend $fid
3444
3445         $LFS hsm_restore $f
3446         wait_request_state $fid RESTORE FAILED
3447         local st=$?
3448
3449         # cleanup
3450         cdt_clear_no_retry
3451
3452         # Test result
3453         [[ $st == 0 ]] || error "Restore does not failed"
3454
3455         copytool_cleanup
3456 }
3457 run_test 111b "No retry policy (release case), restore will error"\
3458               " (No such file or directory)"
3459
3460 test_112() {
3461         # test needs a running copytool
3462         copytool_setup
3463
3464         mkdir -p $DIR/$tdir
3465         local f=$DIR/$tdir/$tfile
3466         local fid=$(copy_file /etc/passwd $f)
3467         cdt_disable
3468         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3469         local l=$($LFS hsm_action $f)
3470         echo $l
3471         local res=$(echo $l | cut -f 2- -d" " | grep ARCHIVE)
3472
3473         # cleanup
3474         cdt_enable
3475         wait_request_state $fid ARCHIVE SUCCEED
3476
3477         # Test result
3478         [[ ! -z "$res" ]] || error "action is $l which is not an ARCHIVE"
3479
3480         copytool_cleanup
3481 }
3482 run_test 112 "State of recorded request"
3483
3484 test_200() {
3485         # test needs a running copytool
3486         copytool_setup
3487
3488         mkdir -p $DIR/$tdir
3489         local f=$DIR/$tdir/$tfile
3490         local fid
3491         fid=$(make_large_for_cancel $f)
3492         [ $? != 0 ] && skip "not enough free space" && return
3493
3494         # test with cdt on is made in test_221
3495         cdt_disable
3496         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3497         $LFS hsm_cancel $f
3498         cdt_enable
3499         wait_request_state $fid ARCHIVE CANCELED
3500         wait_request_state $fid CANCEL SUCCEED
3501
3502         copytool_cleanup
3503 }
3504 run_test 200 "Register/Cancel archive"
3505
3506 test_201() {
3507         # test needs a running copytool
3508         copytool_setup
3509
3510         mkdir -p $DIR/$tdir
3511         local f=$DIR/$tdir/$tfile
3512         make_archive $tdir/$tfile
3513         import_file $tdir/$tfile $f
3514         local fid=$(path2fid $f)
3515
3516         # test with cdt on is made in test_222
3517         cdt_disable
3518         $LFS hsm_restore $f
3519         $LFS hsm_cancel $f
3520         cdt_enable
3521         wait_request_state $fid RESTORE CANCELED
3522         wait_request_state $fid CANCEL SUCCEED
3523
3524         copytool_cleanup
3525 }
3526 run_test 201 "Register/Cancel restore"
3527
3528 test_202() {
3529         # test needs a running copytool
3530         copytool_setup
3531
3532         mkdir -p $DIR/$tdir
3533         local f=$DIR/$tdir/$tfile
3534         local fid
3535         fid=$(make_large_for_progress $f)
3536         [ $? != 0 ] && skip "not enough free space" && return
3537
3538         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3539         wait_request_state $fid ARCHIVE SUCCEED
3540
3541         cdt_disable
3542         $LFS hsm_remove $f
3543         $LFS hsm_cancel $f
3544         cdt_enable
3545         wait_request_state $fid REMOVE CANCELED
3546
3547         copytool_cleanup
3548 }
3549 run_test 202 "Register/Cancel remove"
3550
3551 test_220() {
3552         # test needs a running copytool
3553         copytool_setup
3554
3555         mkdir -p $DIR/$tdir
3556
3557         local f=$DIR/$tdir/$tfile
3558         local fid=$(copy_file /etc/passwd $f)
3559
3560         changelog_setup
3561
3562         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3563         wait_request_state $fid ARCHIVE SUCCEED
3564
3565         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3566         changelog_cleanup
3567
3568         local target=0x0
3569         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
3570
3571         copytool_cleanup
3572 }
3573 run_test 220 "Changelog for archive"
3574
3575 test_221() {
3576         # test needs a running copytool
3577         copytool_setup
3578
3579         mkdir -p $DIR/$tdir
3580
3581         local f=$DIR/$tdir/$tfile
3582         local fid
3583         fid=$(make_large_for_cancel $f)
3584         [ $? != 0 ] && skip "not enough free space" && return
3585
3586         changelog_setup
3587
3588         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3589         wait_request_state $fid ARCHIVE STARTED
3590         $LFS hsm_cancel $f
3591         wait_request_state $fid ARCHIVE CANCELED
3592         wait_request_state $fid CANCEL SUCCEED
3593
3594         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3595
3596         local target=0x7d
3597         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
3598
3599         cleanup
3600 }
3601 run_test 221 "Changelog for archive canceled"
3602
3603 test_222a() {
3604         # test needs a running copytool
3605         copytool_setup
3606
3607         mkdir -p $DIR/$tdir
3608         copy2archive /etc/passwd $tdir/$tfile
3609
3610         local f=$DIR/$tdir/$tfile
3611         import_file $tdir/$tfile $f
3612         local fid=$(path2fid $f)
3613
3614         changelog_setup
3615
3616         $LFS hsm_restore $f
3617         wait_request_state $fid RESTORE SUCCEED
3618
3619         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3620
3621         local target=0x80
3622         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
3623
3624         cleanup
3625 }
3626 run_test 222a "Changelog for explicit restore"
3627
3628 test_222b() {
3629         # test needs a running copytool
3630         copytool_setup
3631
3632         mkdir -p $DIR/$tdir
3633         local f=$DIR/$tdir/$tfile
3634         local fid=$(copy_file /etc/passwd $f)
3635
3636         changelog_setup
3637         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3638         wait_request_state $fid ARCHIVE SUCCEED
3639         $LFS hsm_release $f
3640
3641         md5sum $f
3642
3643         wait_request_state $fid RESTORE SUCCEED
3644
3645         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3646
3647         local target=0x80
3648         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
3649
3650         cleanup
3651 }
3652 run_test 222b "Changelog for implicit restore"
3653
3654 test_223a() {
3655         # test needs a running copytool
3656         copytool_setup
3657
3658         mkdir -p $DIR/$tdir
3659
3660         local f=$DIR/$tdir/$tfile
3661         make_archive $tdir/$tfile
3662
3663         changelog_setup
3664
3665         import_file $tdir/$tfile $f
3666         local fid=$(path2fid $f)
3667
3668         $LFS hsm_restore $f
3669         wait_request_state $fid RESTORE STARTED
3670         $LFS hsm_cancel $f
3671         wait_request_state $fid RESTORE CANCELED
3672         wait_request_state $fid CANCEL SUCCEED
3673
3674         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3675
3676         local target=0xfd
3677         [[ $flags == $target ]] ||
3678                 error "Changelog flag is $flags not $target"
3679
3680         cleanup
3681 }
3682 run_test 223a "Changelog for restore canceled (import case)"
3683
3684 test_223b() {
3685         # test needs a running copytool
3686         copytool_setup
3687
3688         mkdir -p $DIR/$tdir
3689
3690         local f=$DIR/$tdir/$tfile
3691         local fid
3692         fid=$(make_large_for_progress $f)
3693         [ $? != 0 ] && skip "not enough free space" && return
3694
3695         changelog_setup
3696         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3697         wait_request_state $fid ARCHIVE SUCCEED
3698         $LFS hsm_release $f
3699         $LFS hsm_restore $f
3700         wait_request_state $fid RESTORE STARTED
3701         $LFS hsm_cancel $f
3702         wait_request_state $fid RESTORE CANCELED
3703         wait_request_state $fid CANCEL SUCCEED
3704
3705         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -1)
3706
3707         local target=0xfd
3708         [[ $flags == $target ]] ||
3709                 error "Changelog flag is $flags not $target"
3710
3711         cleanup
3712 }
3713 run_test 223b "Changelog for restore canceled (release case)"
3714
3715 test_224() {
3716         # test needs a running copytool
3717         copytool_setup
3718
3719         mkdir -p $DIR/$tdir
3720
3721         local f=$DIR/$tdir/$tfile
3722         local fid=$(copy_file /etc/passwd $f)
3723
3724         changelog_setup
3725         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3726         wait_request_state $fid ARCHIVE SUCCEED
3727
3728         $LFS hsm_remove $f
3729         wait_request_state $fid REMOVE SUCCEED
3730
3731         local flags=$(changelog_get_flags ${MDT[0]} HSM $fid | tail -n 1)
3732
3733         local target=0x200
3734         [[ $flags == $target ]] ||
3735                 error "Changelog flag is $flags not $target"
3736
3737         cleanup
3738 }
3739 run_test 224 "Changelog for remove"
3740
3741 test_225() {
3742         # test needs a running copytool
3743         copytool_setup
3744
3745         # test is not usable because remove request is too fast
3746         # so it is always finished before cancel can be done ...
3747         echo "Test disabled"
3748         copytool_cleanup
3749         return 0
3750
3751         mkdir -p $DIR/$tdir
3752         local f=$DIR/$tdir/$tfile
3753         local fid
3754         fid=$(make_large_for_progress $f)
3755         [ $? != 0 ] && skip "not enough free space" && return
3756
3757         changelog_setup
3758         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3759         wait_request_state $fid ARCHIVE SUCCEED
3760
3761         # if cdt is on, it can serve too quickly the request
3762         cdt_disable
3763         $LFS hsm_remove $f
3764         $LFS hsm_cancel $f
3765         cdt_enable
3766         wait_request_state $fid REMOVE CANCELED
3767         wait_request_state $fid CANCEL SUCCEED
3768
3769         flags=$(changelog_get_flags ${MDT[0]} RENME $fid2)
3770         local flags=$($LFS changelog ${MDT[0]} | grep HSM | grep $fid |
3771                 tail -n 1 | awk '{print $5}')
3772
3773         local target=0x27d
3774         [[ $flags == $target ]] ||
3775                 error "Changelog flag is $flags not $target"
3776
3777         cleanup
3778 }
3779 run_test 225 "Changelog for remove canceled"
3780
3781 test_226() {
3782         # test needs a running copytool
3783         copytool_setup
3784
3785         mkdir -p $DIR/$tdir
3786
3787         local f1=$DIR/$tdir/$tfile-1
3788         local f2=$DIR/$tdir/$tfile-2
3789         local f3=$DIR/$tdir/$tfile-3
3790         local fid1=$(copy_file /etc/passwd $f1)
3791         local fid2=$(copy_file /etc/passwd $f2)
3792         copy_file /etc/passwd $f3
3793
3794         changelog_setup
3795         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f1
3796         wait_request_state $fid1 ARCHIVE SUCCEED
3797
3798         $LFS hsm_archive $f2
3799         wait_request_state $fid2 ARCHIVE SUCCEED
3800
3801         rm $f1 || error "rm $f1 failed"
3802
3803         local flags=$(changelog_get_flags ${MDT[0]} UNLNK $fid1)
3804
3805         local target=0x3
3806         [[ $flags == $target ]] ||
3807                 error "Changelog flag is $flags not $target"
3808
3809         mv $f3 $f2 || error "mv $f3 $f2 failed"
3810
3811         flags=$(changelog_get_flags ${MDT[0]} RENME $fid2)
3812
3813         target=0x3
3814         [[ $flags == $target ]] ||
3815                 error "Changelog flag is $flags not $target"
3816
3817         cleanup
3818 }
3819 run_test 226 "changelog for last rm/mv with exiting archive"
3820
3821 check_flags_changes() {
3822         local f=$1
3823         local fid=$2
3824         local hsm_flag=$3
3825         local fst=$4
3826         local cnt=$5
3827
3828         local target=0x280
3829         $LFS hsm_set --$hsm_flag $f ||
3830                 error "Cannot set $hsm_flag on $f"
3831         local flags=($(changelog_get_flags ${MDT[0]} HSM $fid))
3832         local seen=${#flags[*]}
3833         cnt=$((fst + cnt))
3834         [[ $seen == $cnt ]] ||
3835                 error "set $hsm_flag: Changelog events $seen != $cnt"
3836         [[ ${flags[$((cnt - 1))]} == $target ]] ||
3837                 error "set $hsm_flag: Changelog flags are "\
3838                         "${flags[$((cnt - 1))]} not $target"
3839
3840         $LFS hsm_clear --$hsm_flag $f ||
3841                 error "Cannot clear $hsm_flag on $f"
3842         flags=($(changelog_get_flags ${MDT[0]} HSM $fid))
3843         seen=${#flags[*]}
3844         cnt=$(($cnt + 1))
3845         [[ $cnt == $seen ]] ||
3846                 error "clear $hsm_flag: Changelog events $seen != $cnt"
3847
3848         [[ ${flags[$((cnt - 1))]} == $target ]] ||
3849                 error "clear $hsm_flag: Changelog flag is "\
3850                         "${flags[$((cnt - 1))]} not $target"
3851 }
3852
3853 test_227() {
3854         # test needs a running copytool
3855         copytool_setup
3856         changelog_setup
3857
3858         mkdir -p $DIR/$tdir
3859         typeset -a flags
3860
3861         for i in norelease noarchive exists archived
3862         do
3863                 local f=$DIR/$tdir/$tfile-$i
3864                 local fid=$(copy_file /etc/passwd $f)
3865                 check_flags_changes $f $fid $i 0 1
3866         done
3867
3868         f=$DIR/$tdir/$tfile---lost
3869         fid=$(copy_file /etc/passwd $f)
3870         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3871         wait_request_state $fid ARCHIVE SUCCEED
3872         check_flags_changes $f $fid lost 3 1
3873
3874         cleanup
3875 }
3876 run_test 227 "changelog when explicit setting of HSM flags"
3877
3878 test_228() {
3879         # test needs a running copytool
3880         copytool_setup
3881
3882         local fid=$(make_small_sync $DIR/$tfile)
3883         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tfile
3884         wait_request_state $fid ARCHIVE SUCCEED
3885
3886         $LFS hsm_release $DIR/$tfile
3887         check_hsm_flags $DIR/$tfile "0x0000000d"
3888
3889         filefrag $DIR/$tfile | grep " 1 extent found" ||
3890                 error "filefrag on released file must return only one extent"
3891
3892         # only newer versions of cp detect sparse files by stat/FIEMAP
3893         # (LU-2580)
3894         cp --sparse=auto $DIR/$tfile $DIR/$tfile.2 ||
3895                 error "copying $DIR/$tfile"
3896         cmp $DIR/$tfile $DIR/$tfile.2 || error "comparing copied $DIR/$tfile"
3897
3898         $LFS hsm_release $DIR/$tfile
3899         check_hsm_flags $DIR/$tfile "0x0000000d"
3900
3901         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
3902
3903         tar cf - --sparse $DIR/$tfile | tar xvf - -C $DIR/$tdir ||
3904                 error "tar failed"
3905         cmp $DIR/$tfile $DIR/$tdir/$DIR/$tfile ||
3906                 error "comparing untarred $DIR/$tfile"
3907
3908         rm -f $DIR/$tfile $DIR/$tfile.2 ||
3909                 error "rm $DIR/$tfile or $DIR/$tfile.2 failed"
3910         copytool_cleanup
3911 }
3912 run_test 228 "On released file, return extend to FIEMAP. For [cp,tar] --sparse"
3913
3914 test_250() {
3915         # test needs a running copytool
3916         copytool_setup
3917
3918         mkdir -p $DIR/$tdir
3919         local maxrequest=$(get_hsm_param max_requests)
3920         local rqcnt=$(($maxrequest * 3))
3921         local i=""
3922
3923         cdt_disable
3924         for i in $(seq -w 1 $rqcnt); do
3925                 rm -f $DIR/$tdir/$i
3926                 dd if=/dev/urandom of=$DIR/$tdir/$i bs=1M count=10 conv=fsync
3927         done
3928         # we do it in 2 steps, so all requests arrive at the same time
3929         for i in $(seq -w 1 $rqcnt); do
3930                 $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tdir/$i
3931         done
3932         cdt_enable
3933         local cnt=$rqcnt
3934         local wt=$rqcnt
3935         while [[ $cnt != 0 || $wt != 0 ]]; do
3936                 sleep 1
3937                 cnt=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3938                         $HSM_PARAM.actions |\
3939                         grep STARTED | grep -v CANCEL | wc -l")
3940                 [[ $cnt -le $maxrequest ]] ||
3941                         error "$cnt > $maxrequest too many started requests"
3942                 wt=$(do_facet $SINGLEMDS "$LCTL get_param\
3943                         $HSM_PARAM.actions |\
3944                         grep WAITING | wc -l")
3945                 echo "max=$maxrequest started=$cnt waiting=$wt"
3946         done
3947
3948         copytool_cleanup
3949 }
3950 run_test 250 "Coordinator max request"
3951
3952 test_251() {
3953         # test needs a running copytool
3954         copytool_setup
3955
3956         mkdir -p $DIR/$tdir
3957         local f=$DIR/$tdir/$tfile
3958         local fid
3959         fid=$(make_large_for_cancel $f)
3960         [ $? != 0 ] && skip "not enough free space" && return
3961
3962         cdt_disable
3963         # to have a short test
3964         local old_to=$(get_hsm_param active_request_timeout)
3965         set_hsm_param active_request_timeout 4
3966         # to be sure the cdt will wake up frequently so
3967         # it will be able to cancel the "old" request
3968         local old_loop=$(get_hsm_param loop_period)
3969         set_hsm_param loop_period 2
3970         cdt_enable
3971
3972         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3973         wait_request_state $fid ARCHIVE STARTED
3974         sleep 5
3975         wait_request_state $fid ARCHIVE CANCELED
3976
3977         set_hsm_param active_request_timeout $old_to
3978         set_hsm_param loop_period $old_loop
3979
3980         copytool_cleanup
3981 }
3982 run_test 251 "Coordinator request timeout"
3983
3984 test_300() {
3985         # the only way to test ondisk conf is to restart MDS ...
3986         echo "Stop coordinator and remove coordinator state at mount"
3987         # stop coordinator
3988         cdt_shutdown
3989         # clean on disk conf set by default
3990         cdt_clear_mount_state
3991         cdt_check_state stopped
3992
3993         # check cdt still off after umount/remount
3994         fail $SINGLEMDS
3995         cdt_check_state stopped
3996
3997         echo "Set coordinator start at mount, and start coordinator"
3998         cdt_set_mount_state enabled
3999
4000         # check cdt is on
4001         cdt_check_state enabled
4002
4003         # check cdt still on after umount/remount
4004         fail $SINGLEMDS
4005         cdt_check_state enabled
4006
4007         # we are back to original state (cdt started at mount)
4008 }
4009 run_test 300 "On disk coordinator state kept between MDT umount/mount"
4010
4011 test_301() {
4012         local ai=$(get_hsm_param default_archive_id)
4013         local new=$((ai + 1))
4014
4015         set_hsm_param default_archive_id $new -P
4016         fail $SINGLEMDS
4017         local res=$(get_hsm_param default_archive_id)
4018
4019         # clear value
4020         set_hsm_param default_archive_id "" "-P -d"
4021
4022         [[ $new == $res ]] || error "Value after MDS restart is $res != $new"
4023 }
4024 run_test 301 "HSM tunnable are persistent"
4025
4026 test_302() {
4027         local ai=$(get_hsm_param default_archive_id)
4028         local new=$((ai + 1))
4029
4030         # stop coordinator
4031         cdt_shutdown
4032
4033         set_hsm_param default_archive_id $new -P
4034
4035         local mdtno
4036         for mdtno in $(seq 1 $MDSCOUNT); do
4037                 fail mds${mdtno}
4038         done
4039
4040         # check cdt is on
4041         cdt_check_state enabled
4042
4043         local res=$(get_hsm_param default_archive_id)
4044
4045         # clear value
4046         set_hsm_param default_archive_id "" "-P -d"
4047
4048         [[ $new == $res ]] || error "Value after MDS restart is $res != $new"
4049 }
4050 run_test 302 "HSM tunnable are persistent when CDT is off"
4051
4052 test_400() {
4053         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4054
4055         copytool_setup
4056
4057         mkdir -p $DIR/$tdir
4058
4059         local dir_mdt0=$DIR/$tdir/mdt0
4060         local dir_mdt1=$DIR/$tdir/mdt1
4061
4062         # create 1 dir per MDT
4063         $LFS mkdir -i 0 $dir_mdt0 || error "lfs mkdir"
4064         $LFS mkdir -i 1 $dir_mdt1 || error "lfs mkdir"
4065
4066         # create 1 file in each MDT
4067         local fid1=$(make_small $dir_mdt0/$tfile)
4068         local fid2=$(make_small $dir_mdt1/$tfile)
4069
4070         # check that hsm request on mdt0 is sent to the right MDS
4071         $LFS hsm_archive $dir_mdt0/$tfile || error "lfs hsm_archive"
4072         wait_request_state $fid1 ARCHIVE SUCCEED 0 &&
4073                 echo "archive successful on mdt0"
4074
4075         # check that hsm request on mdt1 is sent to the right MDS
4076         $LFS hsm_archive $dir_mdt1/$tfile || error "lfs hsm_archive"
4077         wait_request_state $fid2 ARCHIVE SUCCEED 1 &&
4078                 echo "archive successful on mdt1"
4079
4080         copytool_cleanup
4081         # clean test files and directories
4082         rm -rf $dir_mdt0 $dir_mdt1
4083 }
4084 run_test 400 "Single request is sent to the right MDT"
4085
4086 test_401() {
4087         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4088
4089         copytool_setup
4090
4091         mkdir -p $DIR/$tdir
4092
4093         local dir_mdt0=$DIR/$tdir/mdt0
4094         local dir_mdt1=$DIR/$tdir/mdt1
4095
4096         # create 1 dir per MDT
4097         $LFS mkdir -i 0 $dir_mdt0 || error "lfs mkdir"
4098         $LFS mkdir -i 1 $dir_mdt1 || error "lfs mkdir"
4099
4100         # create 1 file in each MDT
4101         local fid1=$(make_small $dir_mdt0/$tfile)
4102         local fid2=$(make_small $dir_mdt1/$tfile)
4103
4104         # check that compound requests are shunt to the rights MDTs
4105         $LFS hsm_archive $dir_mdt0/$tfile $dir_mdt1/$tfile ||
4106                 error "lfs hsm_archive"
4107         wait_request_state $fid1 ARCHIVE SUCCEED 0 &&
4108                 echo "archive successful on mdt0"
4109         wait_request_state $fid2 ARCHIVE SUCCEED 1 &&
4110                 echo "archive successful on mdt1"
4111
4112         copytool_cleanup
4113         # clean test files and directories
4114         rm -rf $dir_mdt0 $dir_mdt1
4115 }
4116 run_test 401 "Compound requests split and sent to their respective MDTs"
4117
4118 mdc_change_state() # facet, MDT_pattern, activate|deactivate
4119 {
4120         local facet=$1
4121         local pattern="$2"
4122         local state=$3
4123         local node=$(facet_active_host $facet)
4124         local mdc
4125         for mdc in $(do_facet $facet "$LCTL dl | grep -E ${pattern}-mdc" |
4126                         awk '{print $4}'); do
4127                 echo "$3 $mdc on $node"
4128                 do_facet $facet "$LCTL --device $mdc $state" || return 1
4129         done
4130 }
4131
4132 test_402() {
4133         # make sure there is no running copytool
4134         copytool_cleanup
4135
4136         # deactivate all mdc on agent1
4137         mdc_change_state $SINGLEAGT "$FSNAME-MDT000." "deactivate"
4138
4139         HSMTOOL_NOERROR=true copytool_setup $SINGLEAGT
4140
4141         check_agent_unregistered "uuid" # match any agent
4142
4143         # no expected running copytool
4144         search_copytools $agent && error "Copytool start should have failed"
4145
4146         # reactivate MDCs
4147         mdc_change_state $SINGLEAGT "$FSNAME-MDT000." "activate"
4148 }
4149 run_test 402 "Copytool start fails if all MDTs are inactive"
4150
4151 test_403() {
4152         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4153
4154         # make sure there is no running copytool
4155         copytool_cleanup
4156
4157         local agent=$(facet_active_host $SINGLEAGT)
4158         local uuid=$(do_rpc_nodes $agent get_client_uuid | cut -d' ' -f2)
4159
4160         # deactivate all mdc for MDT0001
4161         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "deactivate"
4162
4163         copytool_setup
4164         # check the agent is registered on MDT0000, and not on MDT0001
4165         check_agent_registered_by_mdt $uuid 0
4166         check_agent_unregistered_by_mdt $uuid 1
4167
4168         # check running copytool process
4169         search_copytools $agent || error "No running copytools on $agent"
4170
4171         # reactivate all mdc for MDT0001
4172         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "activate"
4173
4174         # make sure the copytool is now registered to all MDTs
4175         check_agent_registered $uuid
4176
4177         copytool_cleanup
4178 }
4179 run_test 403 "Copytool starts with inactive MDT and register on reconnect"
4180
4181 test_404() {
4182         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4183
4184         copytool_setup
4185
4186         # create files on both MDT0000 and MDT0001
4187         mkdir -p $DIR/$tdir
4188
4189         local dir_mdt0=$DIR/$tdir/mdt0
4190         $LFS mkdir -i 0 $dir_mdt0 || error "lfs mkdir"
4191
4192         # create 1 file on mdt0
4193         local fid1=$(make_small $dir_mdt0/$tfile)
4194
4195         # deactivate all mdc for MDT0001
4196         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "deactivate"
4197
4198         # send an HSM request for files in MDT0000
4199         $LFS hsm_archive $dir_mdt0/$tfile || error "lfs hsm_archive"
4200
4201         # check for completion of files in MDT0000
4202         wait_request_state $fid1 ARCHIVE SUCCEED 0 &&
4203                 echo "archive successful on mdt0"
4204
4205         # reactivate all mdc for MDT0001
4206         mdc_change_state $SINGLEAGT "$FSNAME-MDT0001" "activate"
4207
4208         copytool_cleanup
4209         # clean test files and directories
4210         rm -rf $dir_mdt0
4211 }
4212 run_test 404 "Inactive MDT does not block requests for active MDTs"
4213
4214 test_405() {
4215         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4216
4217         copytool_setup
4218
4219         mkdir -p $DIR/$tdir
4220
4221         local striped_dir=$DIR/$tdir/striped_dir
4222
4223         # create striped dir on all of MDTs
4224         $LFS mkdir -i 0 -c $MDSCOUNT $striped_dir || error "lfs mkdir"
4225
4226         local fid1=$(make_small_sync $striped_dir/${tfile}_0)
4227         local fid2=$(make_small_sync $striped_dir/${tfile}_1)
4228         local fid3=$(make_small_sync $striped_dir/${tfile}_2)
4229         local fid4=$(make_small_sync $striped_dir/${tfile}_3)
4230
4231         local idx1=$($LFS getstripe -M $striped_dir/${tfile}_0)
4232         local idx2=$($LFS getstripe -M $striped_dir/${tfile}_1)
4233         local idx3=$($LFS getstripe -M $striped_dir/${tfile}_2)
4234         local idx4=$($LFS getstripe -M $striped_dir/${tfile}_3)
4235
4236         # check that compound requests are shunt to the rights MDTs
4237         $LFS hsm_archive $striped_dir/${tfile}_0 $striped_dir/${tfile}_1  \
4238                          $striped_dir/${tfile}_2 $striped_dir/${tfile}_3 ||
4239                 error "lfs hsm_archive"
4240
4241         wait_request_state $fid1 ARCHIVE SUCCEED $idx1 &&
4242                 echo "archive successful on $fid1"
4243         wait_request_state $fid2 ARCHIVE SUCCEED $idx2 &&
4244                 echo "archive successful on $fid2"
4245         wait_request_state $fid3 ARCHIVE SUCCEED $idx3 &&
4246                 echo "archive successful on $fid3"
4247         wait_request_state $fid4 ARCHIVE SUCCEED $idx4 &&
4248                 echo "archive successful on $fid4"
4249
4250         $LFS hsm_release $striped_dir/${tfile}_0 || error "lfs hsm_release 1"
4251         $LFS hsm_release $striped_dir/${tfile}_1 || error "lfs hsm_release 2"
4252         $LFS hsm_release $striped_dir/${tfile}_2 || error "lfs hsm_release 3"
4253         $LFS hsm_release $striped_dir/${tfile}_3 || error "lfs hsm_release 4"
4254
4255         cat $striped_dir/${tfile}_0 > /dev/null || error "cat ${tfile}_0 failed"
4256         cat $striped_dir/${tfile}_1 > /dev/null || error "cat ${tfile}_1 failed"
4257         cat $striped_dir/${tfile}_2 > /dev/null || error "cat ${tfile}_2 failed"
4258         cat $striped_dir/${tfile}_3 > /dev/null || error "cat ${tfile}_3 failed"
4259
4260         copytool_cleanup
4261 }
4262 run_test 405 "archive and release under striped directory"
4263
4264 copytool_cleanup
4265
4266 complete $SECONDS
4267 check_and_cleanup_lustre
4268 exit_status