Whamcloud - gitweb
37a66ce30d69191ee2ce836a51beb190e18ea9fe
[fs/lustre-release.git] / lustre / tests / sanity-hsm.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 #
6 # exit on error
7 set -e
8 set +o monitor
9
10 SRCDIR=$(dirname $0)
11 export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/utils:$PATH:/sbin:/usr/sbin
12
13 ONLY=${ONLY:-"$*"}
14 # bug number for skipped test:
15 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
16 # skip test cases failed before landing - Jinshan
17
18 ALWAYS_EXCEPT="$SANITY_HSM_EXCEPT 31a 34 35 36"
19 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 200 201 221 223a 223b 225"
20
21 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
22
23 . $LUSTRE/tests/test-framework.sh
24 init_test_env $@
25 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
26 init_logging
27
28 MULTIOP=${MULTIOP:-multiop}
29 OPENFILE=${OPENFILE:-openfile}
30 MCREATE=${MCREATE:-mcreate}
31 MOUNT_2=${MOUNT_2:-"yes"}
32 FAIL_ON_ERROR=false
33
34 if [[ $MDSCOUNT -ge 2 ]]; then
35         skip_env "Only run with single MDT for now" && exit
36 fi
37
38 check_and_setup_lustre
39
40 if [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ]]; then
41         skip_env "Need MDS version at least 2.4.53" && exit
42 fi
43
44 # $RUNAS_ID may get set incorrectly somewhere else
45 if [[ $UID -eq 0 && $RUNAS_ID -eq 0 ]]; then
46         skip_env "\$RUNAS_ID set to 0, but \$UID is also 0!" && exit
47 fi
48 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
49
50 build_test_filter
51
52 #
53 # In order to test multiple remote HSM agents, a new facet type named "AGT" and
54 # the following associated variables are added:
55 #
56 # AGTCOUNT: number of agents
57 # AGTDEV{N}: target HSM mount point (root path of the backend)
58 # agt{N}_HOST: hostname of the agent agt{N}
59 # SINGLEAGT: facet of the single agent
60 #
61 # The number of agents is initialized as the number of remote client nodes.
62 # By default, only single copytool is started on a remote client/agent. If there
63 # was no remote client, then the copytool will be started on the local client.
64 #
65 init_agt_vars() {
66         local n
67         local agent
68
69         export AGTCOUNT=${AGTCOUNT:-$((CLIENTCOUNT - 1))}
70         [[ $AGTCOUNT -gt 0 ]] || AGTCOUNT=1
71
72         export SHARED_DIRECTORY=${SHARED_DIRECTORY:-$TMP}
73         if [[ $CLIENTCOUNT -gt 1 ]] &&
74                 ! check_shared_dir $SHARED_DIRECTORY $CLIENTS; then
75                 skip_env "SHARED_DIRECTORY should be accessible"\
76                          "on all client nodes"
77                 exit 0
78         fi
79
80         for n in $(seq $AGTCOUNT); do
81                 eval export AGTDEV$n=\$\{AGTDEV$n:-"$SHARED_DIRECTORY/arc$n"\}
82                 agent=CLIENT$((n + 1))
83                 if [[ -z "${!agent}" ]]; then
84                         [[ $CLIENTCOUNT -eq 1 ]] && agent=CLIENT1 ||
85                                 agent=CLIENT2
86                 fi
87                 eval export agt${n}_HOST=\$\{agt${n}_HOST:-${!agent}\}
88         done
89
90         export SINGLEAGT=${SINGLEAGT:-agt1}
91
92         export HSMTOOL=${HSMTOOL:-"lhsmtool_posix"}
93         export HSMTOOL_VERBOSE=${HSMTOOL_VERBOSE:-""}
94         export HSMTOOL_BASE=$(basename "$HSMTOOL" | cut -f1 -d" ")
95         HSM_ARCHIVE=$(copytool_device $SINGLEAGT)
96         HSM_ARCHIVE_NUMBER=2
97
98         MDT_PARAM="mdt.$FSNAME-MDT0000"
99         HSM_PARAM="$MDT_PARAM.hsm"
100
101         # archive is purged at copytool setup
102         HSM_ARCHIVE_PURGE=true
103 }
104
105 # Get the backend root path for the given agent facet.
106 copytool_device() {
107         local facet=$1
108         local dev=AGTDEV$(facet_number $facet)
109
110         echo -n ${!dev}
111 }
112
113 # Stop copytool and unregister an existing changelog user.
114 cleanup() {
115         copytool_cleanup
116         changelog_cleanup
117         cdt_set_sanity_policy
118 }
119
120 search_and_kill_copytool() {
121         local agents=${1:-$(facet_active_host $SINGLEAGT)}
122
123         echo "Killing existing copytools on $agents"
124         do_nodesv $agents "killall -q $HSMTOOL_BASE" || true
125 }
126
127 copytool_setup() {
128         local facet=${1:-$SINGLEAGT}
129         local lustre_mntpnt=${2:-$MOUNT}
130         local arc_id=$3
131         local hsm_root=$(copytool_device $facet)
132         local agent=$(facet_active_host $facet)
133
134         if [[ -z "$arc_id" ]] &&
135                 do_facet $facet "pkill -CONT -x $HSMTOOL_BASE"; then
136                         echo "Wakeup copytool $facet on $agent"
137                         return 0
138         fi
139
140         if $HSM_ARCHIVE_PURGE; then
141                 echo "Purging archive on $agent"
142                 do_facet $facet "rm -rf $hsm_root/*"
143         fi
144
145         echo "Starting copytool $facet on $agent"
146         do_facet $facet "mkdir -p $hsm_root" || error "mkdir '$hsm_root' failed"
147         # bandwidth is limited to 1MB/s so the copy time is known and
148         # independent of hardware
149         local cmd="$HSMTOOL $HSMTOOL_VERBOSE --daemon --hsm-root $hsm_root"
150         [[ -z "$arc_id" ]] || cmd+=" --archive $arc_id"
151         cmd+=" --bandwidth 1 $lustre_mntpnt"
152
153         # Redirect the standard output and error to a log file which
154         # can be uploaded to Maloo.
155         local prefix=$TESTLOG_PREFIX
156         [[ -z "$TESTNAME" ]] || prefix=$prefix.$TESTNAME
157         local copytool_log=$prefix.copytool${arc_id}_log.$agent.log
158
159         do_facet $facet "$cmd < /dev/null > $copytool_log 2>&1" ||
160                 error "start copytool $facet on $agent failed"
161         trap cleanup EXIT
162 }
163
164 copytool_cleanup() {
165         trap - EXIT
166         local agents=${1:-$(facet_active_host $SINGLEAGT)}
167
168         do_nodesv $agents "pkill -INT -x $HSMTOOL_BASE" || return 0
169         sleep 1
170         echo "Copytool is stopped on $agents"
171 }
172
173 copytool_suspend() {
174         local agents=${1:-$(facet_active_host $SINGLEAGT)}
175
176         do_nodesv $agents "pkill -STOP -x $HSMTOOL_BASE" || return 0
177         echo "Copytool is suspended on $agents"
178 }
179
180 copytool_remove_backend() {
181         local fid=$1
182         local be=$(find $HSM_ARCHIVE -name $fid)
183         echo "Remove from backend: $fid = $be"
184         do_facet $SINGLEAGT rm -f $be
185 }
186
187 import_file() {
188         do_facet $SINGLEAGT \
189                 "$HSMTOOL --archive $HSM_ARCHIVE_NUMBER --hsm-root $HSM_ARCHIVE\
190                 --import $1 $2 $MOUNT" ||
191                 error "import of $1 to $2 failed"
192 }
193
194 make_archive() {
195         local file=$HSM_ARCHIVE/$1
196         do_facet $SINGLEAGT mkdir -p $(dirname $file)
197         do_facet $SINGLEAGT dd if=/dev/urandom of=$file count=32 bs=1000000 ||
198                 error "cannot create $file"
199 }
200
201 copy2archive() {
202         local file=$HSM_ARCHIVE/$2
203         do_facet $SINGLEAGT mkdir -p $(dirname $file)
204         do_facet $SINGLEAGT cp -p $1 $file || error "cannot copy $1 to $file"
205 }
206
207 changelog_setup() {
208         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0\
209                   changelog_register -n)
210         do_facet $SINGLEMDS lctl set_param mdd.$MDT0.changelog_mask="+hsm"
211         $LFS changelog_clear $MDT0 $CL_USER 0
212 }
213
214 changelog_cleanup() {
215 #       $LFS changelog $MDT0
216         [[ -n "$CL_USER" ]] || return 0
217
218         $LFS changelog_clear $MDT0 $CL_USER 0
219         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $CL_USER
220         CL_USER=
221 }
222
223 changelog_get_flags() {
224         local mdt=$1
225         local cltype=$2
226         local fid=$3
227
228         $LFS changelog $mdt | awk "/$cltype/ && /t=\[$fid\]/ {print \$5}"
229 }
230
231 get_hsm_param() {
232         local param=$1
233         local val=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.$param)
234         echo $val
235 }
236
237 set_hsm_param() {
238         local param=$1
239         local value=$2
240         local opt=$3
241         if [[ "$value" != "" ]]; then
242                 value="=$value"
243         fi
244         do_facet $SINGLEMDS $LCTL set_param $opt -n $HSM_PARAM.$param$value
245         return $?
246 }
247
248 set_test_state() {
249         local cmd=$1
250         local target=$2
251         do_facet $SINGLEMDS $LCTL set_param $MDT_PARAM.hsm_control=$cmd
252         wait_result $SINGLEMDS "$LCTL get_param -n $MDT_PARAM.hsm_control"\
253                 $target 10 || error "cdt state is not $target"
254 }
255
256 cdt_set_sanity_policy() {
257         if [[ "$CDT_POLICY_HAD_CHANGED" ]]
258         then
259                 # clear all
260                 do_facet $SINGLEMDS $LCTL set_param $HSM_PARAM.policy=+NRA
261                 do_facet $SINGLEMDS $LCTL set_param $HSM_PARAM.policy=-NBR
262                 CDT_POLICY_HAD_CHANGED=
263         fi
264 }
265
266 cdt_set_no_retry() {
267         do_facet $SINGLEMDS $LCTL set_param $HSM_PARAM.policy=+NRA
268         CDT_POLICY_HAD_CHANGED=true
269 }
270
271 cdt_clear_no_retry() {
272         do_facet $SINGLEMDS $LCTL set_param $HSM_PARAM.policy=-NRA
273         CDT_POLICY_HAD_CHANGED=true
274 }
275
276 cdt_set_non_blocking_restore() {
277         do_facet $SINGLEMDS $LCTL set_param $HSM_PARAM.policy=+NBR
278         CDT_POLICY_HAD_CHANGED=true
279 }
280
281 cdt_clear_non_blocking_restore() {
282         do_facet $SINGLEMDS $LCTL set_param $HSM_PARAM.policy=-NBR
283         CDT_POLICY_HAD_CHANGED=true
284 }
285
286 cdt_clear_mount_state() {
287         do_facet $SINGLEMDS $LCTL set_param -d -P $MDT_PARAM.hsm_control
288 }
289
290 cdt_set_mount_state() {
291         do_facet $SINGLEMDS $LCTL set_param -P $MDT_PARAM.hsm_control=$1
292 }
293
294 cdt_check_state() {
295         local target=$1
296         wait_result $SINGLEMDS\
297                 "$LCTL get_param -n $MDT_PARAM.hsm_control" "$target" 20 ||
298                         error "cdt state is not $target"
299 }
300
301 cdt_disable() {
302         set_test_state disabled disabled
303 }
304
305 cdt_enable() {
306         set_test_state enabled enabled
307 }
308
309 cdt_shutdown() {
310         set_test_state shutdown stopped
311 }
312
313 cdt_purge() {
314         set_test_state purge enabled
315 }
316
317 cdt_restart() {
318         cdt_shutdown
319         cdt_enable
320         cdt_set_sanity_policy
321 }
322
323 needclients() {
324         local client_count=$1
325         if [[ $CLIENTCOUNT -lt $client_count ]]; then
326                 skip "Need $client_count or more clients, have $CLIENTCOUNT"
327                 return 1
328         fi
329         return 0
330 }
331
332 path2fid() {
333         $LFS path2fid $1 | tr -d '[]'
334 }
335
336 get_hsm_flags() {
337         local f=$1
338         local u=$2
339
340         if [[ $u == "user" ]]; then
341                 local st=$($RUNAS $LFS hsm_state $f)
342         else
343                 local st=$($LFS hsm_state $f)
344                 u=root
345         fi
346
347         [[ $? == 0 ]] || error "$LFS hsm_state $f failed (run as $u)"
348
349         st=$(echo $st | cut -f 2 -d" " | tr -d "()," )
350         echo $st
351 }
352
353 get_hsm_archive_id() {
354         local f=$1
355         local st=$($LFS hsm_state $f)
356         [[ $? == 0 ]] || error "$LFS hsm_state $f failed"
357
358         local ar=$(echo $st | grep "archive_id" | cut -f5 -d" " |
359                    cut -f2 -d:)
360         echo $ar
361 }
362
363 check_hsm_flags() {
364         local f=$1
365         local fl=$2
366
367         local st=$(get_hsm_flags $f)
368         [[ $st == $fl ]] || error "hsm flags on $f are $st != $fl"
369 }
370
371 check_hsm_flags_user() {
372         local f=$1
373         local fl=$2
374
375         local st=$(get_hsm_flags $f user)
376         [[ $st == $fl ]] || error "hsm flags on $f are $st != $fl"
377 }
378
379 copy_file() {
380         local f=
381
382         if [[ -d $2 ]]; then
383                 f=$2/$(basename $1)
384         else
385                 f=$2
386         fi
387
388         if [[ "$3" != 1 ]]; then
389                 f=${f/$DIR/$DIR2}
390         fi
391         rm -f $f
392         cp $1 $f || error "cannot copy $1 to $f"
393         path2fid $f || error "cannot get fid on $f"
394 }
395
396 make_small() {
397         local file2=${1/$DIR/$DIR2}
398         dd if=/dev/urandom of=$file2 count=2 bs=1M conv=fsync ||
399                 error "cannot create $file2"
400         path2fid $1 || error "cannot get fid on $1"
401 }
402
403 cleanup_large_files() {
404         local ratio=$(df $MOUNT |awk '{print $5}' |sed 's/%//g' |grep -v Use)
405         [ $ratio -gt 50 ] && find $MOUNT -size +10M -exec rm -f {} \;
406 }
407
408 make_large_for_striping() {
409         local file2=${1/$DIR/$DIR2}
410         local sz=$($LCTL get_param -n lov.*-clilov-*.stripesize | head -1)
411
412         cleanup_large_files
413
414         dd if=/dev/urandom of=$file2 count=5 bs=$sz conv=fsync ||
415                 error "cannot create $file2"
416         path2fid $1 || error "cannot get fid on $1"
417 }
418
419 make_large_for_progress() {
420         local file2=${1/$DIR/$DIR2}
421
422         cleanup_large_files
423
424         # big file is large enough, so copy time is > 30s
425         # so copytool make 1 progress
426         # size is not a multiple of 1M to avoid stripe
427         # aligment
428         dd if=/dev/urandom of=$file2 count=39 bs=1000000 conv=fsync ||
429                 error "cannot create $file2"
430         path2fid $1 || error "cannot get fid on $1"
431 }
432
433 make_large_for_progress_aligned() {
434         local file2=${1/$DIR/$DIR2}
435
436         cleanup_large_files
437
438         # big file is large enough, so copy time is > 30s
439         # so copytool make 1 progress
440         # size is a multiple of 1M to have stripe
441         # aligment
442         dd if=/dev/urandom of=$file2 count=33 bs=1M conv=fsync ||
443                 error "cannot create $file2"
444         path2fid $1 || error "cannot get fid on $1"
445 }
446
447 make_large_for_cancel() {
448         local file2=${1/$DIR/$DIR2}
449
450         cleanup_large_files
451
452         # Copy timeout is 100s. 105MB => 105s
453         dd if=/dev/urandom of=$file2 count=103 bs=1M conv=fsync ||
454                 error "cannot create $file2"
455         path2fid $1 || error "cannot get fid on $1"
456 }
457
458 wait_result() {
459         local facet=$1
460         shift
461         wait_update --verbose $(facet_active_host $facet) "$@"
462 }
463
464 wait_request_state() {
465         local fid=$1
466         local request=$2
467         local state=$3
468
469         local cmd="$LCTL get_param -n $HSM_PARAM.agent_actions"
470         cmd+=" | awk '/'$fid'.*action='$request'/ {print \\\$13}' | cut -f2 -d="
471
472         wait_result $SINGLEMDS "$cmd" $state 100 ||
473                 error "request on $fid is not $state"
474 }
475
476 get_request_state() {
477         local fid=$1
478         local request=$2
479
480         do_facet $SINGLEMDS "$LCTL get_param -n $HSM_PARAM.agent_actions |"\
481                 "awk '/'$fid'.*action='$request'/ {print \\\$13}' | cut -f2 -d="
482 }
483
484 get_request_count() {
485         local fid=$1
486         local request=$2
487
488         do_facet $SINGLEMDS "$LCTL get_param -n $HSM_PARAM.agent_actions |"\
489                 "awk -vn=0 '/'$fid'.*action='$request'/ {n++}; END {print n}'"
490 }
491
492 wait_all_done() {
493         local timeout=$1
494
495         local cmd="$LCTL get_param -n $HSM_PARAM.agent_actions"
496         cmd+=" | egrep 'WAITING|STARTED'"
497
498         wait_result $SINGLEMDS "$cmd" "" $timeout ||
499                 error "requests did not complete"
500 }
501
502 wait_for_grace_delay() {
503         local val=$(get_hsm_param grace_delay)
504         sleep $val
505 }
506
507 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
508         awk '{gsub(/_UUID/,""); print $1}' | head -1)
509
510 # initiate variables
511 init_agt_vars
512
513 # cleanup from previous bad setup
514 search_and_kill_copytool
515
516 # for recovery tests, coordinator needs to be started at mount
517 # so force it
518 # the lustre conf must be without hsm on (like for sanity.sh)
519 echo "Set HSM on and start"
520 cdt_set_mount_state enabled
521 cdt_check_state enabled
522
523 echo "Start copytool"
524 copytool_setup
525
526 echo "Set sanity-hsm HSM policy"
527 cdt_set_sanity_policy
528
529 # finished requests are quickly removed from list
530 set_hsm_param grace_delay 10
531
532 test_1() {
533         mkdir -p $DIR/$tdir
534         chmod 777 $DIR/$tdir
535
536         local f=$DIR/$tdir/$tfile
537         $RUNAS touch $f
538
539         # User flags
540         check_hsm_flags_user $f "0x00000000"
541
542         $RUNAS $LFS hsm_set --norelease $f ||
543                 error "user could not change hsm flags"
544         check_hsm_flags_user $f "0x00000010"
545
546         $RUNAS $LFS hsm_clear --norelease $f ||
547                 error "user could not clear hsm flags"
548         check_hsm_flags_user $f "0x00000000"
549
550         # User could not change those flags...
551         $RUNAS $LFS hsm_set --exists $f &&
552                 error "user should not set this flag"
553         check_hsm_flags_user $f "0x00000000"
554
555         # ...but root can
556         $LFS hsm_set --exists $f ||
557                 error "root could not change hsm flags"
558         check_hsm_flags_user $f "0x00000001"
559
560         $LFS hsm_clear --exists $f ||
561                 error "root could not clear hsm state"
562         check_hsm_flags_user $f "0x00000000"
563
564 }
565 run_test 1 "lfs hsm flags root/non-root access"
566
567 test_2() {
568         mkdir -p $DIR/$tdir
569         local f=$DIR/$tdir/$tfile
570         touch $f
571         # New files are not dirty
572         check_hsm_flags $f "0x00000000"
573
574         # For test, we simulate an archived file.
575         $LFS hsm_set --exists $f || error "user could not change hsm flags"
576         check_hsm_flags $f "0x00000001"
577
578         # chmod do not put the file dirty
579         chmod 600 $f || error "could not chmod test file"
580         check_hsm_flags $f "0x00000001"
581
582         # chown do not put the file dirty
583         chown $RUNAS_ID $f || error "could not chown test file"
584         check_hsm_flags $f "0x00000001"
585
586         # truncate put the file dirty
587         $TRUNCATE $f 1 || error "could not truncate test file"
588         check_hsm_flags $f "0x00000003"
589
590         $LFS hsm_clear --dirty $f || error "could not clear hsm flags"
591         check_hsm_flags $f "0x00000001"
592 }
593 run_test 2 "Check file dirtyness when doing setattr"
594
595 test_3() {
596         mkdir -p $DIR/$tdir
597         f=$DIR/$tdir/$tfile
598
599         # New files are not dirty
600         cp -p /etc/passwd $f
601         check_hsm_flags $f "0x00000000"
602
603         # For test, we simulate an archived file.
604         $LFS hsm_set --exists $f ||
605                 error "user could not change hsm flags"
606         check_hsm_flags $f "0x00000001"
607
608         # Reading a file, does not set dirty
609         cat $f > /dev/null || error "could not read file"
610         check_hsm_flags $f "0x00000001"
611
612         # Open for write without modifying data, does not set dirty
613         openfile -f O_WRONLY $f || error "could not open test file"
614         check_hsm_flags $f "0x00000001"
615
616         # Append to a file sets it dirty
617         cp -p /etc/passwd $f.append || error "could not create file"
618         $LFS hsm_set --exists $f.append ||
619                 error "user could not change hsm flags"
620         dd if=/etc/passwd of=$f.append bs=1 count=3\
621            conv=notrunc oflag=append status=noxfer ||
622                 error "could not append to test file"
623         check_hsm_flags $f.append "0x00000003"
624
625         # Modify a file sets it dirty
626         cp -p /etc/passwd $f.modify || error "could not create file"
627         $LFS hsm_set --exists $f.modify ||
628                 error "user could not change hsm flags"
629         dd if=/dev/zero of=$f.modify bs=1 count=3\
630            conv=notrunc status=noxfer ||
631                 error "could not modify test file"
632         check_hsm_flags $f.modify "0x00000003"
633
634         # Open O_TRUNC sets dirty
635         cp -p /etc/passwd $f.trunc || error "could not create file"
636         $LFS hsm_set --exists $f.trunc ||
637                 error "user could not change hsm flags"
638         cp /etc/group $f.trunc || error "could not override a file"
639         check_hsm_flags $f.trunc "0x00000003"
640
641         # Mmapped a file sets dirty
642         cp -p /etc/passwd $f.mmap || error "could not create file"
643         $LFS hsm_set --exists $f.mmap ||
644                 error "user could not change hsm flags"
645         multiop $f.mmap OSMWUc || error "could not mmap a file"
646         check_hsm_flags $f.mmap "0x00000003"
647 }
648 run_test 3 "Check file dirtyness when opening for write"
649
650 test_4() {
651         mkdir -p $DIR/$tdir
652         local f=$DIR/$tdir/$tfile
653         local fid=$(make_small $f)
654
655         $LFS hsm_cancel $f
656         local st=$(get_request_state $fid CANCEL)
657         [[ -z "$st" ]] || error "hsm_cancel must not be registered (state=$st)"
658 }
659 run_test 4 "Useless cancel must not be registered"
660
661 test_8() {
662         # test needs a running copytool
663         copytool_setup
664
665         mkdir -p $DIR/$tdir
666         local f=$DIR/$tdir/$tfile
667         local fid=$(copy_file /etc/passwd $f)
668         $LFS hsm_archive $f
669         wait_request_state $fid ARCHIVE SUCCEED
670
671         check_hsm_flags $f "0x00000009"
672
673         copytool_cleanup
674 }
675 run_test 8 "Test default archive number"
676
677 test_9() {
678         mkdir -p $DIR/$tdir
679         local f=$DIR/$tdir/$tfile
680         local fid=$(copy_file /etc/passwd $f)
681         # we do not use the default one to be sure
682         local new_an=$((HSM_ARCHIVE_NUMBER + 1))
683         copytool_cleanup
684         copytool_setup $SINGLEAGT $MOUNT $new_an
685         $LFS hsm_archive --archive $new_an $f
686         wait_request_state $fid ARCHIVE SUCCEED
687
688         check_hsm_flags $f "0x00000009"
689
690         copytool_cleanup
691 }
692 run_test 9 "Use of explict archive number, with dedicated copytool"
693
694 test_9a() {
695         needclients 3 || return 0
696
697         local n
698         local file
699         local fid
700
701         copytool_cleanup $(comma_list $(agts_nodes))
702
703         # start all of the copytools
704         for n in $(seq $AGTCOUNT); do
705                 copytool_setup agt$n
706         done
707
708         trap "copytool_cleanup $(comma_list $(agts_nodes))" EXIT
709         # archive files
710         mkdir -p $DIR/$tdir
711         for n in $(seq $AGTCOUNT); do
712                 file=$DIR/$tdir/$tfile.$n
713                 fid=$(make_small $file)
714
715                 $LFS hsm_archive $file || error "could not archive file $file"
716                 wait_request_state $fid ARCHIVE SUCCEED
717                 check_hsm_flags $file "0x00000009"
718         done
719
720         trap - EXIT
721         copytool_cleanup $(comma_list $(agts_nodes))
722 }
723 run_test 9a "Multiple remote agents"
724
725 test_10a() {
726         # test needs a running copytool
727         copytool_setup
728
729         mkdir -p $DIR/$tdir/d1
730         local f=$DIR/$tdir/$tfile
731         local fid=$(copy_file /etc/hosts $f)
732         $LFS hsm_archive -a $HSM_ARCHIVE_NUMBER $f ||
733                 error "hsm_archive failed"
734         wait_request_state $fid ARCHIVE SUCCEED
735
736         local AFILE=$(do_facet $SINGLEAGT ls $HSM_ARCHIVE'/*/*/*/*/*/*/'$fid) ||
737                 error "fid $fid not in archive $HSM_ARCHIVE"
738         echo "Verifying content"
739         do_facet $SINGLEAGT diff $f $AFILE || error "archived file differs"
740         echo "Verifying hsm state "
741         check_hsm_flags $f "0x00000009"
742
743         echo "Verifying archive number is $HSM_ARCHIVE_NUMBER"
744         local st=$(get_hsm_archive_id $f)
745         [[ $st == $HSM_ARCHIVE_NUMBER ]] ||
746                 error "Wrong archive number, $st != $HSM_ARCHIVE_NUMBER"
747
748         copytool_cleanup
749
750 }
751 run_test 10a "Archive a file"
752
753 test_10b() {
754         # test needs a running copytool
755         copytool_setup
756
757         mkdir -p $DIR/$tdir
758         local f=$DIR/$tdir/$tfile
759         local fid=$(copy_file /etc/hosts $f)
760         $LFS hsm_archive $f || error "archive request failed"
761         wait_request_state $fid ARCHIVE SUCCEED
762
763         $LFS hsm_archive $f || error "archive of non dirty file failed"
764         local cnt=$(get_request_count $fid ARCHIVE)
765         [[ "$cnt" == "1" ]] ||
766                 error "archive of non dirty file must not make a request"
767
768         copytool_cleanup
769 }
770 run_test 10b "Archive of non dirty file must work without doing request"
771
772 test_10c() {
773         # test needs a running copytool
774         copytool_setup
775
776         mkdir -p $DIR/$tdir
777         local f=$DIR/$tdir/$tfile
778         local fid=$(copy_file /etc/hosts $f)
779         $LFS hsm_set --noarchive $f
780         $LFS hsm_archive $f && error "archive a noarchive file must fail"
781
782         copytool_cleanup
783 }
784 run_test 10c "Check forbidden archive"
785
786 test_10d() {
787         # test needs a running copytool
788         copytool_setup
789
790         mkdir -p $DIR/$tdir
791         local f=$DIR/$tdir/$tfile
792         local fid=$(copy_file /etc/hosts $f)
793         $LFS hsm_archive $f || error "cannot archive $f"
794         wait_request_state $fid ARCHIVE SUCCEED
795
796         local ar=$(get_hsm_archive_id $f)
797         local dflt=$(get_hsm_param default_archive_id)
798         [[ $ar == $dflt ]] ||
799                 error "archived file is not on default archive: $ar != $dflt"
800
801         copytool_cleanup
802 }
803 run_test 10d "Archive a file on the default archive id"
804
805 test_11() {
806         mkdir -p $DIR/$tdir
807         copy2archive /etc/hosts $tdir/$tfile
808         local f=$DIR/$tdir/$tfile
809
810         import_file $tdir/$tfile $f
811         echo -n "Verifying released state: "
812         check_hsm_flags $f "0x0000000d"
813
814         local LSZ=$(stat -c "%s" $f)
815         local ASZ=$(do_facet $SINGLEAGT stat -c "%s" $HSM_ARCHIVE/$tdir/$tfile)
816
817         echo "Verifying imported size $LSZ=$ASZ"
818         [[ $LSZ -eq $ASZ ]] || error "Incorrect size $LSZ != $ASZ"
819         echo -n "Verifying released pattern: "
820         local PTRN=$($GETSTRIPE -L $f)
821         echo $PTRN
822         [[ $PTRN == 80000001 ]] || error "Is not released"
823         local fid=$(path2fid $f)
824         echo "Verifying new fid $fid in archive"
825
826         local AFILE=$(do_facet $SINGLEAGT ls $HSM_ARCHIVE'/*/*/*/*/*/*/'$fid) ||
827                 error "fid $fid not in archive $HSM_ARCHIVE"
828 }
829 run_test 11 "Import a file"
830
831 test_12a() {
832         # test needs a running copytool
833         copytool_setup
834
835         mkdir -p $DIR/$tdir
836         copy2archive /etc/hosts $tdir/$tfile
837
838         local f=$DIR/$tdir/$tfile
839         import_file $tdir/$tfile $f
840         local f=$DIR2/$tdir/$tfile
841         echo "Verifying released state: "
842         check_hsm_flags $f "0x0000000d"
843
844         local fid=$(path2fid $f)
845         $LFS hsm_restore $f
846         wait_request_state $fid RESTORE SUCCEED
847
848         echo "Verifying file state: "
849         check_hsm_flags $f "0x00000009"
850
851         do_facet $SINGLEAGT diff -q $HSM_ARCHIVE/$tdir/$tfile $f
852
853         [[ $? -eq 0 ]] || error "Restored file differs"
854
855         copytool_cleanup
856 }
857 run_test 12a "Restore an imported file explicitly"
858
859 test_12b() {
860         # test needs a running copytool
861         copytool_setup
862
863         mkdir -p $DIR/$tdir
864         copy2archive /etc/hosts $tdir/$tfile
865
866         local f=$DIR/$tdir/$tfile
867         import_file $tdir/$tfile $f
868         echo "Verifying released state: "
869         check_hsm_flags $f "0x0000000d"
870
871         cat $f > /dev/null || error "File read failed"
872
873         echo "Verifying file state after restore: "
874         check_hsm_flags $f "0x00000009"
875
876         do_facet $SINGLEAGT diff -q $HSM_ARCHIVE/$tdir/$tfile $f
877
878         [[ $? -eq 0 ]] || error "Restored file differs"
879
880         copytool_cleanup
881 }
882 run_test 12b "Restore an imported file implicitly"
883
884 test_12c() {
885         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
886
887         # test needs a running copytool
888         copytool_setup
889
890         mkdir -p $DIR/$tdir
891         local f=$DIR/$tdir/$tfile
892         $LFS setstripe -c 2 $f
893         local fid=$(make_large_for_striping $f)
894         local FILE_CRC=$(md5sum $f)
895
896         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
897         wait_request_state $fid ARCHIVE SUCCEED
898         $LFS hsm_release $f || error "release $f failed"
899
900         echo "$FILE_CRC" | md5sum -c
901
902         [[ $? -eq 0 ]] || error "Restored file differs"
903
904         copytool_cleanup
905 }
906 run_test 12c "Restore a file with stripe of 2"
907
908 test_12d() {
909         # test needs a running copytool
910         copytool_setup
911
912         mkdir -p $DIR/$tdir
913
914         local f=$DIR/$tdir/$tfile
915         local fid=$(copy_file /etc/hosts $f)
916         $LFS hsm_restore $f || error "restore of non archived file failed"
917         local cnt=$(get_request_count $fid RESTORE)
918         [[ "$cnt" == "0" ]] ||
919                 error "restore non archived must not make a request"
920         $LFS hsm_archive $f ||
921                 error "archive request failed"
922         wait_request_state $fid ARCHIVE SUCCEED
923         $LFS hsm_restore $f ||
924                 error "restore of non released file failed"
925         local cnt=$(get_request_count $fid RESTORE)
926         [[ "$cnt" == "0" ]] ||
927                 error "restore a non dirty file must not make a request"
928
929         copytool_cleanup
930 }
931 run_test 12d "Restore of a non archived, non released file must work"\
932                 " without doing request"
933
934 test_12e() {
935         # test needs a running copytool
936         copytool_setup
937
938         mkdir -p $DIR/$tdir $HSM_ARCHIVE/$tdir
939         local f=$DIR/$tdir/$tfile
940         local fid=$(copy_file /etc/hosts $f)
941         $LFS hsm_archive $f || error "archive request failed"
942         wait_request_state $fid ARCHIVE SUCCEED
943
944         # make file dirty
945         cat /etc/hosts >> $f
946         sync
947         $LFS hsm_state $f
948
949         $LFS hsm_restore $f && error "restore a dirty file must fail"
950
951         copytool_cleanup
952 }
953 run_test 12e "Check forbidden restore"
954
955 test_12f() {
956         # test needs a running copytool
957         copytool_setup
958
959         mkdir -p $DIR/$tdir
960         local f=$DIR/$tdir/$tfile
961         local fid=$(copy_file /etc/hosts $f)
962
963         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
964         wait_request_state $fid ARCHIVE SUCCEED
965         $LFS hsm_release $f || error "release of $f failed"
966         $LFS hsm_restore $f
967         wait_request_state $fid RESTORE SUCCEED
968
969         echo -n "Verifying file state: "
970         check_hsm_flags $f "0x00000009"
971
972         diff -q /etc/hosts $f
973
974         [[ $? -eq 0 ]] || error "Restored file differs"
975
976         copytool_cleanup
977 }
978 run_test 12f "Restore a released file explicitly"
979
980 test_12g() {
981         # test needs a running copytool
982         copytool_setup
983
984         mkdir -p $DIR/$tdir
985         local f=$DIR/$tdir/$tfile
986         local fid=$(copy_file /etc/hosts $f)
987
988         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
989         wait_request_state $fid ARCHIVE SUCCEED
990         $LFS hsm_release $f || error "release of $f failed"
991
992         diff -q /etc/hosts $f
993         local st=$?
994
995         # we check we had a restore done
996         wait_request_state $fid RESTORE SUCCEED
997
998         [[ $st -eq 0 ]] || error "Restored file differs"
999
1000         copytool_cleanup
1001 }
1002 run_test 12g "Restore a released file implicitly"
1003
1004 test_12h() {
1005         needclients 2 || return 0
1006
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
1014         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1015         wait_request_state $fid ARCHIVE SUCCEED
1016         $LFS hsm_release $f || error "release of $f failed"
1017
1018         do_node $CLIENT2 diff -q /etc/hosts $f
1019         local st=$?
1020
1021         # we check we had a restore done
1022         wait_request_state $fid RESTORE SUCCEED
1023
1024         [[ $st -eq 0 ]] || error "Restored file differs"
1025
1026         copytool_cleanup
1027 }
1028 run_test 12h "Restore a released file implicitly from a second node"
1029
1030 test_12m() {
1031         # test needs a running copytool
1032         copytool_setup
1033
1034         mkdir -p $DIR/$tdir
1035         local f=$DIR/$tdir/$tfile
1036         local fid=$(copy_file /etc/passwd $f)
1037         $LFS hsm_archive $f || error "archive of $f failed"
1038         wait_request_state $fid ARCHIVE SUCCEED
1039
1040         $LFS hsm_release $f || error "release of $f failed"
1041
1042         cmp /etc/passwd $f
1043
1044         [[ $? -eq 0 ]] || error "Restored file differs"
1045
1046         copytool_cleanup
1047 }
1048 run_test 12m "Archive/release/implicit restore"
1049
1050 test_12n() {
1051         # test needs a running copytool
1052         copytool_setup
1053
1054         mkdir -p $DIR/$tdir
1055         copy2archive /etc/hosts $tdir/$tfile
1056
1057         local f=$DIR/$tdir/$tfile
1058         import_file $tdir/$tfile $f
1059
1060         do_facet $SINGLEAGT cmp /etc/hosts $f ||
1061                 error "Restored file differs"
1062
1063         $LFS hsm_release $f || error "release of $f failed"
1064
1065         copytool_cleanup
1066 }
1067 run_test 12n "Import/implicit restore/release"
1068
1069 test_13() {
1070         # test needs a running copytool
1071         copytool_setup
1072
1073         local ARC_SUBDIR="import.orig"
1074         local d=""
1075         local f=""
1076
1077         # populate directory to be imported
1078         for d in $(seq 1 10); do
1079                 local CURR_DIR="$HSM_ARCHIVE/$ARC_SUBDIR/dir.$d"
1080                 do_facet $SINGLEAGT mkdir -p "$CURR_DIR"
1081                 for f in $(seq 1 10); do
1082                         CURR_FILE="$CURR_DIR/$tfile.$f"
1083                         # write file-specific data
1084                         do_facet $SINGLEAGT \
1085                                 echo "d=$d, f=$f, dir=$CURR_DIR, "\
1086                                      "file=$CURR_FILE" > $CURR_FILE
1087                 done
1088         done
1089         # import to Lustre
1090         import_file "$ARC_SUBDIR" $DIR/$tdir
1091         # diff lustre content and origin (triggers file restoration)
1092         # there must be 10x10 identical files, and no difference
1093         local cnt_ok=$(do_facet $SINGLEAGT diff -rs $HSM_ARCHIVE/$ARC_SUBDIR \
1094                        $DIR/$tdir/$ARC_SUBDIR | grep identical | wc -l)
1095         local cnt_diff=$(do_facet $SINGLEAGT diff -r $HSM_ARCHIVE/$ARC_SUBDIR \
1096                          $DIR/$tdir/$ARC_SUBDIR | wc -l)
1097
1098         [ $cnt_diff -eq 0 ] ||
1099                 error "$cnt_diff imported files differ from read data"
1100         [ $cnt_ok -eq 100 ] ||
1101                 error "not enough identical files ($cnt_ok != 100)"
1102
1103         copytool_cleanup
1104 }
1105 run_test 13 "Recursively import and restore a directory"
1106
1107 test_14() {
1108         # test needs a running copytool
1109         copytool_setup
1110
1111         # archive a file
1112         mkdir -p $DIR/$tdir
1113         local f=$DIR/$tdir/$tfile
1114         local fid=$(make_small $f)
1115         local sum=$(md5sum $f | awk '{print $1}')
1116         $LFS hsm_archive $f || error "could not archive file"
1117         wait_request_state $fid ARCHIVE SUCCEED
1118
1119         # delete the file
1120         rm -f $f
1121         # create released file (simulate llapi_hsm_import call)
1122         touch $f
1123         local fid2=$(path2fid $f)
1124         $LFS hsm_set --archived --exists $f || error "could not force hsm flags"
1125         $LFS hsm_release $f || error "could not release file"
1126
1127         # rebind the archive to the newly created file
1128         echo "rebind $fid to $fid2"
1129
1130         do_facet $SINGLEAGT \
1131                 "$HSMTOOL --archive $HSM_ARCHIVE_NUMBER --hsm-root $HSM_ARCHIVE\
1132                  --rebind $fid $fid2 $DIR" || error "could not rebind file"
1133
1134         # restore file and compare md5sum
1135         local sum2=$(md5sum $f | awk '{print $1}')
1136
1137         [[ $sum == $sum2 ]] || error "md5sum mismatch after restore"
1138
1139         copytool_cleanup
1140 }
1141 run_test 14 "Rebind archived file to a new fid"
1142
1143 test_15() {
1144         # test needs a running copytool
1145         copytool_setup
1146
1147         # archive files
1148         mkdir -p $DIR/$tdir
1149         local f=$DIR/$tdir/$tfile
1150         local count=5
1151         local tmpfile=$SHARED_DIRECTORY/tmp.$$
1152
1153         local fids=()
1154         local sums=()
1155         for i in $(seq 1 $count); do
1156                 fids[$i]=$(make_small $f.$i)
1157                 sums[$i]=$(md5sum $f.$i | awk '{print $1}')
1158                 $LFS hsm_archive $f.$i || error "could not archive file"
1159         done
1160         wait_all_done $(($count*60))
1161
1162         :>$tmpfile
1163         # delete the files
1164         for i in $(seq 1 $count); do
1165                 rm -f $f.$i
1166                 touch $f.$i
1167                 local fid2=$(path2fid $f.$i)
1168                 # add the rebind operation to the list
1169                 echo ${fids[$i]} $fid2 >> $tmpfile
1170
1171                 # set it released (simulate llapi_hsm_import call)
1172                 $LFS hsm_set --archived --exists $f.$i ||
1173                         error "could not force hsm flags"
1174                 $LFS hsm_release $f.$i || error "could not release file"
1175         done
1176         nl=$(wc -l < $tmpfile)
1177         [[ $nl == $count ]] || error "$nl files in list, $count expected"
1178
1179         echo "rebind list of files"
1180         do_facet $SINGLEAGT \
1181                 "$HSMTOOL --archive $HSM_ARCHIVE_NUMBER --hsm-root $HSM_ARCHIVE\
1182                  --rebind $tmpfile $DIR" || error "could not rebind file list"
1183
1184         # restore files and compare md5sum
1185         for i in $(seq 1 $count); do
1186                 local sum2=$(md5sum $f.$i | awk '{print $1}')
1187                 [[ $sum2 == ${sums[$i]} ]] ||
1188                     error "md5sum mismatch after restore ($sum2 != ${sums[$i]})"
1189         done
1190
1191         rm -f $tmpfile
1192         copytool_cleanup
1193 }
1194 run_test 15 "Rebind a list of files"
1195
1196 test_16() {
1197         # test needs a running copytool
1198         copytool_setup
1199
1200         local ref=/tmp/ref
1201         # create a known size file so we can verify transfer speed
1202         # 20 MB <-> 20s
1203         local goal=20
1204         dd if=/dev/zero of=$ref bs=1M count=20
1205
1206         mkdir -p $DIR/$tdir
1207         local f=$DIR/$tdir/$tfile
1208         local fid=$(copy_file $ref $f)
1209         rm $ref
1210         local start=$(date +%s)
1211         $LFS hsm_archive $f
1212         wait_request_state $fid ARCHIVE SUCCEED
1213         local end=$(date +%s)
1214         local duration=$((end - start))
1215
1216         [[ $duration -ge $goal ]] ||
1217                 error "Transfer is too fast $duration < $goal"
1218
1219         copytool_cleanup
1220 }
1221 run_test 16 "Test CT bandwith control option"
1222
1223 test_20() {
1224         mkdir -p $DIR/$tdir
1225
1226         local f=$DIR/$tdir/$tfile
1227         touch $f || error "touch $f failed"
1228
1229         # Could not release a non-archived file
1230         $LFS hsm_release $f && error "release should not succeed"
1231
1232         # For following tests, we must test them with HS_ARCHIVED set
1233         $LFS hsm_set --exists --archived $f || error "could not add flag"
1234
1235         # Could not release a file if no-release is set
1236         $LFS hsm_set --norelease $f || error "could not add flag"
1237         $LFS hsm_release $f && error "release should not succeed"
1238         $LFS hsm_clear --norelease $f || error "could not remove flag"
1239
1240         # Could not release a file if lost
1241         $LFS hsm_set --lost $f || error "could not add flag"
1242         $LFS hsm_release $f && error "release should not succeed"
1243         $LFS hsm_clear --lost $f || error "could not remove flag"
1244
1245         # Could not release a file if dirty
1246         $LFS hsm_set --dirty $f || error "could not add flag"
1247         $LFS hsm_release $f && error "release should not succeed"
1248         $LFS hsm_clear --dirty $f || error "could not remove flag"
1249 }
1250 run_test 20 "Release is not permitted"
1251
1252 test_21() {
1253         # test needs a running copytool
1254         copytool_setup
1255
1256         mkdir -p $DIR/$tdir
1257         local f=$DIR/$tdir/test_release
1258
1259         # Create a file and check its states
1260         local fid=$(make_small $f)
1261         check_hsm_flags $f "0x00000000"
1262
1263         $LFS hsm_archive $f || error "could not archive file"
1264         wait_request_state $fid ARCHIVE SUCCEED
1265
1266         [ $(stat -c "%b" $f) -ne "1" ] || error "wrong block number"
1267         local sz=$(stat -c "%s" $f)
1268         [ $sz -ne "0" ] || error "file size should not be zero"
1269
1270         # Release and check states
1271         $LFS hsm_release $f || error "could not release file"
1272         check_hsm_flags $f "0x0000000d"
1273
1274         [ $(stat -c "%b" $f) -eq "1" ] || error "wrong block number"
1275         [ $(stat -c "%s" $f) -eq $sz ] || error "wrong file size"
1276
1277         # Check we can release an file without stripe info
1278         f=$f.nolov
1279         $MCREATE $f
1280         fid=$(path2fid $f)
1281         check_hsm_flags $f "0x00000000"
1282         $LFS hsm_archive $f || error "could not archive file"
1283         wait_request_state $fid ARCHIVE SUCCEED
1284
1285         # Release and check states
1286         $LFS hsm_release $f || error "could not release file"
1287         check_hsm_flags $f "0x0000000d"
1288
1289         # Release again a file that is already released is OK
1290         $LFS hsm_release $f || fail "second release should succeed"
1291         check_hsm_flags $f "0x0000000d"
1292
1293         copytool_cleanup
1294 }
1295 run_test 21 "Simple release tests"
1296
1297 test_22() {
1298         # test needs a running copytool
1299         copytool_setup
1300
1301         mkdir -p $DIR/$tdir
1302
1303         local f=$DIR/$tdir/test_release
1304         local swap=$DIR/$tdir/test_swap
1305
1306         # Create a file and check its states
1307         local fid=$(make_small $f)
1308         check_hsm_flags $f "0x00000000"
1309
1310         $LFS hsm_archive $f || error "could not archive file"
1311         wait_request_state $fid ARCHIVE SUCCEED
1312
1313         # Release and check states
1314         $LFS hsm_release $f || error "could not release file"
1315         check_hsm_flags $f "0x0000000d"
1316
1317         make_small $swap
1318         $LFS swap_layouts $swap $f && error "swap_layouts should failed"
1319
1320         true
1321         copytool_cleanup
1322 }
1323 run_test 22 "Could not swap a release file"
1324
1325 test_23() {
1326         # test needs a running copytool
1327         copytool_setup
1328
1329         mkdir -p $DIR/$tdir
1330
1331         local f=$DIR/$tdir/test_mtime
1332
1333         # Create a file and check its states
1334         local fid=$(make_small $f)
1335         check_hsm_flags $f "0x00000000"
1336
1337         $LFS hsm_archive $f || error "could not archive file"
1338         wait_request_state $fid ARCHIVE SUCCEED
1339
1340         # Set modification time in the past
1341         touch -m -a -d @978261179 $f
1342
1343         # Release and check states
1344         $LFS hsm_release $f || error "could not release file"
1345         check_hsm_flags $f "0x0000000d"
1346
1347         local MTIME=$(stat -c "%Y" $f)
1348         local ATIME=$(stat -c "%X" $f)
1349         [ $MTIME -eq "978261179" ] || fail "bad mtime: $MTIME"
1350         [ $ATIME -eq "978261179" ] || fail "bad atime: $ATIME"
1351
1352         copytool_cleanup
1353 }
1354 run_test 23 "Release does not change a/mtime (utime)"
1355
1356 test_24a() {
1357         local file=$DIR/$tdir/$tfile
1358         local fid
1359         local atime0
1360         local atime1
1361         local mtime0
1362         local mtime1
1363         local ctime0
1364         local ctime1
1365
1366         # test needs a running copytool
1367         copytool_setup
1368
1369         mkdir -p $DIR/$tdir
1370         rm -f $file
1371         fid=$(make_small $file)
1372
1373         # Create a file and check its states
1374         check_hsm_flags $file "0x00000000"
1375
1376         # Ensure atime is less than mtime and ctime.
1377         sleep 1
1378         echo >> $file
1379
1380         atime0=$(stat -c "%X" $file)
1381         mtime0=$(stat -c "%Y" $file)
1382         ctime0=$(stat -c "%Z" $file)
1383
1384         [ $atime0 -lt $mtime0 ] ||
1385                 error "atime $atime0 is not less than mtime $mtime0"
1386
1387         [ $atime0 -lt $ctime0 ] ||
1388                 error "atime $atime0 is not less than ctime $ctime0"
1389
1390         # Archive should not change any timestamps.
1391         $LFS hsm_archive $file || error "cannot archive '$file'"
1392         wait_request_state $fid ARCHIVE SUCCEED
1393
1394         atime1=$(stat -c "%X" $file)
1395         mtime1=$(stat -c "%Y" $file)
1396         ctime1=$(stat -c "%Z" $file)
1397
1398         [ $atime0 -eq $atime1 ] ||
1399                 error "archive changed atime from $atime0 to $atime1"
1400
1401         [ $mtime0 -eq $mtime1 ] ||
1402                 error "archive changed mtime from $mtime0 to $mtime1"
1403
1404         [ $ctime0 -eq $ctime1 ] ||
1405                 error "archive changed ctime from $ctime0 to $ctime1"
1406
1407         # Release should not change any timestamps.
1408         $LFS hsm_release $file || error "cannot release '$file'"
1409         check_hsm_flags $file "0x0000000d"
1410
1411         atime1=$(stat -c "%X" $file)
1412         mtime1=$(stat -c "%Y" $file)
1413         ctime1=$(stat -c "%Z" $file)
1414
1415         [ $atime0 -eq $atime1 ] ||
1416                 error "release changed atime from $atime0 to $atime1"
1417
1418         [ $mtime0 -eq $mtime1 ] ||
1419                 error "release changed mtime from $mtime0 to $mtime1"
1420
1421         [ $ctime0 -eq $ctime1 ] ||
1422                 error "release changed ctime from $ctime0 to $ctime1"
1423
1424         # Restore should not change atime or mtime and should not
1425         # decrease ctime.
1426         $LFS hsm_restore $file
1427         wait_request_state $fid RESTORE SUCCEED
1428
1429         atime1=$(stat -c "%X" $file)
1430         mtime1=$(stat -c "%Y" $file)
1431         ctime1=$(stat -c "%Z" $file)
1432
1433         [ $atime0 -eq $atime1 ] ||
1434                 error "restore changed atime from $atime0 to $atime1"
1435
1436         [ $mtime0 -eq $mtime1 ] ||
1437                 error "restore changed mtime from $mtime0 to $mtime1"
1438
1439         [ $ctime0 -le $ctime1 ] ||
1440                 error "restore changed ctime from $ctime0 to $ctime1"
1441
1442         copytool_cleanup
1443
1444         # Once more, after unmount and mount.
1445         umount_client $MOUNT || error "cannot unmount '$MOUNT'"
1446         mount_client $MOUNT || error "cannot mount '$MOUNT'"
1447
1448         atime1=$(stat -c "%X" $file)
1449         mtime1=$(stat -c "%Y" $file)
1450         ctime1=$(stat -c "%Z" $file)
1451
1452         [ $atime0 -eq $atime1 ] ||
1453                 error "remount changed atime from $atime0 to $atime1"
1454
1455         [ $mtime0 -eq $mtime1 ] ||
1456                 error "remount changed mtime from $mtime0 to $mtime1"
1457
1458         [ $ctime0 -le $ctime1 ] ||
1459                 error "remount changed ctime from $ctime0 to $ctime1"
1460 }
1461 run_test 24a "Archive, release, and restore does not change a/mtime (i/o)"
1462
1463 test_24b() {
1464         local file=$DIR/$tdir/$tfile
1465         local fid
1466         local sum0
1467         local sum1
1468         # LU-3811
1469
1470         # Test needs a running copytool.
1471         copytool_setup
1472         mkdir -p $DIR/$tdir
1473
1474         # Check that root can do HSM actions on a ordinary user's file.
1475         rm -f $file
1476         fid=$(make_small $file)
1477         sum0=$(md5sum $file)
1478
1479         chown $RUNAS_ID:$RUNAS_GID $file ||
1480                 error "cannot chown '$file' to '$RUNAS_ID'"
1481
1482         chmod ugo-w $DIR/$tdir ||
1483                 error "cannot chmod '$DIR/$tdir'"
1484
1485         $LFS hsm_archive $file
1486         wait_request_state $fid ARCHIVE SUCCEED
1487
1488         $LFS hsm_release $file
1489         check_hsm_flags $file "0x0000000d"
1490
1491         $LFS hsm_restore $file
1492         wait_request_state $fid RESTORE SUCCEED
1493
1494         # Check that ordinary user can get HSM state.
1495         $RUNAS $LFS hsm_state $file ||
1496                 error "user '$RUNAS_ID' cannot get HSM state of '$file'"
1497
1498         $LFS hsm_release $file
1499         check_hsm_flags $file "0x0000000d"
1500
1501         # Check that ordinary user can accessed released file.
1502         sum1=$($RUNAS md5sum $file) ||
1503                 error "user '$RUNAS_ID' cannot read '$file'"
1504
1505         [ "$sum0" == "$sum1" ] ||
1506                 error "md5sum mismatch for '$file'"
1507
1508         copytool_cleanup
1509 }
1510 run_test 24b "root can archive, release, and restore user files"
1511
1512 cleanup_test_24c() {
1513         trap 0
1514         set_hsm_param user_request_mask RESTORE
1515         set_hsm_param group_request_mask RESTORE
1516         set_hsm_param other_request_mask RESTORE
1517 }
1518
1519 test_24c() {
1520         local file=$DIR/$tdir/$tfile
1521         local action=archive
1522         local user_save
1523         local group_save
1524         local other_save
1525
1526         # test needs a running copytool
1527         copytool_setup
1528
1529         mkdir -p $DIR/$tdir
1530
1531         # Save the default masks and check that cleanup_24c will
1532         # restore the request masks correctly.
1533         user_save=$(get_hsm_param user_request_mask)
1534         group_save=$(get_hsm_param group_request_mask)
1535         other_save=$(get_hsm_param other_request_mask)
1536
1537         [ "$user_save" == RESTORE ] ||
1538                 error "user_request_mask is '$user_save' expected 'RESTORE'"
1539         [ "$group_save" == RESTORE ] ||
1540                 error "group_request_mask is '$group_save' expected 'RESTORE'"
1541         [ "$other_save" == RESTORE ] ||
1542                 error "other_request_mask is '$other_save' expected 'RESTORE'"
1543
1544         trap cleanup_test_24c EXIT
1545
1546         # User.
1547         rm -f $file
1548         make_small $file
1549         chown $RUNAS_ID:nobody $file ||
1550                 error "cannot chown '$file' to '$RUNAS_ID:nobody'"
1551
1552         set_hsm_param user_request_mask ""
1553         $RUNAS $LFS hsm_$action $file &&
1554                 error "$action by user should fail"
1555
1556         set_hsm_param user_request_mask $action
1557         $RUNAS $LFS hsm_$action $file ||
1558                 error "$action by user should succeed"
1559
1560         # Group.
1561         rm -f $file
1562         make_small $file
1563         chown nobody:$RUNAS_GID $file ||
1564                 error "cannot chown '$file' to 'nobody:$RUNAS_GID'"
1565
1566         set_hsm_param group_request_mask ""
1567         $RUNAS $LFS hsm_$action $file &&
1568                 error "$action by group should fail"
1569
1570         set_hsm_param group_request_mask $action
1571         $RUNAS $LFS hsm_$action $file ||
1572                 error "$action by group should succeed"
1573
1574         # Other.
1575         rm -f $file
1576         make_small $file
1577         chown nobody:nobody $file ||
1578                 error "cannot chown '$file' to 'nobody:nobody'"
1579
1580         set_hsm_param other_request_mask ""
1581         $RUNAS $LFS hsm_$action $file &&
1582                 error "$action by other should fail"
1583
1584         set_hsm_param other_request_mask $action
1585         $RUNAS $LFS hsm_$action $file ||
1586                 error "$action by other should succeed"
1587
1588         copytool_cleanup
1589         cleanup_test_24c
1590 }
1591 run_test 24c "check that user,group,other request masks work"
1592
1593 cleanup_test_24d() {
1594         trap 0
1595         mount -o remount,rw $MOUNT2
1596 }
1597
1598 test_24d() {
1599         local file1=$DIR/$tdir/$tfile
1600         local file2=$DIR2/$tdir/$tfile
1601         local fid1
1602         local fid2
1603
1604         copytool_setup
1605
1606         mkdir -p $DIR/$tdir
1607         rm -f $file1
1608         fid1=$(make_small $file1)
1609
1610         trap cleanup_test_24d EXIT
1611
1612         mount -o remount,ro $MOUNT2
1613
1614         fid2=$(path2fid $file2)
1615         [ "$fid1" == "$fid2" ] ||
1616                 error "FID mismatch '$fid1' != '$fid2'"
1617
1618         $LFS hsm_archive $file2 &&
1619                 error "archive should fail on read-only mount"
1620         check_hsm_flags $file1 "0x00000000"
1621
1622         $LFS hsm_archive $file1
1623         wait_request_state $fid1 ARCHIVE SUCCEED
1624
1625         $LFS hsm_release $file1
1626         $LFS hsm_restore $file2
1627         wait_request_state $fid1 RESTORE SUCCEED
1628
1629         $LFS hsm_release $file1 || error "cannot release '$file1'"
1630         dd if=$file2 of=/dev/null bs=1M || "cannot read '$file2'"
1631
1632         $LFS hsm_release $file2 &&
1633                 error "release should fail on read-only mount"
1634
1635         copytool_cleanup
1636         cleanup_test_24d
1637 }
1638 run_test 24d "check that read-only mounts are respected"
1639
1640 test_25a() {
1641         # test needs a running copytool
1642         copytool_setup
1643
1644         mkdir -p $DIR/$tdir
1645         copy2archive /etc/hosts $tdir/$tfile
1646
1647         local f=$DIR/$tdir/$tfile
1648
1649         import_file $tdir/$tfile $f
1650
1651         $LFS hsm_set --lost $f
1652
1653         md5sum $f
1654         local st=$?
1655
1656         [[ $st == 1 ]] || error "lost file access should failed (returns $st)"
1657
1658         copytool_cleanup
1659 }
1660 run_test 25a "Restore lost file (HS_LOST flag) from import"\
1661              " (Operation not permitted)"
1662
1663 test_25b() {
1664         # test needs a running copytool
1665         copytool_setup
1666
1667         mkdir -p $DIR/$tdir
1668
1669         local f=$DIR/$tdir/$tfile
1670         local fid=$(copy_file /etc/passwd $f)
1671
1672         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1673         wait_request_state $fid ARCHIVE SUCCEED
1674
1675         $LFS hsm_release $f
1676         $LFS hsm_set --lost $f
1677         md5sum $f
1678         st=$?
1679
1680         [[ $st == 1 ]] || error "lost file access should failed (returns $st)"
1681
1682         copytool_cleanup
1683 }
1684 run_test 25b "Restore lost file (HS_LOST flag) after release"\
1685              " (Operation not permitted)"
1686
1687 test_26() {
1688         # test needs a running copytool
1689         copytool_setup
1690
1691         mkdir -p $DIR/$tdir
1692         local f=$DIR/$tdir/$tfile
1693         local fid=$(make_large_for_progress $f)
1694         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1695         wait_request_state $fid ARCHIVE SUCCEED
1696
1697         $LFS hsm_remove $f
1698         wait_request_state $fid REMOVE SUCCEED
1699
1700         check_hsm_flags $f "0x00000000"
1701
1702         copytool_cleanup
1703 }
1704 run_test 26 "Remove the archive of a valid file"
1705
1706 test_27a() {
1707         # test needs a running copytool
1708         copytool_setup
1709
1710         mkdir -p $DIR/$tdir
1711         make_archive $tdir/$tfile
1712         local f=$DIR/$tdir/$tfile
1713         import_file $tdir/$tfile $f
1714         local fid=$(path2fid $f)
1715
1716         $LFS hsm_remove $f
1717
1718         [[ $? != 0 ]] || error "Remove of a released file should fail"
1719
1720         copytool_cleanup
1721 }
1722 run_test 27a "Remove the archive of an imported file (Operation not permitted)"
1723
1724 test_27b() {
1725         # test needs a running copytool
1726         copytool_setup
1727
1728         mkdir -p $DIR/$tdir
1729         local f=$DIR/$tdir/$tfile
1730         local fid=$(make_large_for_progress $f)
1731         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1732         wait_request_state $fid ARCHIVE SUCCEED
1733         $LFS hsm_release $f
1734
1735         $LFS hsm_remove $f
1736
1737         [[ $? != 0 ]] || error "Remove of a released file should fail"
1738
1739         copytool_cleanup
1740 }
1741 run_test 27b "Remove the archive of a relased file (Operation not permitted)"
1742
1743 test_28() {
1744         # test needs a running copytool
1745         copytool_setup
1746
1747         mkdir -p $DIR/$tdir
1748         local f=$DIR/$tdir/$tfile
1749         local fid=$(make_large_for_progress $f)
1750         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1751         wait_request_state $fid ARCHIVE SUCCEED
1752
1753         cdt_disable
1754         $LFS hsm_remove $f
1755
1756         rm -f $f
1757
1758         cdt_enable
1759
1760         wait_request_state $fid REMOVE SUCCEED
1761
1762         copytool_cleanup
1763 }
1764 run_test 28 "Concurrent archive/file remove"
1765
1766 test_30a() {
1767         # restore at exec cannot work on agent node (because of Linux kernel
1768         # protection of executables)
1769         needclients 2 || return 0
1770
1771         # test needs a running copytool
1772         copytool_setup
1773
1774         mkdir -p $DIR/$tdir
1775         copy2archive /bin/true $tdir/$tfile
1776
1777         local f=$DIR/$tdir/true
1778         import_file $tdir/$tfile $f
1779
1780         local fid=$(path2fid $f)
1781
1782         # set no retry action mode
1783         cdt_set_no_retry
1784         do_node $CLIENT2 $f
1785         local st=$?
1786
1787         # cleanup
1788         # remove no try action mode
1789         cdt_clear_no_retry
1790         $LFS hsm_state $f
1791
1792         [[ $st == 0 ]] || error "Failed to exec a released file"
1793
1794         copytool_cleanup
1795 }
1796 run_test 30a "Restore at exec (import case)"
1797
1798 test_30b() {
1799         # restore at exec cannot work on agent node (because of Linux kernel
1800         # protection of executables)
1801         needclients 2 || return 0
1802
1803         # test needs a running copytool
1804         copytool_setup
1805
1806         mkdir -p $DIR/$tdir
1807         local f=$DIR/$tdir/true
1808         local fid=$(copy_file /bin/true $f)
1809         chmod 755 $f
1810         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1811         wait_request_state $fid ARCHIVE SUCCEED
1812         $LFS hsm_release $f
1813         $LFS hsm_state $f
1814         # set no retry action mode
1815         cdt_set_no_retry
1816         do_node $CLIENT2 $f
1817         local st=$?
1818
1819         # cleanup
1820         # remove no try action mode
1821         cdt_clear_no_retry
1822         $LFS hsm_state $f
1823
1824         [[ $st == 0 ]] || error "Failed to exec a released file"
1825
1826         copytool_cleanup
1827 }
1828 run_test 30b "Restore at exec (release case)"
1829
1830 restore_and_check_size() {
1831         local f=$1
1832         local fid=$2
1833         local s=$(stat -c "%s" $f)
1834         local n=$s
1835         local st=$(get_hsm_flags $f)
1836         local err=0
1837         local cpt=0
1838         $LFS hsm_restore $f
1839         while [[ "$st" != "0x00000009" && $cpt -le 10 ]]
1840         do
1841                 n=$(stat -c "%s" $f)
1842                 # we echo in both cases to show stat is not
1843                 # hang
1844                 if [[ $n != $s ]]; then
1845                         echo "size seen is $n != $s"
1846                         err=1
1847                 else
1848                         echo "size seen is right: $n == $s"
1849                 fi
1850                 st=$(get_hsm_flags $f)
1851                 sleep 10
1852                 cpt=$((cpt + 1))
1853         done
1854         if [[ $cpt -lt 10 ]]; then
1855                 echo " restore is too long"
1856         else
1857                 echo " "done
1858         fi
1859         wait_request_state $fid RESTORE SUCCEED
1860         return $err
1861 }
1862
1863 test_31a() {
1864         # test needs a running copytool
1865         copytool_setup
1866
1867         mkdir -p $DIR/$tdir
1868
1869         make_archive $tdir/$tfile
1870         local f=$DIR/$tdir/$tfile
1871         import_file $tdir/$tfile $f
1872         local fid=$($LFS path2fid $f)
1873         HSM_ARCHIVE_PURGE=false copytool_setup
1874
1875         restore_and_check_size $f $fid
1876         local err=$?
1877
1878         [[ $err -eq 0 ]] || error "File size changed during restore"
1879
1880         copytool_cleanup
1881 }
1882 run_test 31a "Import a large file and check size during restore"
1883
1884
1885 test_31b() {
1886         # test needs a running copytool
1887         copytool_setup
1888
1889         mkdir -p $DIR/$tdir
1890
1891         local f=$DIR/$tdir/$tfile
1892         local fid=$(make_large_for_progress $f)
1893         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1894         wait_request_state $fid ARCHIVE SUCCEED
1895         $LFS hsm_release $f
1896
1897         restore_and_check_size $f $fid
1898         local err=$?
1899
1900         [[ $err -eq 0 ]] || error "File size changed during restore"
1901
1902         copytool_cleanup
1903 }
1904 run_test 31b "Restore a large unaligned file and check size during restore"
1905
1906 test_31c() {
1907         # test needs a running copytool
1908         copytool_setup
1909
1910         mkdir -p $DIR/$tdir
1911
1912         local f=$DIR/$tdir/$tfile
1913         local fid=$(make_large_for_progress_aligned $f)
1914         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1915         wait_request_state $fid ARCHIVE SUCCEED
1916         $LFS hsm_release $f
1917
1918         restore_and_check_size $f $fid
1919         local err=$?
1920
1921         [[ $err -eq 0 ]] || error "File size changed during restore"
1922
1923         copytool_cleanup
1924 }
1925 run_test 31c "Restore a large aligned file and check size during restore"
1926
1927 test_33() {
1928         # test needs a running copytool
1929         copytool_setup
1930
1931         mkdir -p $DIR/$tdir
1932
1933         local f=$DIR/$tdir/$tfile
1934         local fid=$(make_large_for_progress $f)
1935         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1936         wait_request_state $fid ARCHIVE SUCCEED
1937         $LFS hsm_release $f
1938
1939         md5sum $f >/dev/null &
1940         local pid=$!
1941         wait_request_state $fid RESTORE STARTED
1942
1943         kill -15 $pid
1944         sleep 1
1945
1946         # Check restore trigger process was killed
1947         local killed=$(ps -o pid,comm hp $pid >/dev/null)
1948
1949         $LFS hsm_cancel $f
1950
1951         wait_request_state $fid RESTORE CANCELED
1952         wait_request_state $fid CANCEL SUCCEED
1953
1954         [ -z $killed ] ||
1955                 error "Cannot kill process waiting for restore ($killed)"
1956
1957         copytool_cleanup
1958 }
1959 run_test 33 "Kill a restore waiting process"
1960
1961 test_34() {
1962         # test needs a running copytool
1963         copytool_setup
1964
1965         mkdir -p $DIR/$tdir
1966
1967         local f=$DIR/$tdir/$tfile
1968         local fid=$(make_large_for_progress $f)
1969         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
1970         wait_request_state $fid ARCHIVE SUCCEED
1971         $LFS hsm_release $f
1972
1973         md5sum $f >/dev/null &
1974         local pid=$!
1975         wait_request_state $fid RESTORE STARTED
1976
1977         rm $f || error "rm $f failed"
1978         # rm must not block during restore
1979         wait_request_state $fid RESTORE STARTED
1980
1981         wait_request_state $fid RESTORE SUCCEED
1982         # check md5sum pgm finished
1983         local there=$(ps -o pid,comm hp $pid >/dev/null)
1984         [[ -z $there ]] || error "Restore initiator does not exit"
1985
1986         local rc=$(wait $pid)
1987         [[ $rc -eq 0 ]] || error "Restore initiator failed with $rc"
1988
1989         copytool_cleanup
1990 }
1991 run_test 34 "Remove file during restore"
1992
1993 test_35() {
1994         # test needs a running copytool
1995         copytool_setup
1996
1997         mkdir -p $DIR/$tdir
1998
1999         local f=$DIR/$tdir/$tfile
2000         local f1=$DIR/$tdir/$tfile-1
2001         local fid=$(make_large_for_progress $f)
2002         local fid1=$(copy_file /etc/passwd $f1)
2003         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2004         wait_request_state $fid ARCHIVE SUCCEED
2005         $LFS hsm_release $f
2006
2007         md5sum $f >/dev/null &
2008         local pid=$!
2009         wait_request_state $fid RESTORE STARTED
2010
2011         mv $f1 $f || error "mv $f1 $f failed"
2012         # mv must not block during restore
2013         wait_request_state $fid RESTORE STARTED
2014
2015         wait_request_state $fid RESTORE SUCCEED
2016         # check md5sum pgm finished
2017         local there=$(ps -o pid,comm hp $pid >/dev/null)
2018         [[ -z $there ]] || error "Restore initiator does not exit"
2019
2020         local rc=$(wait $pid)
2021         [[ $rc -eq 0 ]] || error "Restore initiator failed with $rc"
2022
2023         fid2=$(path2fid $f)
2024         [[ $fid2 == $fid1 ]] || error "Wrong fid after mv $fid2 != $fid1"
2025
2026         copytool_cleanup
2027 }
2028 run_test 35 "Overwrite file during restore"
2029
2030 test_36() {
2031         # test needs a running copytool
2032         copytool_setup
2033
2034         mkdir -p $DIR/$tdir
2035
2036         local f=$DIR/$tdir/$tfile
2037         local fid=$(make_large_for_progress $f)
2038         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2039         wait_request_state $fid ARCHIVE SUCCEED
2040         $LFS hsm_release $f
2041
2042         md5sum $f >/dev/null &
2043         local pid=$!
2044         wait_request_state $fid RESTORE STARTED
2045
2046         mv $f $f.new
2047         # rm must not block during restore
2048         wait_request_state $fid RESTORE STARTED
2049
2050         wait_request_state $fid RESTORE SUCCEED
2051         # check md5sum pgm finished
2052         local there=$(ps -o pid,comm hp $pid >/dev/null)
2053         [[ -z $there ]] ||
2054                 error "Restore initiator does not exit"
2055
2056         local rc=$(wait $pid)
2057         [[ $rc -eq 0 ]] ||
2058                 error "Restore initiator failed with $rc"
2059
2060         copytool_cleanup
2061 }
2062 run_test 36 "Move file during restore"
2063
2064 multi_archive() {
2065         local prefix=$1
2066         local count=$2
2067         local n=""
2068
2069         for n in $(seq 1 $count); do
2070                 $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $prefix.$n
2071         done
2072         echo "$count archive requests submitted"
2073 }
2074
2075 test_40() {
2076         local stream_count=4
2077         local file_count=100
2078         mkdir -p $DIR/$tdir
2079         local f=$DIR/$tdir/$tfile
2080         local i=""
2081         local p=""
2082         local fid=""
2083
2084         for i in $(seq 1 $file_count); do
2085                 for p in $(seq 1 $stream_count); do
2086                         fid=$(copy_file /etc/hosts $f.$p.$i)
2087                 done
2088         done
2089         copytool_setup
2090         # to be sure wait_all_done will not be mislead by previous tests
2091         cdt_purge
2092         wait_for_grace_delay
2093         typeset -a pids
2094         # start archive streams in background (archive files in parallel)
2095         for p in $(seq 1 $stream_count); do
2096                 multi_archive $f.$p $file_count &
2097                 pids[$p]=$!
2098         done
2099         echo -n  "Wait for all requests being enqueued..."
2100         wait ${pids[*]}
2101         echo OK
2102         wait_all_done 100
2103         copytool_cleanup
2104 }
2105 run_test 40 "Parallel archive requests"
2106
2107 test_52() {
2108         # test needs a running copytool
2109         copytool_setup
2110
2111         mkdir -p $DIR/$tdir
2112         local f=$DIR/$tdir/$tfile
2113         local fid=$(copy_file /etc/motd $f 1)
2114
2115         $LFS hsm_archive $f || error "could not archive file"
2116         wait_request_state $fid ARCHIVE SUCCEED
2117         check_hsm_flags $f "0x00000009"
2118
2119         multiop_bg_pause $f O_c || error "multiop failed"
2120         local MULTIPID=$!
2121
2122         mds_evict_client
2123         client_up || client_up || true
2124
2125         kill -USR1 $MULTIPID
2126         wait $MULTIPID || error "multiop close failed"
2127
2128         check_hsm_flags $f "0x0000000b"
2129
2130         copytool_cleanup
2131 }
2132 run_test 52 "Opened for write file on an evicted client should be set dirty"
2133
2134 test_53() {
2135         # test needs a running copytool
2136         copytool_setup
2137
2138         mkdir -p $DIR/$tdir
2139         local f=$DIR/$tdir/$tfile
2140         local fid=$(copy_file /etc/motd $f 1)
2141
2142         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2143                 error "could not archive file"
2144         wait_request_state $fid ARCHIVE SUCCEED
2145         check_hsm_flags $f "0x00000009"
2146
2147         multiop_bg_pause $f o_c || error "multiop failed"
2148         MULTIPID=$!
2149
2150         mds_evict_client
2151         client_up || client_up || true
2152
2153         kill -USR1 $MULTIPID
2154         wait $MULTIPID || error "multiop close failed"
2155
2156         check_hsm_flags $f "0x00000009"
2157
2158         copytool_cleanup
2159 }
2160 run_test 53 "Opened for read file on an evicted client should not be set dirty"
2161
2162 test_54() {
2163         # test needs a running copytool
2164         copytool_setup
2165
2166         mkdir -p $DIR/$tdir
2167         local f=$DIR/$tdir/$tfile
2168         local fid=$(make_small $f)
2169
2170         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2171                 error "could not archive file"
2172         wait_request_state $fid ARCHIVE STARTED
2173
2174         check_hsm_flags $f "0x00000001"
2175
2176         # Avoid coordinator resending this request as soon it has failed.
2177         cdt_set_no_retry
2178
2179         echo "foo" >> $f
2180         sync
2181         wait_request_state $fid ARCHIVE FAILED
2182
2183         check_hsm_flags $f "0x00000003"
2184
2185         cdt_clear_no_retry
2186         copytool_cleanup
2187 }
2188 run_test 54 "Write during an archive cancels it"
2189
2190 test_55() {
2191         # test needs a running copytool
2192         copytool_setup
2193
2194         mkdir -p $DIR/$tdir
2195         local f=$DIR/$tdir/$tfile
2196         local fid=$(make_small $f)
2197
2198         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2199                 error "could not archive file"
2200         wait_request_state $fid ARCHIVE STARTED
2201
2202         check_hsm_flags $f "0x00000001"
2203
2204         # Avoid coordinator resending this request as soon it has failed.
2205         cdt_set_no_retry
2206
2207         $TRUNCATE $f 1024 || error "truncate failed"
2208         sync
2209         wait_request_state $fid ARCHIVE FAILED
2210
2211         check_hsm_flags $f "0x00000003"
2212
2213         cdt_clear_no_retry
2214         copytool_cleanup
2215 }
2216 run_test 55 "Truncate during an archive cancels it"
2217
2218 test_56() {
2219         # test needs a running copytool
2220         copytool_setup
2221
2222         mkdir -p $DIR/$tdir
2223         local f=$DIR/$tdir/$tfile
2224         local fid=$(make_large_for_progress $f)
2225
2226         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2227                 error "could not archive file"
2228         wait_request_state $fid ARCHIVE STARTED
2229
2230         check_hsm_flags $f "0x00000001"
2231
2232         # Change metadata and sync to be sure we are not changing only
2233         # in memory.
2234         chmod 644 $f
2235         chgrp sys $f
2236         sync
2237         wait_request_state $fid ARCHIVE SUCCEED
2238
2239         check_hsm_flags $f "0x00000009"
2240
2241         copytool_cleanup
2242 }
2243 run_test 56 "Setattr during an archive is ok"
2244
2245 test_57() {
2246         # Need one client for I/O, one for request
2247         needclients 2 || return 0
2248
2249         # test needs a running copytool
2250         copytool_setup
2251
2252         mkdir -p $DIR/$tdir
2253         local f=$DIR/$tdir/test_archive_remote
2254         # Create a file on a remote node
2255         do_node $CLIENT2 "dd if=/dev/urandom of=$f bs=1M "\
2256                 "count=2 conv=fsync"
2257
2258         # And archive it
2259         do_node $CLIENT2 "$LFS hsm_archive -a $HSM_ARCHIVE_NUMBER $f" ||
2260                 error "hsm_archive failed"
2261         local fid=$(path2fid $f)
2262         wait_request_state $fid ARCHIVE SUCCEED
2263
2264         # Release and implicit restore it
2265         do_node $CLIENT2 "$LFS hsm_release $f" ||
2266                 error "hsm_release failed"
2267         do_node $CLIENT2 "md5sum $f" ||
2268                 error "hsm_restore failed"
2269
2270         wait_request_state $fid RESTORE SUCCEED
2271
2272         copytool_cleanup
2273 }
2274 run_test 57 "Archive a file with dirty cache on another node"
2275
2276 truncate_released_file() {
2277         local src_file=$1
2278         local trunc_to=$2
2279
2280         local sz=$(stat -c %s $src_file)
2281         local f=$DIR/$tdir/$tfile
2282         local fid=$(copy_file $1 $f)
2283         local ref=$f-ref
2284         cp $f $f-ref
2285
2286         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f ||
2287                 error "could not archive file"
2288         wait_request_state $fid ARCHIVE SUCCEED
2289
2290         $LFS hsm_release $f || error "could not release file"
2291
2292         $TRUNCATE $f $trunc_to || error "truncate failed"
2293         sync
2294
2295         local sz1=$(stat -c %s $f)
2296         [[ $sz1 == $trunc_to ]] ||
2297                 error "size after trunc: $sz1 expect $trunc_to, original $sz"
2298
2299         $LFS hsm_state $f
2300         check_hsm_flags $f "0x0000000b"
2301
2302         local state=$(get_request_state $fid RESTORE)
2303         [[ "$state" == "SUCCEED" ]] ||
2304                 error "truncate $sz does not trig restore, state = $state"
2305
2306         $TRUNCATE $ref $trunc_to
2307         cmp $ref $f || error "file data wrong after truncate"
2308
2309         rm -f $f $f-ref
2310 }
2311
2312 test_58() {
2313         # test needs a running copytool
2314         copytool_setup
2315
2316         mkdir -p $DIR/$tdir
2317
2318         local sz=$(stat -c %s /etc/passwd)
2319
2320         echo "truncate up from $sz to $((sz*2))"
2321         truncate_released_file /etc/passwd $((sz*2))
2322
2323         echo "truncate down from $sz to $((sz/2))"
2324         truncate_released_file /etc/passwd $((sz/2))
2325
2326         echo "truncate to 0"
2327         truncate_released_file /etc/passwd 0
2328
2329         copytool_cleanup
2330 }
2331 run_test 58 "Truncate a released file will trigger restore"
2332
2333 test_90() {
2334         file_count=57
2335         mkdir -p $DIR/$tdir
2336         local f=$DIR/$tdir/$tfile
2337         local FILELIST=/tmp/filelist.txt
2338         local i=""
2339
2340         rm -f $FILELIST
2341         for i in $(seq 1 $file_count); do
2342                 fid=$(copy_file /etc/hosts $f.$i)
2343                 echo $f.$i >> $FILELIST
2344         done
2345         copytool_setup
2346         # to be sure wait_all_done will not be mislead by previous tests
2347         cdt_purge
2348         wait_for_grace_delay
2349         $LFS hsm_archive --filelist $FILELIST ||
2350                 error "cannot archive a file list"
2351         wait_all_done 100
2352         $LFS hsm_release --filelist $FILELIST ||
2353                 error "cannot release a file list"
2354         $LFS hsm_restore --filelist $FILELIST ||
2355                 error "cannot restore a file list"
2356         wait_all_done 100
2357         copytool_cleanup
2358 }
2359 run_test 90 "Archive/restore a file list"
2360
2361 double_verify_reset_hsm_param() {
2362         local p=$1
2363         echo "Testing $HSM_PARAM.$p"
2364         local val=$(get_hsm_param $p)
2365         local save=$val
2366         local val2=$(($val * 2))
2367         set_hsm_param $p $val2
2368         val=$(get_hsm_param $p)
2369         [[ $val == $val2 ]] ||
2370                 error "$HSM_PARAM.$p: $val != $val2 should be (2 * $save)"
2371         echo "Set $p to 0 must failed"
2372         set_hsm_param $p 0
2373         local rc=$?
2374         # restore value
2375         set_hsm_param $p $save
2376
2377         if [[ $rc == 0 ]]; then
2378                 error "we must not be able to set $HSM_PARAM.$p to 0"
2379         fi
2380 }
2381
2382 test_100() {
2383         double_verify_reset_hsm_param loop_period
2384         double_verify_reset_hsm_param grace_delay
2385         double_verify_reset_hsm_param request_timeout
2386         double_verify_reset_hsm_param max_requests
2387         double_verify_reset_hsm_param default_archive_id
2388 }
2389 run_test 100 "Set coordinator /proc tunables"
2390
2391 test_102() {
2392         cdt_disable
2393         cdt_enable
2394         cdt_restart
2395 }
2396 run_test 102 "Verify coordinator control"
2397
2398 test_103() {
2399         # test needs a running copytool
2400         copytool_setup
2401
2402         local i=""
2403         local fid=""
2404
2405         mkdir -p $DIR/$tdir
2406         for i in $(seq 1 20); do
2407                 fid=$(copy_file /etc/passwd $DIR/$tdir/$i)
2408         done
2409         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tdir/*
2410
2411         cdt_purge
2412
2413         echo "Current requests"
2414         local res=$(do_facet $SINGLEMDS "$LCTL get_param -n\
2415                         $HSM_PARAM.agent_actions |\
2416                         grep -v CANCELED | grep -v SUCCEED | grep -v FAILED")
2417
2418         [[ -z "$res" ]] || error "Some request have not been canceled"
2419
2420         copytool_cleanup
2421 }
2422 run_test 103 "Purge all requests"
2423
2424 DATA=CEA
2425 DATAHEX='[434541]'
2426 test_104() {
2427         # test needs a running copytool
2428         copytool_setup
2429
2430         mkdir -p $DIR/$tdir
2431         local f=$DIR/$tdir/$tfile
2432         local fid=$(make_large_for_progress $f)
2433         # if cdt is on, it can serve too quickly the request
2434         cdt_disable
2435         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER --data $DATA $f
2436         local data1=$(do_facet $SINGLEMDS "$LCTL get_param -n\
2437                         $HSM_PARAM.agent_actions |\
2438                         grep $fid | cut -f16 -d=")
2439         cdt_enable
2440
2441         [[ "$data1" == "$DATAHEX" ]] ||
2442                 error "Data field in records is ($data1) and not ($DATAHEX)"
2443
2444         copytool_cleanup
2445 }
2446 run_test 104 "Copy tool data field"
2447
2448 test_105() {
2449         mkdir -p $DIR/$tdir
2450         local i=""
2451
2452         cdt_disable
2453         for i in $(seq -w 1 10); do
2454                 cp /etc/passwd $DIR/$tdir/$i
2455                 $LFS hsm_archive $DIR/$tdir/$i
2456         done
2457         local reqcnt1=$(do_facet $SINGLEMDS "$LCTL get_param -n\
2458                         $HSM_PARAM.agent_actions |\
2459                         grep WAITING | wc -l")
2460         cdt_restart
2461         cdt_disable
2462         local reqcnt2=$(do_facet $SINGLEMDS "$LCTL get_param -n\
2463                         $HSM_PARAM.agent_actions |\
2464                         grep WAITING | wc -l")
2465         cdt_enable
2466         cdt_purge
2467         [[ "$reqcnt1" == "$reqcnt2" ]] ||
2468                 error "Requests count after shutdown $reqcnt2 != "\
2469                       "before shutdown $reqcnt1"
2470 }
2471 run_test 105 "Restart of coordinator"
2472
2473 test_106() {
2474         # test needs a running copytool
2475         copytool_setup
2476
2477         local uuid=$(do_rpc_nodes $(facet_active_host $SINGLEAGT) \
2478                 get_client_uuid $MOUNT | cut -d' ' -f2)
2479         local agent=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.agents |
2480                 grep $uuid)
2481         copytool_cleanup
2482         [[ ! -z "$agent" ]] || error "My uuid $uuid not found in agent list"
2483         local agent=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.agents |
2484                 grep $uuid)
2485         [[ -z "$agent" ]] ||
2486                 error "My uuid $uuid still found in agent list,"\
2487                       " after copytool shutdown"
2488         copytool_setup
2489         local agent=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.agents |
2490                 grep $uuid)
2491         copytool_cleanup
2492         [[ ! -z "$agent" ]] ||
2493                 error "My uuid $uuid not found in agent list after"\
2494                       " copytool restart"
2495 }
2496 run_test 106 "Copytool register/unregister"
2497
2498 test_107() {
2499         # test needs a running copytool
2500         copytool_setup
2501         # create and archive file
2502         mkdir -p $DIR/$tdir
2503         local f1=$DIR/$tdir/$tfile
2504         local fid=$(copy_file /etc/passwd $f1)
2505         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f1
2506         wait_request_state $fid ARCHIVE SUCCEED
2507         # shutdown and restart MDS
2508         fail $SINGLEMDS
2509         # check the copytool still gets messages from MDT
2510         local f2=$DIR/$tdir/2
2511         local fid=$(copy_file /etc/passwd $f2)
2512         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f2
2513         # main check of this sanity: this request MUST succeed
2514         wait_request_state $fid ARCHIVE SUCCEED
2515         copytool_cleanup
2516 }
2517 run_test 107 "Copytool re-register after MDS restart"
2518
2519 policy_set_and_test()
2520 {
2521         local change="$1"
2522         local target="$2"
2523         do_facet $SINGLEMDS $LCTL set_param "$HSM_PARAM.policy=\\\"$change\\\""
2524         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
2525         [[ "$policy" == "$target" ]] ||
2526                 error "Wrong policy after '$change': '$policy' != '$target'"
2527 }
2528
2529 test_109() {
2530         # to force default policy setting if error
2531         CDT_POLICY_HAD_CHANGED=true
2532
2533         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
2534         local default="NonBlockingRestore [NoRetryAction]"
2535         [[ "$policy" == "$default" ]] ||
2536                 error "default policy has changed,"\
2537                       " '$policy' != '$default' update the test"
2538         policy_set_and_test "+NBR" "[NonBlockingRestore] [NoRetryAction]"
2539         policy_set_and_test "+NRA" "[NonBlockingRestore] [NoRetryAction]"
2540         policy_set_and_test "-NBR" "NonBlockingRestore [NoRetryAction]"
2541         policy_set_and_test "-NRA" "NonBlockingRestore NoRetryAction"
2542         policy_set_and_test "NRA NBR" "[NonBlockingRestore] [NoRetryAction]"
2543         # useless bacause we know but safer for futur changes to use real value
2544         local policy=$(do_facet $SINGLEMDS $LCTL get_param -n $HSM_PARAM.policy)
2545         echo "Next set_param must failed"
2546         policy_set_and_test "wrong" "$policy"
2547
2548         # return to default
2549         echo "Back to default policy"
2550         cdt_set_sanity_policy
2551 }
2552 run_test 109 "Policy display/change"
2553
2554 test_110a() {
2555         # test needs a running copytool
2556         copytool_setup
2557
2558         mkdir -p $DIR/$tdir
2559
2560         copy2archive /etc/passwd $tdir/$tfile
2561
2562         local f=$DIR/$tdir/$tfile
2563         import_file $tdir/$tfile $f
2564         local fid=$(path2fid $f)
2565
2566         cdt_set_non_blocking_restore
2567         md5sum $f
2568         local st=$?
2569
2570         # cleanup
2571         wait_request_state $fid RESTORE SUCCEED
2572         cdt_clear_non_blocking_restore
2573
2574         # Test result
2575         [[ $st == 1 ]] ||
2576                 error "md5sum returns $st != 1, "\
2577                         "should also perror ENODATA (No data available)"
2578
2579         copytool_cleanup
2580 }
2581 run_test 110a "Non blocking restore policy (import case)"
2582
2583 test_110b() {
2584         # test needs a running copytool
2585         copytool_setup
2586
2587         mkdir -p $DIR/$tdir
2588         local f=$DIR/$tdir/$tfile
2589         local fid=$(copy_file /etc/passwd $f)
2590         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2591         wait_request_state $fid ARCHIVE SUCCEED
2592         $LFS hsm_release $f
2593
2594         cdt_set_non_blocking_restore
2595         md5sum $f
2596         local st=$?
2597
2598         # cleanup
2599         wait_request_state $fid RESTORE SUCCEED
2600         cdt_clear_non_blocking_restore
2601
2602         # Test result
2603         [[ $st == 1 ]] ||
2604                 error "md5sum returns $st != 1, "\
2605                         "should also perror ENODATA (No data available)"
2606
2607         copytool_cleanup
2608 }
2609 run_test 110b "Non blocking restore policy (release case)"
2610
2611 test_111a() {
2612         # test needs a running copytool
2613         copytool_setup
2614
2615         mkdir -p $DIR/$tdir
2616         copy2archive /etc/passwd $tdir/$tfile
2617
2618         local f=$DIR/$tdir/$tfile
2619
2620         import_file $tdir/$tfile $f
2621         local fid=$(path2fid $f)
2622
2623         cdt_set_no_retry
2624
2625         copytool_remove_backend $fid
2626
2627         $LFS hsm_restore $f
2628         wait_request_state $fid RESTORE FAILED
2629         local st=$?
2630
2631         # cleanup
2632         cdt_clear_no_retry
2633
2634         # Test result
2635         [[ $st == 0 ]] || error "Restore does not failed"
2636
2637         copytool_cleanup
2638 }
2639 run_test 111a "No retry policy (import case), restore will error"\
2640               " (No such file or directory)"
2641
2642 test_111b() {
2643         # test needs a running copytool
2644         copytool_setup
2645
2646         mkdir -p $DIR/$tdir
2647         local f=$DIR/$tdir/$tfile
2648         local fid=$(copy_file /etc/passwd $f)
2649         cdt_set_no_retry
2650         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2651         wait_request_state $fid ARCHIVE SUCCEED
2652         $LFS hsm_release $f
2653
2654         copytool_remove_backend $fid
2655
2656         $LFS hsm_restore $f
2657         wait_request_state $fid RESTORE FAILED
2658         local st=$?
2659
2660         # cleanup
2661         cdt_clear_no_retry
2662
2663         # Test result
2664         [[ $st == 0 ]] || error "Restore does not failed"
2665
2666         copytool_cleanup
2667 }
2668 run_test 111b "No retry policy (release case), restore will error"\
2669               " (No such file or directory)"
2670
2671 test_112() {
2672         # test needs a running copytool
2673         copytool_setup
2674
2675         mkdir -p $DIR/$tdir
2676         local f=$DIR/$tdir/$tfile
2677         local fid=$(copy_file /etc/passwd $f)
2678         cdt_disable
2679         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2680         local l=$($LFS hsm_action $f)
2681         echo $l
2682         local res=$(echo $l | cut -f 2- -d" " | grep ARCHIVE)
2683
2684         # cleanup
2685         cdt_enable
2686         wait_request_state $fid ARCHIVE SUCCEED
2687
2688         # Test result
2689         [[ ! -z "$res" ]] || error "action is $l which is not an ARCHIVE"
2690
2691         copytool_cleanup
2692 }
2693 run_test 112 "State of recorded request"
2694
2695 test_200() {
2696         # test needs a running copytool
2697         copytool_setup
2698
2699         mkdir -p $DIR/$tdir
2700         local f=$DIR/$tdir/$tfile
2701         local fid=$(make_large_for_cancel $f)
2702         # test with cdt on is made in test_221
2703         cdt_disable
2704         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2705         $LFS hsm_cancel $f
2706         cdt_enable
2707         wait_request_state $fid ARCHIVE CANCELED
2708         wait_request_state $fid CANCEL SUCCEED
2709
2710         copytool_cleanup
2711 }
2712 run_test 200 "Register/Cancel archive"
2713
2714 test_201() {
2715         # test needs a running copytool
2716         copytool_setup
2717
2718         mkdir -p $DIR/$tdir
2719         local f=$DIR/$tdir/$tfile
2720         make_archive $tdir/$tfile
2721         import_file $tdir/$tfile $f
2722         local fid=$(path2fid $f)
2723
2724         # test with cdt on is made in test_222
2725         cdt_disable
2726         $LFS hsm_restore $f
2727         $LFS hsm_cancel $f
2728         cdt_enable
2729         wait_request_state $fid RESTORE CANCELED
2730         wait_request_state $fid CANCEL SUCCEED
2731
2732         copytool_cleanup
2733 }
2734 run_test 201 "Register/Cancel restore"
2735
2736 test_202() {
2737         # test needs a running copytool
2738         copytool_setup
2739
2740         mkdir -p $DIR/$tdir
2741         local f=$DIR/$tdir/$tfile
2742         local fid=$(make_large_for_progress $f)
2743         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2744         wait_request_state $fid ARCHIVE SUCCEED
2745
2746         cdt_disable
2747         $LFS hsm_remove $f
2748         $LFS hsm_cancel $f
2749         cdt_enable
2750         wait_request_state $fid REMOVE CANCELED
2751
2752         copytool_cleanup
2753 }
2754 run_test 202 "Register/Cancel remove"
2755
2756 test_220() {
2757         # test needs a running copytool
2758         copytool_setup
2759
2760         mkdir -p $DIR/$tdir
2761
2762         local f=$DIR/$tdir/$tfile
2763         local fid=$(copy_file /etc/passwd $f)
2764
2765         changelog_setup
2766
2767         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2768         wait_request_state $fid ARCHIVE SUCCEED
2769
2770         local flags=$(changelog_get_flags $MDT0 HSM $fid | tail -1)
2771         changelog_cleanup
2772
2773         local target=0x0
2774         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
2775
2776         copytool_cleanup
2777 }
2778 run_test 220 "Changelog for archive"
2779
2780 test_221() {
2781         # test needs a running copytool
2782         copytool_setup
2783
2784         mkdir -p $DIR/$tdir
2785
2786         local f=$DIR/$tdir/$tfile
2787         local fid=$(make_large_for_cancel $f)
2788
2789         changelog_setup
2790
2791         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2792         wait_request_state $fid ARCHIVE STARTED
2793         $LFS hsm_cancel $f
2794         wait_request_state $fid ARCHIVE CANCELED
2795         wait_request_state $fid CANCEL SUCCEED
2796
2797         local flags=$(changelog_get_flags $MDT0 HSM $fid | tail -1)
2798
2799         local target=0x7d
2800         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
2801
2802         cleanup
2803 }
2804 run_test 221 "Changelog for archive canceled"
2805
2806 test_222a() {
2807         # test needs a running copytool
2808         copytool_setup
2809
2810         mkdir -p $DIR/$tdir
2811         copy2archive /etc/passwd $tdir/$tfile
2812
2813         local f=$DIR/$tdir/$tfile
2814         import_file $tdir/$tfile $f
2815         local fid=$(path2fid $f)
2816
2817         changelog_setup
2818
2819         $LFS hsm_restore $f
2820         wait_request_state $fid RESTORE SUCCEED
2821
2822         local flags=$(changelog_get_flags $MDT0 HSM $fid | tail -1)
2823
2824         local target=0x80
2825         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
2826
2827         cleanup
2828 }
2829 run_test 222a "Changelog for explicit restore"
2830
2831 test_222b() {
2832         # test needs a running copytool
2833         copytool_setup
2834
2835         mkdir -p $DIR/$tdir
2836         local f=$DIR/$tdir/$tfile
2837         local fid=$(copy_file /etc/passwd $f)
2838
2839         changelog_setup
2840         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2841         wait_request_state $fid ARCHIVE SUCCEED
2842         $LFS hsm_release $f
2843
2844         md5sum $f
2845
2846         wait_request_state $fid RESTORE SUCCEED
2847
2848         local flags=$(changelog_get_flags $MDT0 HSM $fid | tail -1)
2849
2850         local target=0x80
2851         [[ $flags == $target ]] || error "Changelog flag is $flags not $target"
2852
2853         cleanup
2854 }
2855 run_test 222b "Changelog for implicit restore"
2856
2857 test_223a() {
2858         # test needs a running copytool
2859         copytool_setup
2860
2861         mkdir -p $DIR/$tdir
2862
2863         local f=$DIR/$tdir/$tfile
2864         make_archive $tdir/$tfile
2865
2866         changelog_setup
2867
2868         import_file $tdir/$tfile $f
2869         local fid=$(path2fid $f)
2870
2871         $LFS hsm_restore $f
2872         wait_request_state $fid RESTORE STARTED
2873         $LFS hsm_cancel $f
2874         wait_request_state $fid RESTORE CANCELED
2875         wait_request_state $fid CANCEL SUCCEED
2876
2877         local flags=$(changelog_get_flags $MDT0 HSM $fid | tail -1)
2878
2879         local target=0xfd
2880         [[ $flags == $target ]] ||
2881                 error "Changelog flag is $flags not $target"
2882
2883         cleanup
2884 }
2885 run_test 223a "Changelog for restore canceled (import case)"
2886
2887 test_223b() {
2888         # test needs a running copytool
2889         copytool_setup
2890
2891         mkdir -p $DIR/$tdir
2892
2893         local f=$DIR/$tdir/$tfile
2894         local fid=$(make_large_for_progress $f)
2895
2896         changelog_setup
2897         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2898         wait_request_state $fid ARCHIVE SUCCEED
2899         $LFS hsm_release $f
2900         $LFS hsm_restore $f
2901         wait_request_state $fid RESTORE STARTED
2902         $LFS hsm_cancel $f
2903         wait_request_state $fid RESTORE CANCELED
2904         wait_request_state $fid CANCEL SUCCEED
2905
2906         local flags=$(changelog_get_flags $MDT0 HSM $fid | tail -1)
2907
2908         local target=0xfd
2909         [[ $flags == $target ]] ||
2910                 error "Changelog flag is $flags not $target"
2911
2912         cleanup
2913 }
2914 run_test 223b "Changelog for restore canceled (release case)"
2915
2916 test_224() {
2917         # test needs a running copytool
2918         copytool_setup
2919
2920         mkdir -p $DIR/$tdir
2921
2922         local f=$DIR/$tdir/$tfile
2923         local fid=$(copy_file /etc/passwd $f)
2924
2925         changelog_setup
2926         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2927         wait_request_state $fid ARCHIVE SUCCEED
2928
2929         $LFS hsm_remove $f
2930         wait_request_state $fid REMOVE SUCCEED
2931
2932         local flags=$(changelog_get_flags $MDT0 HSM $fid | tail -1)
2933
2934         local target=0x200
2935         [[ $flags == $target ]] ||
2936                 error "Changelog flag is $flags not $target"
2937
2938         cleanup
2939 }
2940 run_test 224 "Changelog for remove"
2941
2942 test_225() {
2943         # test needs a running copytool
2944         copytool_setup
2945
2946         # test is not usable because remove request is too fast
2947         # so it is always finished before cancel can be done ...
2948         echo "Test disabled"
2949         copytool_cleanup
2950         return 0
2951
2952         mkdir -p $DIR/$tdir
2953         local f=$DIR/$tdir/$tfile
2954         local fid=$(make_large_for_progress $f)
2955
2956         changelog_setup
2957         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
2958         wait_request_state $fid ARCHIVE SUCCEED
2959
2960         # if cdt is on, it can serve too quickly the request
2961         cdt_disable
2962         $LFS hsm_remove $f
2963         $LFS hsm_cancel $f
2964         cdt_enable
2965         wait_request_state $fid REMOVE CANCELED
2966         wait_request_state $fid CANCEL SUCCEED
2967
2968         flags=$(changelog_get_flags $MDT0 RENME $fid2)
2969         local flags=$($LFS changelog $MDT0 | grep HSM | grep $fid | tail -1 |
2970                 awk '{print $5}')
2971
2972         local target=0x27d
2973         [[ $flags == $target ]] ||
2974                 error "Changelog flag is $flags not $target"
2975
2976         cleanup
2977 }
2978 run_test 225 "Changelog for remove canceled"
2979
2980 test_226() {
2981         # test needs a running copytool
2982         copytool_setup
2983
2984         mkdir -p $DIR/$tdir
2985
2986         local f1=$DIR/$tdir/$tfile-1
2987         local f2=$DIR/$tdir/$tfile-2
2988         local f3=$DIR/$tdir/$tfile-3
2989         local fid1=$(copy_file /etc/passwd $f1)
2990         local fid2=$(copy_file /etc/passwd $f2)
2991         copy_file /etc/passwd $f3
2992
2993         changelog_setup
2994         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f1
2995         wait_request_state $fid1 ARCHIVE SUCCEED
2996
2997         $LFS hsm_archive $f2
2998         wait_request_state $fid2 ARCHIVE SUCCEED
2999
3000         rm $f1 || error "rm $f1 failed"
3001
3002         local flags=$(changelog_get_flags $MDT0 UNLNK $fid1)
3003
3004         local target=0x3
3005         [[ $flags == $target ]] ||
3006                 error "Changelog flag is $flags not $target"
3007
3008         mv $f3 $f2 || error "mv $f3 $f2 failed"
3009
3010         flags=$(changelog_get_flags $MDT0 RENME $fid2)
3011
3012         target=0x3
3013         [[ $flags == $target ]] ||
3014                 error "Changelog flag is $flags not $target"
3015
3016         cleanup
3017 }
3018 run_test 226 "changelog for last rm/mv with exiting archive"
3019
3020 check_flags_changes() {
3021         local f=$1
3022         local fid=$2
3023         local hsm_flag=$3
3024         local fst=$4
3025         local cnt=$5
3026
3027         local target=0x280
3028         $LFS hsm_set --$hsm_flag $f ||
3029                 error "Cannot set $hsm_flag on $f"
3030         local flags=($(changelog_get_flags $MDT0 HSM $fid))
3031         local seen=${#flags[*]}
3032         cnt=$((fst + cnt))
3033         [[ $seen == $cnt ]] ||
3034                 error "set $hsm_flag: Changelog events $seen != $cnt"
3035         [[ ${flags[$((cnt - 1))]} == $target ]] ||
3036                 error "set $hsm_flag: Changelog flags are "\
3037                         "${flags[$((cnt - 1))]} not $target"
3038
3039         $LFS hsm_clear --$hsm_flag $f ||
3040                 error "Cannot clear $hsm_flag on $f"
3041         flags=($(changelog_get_flags $MDT0 HSM $fid))
3042         seen=${#flags[*]}
3043         cnt=$(($cnt + 1))
3044         [[ $cnt == $seen ]] ||
3045                 error "clear $hsm_flag: Changelog events $seen != $cnt"
3046
3047         [[ ${flags[$((cnt - 1))]} == $target ]] ||
3048                 error "clear $hsm_flag: Changelog flag is "\
3049                         "${flags[$((cnt - 1))]} not $target"
3050 }
3051
3052 test_227() {
3053         # test needs a running copytool
3054         copytool_setup
3055         changelog_setup
3056
3057         mkdir -p $DIR/$tdir
3058         typeset -a flags
3059
3060         for i in norelease noarchive exists archived
3061         do
3062                 local f=$DIR/$tdir/$tfile-$i
3063                 local fid=$(copy_file /etc/passwd $f)
3064                 check_flags_changes $f $fid $i 0 1
3065         done
3066
3067         f=$DIR/$tdir/$tfile---lost
3068         fid=$(copy_file /etc/passwd $f)
3069         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3070         wait_request_state $fid ARCHIVE SUCCEED
3071         check_flags_changes $f $fid lost 3 1
3072
3073         cleanup
3074 }
3075 run_test 227 "changelog when explicit setting of HSM flags"
3076
3077 test_228() {
3078         # test needs a running copytool
3079         copytool_setup
3080
3081         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=1 conv=sync ||
3082                 error "creating $DIR/$tfile"
3083         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tfile
3084         wait_request_state $(path2fid $DIR/$tfile) ARCHIVE SUCCEED
3085
3086         $LFS hsm_release $DIR/$tfile
3087         check_hsm_flags $DIR/$tfile "0x0000000d"
3088
3089         filefrag $DIR/$tfile | grep " 1 extent found" ||
3090                 error "filefrag on released file must return only one extent"
3091
3092         # only newer versions of cp detect sparse files by stat/FIEMAP
3093         # (LU-2580)
3094         cp --sparse=auto $DIR/$tfile $DIR/$tfile.2 ||
3095                 error "copying $DIR/$tfile"
3096         cmp $DIR/$tfile $DIR/$tfile.2 || error "comparing copied $DIR/$tfile"
3097
3098         $LFS hsm_release $DIR/$tfile
3099         check_hsm_flags $DIR/$tfile "0x0000000d"
3100
3101         mkdir $DIR/$tdir
3102
3103         tar cf - --sparse $DIR/$tfile | tar xvf - -C $DIR/$tdir ||
3104                 error "tar failed"
3105         cmp $DIR/$tfile $DIR/$tdir/$DIR/$tfile ||
3106                 error "comparing untarred $DIR/$tfile"
3107
3108         copytool_cleanup
3109 }
3110 run_test 228 "On released file, return extend to FIEMAP. For [cp,tar] --sparse"
3111
3112 test_250() {
3113         # test needs a running copytool
3114         copytool_setup
3115
3116         mkdir -p $DIR/$tdir
3117         local maxrequest=$(get_hsm_param max_requests)
3118         local rqcnt=$(($maxrequest * 3))
3119         local i=""
3120
3121         cdt_disable
3122         for i in $(seq -w 1 $rqcnt); do
3123                 rm -f $DIR/$tdir/$i
3124                 dd if=/dev/urandom of=$DIR/$tdir/$i bs=1M count=10 conv=fsync
3125         done
3126         # we do it in 2 steps, so all requests arrive at the same time
3127         for i in $(seq -w 1 $rqcnt); do
3128                 $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $DIR/$tdir/$i
3129         done
3130         cdt_enable
3131         local cnt=$rqcnt
3132         local wt=$rqcnt
3133         while [[ $cnt != 0 || $wt != 0 ]]; do
3134                 sleep 1
3135                 cnt=$(do_facet $SINGLEMDS "$LCTL get_param -n\
3136                         $HSM_PARAM.agent_actions |\
3137                         grep STARTED | grep -v CANCEL | wc -l")
3138                 [[ $cnt -le $maxrequest ]] ||
3139                         error "$cnt > $maxrequest too many started requests"
3140                 wt=$(do_facet $SINGLEMDS "$LCTL get_param\
3141                         $HSM_PARAM.agent_actions |\
3142                         grep WAITING | wc -l")
3143                 echo "max=$maxrequest started=$cnt waiting=$wt"
3144         done
3145
3146         copytool_cleanup
3147 }
3148 run_test 250 "Coordinator max request"
3149
3150 test_251() {
3151         # test needs a running copytool
3152         copytool_setup
3153
3154         mkdir -p $DIR/$tdir
3155         local f=$DIR/$tdir/$tfile
3156         local fid=$(make_large_for_cancel $f)
3157
3158         cdt_disable
3159         # to have a short test
3160         local old_to=$(get_hsm_param request_timeout)
3161         set_hsm_param request_timeout 4
3162         # to be sure the cdt will wake up frequently so
3163         # it will be able to cancel the "old" request
3164         local old_loop=$(get_hsm_param loop_period)
3165         set_hsm_param loop_period 2
3166         cdt_enable
3167
3168         $LFS hsm_archive --archive $HSM_ARCHIVE_NUMBER $f
3169         wait_request_state $fid ARCHIVE STARTED
3170         sleep 5
3171         wait_request_state $fid ARCHIVE CANCELED
3172
3173         set_hsm_param request_timeout $old_to
3174         set_hsm_param loop_period $old_loop
3175
3176         copytool_cleanup
3177 }
3178 run_test 251 "Coordinator request timeout"
3179
3180 test_300() {
3181         # the only way to test ondisk conf is to restart MDS ...
3182         echo "Stop coordinator and remove coordinator state at mount"
3183         # stop coordinator
3184         cdt_shutdown
3185         # clean on disk conf set by default
3186         cdt_clear_mount_state
3187         cdt_check_state stopped
3188
3189         # check cdt still off after umount/remount
3190         fail $SINGLEMDS
3191         cdt_check_state stopped
3192
3193         echo "Set coordinator start at mount, and start coordinator"
3194         cdt_set_mount_state enabled
3195
3196         # check cdt is on
3197         cdt_check_state enabled
3198
3199         # check cdt still on after umount/remount
3200         fail $SINGLEMDS
3201         cdt_check_state enabled
3202
3203         # we are back to original state (cdt started at mount)
3204 }
3205 run_test 300 "On disk coordinator state kept between MDT umount/mount"
3206
3207 test_301() {
3208         local ai=$(get_hsm_param default_archive_id)
3209         local new=$((ai + 1))
3210
3211         set_hsm_param default_archive_id $new -P
3212         fail $SINGLEMDS
3213         local res=$(get_hsm_param default_archive_id)
3214
3215         # clear value
3216         set_hsm_param default_archive_id "" "-P -d"
3217
3218         [[ $new == $res ]] || error "Value after MDS restart is $res != $new"
3219 }
3220 run_test 301 "HSM tunnable are persistent"
3221
3222 test_302() {
3223         local ai=$(get_hsm_param default_archive_id)
3224         local new=$((ai + 1))
3225
3226         # stop coordinator
3227         cdt_shutdown
3228
3229         set_hsm_param default_archive_id $new -P
3230         fail $SINGLEMDS
3231
3232         # check cdt is on
3233         cdt_check_state enabled
3234
3235         local res=$(get_hsm_param default_archive_id)
3236
3237         # clear value
3238         set_hsm_param default_archive_id "" "-P -d"
3239
3240         [[ $new == $res ]] || error "Value after MDS restart is $res != $new"
3241 }
3242 run_test 302 "HSM tunnable are persistent when CDT is off"
3243
3244 copytool_cleanup
3245
3246 complete $SECONDS
3247 check_and_cleanup_lustre
3248 exit_status