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