Whamcloud - gitweb
LU-13813 tests: fix stack_trap in conf-sanity test 110/111
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2
3 set -e
4
5 ONLY=${ONLY:-"$*"}
6
7 SRCDIR=$(dirname $0)
8 PTLDEBUG=${PTLDEBUG:--1}
9 LUSTRE=${LUSTRE:-$(dirname $0)/..}
10 . $LUSTRE/tests/test-framework.sh
11 init_test_env "$@"
12 init_logging
13
14 #                                  tool to create lustre filesystem images
15 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 32newtarball"
16
17 # bug number for skipped test: LU-11915
18 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 110"
19 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
20
21 if $SHARED_KEY; then
22         # bug number for skipped tests: LU-9795 (all below)
23         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   84      86      103"
24 fi
25
26 if ! combined_mgs_mds; then
27         # bug number for skipped test: LU-11991         LU-11990
28         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  32a 32b 32c 32d 32e      66"
29         # bug number for skipped test: LU-9897  LU-12032
30         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  84       123F"
31 fi
32
33 #                                  8  22  40  165  (min)
34 [ "$SLOW" = "no" ] && EXCEPT_SLOW="45 69 106 111"
35
36 build_test_filter
37
38 # use small MDS + OST size to speed formatting time
39 # do not use too small MDSSIZE/OSTSIZE, which affect the default journal size
40 # STORED_MDSSIZE is used in test_18
41 STORED_MDSSIZE=$MDSSIZE
42 STORED_OSTSIZE=$OSTSIZE
43 MDSSIZE=200000
44 [ "$mds1_FSTYPE" = zfs ] && MDSSIZE=400000
45 OSTSIZE=200000
46 [ "$ost1_FSTYPE" = zfs ] && OSTSIZE=400000
47
48 fs2mds_HOST=$mds_HOST
49 fs2ost_HOST=$ost_HOST
50 fs3ost_HOST=$ost_HOST
51
52 MDSDEV1_2=$fs2mds_DEV
53 OSTDEV1_2=$fs2ost_DEV
54 OSTDEV2_2=$fs3ost_DEV
55
56 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
57 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
58         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
59 fi
60
61 #
62 require_dsh_mds || exit 0
63 require_dsh_ost || exit 0
64
65 assert_DIR
66
67 gen_config() {
68         # The MGS must be started before the OSTs for a new fs, so start
69         # and stop to generate the startup logs.
70         start_mds
71         start_ost
72         wait_osc_import_state mds ost FULL
73         stop_ost
74         stop_mds
75 }
76
77 reformat_and_config() {
78         reformat
79         if ! combined_mgs_mds ; then
80                 start_mgs
81         fi
82         gen_config
83 }
84
85 writeconf_or_reformat() {
86         # There are at most 2 OSTs for write_conf test
87         # who knows if/where $TUNEFS is installed?
88         # Better reformat if it fails...
89         writeconf_all $MDSCOUNT 2 ||
90                 { echo "tunefs failed, reformatting instead" &&
91                   reformat_and_config && return 0; }
92         return 0
93 }
94
95 reformat() {
96         formatall
97 }
98
99 start_mgs () {
100         echo "start mgs service on $(facet_active_host mgs)"
101         start mgs $(mgsdevname) $MGS_MOUNT_OPTS "$@"
102 }
103
104 start_mdt() {
105         local num=$1
106         local facet=mds$num
107         local dev=$(mdsdevname $num)
108         shift 1
109
110         echo "start mds service on `facet_active_host $facet`"
111         start $facet ${dev} $MDS_MOUNT_OPTS "$@" || return 94
112 }
113
114 stop_mdt_no_force() {
115         local num=$1
116         local facet=mds$num
117         local dev=$(mdsdevname $num)
118         shift 1
119
120         echo "stop mds service on `facet_active_host $facet`"
121         stop $facet || return 97
122 }
123
124 stop_mdt() {
125         local num=$1
126         local facet=mds$num
127         local dev=$(mdsdevname $num)
128         shift 1
129
130         echo "stop mds service on `facet_active_host $facet`"
131         # These tests all use non-failover stop
132         stop $facet -f || return 97
133 }
134
135 start_mds() {
136         local num
137
138         for num in $(seq $MDSCOUNT); do
139                 start_mdt $num "$@" || return 94
140         done
141         for num in $(seq $MDSCOUNT); do
142                 wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds${num} FULL
143         done
144 }
145
146 start_mgsmds() {
147         if ! combined_mgs_mds ; then
148                 start_mgs
149         fi
150         start_mds "$@"
151 }
152
153 stop_mds() {
154         local num
155         for num in $(seq $MDSCOUNT); do
156                 stop_mdt $num || return 97
157         done
158 }
159
160 stop_mgs() {
161         echo "stop mgs service on `facet_active_host mgs`"
162         # These tests all use non-failover stop
163         stop mgs -f  || return 97
164 }
165
166 start_ost() {
167         echo "start ost1 service on `facet_active_host ost1`"
168         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS "$@" || return 95
169         wait_clients_import_state ${CLIENTS:-$HOSTNAME} ost1 FULL
170 }
171
172 stop_ost() {
173         echo "stop ost1 service on `facet_active_host ost1`"
174         # These tests all use non-failover stop
175         stop ost1 -f || return 98
176 }
177
178 start_ost2() {
179         echo "start ost2 service on `facet_active_host ost2`"
180         start ost2 $(ostdevname 2) $OST_MOUNT_OPTS "$@" || return 92
181         wait_clients_import_state ${CLIENTS:-$HOSTNAME} ost2 FULL
182 }
183
184 stop_ost2() {
185         echo "stop ost2 service on `facet_active_host ost2`"
186         # These tests all use non-failover stop
187         stop ost2 -f || return 93
188 }
189
190 mount_client() {
191         local mountpath=$1
192         local mountopt="$2"
193
194         echo "mount $FSNAME ${mountopt:+with opts $mountopt} on $mountpath....."
195         zconf_mount $HOSTNAME $mountpath $mountopt || return 96
196 }
197
198 umount_client() {
199         local mountpath=$1
200         shift
201         echo "umount lustre on $mountpath....."
202         zconf_umount $HOSTNAME $mountpath "$@" || return 97
203 }
204
205 manual_umount_client(){
206         local rc
207         local FORCE=$1
208         echo "manual umount lustre on ${MOUNT}...."
209         do_facet client "umount ${FORCE} $MOUNT"
210         rc=$?
211         return $rc
212 }
213
214 setup() {
215         start_mds || error "MDT start failed"
216         start_ost || error "Unable to start OST1"
217         mount_client $MOUNT || error "client start failed"
218         client_up || error "client_up failed"
219 }
220
221 setup_noconfig() {
222         start_mgsmds
223         start_ost
224         mount_client $MOUNT
225 }
226
227 unload_modules_conf () {
228         if combined_mgs_mds || ! local_mode; then
229                 unload_modules || return 1
230         fi
231 }
232
233 cleanup_nocli() {
234         stop_ost || return 202
235         stop_mds || return 201
236         unload_modules_conf || return 203
237 }
238
239 cleanup() {
240         local force=""
241         [ "x$1" != "x" ] && force='-f'
242         umount_client $MOUNT $force|| return 200
243         cleanup_nocli || return $?
244 }
245
246 cleanup_fs2() {
247         trap 0
248         echo "umount $MOUNT2 ..."
249         umount $MOUNT2 || true
250         echo "stopping fs2mds ..."
251         stop fs2mds -f || true
252         echo "stopping fs2ost ..."
253         stop fs2ost -f || true
254 }
255
256 check_mount() {
257         do_facet client "cp /etc/passwd $DIR/a" || return 71
258         do_facet client "rm $DIR/a" || return 72
259         # make sure lustre is actually mounted (touch will block,
260         # but grep won't, so do it after)
261         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
262         echo "setup single mount lustre success"
263 }
264
265 check_mount2() {
266         do_facet client "touch $DIR/a" || return 71
267         do_facet client "rm $DIR/a" || return 72
268         do_facet client "touch $DIR2/a" || return 73
269         do_facet client "rm $DIR2/a" || return 74
270         echo "setup double mount lustre success"
271 }
272
273 generate_name() {
274         cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w $1 | head -n 1
275 }
276
277 if [ "$ONLY" == "setup" ]; then
278         setup
279         exit
280 fi
281
282 if [ "$ONLY" == "cleanup" ]; then
283         cleanup
284         exit
285 fi
286
287 init_gss
288
289 #create single point mountpoint
290
291 reformat_and_config
292
293 test_0() {
294         setup
295         check_mount || error "check_mount failed"
296         cleanup || error "cleanup failed with $?"
297 }
298 run_test 0 "single mount setup"
299
300 test_1() {
301         start_mds || error "MDS start failed"
302         start_ost || error "unable to start OST"
303         echo "start ost second time..."
304         start_ost && error "2nd OST start should fail"
305         mount_client $MOUNT || error "client start failed"
306         check_mount || error "check_mount failed"
307         cleanup || error "cleanup failed with $?"
308 }
309 run_test 1 "start up ost twice (should return errors)"
310
311 test_2() {
312         start_mds || error "MDT start failed"
313         echo "start mds second time.."
314         start_mds && error "2nd MDT start should fail"
315         start_ost || error "OST start failed"
316         mount_client $MOUNT || error "mount_client failed to start client"
317         check_mount || error "check_mount failed"
318         cleanup || error "cleanup failed with $?"
319 }
320 run_test 2 "start up mds twice (should return err)"
321
322 test_3() {
323         setup
324         #mount.lustre returns an error if already in mtab
325         mount_client $MOUNT && error "2nd client mount should fail"
326         check_mount || error "check_mount failed"
327         cleanup || error "cleanup failed with $?"
328 }
329 run_test 3 "mount client twice (should return err)"
330
331 test_4() {
332         setup
333         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
334         stop_ost || error "Unable to stop OST1"
335         umount_client $MOUNT -f || error "unmount $MOUNT failed"
336         cleanup_nocli
337         eno=$?
338         # ok for ost to fail shutdown
339         if [ 202 -ne $eno ] && [ 0 -ne $eno ]; then
340                 error "cleanup failed with $?"
341         fi
342 }
343 run_test 4 "force cleanup ost, then cleanup"
344
345 test_5a() {     # was test_5
346         setup
347         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
348         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
349
350         stop_mds || error "Unable to stop MDS"
351
352         # cleanup may return an error from the failed
353         # disconnects; for now I'll consider this successful
354         # if all the modules have unloaded.
355         $UMOUNT -f $MOUNT &
356         UMOUNT_PID=$!
357         sleep 6
358         echo "killing umount"
359         kill -TERM $UMOUNT_PID
360         echo "waiting for umount to finish"
361         wait $UMOUNT_PID
362         if grep " $MOUNT " /proc/mounts; then
363                 echo "test 5: /proc/mounts after failed umount"
364                 umount -f $MOUNT &
365                 UMOUNT_PID=$!
366                 sleep 2
367                 echo "killing umount"
368                 kill -TERM $UMOUNT_PID
369                 echo "waiting for umount to finish"
370                 wait $UMOUNT_PID
371                 grep " $MOUNT " /proc/mounts &&
372                         error "/proc/mounts after second umount"
373         fi
374
375         # manual_mount_client may fail due to umount succeeding above
376         manual_umount_client
377         # stop_mds is a no-op here, and should not fail
378         cleanup_nocli || error "cleanup_nocli failed with $?"
379         # df may have lingering entry
380         manual_umount_client
381         # mtab may have lingering entry
382         local WAIT=0
383         local MAX_WAIT=20
384         local sleep=1
385         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
386                 sleep $sleep
387                 grep -q $MOUNT" " /etc/mtab || break
388                 echo "Waiting /etc/mtab updated ... "
389                 WAIT=$(( WAIT + sleep))
390         done
391         [ "$WAIT" -eq "$MAX_WAIT" ] &&
392                 error "/etc/mtab is not updated in $WAIT secs"
393         echo "/etc/mtab updated in $WAIT secs"
394 }
395 run_test 5a "force cleanup mds, then cleanup"
396
397 cleanup_5b () {
398         trap 0
399         start_mgs
400 }
401
402 test_5b() {
403         grep " $MOUNT " /etc/mtab &&
404                 error false "unexpected entry in mtab before mount" && return 10
405
406         start_ost || error "OST start failed"
407         if ! combined_mgs_mds ; then
408                 trap cleanup_5b EXIT ERR
409                 start_mds || error "MDS start failed"
410                 stop mgs
411         fi
412
413         mount_client $MOUNT && error "mount_client $MOUNT should fail"
414         grep " $MOUNT " /etc/mtab &&
415                 error "$MOUNT entry in mtab after failed mount"
416         umount_client $MOUNT
417         # stop_mds is a no-op here, and should not fail
418         cleanup_nocli || error "cleanup_nocli failed with $?"
419         if ! combined_mgs_mds ; then
420                 cleanup_5b
421         fi
422 }
423 run_test 5b "Try to start a client with no MGS (should return errs)"
424
425 test_5c() {
426         grep " $MOUNT " /etc/mtab &&
427                 error false "unexpected entry in mtab before mount" && return 10
428
429         start_mds || error "MDS start failed"
430         start_ost || error "OST start failed"
431         local oldfs="${FSNAME}"
432         FSNAME="wrong.${FSNAME}"
433         mount_client $MOUNT || :
434         FSNAME=${oldfs}
435         grep " $MOUNT " /etc/mtab &&
436                 error "$MOUNT entry in mtab after failed mount"
437         umount_client $MOUNT
438         cleanup_nocli || error "cleanup_nocli failed with $?"
439 }
440 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
441
442 test_5d() {
443         grep " $MOUNT " /etc/mtab &&
444                 error "unexpected entry in mtab before mount"
445
446         start_ost || error "OST start failed"
447         start_mds || error "MDS start failed"
448         stop_ost -f || error "Unable to stop OST1"
449         mount_client $MOUNT || error "mount_client $MOUNT failed"
450         umount_client $MOUNT -f || error "umount_client $MOUNT failed"
451         cleanup_nocli || error "cleanup_nocli failed with $?"
452         ! grep " $MOUNT " /etc/mtab ||
453                 error "$MOUNT entry in mtab after unmount"
454 }
455 run_test 5d "mount with ost down"
456
457 test_5e() {
458         grep " $MOUNT " /etc/mtab &&
459                 error false "unexpected entry in mtab before mount" && return 10
460
461         start_mds || error "MDS start failed"
462         start_ost || error "OST start failed"
463
464         #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
465         do_facet client "$LCTL set_param fail_loc=0x80000506"
466         mount_client $MOUNT || echo "mount failed (not fatal)"
467         cleanup || error "cleanup failed with $?"
468         grep " $MOUNT " /etc/mtab &&
469                 error "$MOUNT entry in mtab after unmount"
470         pass
471 }
472 run_test 5e "delayed connect, don't crash (bug 10268)"
473
474 test_5f() {
475         combined_mgs_mds && skip "needs separate mgs and mds"
476
477         grep " $MOUNT " /etc/mtab &&
478                 error false "unexpected entry in mtab before mount" && return 10
479
480         local rc=0
481         start_ost || error "OST start failed"
482         mount_client $MOUNT &
483         local pid=$!
484         echo client_mount pid is $pid
485
486         sleep 5
487
488         if ! ps -f -p $pid >/dev/null; then
489                 wait $pid
490                 rc=$?
491                 grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
492                 error "mount returns $rc, expected to hang"
493                 rc=11
494                 cleanup || error "cleanup failed with $?"
495                 return $rc
496         fi
497
498         # start mds
499         start_mds || error "start MDS failed"
500
501         # mount should succeed after start mds
502         wait $pid
503         grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
504         cleanup || error "final call to cleanup failed with rc $?"
505 }
506 run_test 5f "mds down, cleanup after failed mount (bug 2712)"
507
508 test_5g() {
509         modprobe lustre
510         [ "$CLIENT_VERSION" -lt $(version_code 2.9.53) ] &&
511                 skip "automount of debugfs missing before 2.9.53"
512         umount /sys/kernel/debug
513         $LCTL get_param -n devices | egrep -v "error" && \
514                 error "lctl can't access debugfs data"
515         grep " debugfs " /etc/mtab || error "debugfs failed to remount"
516 }
517 run_test 5g "handle missing debugfs"
518
519 test_5h() {
520         setup
521
522         stop mds1
523         #define OBD_FAIL_MDS_FS_SETUP            0x135
524         do_facet mds1 "$LCTL set_param fail_loc=0x80000135"
525         start_mdt 1 && error "start mdt should fail"
526         start_mdt 1 || error "start mdt failed"
527         client_up || error "client_up failed"
528         cleanup
529 }
530 run_test 5h "start mdt failure at mdt_fs_setup()"
531
532 test_5i() {
533         (( $MDS1_VERSION >= $(version_code 2.12.54) )) ||
534                 skip "Need MDS version at least 2.12.54"
535
536         setup
537
538         stop mds1
539         #define OBD_FAIL_QUOTA_INIT              0xA05
540         do_facet mds1 "$LCTL set_param fail_loc=0x80000A05"
541         start_mdt 1 && error "start mdt should fail"
542         start_mdt 1 || error "start mdt failed"
543         client_up || error "client_up failed"
544         cleanup
545 }
546 run_test 5i "start mdt failure at mdt_quota_init()"
547
548 test_6() {
549         setup
550         manual_umount_client
551         mount_client $MOUNT || error "mount_client $MOUNT failed"
552         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
553         cleanup || error "cleanup failed with rc $?"
554 }
555 run_test 6 "manual umount, then mount again"
556
557 test_7() {
558         setup
559         manual_umount_client
560         cleanup_nocli || error "cleanup_nocli failed with $?"
561 }
562 run_test 7 "manual umount, then cleanup"
563
564 test_8() {
565         setup
566         mount_client $MOUNT2 || error "mount_client $MOUNT2 failed"
567         check_mount2 || error "check_mount2 failed"
568         umount_client $MOUNT2 || error "umount_client $MOUNT2 failed"
569         cleanup || error "cleanup failed with rc $?"
570 }
571 run_test 8 "double mount setup"
572
573 test_9() {
574         start_ost || error "OST start failed"
575
576         do_facet ost1 $LCTL set_param debug=\'inode trace\' ||
577                 error "do_facet ost1 set_param inode trace failed."
578         do_facet ost1 $LCTL set_param subsystem_debug=\'mds ost\' ||
579                 error "do_facet ost1 set_param debug mds ost failed."
580
581         CHECK_PTLDEBUG="`do_facet ost1 $LCTL get_param -n debug`"
582         if [ "$CHECK_PTLDEBUG" ] && { \
583            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
584            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
585                 echo "lnet.debug success"
586         else
587                 error "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
588         fi
589         CHECK_SUBSYS="`do_facet ost1 $LCTL get_param -n subsystem_debug`"
590         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
591                 echo "lnet.subsystem_debug success"
592         else
593                 error "lnet.subsystem_debug: want 'mds ost' got '$CHECK_SUBSYS'"
594         fi
595         stop_ost || error "Unable to stop OST1"
596 }
597 run_test 9 "test ptldebug and subsystem for mkfs"
598
599 test_10a() {
600         setup
601
602         if ! combined_mgs_mds; then
603                 files=$(do_facet mgs "find /{proc/fs,sys/fs,sys/kernel/debug}/lustre -type l -exec test ! -e {} \; -print")
604                 [ -z $files ] || echo "MGS $files is a broken symlink"
605         fi
606
607         files=$(do_facet mds1 "find /{proc/fs,sys/fs,sys/kernel/debug}/lustre -type l -exec test ! -e {} \; -print")
608         [ -z $files ] || echo "MDS $files is a broken symlink"
609
610         files=$(do_facet ost1 "find /{proc/fs,sys/fs,sys/kernel/debug}/lustre -type l -exec test ! -e {} \; -print")
611         [ -z $files ] || echo "OSS $files is a broken symlink"
612
613         files=$(do_facet client "find /{proc/fs,sys/fs,sys/kernel/debug}/lustre -type l -exec test ! -e {} \; -print")
614         [ -z $files ] || echo "clients $files is a broken symlink"
615
616         cleanup || error "cleanup failed with rc $?"
617 }
618 run_test 10a "find lctl param broken symlinks"
619
620 #
621 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
622 # But with new MDS stack we don't care about the mode of local objects
623 # anymore, so this test is removed. See bug 22944 for more details.
624 #
625
626 test_17() {
627         if [ "$mds1_FSTYPE" != ldiskfs ]; then
628                 skip "ldiskfs only test"
629         fi
630
631         setup
632         check_mount || error "check_mount failed"
633         cleanup || error "cleanup failed with rc $?"
634
635         echo "Remove mds config log"
636         if ! combined_mgs_mds ; then
637                 stop mgs
638         fi
639
640         do_facet mgs "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' \
641                       $(mgsdevname) || return \$?" ||
642                 error "do_facet mgs failed with $?"
643
644         if ! combined_mgs_mds ; then
645                 start_mgs
646         fi
647
648         start_ost || error "OST start failed"
649         start_mds && error "MDS start succeeded, but should fail"
650         reformat_and_config
651 }
652 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
653
654 test_18() {
655         if [ "$mds1_FSTYPE" != ldiskfs ]; then
656                 skip "ldiskfs only test"
657         fi
658
659         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
660
661         local MIN=2000000
662
663         local OK=
664         # check if current MDSSIZE is large enough
665         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE &&
666                 log "use MDSSIZE=$MDSSIZE"
667
668         # check if the global config has a large enough MDSSIZE
669         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] &&
670                 [ $STORED_MDSSIZE -ge $MIN ] &&
671                 OK=1 && myMDSSIZE=$STORED_MDSSIZE &&
672                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
673
674         # check if the block device is large enough
675         is_blkdev $SINGLEMDS $MDSDEV $MIN
676         local large_enough=$?
677         if [ -n "$OK" ]; then
678                 [ $large_enough -ne 0 ] && OK=""
679         else
680                 [ $large_enough -eq 0 ] && OK=1 && myMDSSIZE=$MIN &&
681                         log "use device $MDSDEV with MIN=$MIN"
682         fi
683
684         # check if a loopback device has enough space for fs metadata (5%)
685
686         if [ -z "$OK" ]; then
687                 local SPACE=$(do_facet $SINGLEMDS "[ -f $MDSDEV -o ! \
688                               -e $MDSDEV ] && df -P \\\$(dirname $MDSDEV)" |
689                         awk '($1 != "Filesystem") { print $4 }')
690                 ! [ -z "$SPACE" ] && [ $SPACE -gt $((MIN / 20)) ] &&
691                         OK=1 && myMDSSIZE=$MIN &&
692                         log "use file $MDSDEV with MIN=$MIN"
693         fi
694
695         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS"
696
697         echo "mount mds with large journal..."
698
699         local OLD_MDSSIZE=$MDSSIZE
700         MDSSIZE=$myMDSSIZE
701
702         reformat_and_config
703         echo "mount lustre system..."
704         setup
705         check_mount || error "check_mount failed"
706
707         echo "check journal size..."
708         local FOUNDSIZE=$(do_facet $SINGLEMDS "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}')
709         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
710                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
711         else
712                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
713         fi
714
715         cleanup || error "cleanup failed with rc $?"
716
717         MDSSIZE=$OLD_MDSSIZE
718         reformat_and_config
719 }
720 run_test 18 "check mkfs creates large journals"
721
722 test_19a() {
723         start_mds || error "MDS start failed"
724         stop_mds || error "Unable to stop MDS"
725 }
726 run_test 19a "start/stop MDS without OSTs"
727
728 test_19b() {
729         start_ost || error "Unable to start OST1"
730         stop_ost -f || error "Unable to stop OST1"
731 }
732 run_test 19b "start/stop OSTs without MDS"
733
734 test_20() {
735         # first format the ost/mdt
736         start_mds || error "MDS start failed"
737         start_ost || error "Unable to start OST1"
738         mount_client $MOUNT || error "mount_client $MOUNT failed"
739         check_mount || error "check_mount failed"
740         rm -f $DIR/$tfile || error "remove $DIR/$tfile failed."
741         mount_client $MOUNT remount,ro || error "remount client with ro failed"
742         touch $DIR/$tfile && error "$DIR/$tfile created incorrectly"
743         [ -e $DIR/$tfile ] && error "$DIR/$tfile exists incorrectly"
744         mount_client $MOUNT remount,rw || error "remount client with rw failed"
745         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
746         MCNT=$(grep -c $MOUNT' ' /etc/mtab)
747         [ "$MCNT" -ne 1 ] && error "$MOUNT in /etc/mtab $MCNT times"
748         umount_client $MOUNT
749         stop_mds || error "Unable to stop MDS"
750         stop_ost || error "Unable to stop OST1"
751 }
752 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
753
754 test_21a() {
755         start_mds || error "MDS start failed"
756         start_ost || error "unable to start OST1"
757         wait_osc_import_state mds ost FULL
758         stop_ost || error "unable to stop OST1"
759         stop_mds || error "unable to stop MDS"
760 }
761 run_test 21a "start mds before ost, stop ost first"
762
763 test_21b() {
764         start_ost || error "unable to start OST1"
765         start_mds || error "MDS start failed"
766         wait_osc_import_state mds ost FULL
767         stop_mds || error "unable to stop MDS"
768         stop_ost || error "unable to stop OST1"
769 }
770 run_test 21b "start ost before mds, stop mds first"
771
772 test_21c() {
773         start_ost || error "Unable to start OST1"
774         start_mds || error "MDS start failed"
775         start_ost2 || error "Unable to start OST2"
776         wait_osc_import_state mds ost2 FULL
777         stop_ost || error "Unable to stop OST1"
778         stop_ost2 || error "Unable to stop OST2"
779         stop_mds || error "Unable to stop MDS"
780         #writeconf to remove all ost2 traces for subsequent tests
781         writeconf_or_reformat
782 }
783 run_test 21c "start mds between two osts, stop mds last"
784
785 test_21d() {
786         combined_mgs_mds && skip "need separate mgs device"
787
788         stopall
789         reformat
790
791         start_mgs || error "unable to start MGS"
792         start_ost || error "unable to start OST1"
793         start_ost2 || error "unable to start OST2"
794         start_mds || error "MDS start failed"
795         wait_osc_import_state mds ost2 FULL
796
797         local zkeeper=${KEEP_ZPOOL}
798         stack_trap "KEEP_ZPOOL=$zkeeper" EXIT
799         KEEP_ZPOOL="true"
800
801         stop_ost || error "Unable to stop OST1"
802         stop_ost2 || error "Unable to stop OST2"
803         stop_mds || error "Unable to stop MDS"
804         stop_mgs
805         #writeconf to remove all ost2 traces for subsequent tests
806         writeconf_or_reformat
807         KEEP_ZPOOL="${zkeeper}"
808
809         start_mgs || error "unable to start MGS"
810 }
811 run_test 21d "start mgs then ost and then mds"
812
813 cleanup_21e() {
814         MGSNID="$saved_mgsnid"
815         cleanup_fs2
816         echo "stopping fs2mgs ..."
817         stop $fs2mgs -f || true
818 }
819
820 test_21e() { # LU-5863
821         if [[ -z "$fs3ost_DEV" || -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
822                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
823                 skip_env "mixed loopback and real device not working"
824         fi
825
826         local fs2mdsdev=$(mdsdevname 1_2)
827         local fs2ostdev=$(ostdevname 1_2)
828         local fs3ostdev=$(ostdevname 2_2)
829
830         local fs2mdsvdev=$(mdsvdevname 1_2)
831         local fs2ostvdev=$(ostvdevname 1_2)
832         local fs3ostvdev=$(ostvdevname 2_2)
833
834         # temporarily use fs3ost as fs2mgs
835         local fs2mgs=fs3ost
836         local fs2mgsdev=$fs3ostdev
837         local fs2mgsvdev=$fs3ostvdev
838
839         local fsname=test1234
840
841         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
842                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
843         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS && trap cleanup_21e EXIT INT ||
844                 error "start fs2mgs failed"
845
846         local saved_mgsnid="$MGSNID"
847         MGSNID=$(do_facet $fs2mgs $LCTL list_nids | xargs | tr ' ' ,)
848
849         add fs2mds $(mkfs_opts mds1 $fs2mdsdev $fsname) \
850                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
851         add fs2ost $(mkfs_opts ost1 $fs2ostdev $fsname) \
852                 --reformat $fs2ostdev $fs2ostvdev || error "add fs2ost failed"
853
854         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
855         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS || error "start fs2mds failed"
856
857         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
858         $MOUNT_CMD $MGSNID:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
859         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
860
861         cleanup_21e
862 }
863 run_test 21e "separate MGS and MDS"
864
865 test_22() {
866         start_mds || error "MDS start failed"
867
868         echo "Client mount with ost in logs, but none running"
869         start_ost || error "unable to start OST1"
870         # wait until mds connected to ost and open client connection
871         wait_osc_import_state mds ost FULL
872         stop_ost || error "unable to stop OST1"
873         mount_client $MOUNT || error "mount_client $MOUNT failed"
874         # check_mount will block trying to contact ost
875         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
876         rm -f $DIR/$tfile || error "remove $DIR/$tfile failed"
877         umount_client $MOUNT -f
878         pass
879
880         echo "Client mount with a running ost"
881         start_ost || error "unable to start OST1"
882         if $GSS; then
883                 # if gss enabled, wait full time to let connection from
884                 # mds to ost be established, due to the mismatch between
885                 # initial connect timeout and gss context negotiation timeout.
886                 # This perhaps could be remove after AT landed.
887                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
888                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
889         fi
890         mount_client $MOUNT || error "mount_client $MOUNT failed"
891         wait_osc_import_state mds ost FULL
892         wait_osc_import_ready client ost
893         check_mount || error "check_mount failed"
894         pass
895
896         cleanup || error "cleanup failed with rc $?"
897 }
898 run_test 22 "start a client before osts (should return errs)"
899
900 test_23a() {    # was test_23
901         setup
902         # fail mds
903         stop $SINGLEMDS || error "failed to stop $SINGLEMDS"
904         # force down client so that recovering mds waits for reconnect
905         local running=$(grep -c $MOUNT /proc/mounts) || true
906         if [ $running -ne 0 ]; then
907                 echo "Stopping client $MOUNT (opts: -f)"
908                 umount -f $MOUNT
909         fi
910
911         # enter recovery on failed mds
912         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
913         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "MDS start failed"
914         # try to start a new client
915         mount_client $MOUNT &
916         sleep 5
917         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
918         MOUNT_LUSTRE_PID=$(ps -ef | grep mount.lustre |
919                            grep -v grep | awk '{print $2}')
920         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
921         ps --ppid $MOUNT_PID
922         ps --ppid $MOUNT_LUSTRE_PID
923         echo "waiting for mount to finish"
924         ps -ef | grep mount
925         # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process
926         # SIGTERM works but it does not spread to offspring processses
927         kill -s TERM $MOUNT_PID
928         kill -s TERM $MOUNT_LUSTRE_PID
929         # we can not wait $MOUNT_PID because it is not a child of this shell
930         local PID1
931         local PID2
932         local WAIT=0
933         local MAX_WAIT=30
934         local sleep=1
935         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
936                 sleep $sleep
937                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
938                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
939                 echo PID1=$PID1
940                 echo PID2=$PID2
941                 [ -z "$PID1" -a -z "$PID2" ] && break
942                 echo "waiting for mount to finish ... "
943                 WAIT=$(( WAIT + sleep))
944         done
945         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
946                 error "MOUNT_PID $MOUNT_PID and "\
947                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
948                 ps -ef | grep mount
949         fi
950         cleanup || error "cleanup failed with rc $?"
951 }
952 run_test 23a "interrupt client during recovery mount delay"
953
954 test_23b() {    # was test_23
955         start_mds || error "MDS start failed"
956         start_ost || error "Unable to start OST1"
957         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
958         $LCTL set_param fail_loc=0x80000313
959         mount_client $MOUNT
960         cleanup || error "cleanup failed with rc $?"
961 }
962 run_test 23b "Simulate -EINTR during mount"
963
964 test_24a() {
965         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
966
967         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
968                 is_blkdev $SINGLEMDS $MDSDEV &&
969                 skip_env "mixed loopback and real device not working"
970         fi
971
972         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
973
974         local fs2mdsdev=$(mdsdevname 1_2)
975         local fs2ostdev=$(ostdevname 1_2)
976         local fs2mdsvdev=$(mdsvdevname 1_2)
977         local fs2ostvdev=$(ostvdevname 1_2)
978         local cl_user
979
980         # LU-9733 test fsname started with numbers as well
981         local FSNAME2=969362ae
982
983         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --nomgs --mgsnode=$MGSNID \
984                 --fsname=${FSNAME2} --reformat $fs2mdsdev $fs2mdsvdev || exit 10
985
986         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --fsname=${FSNAME2} \
987                 --reformat $fs2ostdev $fs2ostvdev || exit 10
988
989         setup
990         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
991         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
992         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
993         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
994
995         # LU-9733 test fsname started with numbers
996         cl_user=$(do_facet $SINGLEMDS lctl --device $FSNAME2-MDT0000 \
997                         changelog_register -n) ||
998                                 error "register changelog failed"
999
1000         do_facet $SINGLEMDS lctl --device $FSNAME2-MDT0000 \
1001                         changelog_deregister $cl_user ||
1002                                 error "deregister changelog failed"
1003         # 1 still works
1004         check_mount || error "check_mount failed"
1005         # files written on 1 should not show up on 2
1006         cp /etc/passwd $DIR/$tfile
1007         sleep 10
1008         [ -e $MOUNT2/$tfile ] && error "File bleed"
1009         # 2 should work
1010         sleep 5
1011         cp /etc/passwd $MOUNT2/$tfile ||
1012                 error "cp /etc/passwd $MOUNT2/$tfile failed"
1013         rm $MOUNT2/$tfile || error "remove $MOUNT2/$tfile failed"
1014         # 2 is actually mounted
1015         grep $MOUNT2' ' /proc/mounts > /dev/null || error "$MOUNT2 not mounted"
1016         # failover
1017         facet_failover fs2mds
1018         facet_failover fs2ost
1019         df
1020         umount_client $MOUNT
1021         # the MDS must remain up until last MDT
1022         stop_mds
1023         MDS=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
1024               awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1025         [ -z "$MDS" ] && error "No MDT"
1026         cleanup_fs2
1027         cleanup_nocli || error "cleanup_nocli failed with rc $?"
1028 }
1029 run_test 24a "Multiple MDTs on a single node"
1030
1031 test_24b() {
1032         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1033         combined_mgs_mds ||
1034                 skip "needs combined MGT and MDT device"
1035
1036         if [ -z "$fs2mds_DEV" ]; then
1037                 local dev=${SINGLEMDS}_dev
1038                 local MDSDEV=${!dev}
1039                 is_blkdev $SINGLEMDS $MDSDEV &&
1040                 skip_env "mixed loopback and real device not working"
1041         fi
1042
1043         local fs2mdsdev=$(mdsdevname 1_2)
1044         local fs2mdsvdev=$(mdsvdevname 1_2)
1045
1046         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --mgs --fsname=${FSNAME}2 \
1047                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
1048         setup
1049         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && {
1050                 cleanup
1051                 error "start MDS should fail"
1052         }
1053         stop fs2mds -f
1054         cleanup || error "cleanup failed with rc $?"
1055 }
1056 run_test 24b "Multiple MGSs on a single node (should return err)"
1057
1058 test_25() {
1059         setup_noconfig
1060         check_mount || error "check_mount failed"
1061         local MODULES=$($LCTL modules | awk '{ print $2 }')
1062         rmmod $MODULES 2>/dev/null || true
1063         cleanup || error "cleanup failed with $?"
1064 }
1065 run_test 25 "Verify modules are referenced"
1066
1067 test_26() {
1068         load_modules
1069         # we need modules before mount for sysctl, so make sure...
1070         do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
1071         #define OBD_FAIL_MDS_FS_SETUP            0x135
1072         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000135"
1073         start_mds && error "MDS started but should not have started"
1074         $LCTL get_param -n devices
1075         DEVS=$($LCTL get_param -n devices | egrep -v MG | wc -l)
1076         [ $DEVS -gt 0 ] && error "number of devices is $DEVS, should be zero"
1077         # start mds to drop writeconf setting
1078         start_mds || error "Unable to start MDS"
1079         stop_mds || error "Unable to stop MDS"
1080         unload_modules_conf || error "unload_modules_conf failed with $?"
1081 }
1082 run_test 26 "MDT startup failure cleans LOV (should return errs)"
1083
1084 test_27a() {
1085         cleanup
1086         start_ost || error "Unable to start OST1"
1087         start_mds || error "Unable to start MDS"
1088         echo "Requeue thread should have started: "
1089         ps -e | grep ll_cfg_requeue
1090         set_persistent_param_and_check ost1                     \
1091            "obdfilter.$FSNAME-OST0000.client_cache_seconds"     \
1092            "$FSNAME-OST0000.ost.client_cache_seconds"
1093         cleanup_nocli || error "cleanup_nocli failed with rc $?"
1094 }
1095 run_test 27a "Reacquire MGS lock if OST started first"
1096
1097 test_27b() {
1098         # FIXME. ~grev
1099         setup_noconfig
1100         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
1101                         awk '($3 ~ "mdt" && $4 ~ "MDT0000") { print $4 }')
1102
1103         facet_failover $SINGLEMDS
1104         set_persistent_param_and_check $SINGLEMDS       \
1105                 "mdt.$device.identity_acquire_expire"   \
1106                 "$device.mdt.identity_acquire_expire"
1107         set_persistent_param_and_check client           \
1108                 "mdc.$device-mdc-*.max_rpcs_in_flight"  \
1109                 "$device.mdc.max_rpcs_in_flight"
1110         check_mount
1111         cleanup || error "cleanup failed with $?"
1112 }
1113 run_test 27b "Reacquire MGS lock after failover"
1114
1115 test_28A() { # was test_28
1116         setup_noconfig
1117
1118         local TEST="llite.$FSNAME-*.max_read_ahead_whole_mb"
1119         local PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
1120         local orig=$($LCTL get_param -n $TEST)
1121         local max=$($LCTL get_param -n \
1122                         llite.$FSNAME-*.max_read_ahead_per_file_mb)
1123
1124         orig=${orig%%.[0-9]*}
1125         max=${max%%.[0-9]*}
1126         echo "ORIG:$orig MAX:$max"
1127         [[ $max -le $orig ]] && orig=$((max - 3))
1128         echo "ORIG:$orig MAX:$max"
1129
1130         local final=$((orig + 1))
1131
1132         set_persistent_param_and_check client "$TEST" "$PARAM" $final
1133         final=$((final + 1))
1134         set_persistent_param_and_check client "$TEST" "$PARAM" $final
1135         umount_client $MOUNT || error "umount_client $MOUNT failed"
1136         mount_client $MOUNT || error "mount_client $MOUNT failed"
1137
1138         local result=$($LCTL get_param -n $TEST)
1139
1140         if [ $result -ne $final ]; then
1141                 error "New config not seen: wanted $final got $result"
1142         else
1143                 echo "New config success: got $result"
1144         fi
1145         set_persistent_param_and_check client "$TEST" "$PARAM" $orig
1146         cleanup || error "cleanup failed with rc $?"
1147 }
1148 run_test 28A "permanent parameter setting"
1149
1150 test_28a() { # LU-4221
1151         [[ "$OST1_VERSION" -ge $(version_code 2.5.52) ]] ||
1152                 skip "Need OST version at least 2.5.52"
1153         [ "$ost1_FSTYPE" = zfs ] &&
1154                 skip "LU-4221: no such proc params for ZFS OSTs"
1155
1156         local name
1157         local param
1158         local cmd
1159         local old
1160         local new
1161         local device="$FSNAME-OST0000"
1162
1163         setup_noconfig
1164
1165         # In this test we will set three kinds of proc parameters with
1166         # lctl set_param -P or lctl conf_param:
1167         # 1. non-symlink ones in the OFD
1168         # 2. non-symlink ones in the OSD
1169
1170         # Check 1.
1171         # prepare a non-symlink parameter in the OFD
1172         name="client_cache_seconds"
1173         param="$device.ost.$name"
1174         cmd="obdfilter.$device.$name"
1175
1176         # permanently setting the parameter in the OFD
1177         old=$(do_facet ost1 $LCTL get_param -n $cmd)
1178         new=$((old * 2))
1179         set_persistent_param_and_check ost1 "$cmd" "$param" $new
1180         set_persistent_param_and_check ost1 "$cmd" "$param" $old
1181
1182         # Check 2.
1183         # prepare a non-symlink parameter in the OSD
1184         name="auto_scrub"
1185         param="$device.osd.$name"
1186         cmd="osd-*.$device.$name"
1187
1188         # conf_param the parameter in the OSD
1189         old=$(do_facet ost1 $LCTL get_param -n $cmd)
1190         new=$(((old + 1) % 2))
1191         set_persistent_param_and_check ost1 "$cmd" "$param" $new
1192         set_persistent_param_and_check ost1 "$cmd" "$param" $old
1193
1194         cleanup || error "cleanup failed with $?"
1195 }
1196 run_test 28a "set symlink parameters permanently with lctl"
1197
1198 test_29() {
1199         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
1200         setup_noconfig > /dev/null 2>&1
1201         start_ost2 || error "Unable to start OST2"
1202         sleep 10
1203
1204         local PARAM="$FSNAME-OST0001.osc.active"
1205         # With lctl set_param -P the value $PROC_ACT will be sent to
1206         # all nodes. The [!M] filter out the ability to set active
1207         # on the MDS servers which is tested with wait_osp_* below.
1208         # For ost_server_uuid that only exist on client so filtering
1209         # is safe.
1210         local PROC_ACT="os[cp].$FSNAME-OST0001-osc-[^M]*.active"
1211         local PROC_UUID="os[cp].$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
1212
1213         ACTV=$($LCTL get_param -n $PROC_ACT)
1214         DEAC=$((1 - $ACTV))
1215         set_persistent_param_and_check client $PROC_ACT $PARAM $DEAC
1216         # also check ost_server_uuid status
1217         RESULT=$($LCTL get_param -n $PROC_UUID | grep DEACTIV)
1218         if [ -z "$RESULT" ]; then
1219                 error "Client not deactivated: $($LCTL get_param \
1220                        -n $PROC_UUID)"
1221         else
1222                 echo "Live client success: got $RESULT"
1223         fi
1224
1225         # check MDTs too
1226         wait_osp_active ost ${FSNAME}-OST0001 1 0
1227
1228         # test new client starts deactivated
1229         umount_client $MOUNT || error "umount_client $MOUNT failed"
1230         mount_client $MOUNT || error "mount_client $MOUNT failed"
1231
1232         # the 2nd and 3rd field of ost_server_uuid do not update at the same
1233         # time when using lctl set_param -P
1234         wait_update_facet client                                        \
1235                 "$LCTL get_param -n $PROC_UUID | awk '{print \\\$3 }'"  \
1236                 "DEACTIVATED" ||
1237                 error "New client start active: $($LCTL get_param -n $PROC_UUID)"
1238
1239         echo "New client success: got '$($LCTL get_param -n $PROC_UUID)'"
1240
1241         # make sure it reactivates
1242         set_persistent_param_and_check client $PROC_ACT $PARAM $ACTV
1243
1244         umount_client $MOUNT
1245         stop_ost2 || error "Unable to stop OST2"
1246         cleanup_nocli || error "cleanup_nocli failed with $?"
1247         #writeconf to remove all ost2 traces for subsequent tests
1248         writeconf_or_reformat
1249 }
1250 run_test 29 "permanently remove an OST"
1251
1252 test_30a() {
1253         setup_noconfig
1254
1255         echo Big config llog
1256         local path="llite.$FSNAME-*"
1257         local cpath="$FSNAME.llite"
1258         local param="max_read_ahead_whole_mb"
1259
1260         local test="${path}.$param"
1261         local conf="${cpath}.$param"
1262
1263         local orig=$($LCTL get_param -n $test)
1264         local list=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
1265         for i in ${list[@]}; do
1266                 set_persistent_param_and_check client $test $conf $i
1267         done
1268         # make sure client restart still works
1269         umount_client $MOUNT
1270         mount_client $MOUNT || error "mount_client $MOUNT failed"
1271         [ "$($LCTL get_param -n $test)" -ne "$i" ] &&
1272                 error "Param didn't stick across restart $($test) != $i"
1273         pass
1274
1275         echo Erase parameter setting
1276         if [[ $PERM_CMD == *"set_param -P"* ]]; then
1277                 do_facet mgs "$PERM_CMD -d $test" ||
1278                         error "Erase param $test failed"
1279         else
1280                 do_facet mgs "$PERM_CMD -d $conf" ||
1281                         error "Erase param $conf failed"
1282         fi
1283         umount_client $MOUNT
1284         mount_client $MOUNT || error "mount_client $MOUNT failed"
1285         local final=$($LCTL get_param -n $test)
1286         echo "deleted (default) value=$final, orig=$orig"
1287         orig=${orig%%.[0-9]*}
1288         final=${final%%.[0-9]*}
1289         # assumes this parameter started at the default value
1290         [ "$final" -eq "$orig" ] ||
1291                 error "Deleted value=$final -ne orig=$orig"
1292
1293         cleanup || error "cleanup failed with rc $?"
1294 }
1295 run_test 30a "Big config llog and permanent parameter deletion"
1296
1297 test_30b() {
1298         setup_noconfig
1299
1300         local orignids=$($LCTL get_param -n \
1301                 osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1302
1303         local orignidcount=$(echo "$orignids" | wc -w)
1304
1305         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
1306         # numerical part of it. Hopefully that's not already a failover address
1307         # for the server.
1308         local OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | \
1309                 awk '{print $1}')
1310         local ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
1311         local NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
1312         local NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
1313         echo "Using fake nid $NEW"
1314
1315         local TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1316                 grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
1317         if [[ $PERM_CMD == *"set_param -P"* ]]; then
1318                 PARAM="osc.$FSNAME-OST0000-osc-[^M]*.import"
1319                 echo "Setting $PARAM from $TEST to $NEW"
1320                 do_facet mgs "$PERM_CMD $PARAM='connection=$NEW'" ||
1321                         error "$PERM_CMD $PARAM failed"
1322         else
1323                 PARAM="$FSNAME-OST0000.failover.node"
1324                 echo "Setting $PARAM from $TEST to $NEW"
1325                 do_facet mgs "$PERM_CMD $PARAM='$NEW'" ||
1326                         error "$PARAM $PARAM failed"
1327         fi
1328         wait_update_facet client "$TEST" "$NEW" ||
1329                 error "check $PARAM failed!"
1330
1331         local NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1332                 grep failover_nids)
1333         local NIDCOUNT=$(echo "$NIDS" | wc -w)
1334         echo "should have $((orignidcount + 1)) entries \
1335                 in failover nids string, have $NIDCOUNT"
1336         [ $NIDCOUNT -eq $((orignidcount + 1)) ] ||
1337                 error "Failover nid not added"
1338
1339         if [[ $PERM_CMD == *"set_param -P"* ]]; then
1340                 do_facet mgs "$PERM_CMD -d osc.$FSNAME-OST0000-osc-*.import"
1341         else
1342                 do_facet mgs "$PERM_CMD -d $FSNAME-OST0000.failover.node" ||
1343                         error "$PERM_CMD delete failed"
1344         fi
1345         umount_client $MOUNT
1346         mount_client $MOUNT || error "mount_client $MOUNT failed"
1347
1348         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1349                 grep failover_nids)
1350         NIDCOUNT=$(echo "$NIDS" | wc -w)
1351         echo "only $orignidcount final entries should remain \
1352                 in failover nids string, have $NIDCOUNT"
1353         [ $NIDCOUNT -eq $orignidcount ] || error "Failover nids not removed"
1354
1355         cleanup || error "cleanup failed with rc $?"
1356 }
1357 run_test 30b "Remove failover nids"
1358
1359 test_31() { # bug 10734
1360         # ipaddr must not exist
1361         $MOUNT_CMD 4.3.2.1@tcp:/lustre $MOUNT || true
1362         cleanup || error "cleanup failed with rc $?"
1363 }
1364 run_test 31 "Connect to non-existent node (shouldn't crash)"
1365
1366
1367 T32_QID=60000
1368 T32_BLIMIT=40960 # Kbytes
1369 T32_ILIMIT=4
1370 T32_PRJID=1000
1371 T32_PROLIMIT=$((T32_BLIMIT/10))
1372 #
1373 # This is not really a test but a tool to create new disk
1374 # image tarballs for the upgrade tests.
1375 #
1376 # Disk image tarballs should be created on single-node
1377 # clusters by running this test with default configurations
1378 # plus a few mandatory environment settings that are verified
1379 # at the beginning of the test.
1380 #
1381 test_32newtarball() {
1382         local version
1383         local dst=.
1384         local src=/etc/rc.d
1385         local tmp=$TMP/t32_image_create
1386         local remote_dir
1387         local striped_dir
1388         local pushd_dir
1389         local pfl_dir
1390         local pfl_file
1391         local dom_dir
1392         local dom_file
1393         local flr_dir
1394         local flr_file
1395         local pj_quota_dir
1396         local pj_quota_file
1397         local target_dir
1398
1399         if [ $FSNAME != t32fs -o \( -z "$MDSDEV" -a -z "$MDSDEV1" \) -o \
1400         $OSTCOUNT -ne 2 -o -z "$OSTDEV1" ]; then
1401                 error   "Needs FSNAME=t32fs MDSCOUNT=2 "                \
1402                         "MDSDEV1=<nonexistent_file> "                   \
1403                         "MDSDEV2=<nonexistent_file> "                   \
1404                         "(or MDSDEV, in the case of b1_8) "             \
1405                         "OSTCOUNT=2 OSTDEV1=<nonexistent_file> "        \
1406                         "OSTDEV2=<nonexistent_file>"
1407         fi
1408
1409         mkdir $tmp || {
1410                 echo "Found stale $tmp"
1411                 return 1
1412         }
1413
1414         mkdir $tmp/src || return 1
1415         tar cf - -C $src . | tar xf - -C $tmp/src
1416
1417         # format ost with comma-separated NIDs to verify LU-4460
1418         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
1419         MGSNID="$MGSNID,$MGSNID" OSTOPT="--failnode=$failnid" formatall
1420
1421         setupall
1422
1423         [[ "$MDS1_VERSION" -ge $(version_code 2.3.50) ]] ||
1424                 $LFS quotacheck -ug /mnt/$FSNAME
1425         $LFS setquota -u $T32_QID -b 0 -B $T32_BLIMIT -i 0 -I $T32_ILIMIT \
1426                 /mnt/$FSNAME
1427
1428         if [[ $MDSCOUNT -ge 2 ]]; then
1429                 remote_dir=/mnt/$FSNAME/remote_dir
1430                 $LFS mkdir -i 1 $remote_dir
1431                 tar cf - -C $tmp/src . | tar xf - -C $remote_dir
1432
1433                 target_dir=$remote_dir
1434                 if [[ $MDS1_VERSION -ge $(version_code 2.7.0) ]]; then
1435                         striped_dir=/mnt/$FSNAME/striped_dir_old
1436                         $LFS mkdir -i 1 -c 2 $striped_dir
1437                         tar cf - -C $tmp/src . | tar xf - -C $striped_dir
1438                 fi
1439         else
1440                 tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1441                 target_dir=/mnt/$FSNAME
1442         fi
1443
1444         # add project quota #
1445         [[ $mds1_FSTYPE == "ldiskfs" &&
1446                 $MDS1_VERSION -gt $(version_code 2.9.55) ]] ||
1447         [[ $mds1_FSTYPE == "zfs" &&
1448                 $MDS1_VERSION -gt $(version_code 2.10.53) ]] && {
1449                 pj_quota_dir=$target_dir/project_quota_dir
1450                 pj_quota_file_old=$pj_quota_dir/pj_quota_file_old
1451
1452                 enable_project_quota
1453                 set_mdt_qtype ugp ||
1454                         error "enable mdt quota failed"
1455
1456                 set_ost_qtype ugp ||
1457                         error "enable ost quota failed"
1458
1459                 mkdir -p $pj_quota_dir
1460                 $LFS setquota -p $T32_PRJID -b 0 -B $T32_PROLIMIT -i 0 \
1461                         -I $T32_ILIMIT $pj_quota_dir ||
1462                         error "setquota -p $T32_PRJID failed"
1463
1464                 $LFS setstripe $pj_quota_file_old -c 1 ||
1465                         error "setstripe $pj_quota_file_old failed"
1466
1467                 chown $T32_QID:$T32_QID $pj_quota_file_old ||
1468                         error "chown $pj_quota_file_old failed"
1469
1470                 change_project -p $T32_PRJID $pj_quota_file_old
1471
1472                 mkdir -p $tmp/src/project_quota_dir
1473                 cp $pj_quota_file_old $tmp/src/project_quota_dir/
1474         }
1475
1476         #####################
1477         tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1478
1479         #if [[ $MDSCOUNT -ge 2 ]]; then
1480         #       remote_dir=/mnt/$FSNAME/remote_dir
1481         #       $LFS mkdir -i 1 $remote_dir
1482         #       tar cf - -C $tmp/src . | tar xf - -C $remote_dir
1483
1484         #       if [[ "$MDS1_VERSION" -ge $(version_code 2.7.0) ]]; then
1485         #               striped_dir=/mnt/$FSNAME/striped_dir_old
1486         #               $LFS mkdir -i 1 -c 2 $striped_dir
1487         #               tar cf - -C $tmp/src . | tar xf - -C $striped_dir
1488         #       fi
1489         #fi
1490
1491         # PFL file #
1492         if [[ $MDS1_VERSION -ge $(version_code 2.9.51) ]]; then
1493                 pfl_dir=$target_dir/pfl_dir
1494                 pfl_file=$pfl_dir/pfl_file
1495                 mkdir -p $pfl_dir
1496                 $LFS setstripe -E 2M -c 1 -o 0 -E -1 -S 2M -c 1 -o 1 \
1497                                         $pfl_file ||
1498                         error "Create PFL file failed"
1499
1500                 dd if=/dev/urandom of=$pfl_file bs=1k count=3k
1501                 mkdir -p $tmp/src/pfl_dir
1502                 cp $pfl_file $tmp/src/pfl_dir/
1503         fi
1504
1505         ############
1506         # DoM / FLR file #
1507         if [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]]; then
1508                 dom_dir=$target_dir/dom_dir
1509                 dom_file=$dom_dir/dom_file
1510                 flr_dir=$target_dir/flr_dir
1511                 flr_file=$flr_dir/flr_file
1512
1513                 mkdir -p $dom_dir
1514                 $LFS setstripe -E 1M -L mdt -E -1 -S 4M $dom_file
1515                 dd if=/dev/urandom of=$dom_file bs=1k count=2k
1516                 mkdir -p $tmp/src/dom_dir
1517                 cp $dom_file $tmp/src/dom_dir
1518         # FLR #
1519                 mkdir -p $flr_dir
1520                 LFS mirror create -N2 $flr_file
1521                 dd if=/dev/urandom of=$flr_file bs=1k count=1
1522                 mkdir -p $tmp/src/flr_dir
1523                 cp $flr_file $tmp/src/flr_dir
1524         fi
1525         ############
1526         stopall
1527
1528         mkdir $tmp/img || return 1
1529
1530         setupall
1531
1532         pushd_dir=/mnt/$FSNAME
1533         if [[ $MDSCOUNT -ge 2 ]]; then
1534                 pushd_dir=$remote_dir
1535                 if [[ "$MDS1_VERSION" -ge $(version_code 2.7.0) ]]; then
1536                         pushd $striped_dir
1537                         ls -Rni --time-style=+%s >$tmp/img/list2
1538                         popd
1539                 fi
1540         fi
1541
1542         pushd $pushd_dir
1543         ls -Rni --time-style=+%s >$tmp/img/list
1544         find ! -name .lustre -type f -exec sha1sum {} \; |
1545                 sort -k 2 >$tmp/img/sha1sums
1546         popd
1547         $LCTL get_param -n version | head -n 1 |
1548                 sed -e 's/^lustre: *//' >$tmp/img/commit
1549
1550         [[ "$MDS1_VERSION" -ge $(version_code 2.3.50) ]] ||
1551                 $LFS quotaon -ug /mnt/$FSNAME
1552         $LFS quota -u $T32_QID -v /mnt/$FSNAME
1553         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1554                 awk 'BEGIN { num='1' } { if ($1 == "'/mnt/$FSNAME'") \
1555                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1556                 | tr -d "*" > $tmp/img/bspace
1557         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1558                 awk 'BEGIN { num='5' } { if ($1 == "'/mnt/$FSNAME'") \
1559                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1560                 | tr -d "*" > $tmp/img/ispace
1561         echo $T32_BLIMIT > $tmp/img/blimit
1562         echo $T32_ILIMIT > $tmp/img/ilimit
1563
1564         $MULTIOP /mnt/$FSNAME/orph_file Ouw_c&
1565         pid=$!
1566         sync
1567         stop_mdt_no_force 1
1568         debugfs -R "ls /PENDING" ${MDSDEV1:-$MDSDEV}
1569         cp ${MDSDEV1:-$MDSDEV} $tmp/img
1570         start_mdt 1
1571         kill -s USR1 $pid
1572         wait $pid
1573
1574         #################
1575         stopall
1576
1577         pushd $tmp/src
1578         find -type f -exec sha1sum {} \; | sort -k 2 >$tmp/sha1sums.src
1579         popd
1580
1581         if ! diff -u $tmp/sha1sums.src $tmp/img/sha1sums; then
1582                 echo "Data verification failed"
1583         fi
1584
1585         uname -r >$tmp/img/kernel
1586         uname -m >$tmp/img/arch
1587
1588         for num in $(seq 2 $MDSCOUNT); do
1589                 local devname=$(mdsdevname $num)
1590                 local facet=mds$num
1591                 [[ $(facet_fstype $facet) != zfs ]] ||
1592                         devname=$(mdsvdevname $num)
1593                 mv $devname $tmp/img
1594         done
1595
1596         for num in $(seq $OSTCOUNT); do
1597                 local devname=$(ostdevname $num)
1598                 local facet=oss$num
1599                 [[ $(facet_fstype $facet) != zfs ]] ||
1600                         devname=$(ostdevname $num)
1601                 mv $devname $tmp/img
1602         done
1603
1604         version=$(sed -e 's/\(^[0-9]\+\.[0-9]\+\)\(.*$\)/\1/' $tmp/img/commit |
1605                           sed -e 's/\./_/g')    # E.g., "1.8.7" -> "1_8"
1606         dst=$(cd $dst; pwd)
1607         pushd $tmp/img
1608         tar cjvf $dst/disk$version-"$mds1_FSTYPE".tar.bz2 -S *
1609         popd
1610
1611         rm -r $tmp
1612 }
1613 #run_test 32newtarball "Create a new test_32 disk image tarball for this version"
1614
1615 #
1616 # The list of applicable tarballs is returned via the caller's
1617 # variable "tarballs".
1618 #
1619 t32_check() {
1620         [ "$CLIENTONLY" ] && skip "Client-only testing"
1621
1622         local node=$(facet_active_host $SINGLEMDS)
1623         local r="do_node $node"
1624
1625         ! $r which "$TUNEFS" && skip_env "tunefs.lustre required on $node"
1626
1627         local IMGTYPE="$mds1_FSTYPE"
1628
1629         [[ -n "$T32IMAGE" ]] && tarballs=$T32IMAGE ||
1630                 tarballs=$($r find $RLUSTRE/tests -maxdepth 1 \
1631                            -name \'disk*-$IMGTYPE.tar.bz2\')
1632
1633         [ -z "$tarballs" ] && skip "No applicable tarballs found"
1634 }
1635
1636 t32_test_cleanup() {
1637         local tmp=$TMP/t32
1638         local facet=$SINGLEMDS
1639         local rc=$?
1640
1641         echo "== cleanup with rc=$rc =="
1642         if $shall_cleanup_lustre; then
1643                 umount $tmp/mnt/lustre || rc=$?
1644         fi
1645         if $shall_cleanup_mdt; then
1646                 $r $UMOUNT $tmp/mnt/mdt || rc=$?
1647         fi
1648         if $shall_cleanup_mdt1; then
1649                 $r $UMOUNT $tmp/mnt/mdt1 || rc=$?
1650         fi
1651         if $shall_cleanup_ost; then
1652                 $r $UMOUNT $tmp/mnt/ost || rc=$?
1653         fi
1654         if $shall_cleanup_ost1; then
1655                 $r $UMOUNT $tmp/mnt/ost1 || rc=$?
1656         fi
1657
1658         $r rm -rf $tmp
1659         rm -rf $tmp
1660         if [[ "$mds1_FSTYPE" == zfs ]]; then
1661                 local poolname
1662                 local poolname_list="t32fs-mdt1 t32fs-ost1"
1663
1664                 ! $mdt2_is_available || poolname_list+=" t32fs-mdt2"
1665
1666                 for poolname in $poolname_list; do
1667                         destroy_zpool $facet $poolname
1668                 done
1669         fi
1670         combined_mgs_mds || start_mgs || rc=$?
1671         return $rc
1672 }
1673
1674 t32_bits_per_long() {
1675         #
1676         # Yes, this is not meant to be perfect.
1677         #
1678         case $1 in
1679                 ppc64|x86_64)
1680                         echo -n 64;;
1681                 i*86)
1682                         echo -n 32;;
1683         esac
1684 }
1685
1686 t32_reload_modules() {
1687         local node=$1
1688         local all_removed=false
1689         local i=0
1690
1691         [ "$mds1_FSTYPE" == zfs ] && do_rpc_nodes $node "service zed stop"
1692
1693         while ((i < 20)); do
1694                 echo "Unloading modules on $node: Attempt $i"
1695                 do_rpc_nodes $node $LUSTRE_RMMOD "$mds1_FSTYPE" &&
1696                         all_removed=true
1697                 do_rpc_nodes $node check_mem_leak || return 1
1698                 if $all_removed; then
1699                         do_rpc_nodes $node load_modules
1700                         return 0
1701                 fi
1702                 if [ "$mds1_FSTYPE" == zfs ]; then
1703                         do_rpc_nodes $node "$ZPOOL status -v"
1704                 fi
1705                 sleep 5
1706                 i=$((i + 1))
1707         done
1708         echo "Unloading modules on $node: Given up"
1709         return 1
1710 }
1711
1712 t32_wait_til_devices_gone() {
1713         local node=$1
1714         local devices
1715         local loops
1716         local i=0
1717
1718         echo wait for devices to go
1719         while ((i < 20)); do
1720                 devices=$(do_rpc_nodes $node $LCTL device_list | wc -l)
1721                 loops=$(do_rpc_nodes $node losetup -a | grep -c t32)
1722                 ((devices == 0 && loops == 0)) && return 0
1723                 sleep 5
1724                 i=$((i + 1))
1725         done
1726         echo "waiting for dev on $node: dev $devices loop $loops given up"
1727         do_rpc_nodes $node "losetup -a"
1728         do_rpc_nodes $node "$LCTL device_list"
1729         return 1
1730 }
1731
1732 t32_verify_quota() {
1733         local facet=$1
1734         local fsname=$2
1735         local mnt=$3
1736         local qval
1737         local cmd
1738
1739         # LU-2435: if the underlying zfs doesn't support userobj_accounting,
1740         # lustre will estimate the object count usage. This fails quota
1741         # verification in 32b. The object quota usage should be accurate after
1742         # zfs-0.7.0 is released.
1743         [ "$mds1_FSTYPE" == zfs ] && {
1744                 local zfs_version=$(do_facet $facet cat /sys/module/zfs/version)
1745
1746                 [ $(version_code $zfs_version) -lt $(version_code 0.7.0) ] && {
1747                         echo "Skip quota verify for zfs: $zfs_version"
1748                         return 0
1749                 }
1750         }
1751
1752         $LFS quota -u $T32_QID -v $mnt
1753
1754         qval=$($LFS quota -v -u $T32_QID $mnt |
1755                 awk 'BEGIN { num='1' } { if ($1 == "'$mnt'") \
1756                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1757                 | tr -d "*")
1758         [ $qval -eq $img_bspace ] || {
1759                 echo "bspace, act:$qval, exp:$img_bspace"
1760                 return 1
1761         }
1762
1763         qval=$($LFS quota -v -u $T32_QID $mnt |
1764                 awk 'BEGIN { num='5' } { if ($1 == "'$mnt'") \
1765                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1766                 | tr -d "*")
1767         [ $qval -eq $img_ispace ] || {
1768                 echo "ispace, act:$qval, exp:$img_ispace"
1769                 return 1
1770         }
1771
1772         qval=$($LFS quota -v -u $T32_QID $mnt |
1773                 awk 'BEGIN { num='3' } { if ($1 == "'$mnt'") \
1774                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1775                 | tr -d "*")
1776         [ $qval -eq $img_blimit ] || {
1777                 echo "blimit, act:$qval, exp:$img_blimit"
1778                 return 1
1779         }
1780
1781         qval=$($LFS quota -v -u $T32_QID $mnt |
1782                 awk 'BEGIN { num='7' } { if ($1 == "'$mnt'") \
1783                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1784                 | tr -d "*")
1785         [ $qval -eq $img_ilimit ] || {
1786                 echo "ilimit, act:$qval, exp:$img_ilimit"
1787                 return 1
1788         }
1789
1790         set_persistent_param_and_check $facet \
1791                 "osd-$mds1_FSTYPE.$fsname-MDT0000.quota_slave.enabled" \
1792                 "$fsname.quota.mdt" ug
1793
1794         set_persistent_param_and_check $facet \
1795                 "osd-$mds1_FSTYPE.$fsname-OST0000.quota_slave.enabled" \
1796                 "$fsname.quota.ost" ug
1797
1798         chmod 0777 $mnt
1799         runas -u $T32_QID -g $T32_QID dd if=/dev/zero of=$mnt/t32_qf_new \
1800                 bs=1M count=$((img_blimit / 1024)) oflag=sync && {
1801                 echo "Write succeed, but expect -EDQUOT"
1802                 return 1
1803         }
1804         rm -f $mnt/t32_qf_new
1805
1806         runas -u $T32_QID -g $T32_QID createmany -m $mnt/t32_qf_ \
1807                 $img_ilimit && {
1808                 echo "Create succeed, but expect -EDQUOT"
1809                 return 1
1810         }
1811         unlinkmany $mnt/t32_qf_ $img_ilimit
1812
1813         return 0
1814 }
1815
1816 getquota() {
1817         local spec=$4
1818         local uuid=$3
1819         local mnt=$5
1820
1821         sync_all_data > /dev/null 2>&1 || true
1822
1823         [ "$uuid" != "global" ] || uuid=$mnt
1824
1825         $LFS quota -v "$1" "$2" $mnt |
1826                 awk 'BEGIN { num='$spec' } { if ($1 == "'$uuid'") \
1827                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1828                 | tr -d "*"
1829 }
1830
1831 t32_test() {
1832         local tarball=$1
1833         local writeconf=$2
1834         local dne_upgrade=${dne_upgrade:-"no"}
1835         local dom_upgrade=${dom_upgrade:-"no"}
1836         local project_upgrade=${project_upgrade:-"no"}
1837         local ff_convert=${ff_convert:-"no"}
1838         local pfl_upgrade=${pfl_upgrade:-"no"}
1839         local project_quota_upgrade=${project_quota_upgrade:-"no"}
1840         local dom_new_upgrade=${dom_new_upgrade:-"no"}
1841         local flr_upgrade=${flr_upgrade:-"no"}
1842         local shall_cleanup_mdt=false
1843         local shall_cleanup_mdt1=false
1844         local shall_cleanup_ost=false
1845         local shall_cleanup_ost1=false
1846         local shall_cleanup_lustre=false
1847         local mdt2_is_available=false
1848         local ost2_is_available=false
1849         local node=$(facet_active_host $SINGLEMDS)
1850         local r="do_node $node"
1851         local tmp=$TMP/t32
1852         local img_commit
1853         local img_kernel
1854         local img_arch
1855         local img_bspace
1856         local img_ispace
1857         local img_blimit
1858         local img_ilimit
1859         local fsname=t32fs
1860         local nid
1861         local mopts
1862         local uuid
1863         local nrpcs_orig
1864         local nrpcs
1865         local list
1866         local mdt_dev=$tmp/mdt
1867         local mdt2_dev=$tmp/mdt2
1868         local ost_dev=$tmp/ost
1869         local ost2_dev=$tmp/ost2
1870         local stripe_index
1871         local stripe_count
1872         local dir
1873         local pfl_file=$tmp/mnt/lustre/remote_dir/pfl_dir/pfl_file
1874         local flr_file=$tmp/mnt/lustre/remote_dir/flr_dir/flr_file
1875         local dom_file=$tmp/mnt/lustre/remote_dir/dom_dir/dom_file
1876         local quota_dir=$tmp/mnt/lustre/remote_dir/project_quota_dir
1877
1878         combined_mgs_mds || stop_mgs || error "Unable to stop MGS"
1879         trap 'trap - RETURN; t32_test_cleanup' RETURN
1880
1881         load_modules
1882         nid=$($r $LCTL list_nids | head -1)
1883
1884         mkdir -p $tmp/mnt/lustre || error "mkdir $tmp/mnt/lustre failed"
1885         $r mkdir -p $tmp/mnt/{mdt,mdt1,ost,ost1}
1886         $r tar xjvf $tarball -S -C $tmp || {
1887                 error_noexit "Unpacking the disk image tarball"
1888                 return 1
1889         }
1890         img_commit=$($r cat $tmp/commit)
1891         img_kernel=$($r cat $tmp/kernel)
1892         img_arch=$($r cat $tmp/arch)
1893         img_bspace=$($r cat $tmp/bspace)
1894         img_ispace=$($r cat $tmp/ispace)
1895
1896         # older images did not have "blimit" and "ilimit" files
1897         # use old values for T32_BLIMIT and T32_ILIMIT
1898         $r test -f $tmp/blimit && img_blimit=$($r cat $tmp/blimit) ||
1899                 img_blimit=20480
1900         $r test -f $tmp/ilimit && img_ilimit=$($r cat $tmp/ilimit) ||
1901                 img_ilimit=2
1902
1903         echo "Upgrading from $(basename $tarball), created with:"
1904         echo "  Commit: $img_commit"
1905         echo "  Kernel: $img_kernel"
1906         echo "    Arch: $img_arch"
1907         echo "OST version: $(lustre_build_version ost1)"
1908
1909         # The conversion can be made only when both of the following
1910         # conditions are satisfied:
1911         # - ost device img version < 2.3.64
1912         # - ost server version >= 2.5
1913         [ $(version_code $img_commit) -ge $(version_code 2.3.64) -o \
1914                 "$OST1_VERSION" -lt $(version_code 2.5.0) ] &&
1915                         ff_convert="no"
1916
1917         ! $r test -f $mdt2_dev || mdt2_is_available=true
1918         ! $r test -f $ost2_dev || ost2_is_available=true
1919
1920         if [[ "$mds1_FSTYPE" == zfs ]]; then
1921                 echo "== fstype is zfs =="
1922                 # import pool first
1923                 local poolname
1924                 local poolname_list="t32fs-mdt1 t32fs-ost1"
1925
1926                 ! $mdt2_is_available || poolname_list+=" t32fs-mdt2"
1927
1928                 for poolname in $poolname_list; do
1929                         $r "modprobe zfs;
1930                                 $ZPOOL list -H $poolname >/dev/null 2>&1 ||
1931                                 $ZPOOL import -f -d $tmp $poolname"
1932                 done
1933
1934                 # upgrade zpool to latest supported features, including
1935                 # dnode quota accounting in 0.7.0
1936                 $r "$ZPOOL upgrade -a"
1937
1938                 mdt_dev=t32fs-mdt1/mdt1
1939                 ost_dev=t32fs-ost1/ost1
1940                 ! $mdt2_is_available || mdt2_dev=t32fs-mdt2/mdt2
1941                 ! $ost2_is_available || ost2_dev=t32fs-ost2/ost2
1942                 wait_update_facet $SINGLEMDS "$ZPOOL list |
1943                         awk '/^t32fs-mdt1/ { print \\\$1 }'" "t32fs-mdt1" || {
1944                                 error_noexit "import zfs pool failed"
1945                                 return 1
1946                         }
1947         elif [ "$project_upgrade" != "no" ]; then
1948                 echo "== project upgrade =="
1949                 ! $r tune2fs -O project $mdt_dev &&
1950                         error_noexit "enable project on mdt0 failed" &&
1951                                 return 1
1952                 $mdt2_is_available && ! $r tune2fs "-O project" $mdt2_dev &&
1953                         error_noexit "enable project on mdt failed" &&
1954                                 return 1
1955                 ! $r tune2fs -O project $ost_dev &&
1956                         error_noexit "enable project on ost failed" &&
1957                                 return 1
1958                 $ost2_is_available && ! $r tune2fs -O project $ost2_dev &&
1959                         error_noexit "enable project on ost2 failed" &&
1960                                 return 1
1961         fi
1962
1963         $r $LCTL set_param debug="$PTLDEBUG"
1964
1965         $r $TUNEFS --dryrun $mdt_dev || {
1966                 $r losetup -a
1967                 error_noexit "tunefs.lustre before mounting the MDT"
1968                 return 1
1969         }
1970
1971         if $mdt2_is_available; then
1972                 $r $TUNEFS --dryrun $mdt2_dev || {
1973                         $r losetup -a
1974                         error_noexit "tunefs.lustre before mounting the MDT"
1975                         return 1
1976                 }
1977         fi
1978
1979         if [ "$writeconf" ]; then
1980                 echo "== writeconf mdt tunefs and quota =="
1981                 mopts=writeconf
1982                 if [ "$mds1_FSTYPE" == ldiskfs ]; then
1983                         mopts="loop,$mopts"
1984                         $r $TUNEFS --quota $mdt_dev || {
1985                                 $r losetup -a
1986                                 error_noexit "Enable mdt quota feature"
1987                                 return 1
1988                         }
1989
1990                         if [ "$project_quota_upgrade" != "no" ]; then
1991                                 echo "== enable mdt2 project quota =="
1992                                 $r $TUNE2FS -O project $mdt_dev || {
1993                                         $r losetup -a
1994                                         error_noexit "tune2fs $mdt_dev failed"
1995                                         return 1
1996                                 }
1997                         fi
1998
1999                         if $mdt2_is_available; then
2000                                 $r $TUNEFS --quota $mdt2_dev || {
2001                                         $r losetup -a
2002                                         error_noexit "Enable mdt2 quota feature"
2003                                         return 1
2004                                 }
2005                                 if [ "$project_quota_upgrade" != "no" ]; then
2006                                         echo "== enable mdt2 project quota =="
2007                                         $r $TUNE2FS -O project $mdt2_dev || {
2008                                                 $r losetup -a
2009                                                 error_noexit \
2010                                                     "tune2fs $mdt2_dev failed"
2011                                                 return 1
2012                                         }
2013                                 fi
2014                         fi
2015                 fi
2016         else
2017                 echo "== replace nids =="
2018                 if [ -n "$($LCTL list_nids | grep -v '\(tcp\|lo\)[[:digit:]]*$')" ]; then
2019                         [[ "$MGS_VERSION" -ge $(version_code 2.3.59) ]] ||
2020                         skip "LU-2200: Cannot run over IB w/o lctl replace_nids "
2021                                 "(Need MGS version at least 2.3.59)"
2022                 fi
2023
2024                 local osthost=$(facet_active_host ost1)
2025                 local ostnid=$(do_node $osthost $LCTL list_nids | head -1)
2026
2027                 mopts=nosvc
2028                 if [ "$mds1_FSTYPE" == ldiskfs ]; then
2029                         mopts="loop,$mopts"
2030                 fi
2031                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt
2032                 $r $LCTL replace_nids $fsname-OST0000 $ostnid
2033                 if $ost2_is_available; then
2034                         $r $LCTL replace_nids $fsname-OST0001 $ostnid
2035                 fi
2036                 $r $LCTL replace_nids $fsname-MDT0000 $nid
2037                 if $mdt2_is_available; then
2038                         $r $LCTL replace_nids $fsname-MDT0001 $nid
2039                 fi
2040                 $r $UMOUNT $tmp/mnt/mdt
2041
2042                 mopts=exclude=$fsname-OST0000
2043                 if [ "$mds1_FSTYPE" == ldiskfs ]; then
2044                         mopts="loop,$mopts"
2045                 fi
2046         fi
2047
2048         t32_wait_til_devices_gone $node
2049
2050         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
2051                 $r losetup -a
2052                 error_noexit "Mounting the MDT"
2053                 return 1
2054         }
2055         shall_cleanup_mdt=true
2056
2057         if $mdt2_is_available; then
2058                 echo "== mdt2 available =="
2059                 mopts=mgsnode=$nid,$mopts
2060                 $r $MOUNT_CMD -o $mopts $mdt2_dev $tmp/mnt/mdt1 || {
2061                         $r losetup -a
2062                         error_noexit "Mounting the MDT"
2063                         return 1
2064                 }
2065                 shall_cleanup_mdt1=true
2066                 echo "== mount new MDT $mdt2_dev =="
2067
2068                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 || {
2069                         error_noexit "enable remote dir create failed"
2070                         return 1
2071                 }
2072
2073         elif [ "$dne_upgrade" != "no" ]; then
2074                 local fs2mdsdev=$(mdsdevname 1_2)
2075                 local fs2mdsvdev=$(mdsvdevname 1_2)
2076
2077                 echo "== mkfs new MDT on ${fs2mdsdev} =="
2078                 if [ "$mds1_FSTYPE" == ldiskfs ]; then
2079                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
2080                 fi
2081
2082                 add $SINGLEMDS $(mds2failover_HOST="" \
2083                         mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
2084                         $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
2085                         error_noexit "Mkfs new MDT failed"
2086                         return 1
2087                 }
2088
2089                 [[ "$mds1_FSTYPE" != zfs ]] || import_zpool mds1
2090
2091                 $r $TUNEFS --dryrun $fs2mdsdev || {
2092                         error_noexit "tunefs.lustre before mounting the MDT"
2093                         return 1
2094                 }
2095
2096                 echo "== mount new MDT....$fs2mdsdev =="
2097                 $r $MOUNT_CMD -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
2098                         error_noexit "mount mdt1 failed"
2099                         return 1
2100                 }
2101
2102                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
2103                         error_noexit "enable remote dir create failed"
2104
2105                 shall_cleanup_mdt1=true
2106         fi
2107
2108         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
2109                 error_noexit "Getting MDT UUID"
2110                 return 1
2111         }
2112         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
2113                 error_noexit "Unexpected MDT UUID: \"$uuid\""
2114                 return 1
2115         fi
2116
2117         $r $TUNEFS --dryrun $ost_dev || {
2118                 error_noexit "tunefs.lustre before mounting the OST"
2119                 return 1
2120         }
2121
2122         if $ost2_is_available; then
2123                 $r $TUNEFS --dryrun $ost2_dev || {
2124                         error_noexit "tunefs.lustre before mounting the OST"
2125                         return 1
2126                 }
2127         fi
2128
2129         if [ "$writeconf" ]; then
2130                 echo "== writeconf and ost quota tunefs =="
2131                 mopts=mgsnode=$nid,$writeconf
2132                 if [ "$ost1_FSTYPE" == ldiskfs ]; then
2133                         mopts="loop,$mopts"
2134                         $r $TUNEFS --quota $ost_dev || {
2135                                 $r losetup -a
2136                                 error_noexit "Enable ost quota feature"
2137                                 return 1
2138                         }
2139
2140                         if [ "$project_quota_upgrade" != "no" ]; then
2141                                 echo "== enable ost project quota =="
2142                                 $r $TUNE2FS -O project $ost_dev || {
2143                                         $r losetup -a
2144                                         error_noexit "tune2fs $ost_dev failed"
2145                                         return 1
2146                                 }
2147                         fi
2148
2149                         if $ost2_is_available; then
2150                                 $r $TUNEFS --quota $ost2_dev || {
2151                                         $r losetup -a
2152                                         error_noexit "Enable ost2 quota feature"
2153                                         return 1
2154                                 }
2155                                 if [ "$project_quota_upgrade" != "no" ]; then
2156                                         echo "== enable ost2 project quota =="
2157                                         $r $TUNE2FS -O project $ost2_dev || {
2158                                                 $r losetup -a
2159                                                 error_noexit \
2160                                                 "tune2fs $ost2_dev failed"
2161                                                 return 1
2162                                         }
2163                                 fi
2164                         fi
2165                 fi
2166         else
2167                 mopts=mgsnode=$nid
2168                 if [ "$mds1_FSTYPE" == ldiskfs ]; then
2169                         mopts="loop,$mopts"
2170                 fi
2171         fi
2172
2173         $r $MOUNT_CMD -onomgs -o$mopts $ost_dev $tmp/mnt/ost || {
2174                 error_noexit "Mounting the OST"
2175                 return 1
2176         }
2177
2178         if $ost2_is_available; then
2179                 $r $MOUNT_CMD -onomgs -o$mopts $ost2_dev $tmp/mnt/ost1 || {
2180                         error_noexit "Mounting the OST2"
2181                         return 1
2182                 }
2183                 shall_cleanup_ost1=true
2184         fi
2185
2186         shall_cleanup_ost=true
2187
2188         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
2189                 error_noexit "Getting OST UUID"
2190                 return 1
2191         }
2192         if [ "$uuid" != $fsname-OST0000_UUID ]; then
2193                 error_noexit "Unexpected OST UUID: \"$uuid\""
2194                 return 1
2195         fi
2196
2197         if $ost2_is_available; then
2198                 uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0001.uuid) ||{
2199                         error_noexit "Getting OST1 UUID"
2200                         return 1
2201                 }
2202                 if [ "$uuid" != $fsname-OST0001_UUID ]; then
2203                         error_noexit "Unexpected OST1 UUID: \"$uuid\""
2204                         return 1
2205                 fi
2206         fi
2207
2208         if [[ $PERM_CMD =~ "set_param" ]]; then
2209                 echo "== perm cmd = '$PERM_CMD' =="
2210                 $r $PERM_CMD osc.$fsname-OST0000*.import=connection=$nid || {
2211                         error_noexit "Setting OST \"failover.node\""
2212                         return 1
2213                 }
2214                 $r $PERM_CMD mdc.$fsname-MDT0000*.import=connection=$nid || {
2215                         error_noexit "Setting MDT \"failover.node\""
2216                         return 1
2217                 }
2218                 $r $PERM_CMD osc.$fsname-OST0000-*.max_dirty_mb=15 || {
2219                         error_noexit "Setting \"max_dirty_mb\""
2220                         return 1
2221                 }
2222                 $r $PERM_CMD mdc.$fsname-MDT0000-*.max_rpcs_in_flight=9 || {
2223                         error_noexit "Setting \"max_rpcs_in_flight\""
2224                         return 1
2225                 }
2226                 $r $PERM_CMD lov.$fsname-MDT0000-*.stripesize=4M || {
2227                         error_noexit "Setting \"lov.stripesize\""
2228                         return 1
2229                 }
2230                 $r $PERM_CMD mdd.$fsname-MDT0000-*.atime_diff=70 || {
2231                         error_noexit "Setting \"mdd.atime_diff\""
2232                         return 1
2233                 }
2234         else
2235                 echo "== perm cmd = '$PERM_CMD' =="
2236                 $r $PERM_CMD $fsname-OST0000.failover.node=$nid || {
2237                         error_noexit "Setting OST \"failover.node\""
2238                         return 1
2239                 }
2240
2241                 $r $PERM_CMD $fsname-MDT0000.failover.node=$nid || {
2242                         error_noexit "Setting MDT \"failover.node\""
2243                         return 1
2244                 }
2245
2246                 $r $PERM_CMD $fsname-OST0000.osc.max_dirty_mb=15 || {
2247                         error_noexit "Setting \"max_dirty_mb\""
2248                         return 1
2249                 }
2250                 $r $PERM_CMD $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
2251                         error_noexit "Setting \"max_rpcs_in_flight\""
2252                         return 1
2253                 }
2254                 $r $PERM_CMD $fsname-MDT0000.lov.stripesize=4M || {
2255                         error_noexit "Setting \"lov.stripesize\""
2256                         return 1
2257                 }
2258                 $r $PERM_CMD $fsname-MDT0000.mdd.atime_diff=70 || {
2259                         error_noexit "Setting \"mdd.atime_diff\""
2260                         return 1
2261                 }
2262         fi
2263
2264         $r $LCTL pool_new $fsname.interop || {
2265                 error_noexit "Setting \"interop\""
2266                 return 1
2267         }
2268
2269         if [ "$ff_convert" != "no" -a "$ost1_FSTYPE" == ldiskfs ]; then
2270                 echo "== ff convert ($ff_convert) =="
2271                 $r $LCTL lfsck_start -M $fsname-OST0000 || {
2272                         error_noexit "Start OI scrub on OST0"
2273                         return 1
2274                 }
2275
2276                 # The oi_scrub should be on ost1, but for test_32(),
2277                 # all on the SINGLEMDS.
2278                 wait_update_facet $SINGLEMDS "$LCTL get_param -n \
2279                         osd-ldiskfs.$fsname-OST0000.oi_scrub |
2280                         awk '/^status/ { print \\\$2 }'" "completed" 30 || {
2281                         error_noexit "Failed to get the expected 'completed'"
2282                         return 1
2283                 }
2284
2285                 local UPDATED=$($r $LCTL get_param -n \
2286                                 osd-ldiskfs.$fsname-OST0000.oi_scrub |
2287                                 awk '/^updated/ { print $2 }')
2288                 [ $UPDATED -ge 1 ] || {
2289                         error_noexit "Only $UPDATED objects have been converted"
2290                         return 1
2291                 }
2292         fi
2293
2294         if [[ "$dne_upgrade" != "no" ]] || $mdt2_is_available; then
2295                 echo "== dne upgrate ($dne_upgrade) or mdt2 available =="
2296                 if [[ $PERM_CMD =~ "set_param" ]]; then
2297                         $r $PERM_CMD mdc.$fsname-MDT0001*.import=connection=$nid || {
2298                                 error_noexit "Setting MDT1 \"failover.node\""
2299                                 return 1
2300                         }
2301
2302                         $r $PERM_CMD mdc.$fsname-MDT0001-*.max_rpcs_in_flight=9 || {
2303                                 error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
2304                                 return 1
2305                         }
2306                         $r $PERM_CMD lov.$fsname-MDT0001-*.stripesize=4M || {
2307                                 error_noexit "Setting MDT1 \"lov.stripesize\""
2308                                 return 1
2309                         }
2310                 else
2311                         $r $PERM_CMD $fsname-MDT0001.failover.node=$nid || {
2312                                 error_noexit "Setting MDT1 \"failover.node\""
2313                                 return 1
2314                         }
2315                         $r $PERM_CMD $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
2316                                 error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
2317                                 return 1
2318                         }
2319                         $r $PERM_CMD $fsname-MDT0001.lov.stripesize=4M || {
2320                                 error_noexit "Setting MDT1 \"lov.stripesize\""
2321                                 return 1
2322                         }
2323                 fi
2324         fi
2325
2326         if [ "$writeconf" ]; then
2327                 echo "== writeconf and client mount =="
2328                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
2329                         error_noexit "Mounting the client"
2330                         return 1
2331                 }
2332
2333                 shall_cleanup_lustre=true
2334                 $r $LCTL set_param debug="$PTLDEBUG"
2335
2336                 t32_verify_quota $SINGLEMDS $fsname $tmp/mnt/lustre || {
2337                         error_noexit "verify quota failed"
2338                         return 1
2339                 }
2340
2341                 if $r test -f $tmp/list; then
2342                         echo "== list verification =="
2343                         #
2344                         # There is not a Test Framework API to copy files to or
2345                         # from a remote node.
2346                         #
2347                         # LU-2393 - do both sorts on same node to ensure locale
2348                         # is identical
2349                         local list_file=$tmp/list
2350
2351                         if $mdt2_is_available; then
2352                                 if [[ -d $tmp/mnt/lustre/striped_dir_old ]] &&
2353                                    $r test -f $tmp/list2; then
2354                                         list_file=$tmp/list2
2355                                         pushd $tmp/mnt/lustre/striped_dir_old
2356                                 else
2357                                         pushd $tmp/mnt/lustre/remote_dir
2358                                 fi
2359                         else
2360                                 pushd $tmp/mnt/lustre
2361                         fi
2362                         $r cat $list_file | sort -k 6 >$tmp/list.orig
2363                         ls -Rni --time-style=+%s | sort -k 6 |
2364                                 sed 's/\. / /' >$tmp/list || {
2365                                 error_noexit "ls"
2366                                 return 1
2367                         }
2368                         popd
2369                         #
2370                         # 32-bit and 64-bit clients use different algorithms to
2371                         # convert FIDs into inode numbers.  Hence, remove the
2372                         # inode numbers from the lists, if the original list was
2373                         # created on an architecture with different number of
2374                         # bits per "long".
2375                         #
2376                         if [ $(t32_bits_per_long $(uname -m)) != \
2377                                 $(t32_bits_per_long $img_arch) ]; then
2378                                 echo "Different number of bits per \"long\"" \
2379                                      "from the disk image"
2380                                 for list in list.orig list; do
2381                                         sed -i -e 's/^[0-9]\+[ \t]\+//' \
2382                                                   $tmp/$list
2383                                 done
2384                         fi
2385                         if ! diff -ub $tmp/list.orig $tmp/list; then
2386                                 error_noexit "list verification failed"
2387                                 return 1
2388                         fi
2389                 else
2390                         echo "== list verification skipped =="
2391                 fi
2392
2393                 #non-dom upgrade to dom
2394                 if [ "$dom_upgrade" != "no" ]; then
2395                         echo "== dom upgrade =="
2396                         $LFS setstripe -E 1M -L mdt -E EOF $tmp/mnt/lustre/dom || {
2397                                 error_noexit "Verify DoM creation"
2398                                 return 1
2399                         }
2400                         [ $($LFS getstripe -L $tmp/mnt/lustre/dom) == "mdt" ] || {
2401                                 error_noexit "Verify a DoM file"
2402                                 return 1
2403                         }
2404                         dd if=/dev/urandom of=$tmp/mnt/lustre/dom bs=4096 \
2405                                 count=1 conv=fsync || {
2406                                 error_noexit "Cannot write to DoM file"
2407                                 return 1
2408                         }
2409                         [ $(stat -c%s $tmp/mnt/lustre/dom) == 4096 ] || {
2410                                 error_noexit "DoM: bad size after write"
2411                                 return 1
2412                         }
2413                         rm $tmp/mnt/lustre/dom
2414
2415                         set_persistent_param_and_check mds \
2416                            "lod.*MDT0000*.dom_stripesize" \
2417                            "$fsname-MDT0000.lod.dom_stripesize" 0 || {
2418                                 error_noexit "Changing \"dom_stripesize\""
2419                                 return 1
2420                         }
2421                 fi
2422
2423                 #dom upgrade
2424                 #$LFS setstripe -E 1M -L mdt -E -1 -S 4M $dom_file
2425                 if [ "$dom_new_upgrade" != "no" ]; then
2426                         if ! $mdt2_is_available; then
2427                                 dom_file=$tmp/mnt/lustre/dom_dir/dom_file
2428                         fi
2429                         echo "== check DoM file can be accessed =="
2430                         [ $($LFS getstripe -I1 -L $dom_file) == "mdt" ] || {
2431                                 error_noexit "Verify a DoM file"
2432                                 return 1
2433                         }
2434                         [ $(stat -c%s $dom_file) == $((2 * 1024 * 1024)) ] || {
2435                                 error_noexit "DoM: bad size after write"
2436                                 return 1
2437                         }
2438                 fi
2439
2440                 if [ "$flr_upgrade" != "no" ]; then
2441                         if ! $mdt2_is_available; then
2442                                 flr_file=$tmp/mnt/lustre/flr_dir/flr_file
2443                         fi
2444                         local mirror_count=$($LFS getstripe -N $flr_file)
2445                         echo "== check FLR file =="
2446                         [ $mirror_count == 2 ] || {
2447                                 error_noexit "FLR mirror count wrong"
2448                                 return 1
2449                         }
2450                 fi
2451
2452                 if [ "$dne_upgrade" != "no" ]; then
2453                         echo "== dne upgrade striped_dir  =="
2454                         $LFS mkdir -i 1 -c2 $tmp/mnt/lustre/striped_dir || {
2455                                 error_noexit "set striped dir failed"
2456                                 return 1
2457                         }
2458                         $LFS setdirstripe -D -c2 $tmp/mnt/lustre/striped_dir
2459
2460                         pushd $tmp/mnt/lustre
2461                         tar -c --exclude=./striped_dir \
2462                                 --exclude=./striped_dir_old \
2463                                 --exclude=./remote_dir -f - .|
2464                                 tar -xvf - -C striped_dir 1>/dev/null || {
2465                                 error_noexit "cp to striped dir failed"
2466                                 return 1
2467                         }
2468                         popd
2469                 fi
2470
2471                 if [ "$pfl_upgrade" != "no" ]; then
2472                         local comp_size
2473                         local comp_cnt
2474                         local stripe_size
2475                         local stripe_cnt
2476                         local comp_id
2477
2478                         echo "== check PFL file =="
2479                         if ! $mdt2_is_available; then
2480                                 pfl_file=$tmp/mnt/lustre/pfl_dir/pfl_file
2481                         fi
2482                         comp_cnt=$($LFS getstripe --component-count $pfl_file)
2483                         [ $comp_cnt == 2 ] || {
2484                                 error_noexit "wrong comp_cnt $comp_cnt"
2485                                 return 1
2486                         }
2487
2488                         comp_size=$($LFS getstripe -I1 -E $pfl_file)
2489                         [ $comp_size == 2097152 ] || {
2490                                 error_noexit "wrong component size $comp_size"
2491                                 return 1
2492                         }
2493
2494                         comp_id=$($LFS getstripe -I1 -i $pfl_file)
2495                         [ $comp_id == 0 ] || {
2496                                 error_noexit "wrong comp id $comp_id"
2497                                 return 1
2498                         }
2499
2500                         comp_id=$($LFS getstripe -I2 -i $pfl_file)
2501                         [ $comp_id -eq 1 ] || {
2502                                 error_noexit "wrong comp id $comp_id"
2503                                 return 1
2504                         }
2505
2506                         stripe_size=$($LFS getstripe -I1 -S $pfl_file)
2507                         [ $stripe_size -eq 1048576 ] || {
2508                                 error_noexit "wrong stripe size $stripe_size"
2509                                 return 1
2510                         }
2511
2512                         stripe_size=$($LFS getstripe -I2 -S $pfl_file)
2513                         [ $comp_size -eq 2097152 ] || {
2514                                 error_noexit "wrong component size $comp_size"
2515                                 return 1
2516                         }
2517                 fi
2518
2519                 if [ "$project_quota_upgrade" != "no" ]; then
2520                         if ! $mdt2_is_available; then
2521                                 quota_dir=$tmp/mnt/lustre/project_quota_dir
2522                         fi
2523                         local hardlimit
2524
2525                         echo "== check Project Quota =="
2526                         hardlimit=$(getquota -p $T32_PRJID global 3 \
2527                                                         ${tmp}/mnt/lustre)
2528                         [ $hardlimit == $T32_PROLIMIT ] || {
2529                                 error_noexit "wrong hardlimit $hardlimit"
2530                                 return 1
2531                         }
2532                 fi
2533
2534                 # If it is upgrade from DNE (2.5), then rename the remote dir,
2535                 # which is created in 2.5 to striped dir.
2536                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]]; then
2537                         echo "== rename remote_dir =="
2538                         stripe_index=$($LFS getdirstripe -i     \
2539                                        $tmp/mnt/lustre/remote_dir)
2540
2541                         [[ $stripe_index -eq 1 ]] || {
2542                                 error_noexit "get index \"$stripe_index\"" \
2543                                              "from remote dir failed"
2544                                 return 1
2545                         }
2546                         mv $tmp/mnt/lustre/remote_dir   \
2547                                 $tmp/mnt/lustre/striped_dir/ || {
2548                                 error_noexit "mv remote dir failed"
2549                                 return 1
2550                         }
2551                 fi
2552
2553                 # If it is upgraded from DNE (2.7), then move the striped dir
2554                 # which was created in 2.7 to the new striped dir.
2555                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]] &&
2556                         echo "== rename striped dir =="
2557                         [[ -d $tmp/mnt/lustre/striped_dir_old ]]; then
2558                         stripe_count=$($LFS getdirstripe -c     \
2559                                        $tmp/mnt/lustre/striped_dir_old)
2560                         [[ $stripe_count -eq 2 ]] || {
2561                                 error_noexit "get count $stripe_count" \
2562                                              "from striped dir failed"
2563                                 return 1
2564                         }
2565                         mv $tmp/mnt/lustre/striped_dir_old      \
2566                                 $tmp/mnt/lustre/striped_dir/ || {
2567                                 error_noexit "mv striped dir failed"
2568                                 return 1
2569                         }
2570                 fi
2571
2572                 sync; sleep 5; sync
2573                 $r $LCTL set_param -n osd*.*.force_sync=1
2574                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
2575                         error_noexit "dd failed"
2576                         return 1
2577                 }
2578                 rm -rf $tmp/mnt/lustre/tmp_file || {
2579                         error_noexit "rm failed"
2580                         return 1
2581                 }
2582
2583                 if $r test -f $tmp/sha1sums; then
2584                         echo "== checking sha1sums =="
2585                         # LU-2393 - do both sorts on same node to ensure locale
2586                         # is identical
2587                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
2588                         if [[ "$dne_upgrade" != "no" ]]; then
2589                                 if [[ -d $tmp/mnt/lustre/striped_dir/remote_dir ]]; then
2590                                         pushd $tmp/mnt/lustre/striped_dir/remote_dir
2591                                 else
2592                                         pushd $tmp/mnt/lustre/striped_dir
2593                                 fi
2594                         elif [[ "$pfl_upgrade" != "no" ]] ||
2595                                 [[ "$flr_upgrade" != "no" ]] ||
2596                                 [[ "$dom_new_upgrade" != "no" ]] ||
2597                                 [[ "$project_quota_upgrade" != "no" ]] ||
2598                                 [[ -d $tmp/mnt/lustre/remote_dir ]]; then
2599                                 pushd $tmp/mnt/lustre/remote_dir
2600                         else
2601                                 pushd $tmp/mnt/lustre
2602                         fi
2603
2604                         find ! -path "*remote_dir*" ! -path "*striped_dir*" \
2605                              ! -name .lustre -type f -exec sha1sum {} \; |
2606                                 sort -k 2 >$tmp/sha1sums || {
2607                                 popd
2608                                 error_noexit "sha1sum"
2609                                 return 1
2610                         }
2611                         local save=$PWD
2612
2613                         popd
2614                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
2615                                 echo "==** find $save files start **=="
2616                                 find $save -type f -ls
2617                                 echo "==** find $save files finish **=="
2618                                 error_noexit "sha1sum verification failed"
2619                                 return 1
2620                         fi
2621
2622                         # if upgrade from DNE(2.5), then check remote directory
2623                         # if upgrade from DNE(2.7), then check striped directory
2624                         if $mdt2_is_available &&
2625                            [[ "$dne_upgrade" != "no" ]]; then
2626                                 echo "== mdt2 upgrade sha1sum check =="
2627                                 local new_dir="$tmp/mnt/lustre/striped_dir"
2628                                 local striped_dir_old="$new_dir/striped_dir_old"
2629
2630                                 local dir_list="$new_dir/remote_dir"
2631                                 [[ ! -d $triped_dir_old ]] ||
2632                                         dir_list+=" $striped_dir_old"
2633
2634                                 for dir in $dir_list; do
2635                                         echo "== dir = $dir =="
2636                                         pushd $dir
2637                                         find ! -name .lustre -type f \
2638                                                 -exec sha1sum {} \; |
2639                                                 sort -k 2 >$tmp/sha1sums || {
2640                                                         ls -alR
2641                                                         popd
2642                                                         error_noexit "sha1sum"
2643                                                         return 1
2644                                                 }
2645                                         popd
2646                                         if ! diff -ub $tmp/sha1sums.orig \
2647                                                 $tmp/sha1sums; then
2648                                                 ls -alR $dir
2649                                                 error_noexit "sha1sum $dir" \
2650                                                              "failed"
2651                                                 return 1
2652                                         fi
2653                                 done
2654                         fi
2655                 else
2656                         echo "== sha1sum verification skipped =="
2657                 fi
2658
2659                 # PFL write test after sha1sum check
2660                 if [ "$pfl_upgrade" != "no" ]; then
2661                         local rw_len=$((3 * 1034 * 1024))
2662
2663                         if ! $mdt2_is_available; then
2664                                 pfl_file=$tmp/mnt/lustre/pfl_dir/pfl_file
2665                         fi
2666                         small_write $pfl_file $rw_len || {
2667                                 error_noexit "PFL RW Failed"
2668                                 return 1
2669                         }
2670                 fi
2671
2672                 if [ "$dne_upgrade" != "no" ]; then
2673                         rm -rf $tmp/mnt/lustre/striped_dir || {
2674                                 error_noexit "remove remote dir failed"
2675                                 return 1
2676                         }
2677                 fi
2678
2679                 # migrate files/dirs to remote MDT, then move them back
2680                 if [ "$MDS1_VERSION" -ge $(version_code 2.7.50) -a \
2681                      $dne_upgrade != "no" ]; then
2682                         $r $LCTL set_param -n   \
2683                                 mdt.${fsname}*.enable_remote_dir=1 2>/dev/null
2684
2685                         echo "== test migration =="
2686                         pushd $tmp/mnt/lustre
2687                         for dir in $(find ! -name .lustre ! -name . -type d); do
2688                                 mdt_index=$($LFS getdirstripe -i $dir)
2689                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2690                                 if [ $mdt_index = 0 -a $stripe_cnt -le 1 ]; then
2691                                         $LFS migrate -m 1 $dir || {
2692                                         popd
2693                                         error_noexit "migrate MDT1 failed"
2694                                         return 1
2695                                 }
2696                                 fi
2697                         done
2698
2699                         for dir in $(find ! -name . ! -name .lustre -type d); do
2700                                 mdt_index=$($LFS getdirstripe -i $dir)
2701                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2702                                 if [ $mdt_index = 1 -a $stripe_cnt -le 1 ]; then
2703                                         $LFS migrate -m 0 $dir || {
2704                                         popd
2705                                         error_noexit "migrate MDT0 failed"
2706                                         return 1
2707                                 }
2708                                 fi
2709                         done
2710                         popd
2711                 fi
2712
2713                 #
2714                 # When adding new data verification tests, please check for
2715                 # the presence of the required reference files first, like
2716                 # the "sha1sums" and "list" tests above, to avoid the need to
2717                 # regenerate every image for each test addition.
2718                 #
2719
2720                 nrpcs_orig=$($LCTL get_param \
2721                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
2722                         error_noexit "Getting \"max_rpcs_in_flight\""
2723                         return 1
2724                 }
2725                 nrpcs=$((nrpcs_orig + 5))
2726
2727                 set_persistent_param_and_check client \
2728                    "mdc.$fsname-MDT0000*.max_rpcs_in_flight" \
2729                    "$fsname-MDT0000.mdc.max_rpcs_in_flight" $nrpcs || {
2730                         error_noexit "Changing \"max_rpcs_in_flight\""
2731                         return 1
2732                 }
2733
2734                 umount $tmp/mnt/lustre || {
2735                         error_noexit "Unmounting the client"
2736                         return 1
2737                 }
2738                 shall_cleanup_lustre=false
2739         else
2740                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
2741                         error_noexit "Mounting the client"
2742                         return 1
2743                 }
2744
2745                 if [ "$mds1_FSTYPE" == ldiskfs -a \
2746                     "$project_upgrade" != "no" ]; then
2747                         ! $LFS project -d -p 1 $tmp/mnt/lustre/* &&
2748                                 error_noexit "set project failed" &&
2749                                         return 1
2750                 fi
2751
2752                 [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) == 0 ]] ||
2753                         error "MDD orphan cleanup thread not quit"
2754
2755                 umount $tmp/mnt/lustre || {
2756                         error_noexit "Unmounting the client"
2757                         return 1
2758                 }
2759
2760                 if [[ "$dne_upgrade" != "no" ]] || $mdt2_is_available; then
2761                         $r $UMOUNT $tmp/mnt/mdt1 || {
2762                                 error_noexit "Unmounting the MDT2"
2763                                 return 1
2764                         }
2765                         if [[ "$mds1_FSTYPE" == zfs ]]; then
2766                             $r "$ZPOOL export t32fs-mdt2"
2767                         fi
2768                         shall_cleanup_mdt1=false
2769                 fi
2770
2771                 $r $UMOUNT $tmp/mnt/mdt || {
2772                         error_noexit "Unmounting the MDT"
2773                         return 1
2774                 }
2775                 if [[ "$mds1_FSTYPE" == zfs ]]; then
2776                     $r "$ZPOOL export t32fs-mdt1"
2777                 fi
2778                 shall_cleanup_mdt=false
2779
2780                 $r $UMOUNT $tmp/mnt/ost || {
2781                         error_noexit "Unmounting the OST"
2782                         return 1
2783                 }
2784                 if $ost2_is_available; then
2785                         $r $UMOUNT $tmp/mnt/ost1 || {
2786                                 error_noexit "Unmounting the OST1"
2787                                 return 1
2788                         }
2789                         shall_cleanup_ost1=false
2790                 fi
2791
2792                 if [[ $ost1_FSTYPE == zfs ]]; then
2793                         $r "$ZPOOL export t32fs-ost1"
2794                         if $ost2_is_available; then
2795                                 $r "$ZPOOL export t32fs-ost2"
2796                         fi
2797                 fi
2798                 shall_cleanup_ost=false
2799
2800                 t32_reload_modules $node || {
2801                         error_noexit "Reloading modules"
2802                         return 1
2803                 }
2804
2805                 if [[ "$mds1_FSTYPE" == zfs ]]; then
2806                         local poolname=t32fs-mdt1
2807                         $r "modprobe zfs;
2808                             $ZPOOL list -H $poolname >/dev/null 2>&1 ||
2809                                 $ZPOOL import -f -d $tmp $poolname"
2810
2811                         # upgrade zpool to latest supported features,
2812                         # including dnode quota accounting in 0.7.0
2813                         $r "$ZPOOL upgrade $poolname"
2814                 fi
2815
2816                 # mount a second time to make sure we didnt leave upgrade flag on
2817                 $r $TUNEFS --dryrun $mdt_dev || {
2818                         $r losetup -a
2819                         error_noexit "tunefs.lustre before remounting the MDT"
2820                         return 1
2821                 }
2822
2823                 mopts=exclude=$fsname-OST0000
2824                 if [ "$mds1_FSTYPE" == ldiskfs ]; then
2825                         mopts="loop,$mopts"
2826                 fi
2827                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
2828                         error_noexit "Remounting the MDT"
2829                         return 1
2830                 }
2831                 shall_cleanup_mdt=true
2832         fi
2833 }
2834
2835 test_32a() {
2836         local tarballs
2837         local tarball
2838         local rc=0
2839
2840         t32_check
2841         for tarball in $tarballs; do
2842                 banner "testing $tarball upgrade"
2843                 t32_test $tarball || let "rc += $?"
2844         done
2845         return $rc
2846 }
2847 run_test 32a "Upgrade (not live)"
2848
2849 test_32b() {
2850         local tarballs
2851         local tarball
2852         local rc=0
2853
2854         t32_check
2855         for tarball in $tarballs; do
2856                 banner "testing $tarball upgrade with writeconf"
2857                 t32_test $tarball writeconf || let "rc += $?"
2858         done
2859         return $rc
2860 }
2861 run_test 32b "Upgrade with writeconf"
2862
2863 test_32c() {
2864         local tarballs
2865         local tarball
2866         local rc=0
2867
2868         t32_check
2869         for tarball in $tarballs; do
2870                 banner "testing $tarball upgrade with DNE"
2871                 load_modules
2872                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
2873         done
2874         return $rc
2875 }
2876 run_test 32c "dne upgrade test"
2877
2878 test_32d() {
2879         local tarballs
2880         local tarball
2881         local rc=0
2882
2883         t32_check
2884         for tarball in $tarballs; do
2885                 banner "testing $tarball upgrade with ff and project upgrade"
2886                 project_upgrade="no"
2887                 [[ "$MDS1_VERSION" -ge $(version_code 2.13.54) ]] &&
2888                         [[ "$tarball" =~ "disk2_4-ldiskfs" ]] &&
2889                                 project_upgrade="yes"
2890                 project_upgrade=$project_upgrade ff_convert=yes t32_test \
2891                         $tarball || rc=$?
2892         done
2893         return $rc
2894 }
2895 run_test 32d "convert ff and project quota upgrade test"
2896
2897 test_32e() {
2898         [[ "$MDS1_VERSION" -ge $(version_code 2.10.56) ]] ||
2899                 skip "Need MDS version at least 2.10.56"
2900
2901         local tarballs
2902         local tarball
2903         local rc=0
2904
2905         t32_check
2906         for tarball in $tarballs; do
2907                 [[ "$tarball" =~ "2_9" ]] ||
2908                         { echo "skip $(basename $tarball)"; continue; }
2909                 #load_modules
2910                 banner "testing $tarball upgrade with DoM"
2911                 dom_upgrade=yes t32_test $tarball writeconf || let "rc += $?"
2912         done
2913         return $rc
2914 }
2915 run_test 32e "dom upgrade test"
2916
2917 test_32f() {
2918         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
2919                 skip "Need MDS version at least 2.10.56"
2920
2921         local tarballs
2922         local tarball
2923         local rc=0
2924
2925         t32_check
2926         for tarball in $tarballs; do
2927                 [[ "$tarball" =~ "2_10" ]] ||
2928                         { echo "skip $(basename $tarball)"; continue; }
2929                 pfl_upgrade=yes project_quota_upgrade=yes \
2930                 t32_test $tarball writeconf || let "rc += $?"
2931         done
2932         return $rc
2933 }
2934 run_test 32f "pfl upgrade test"
2935
2936 test_32g() {
2937         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
2938                 skip "Need MDS version at least 2.10.56"
2939
2940         local tarballs
2941         local tarball
2942         local rc=0
2943
2944         t32_check
2945         for tarball in $tarballs; do
2946                 [[ $tarball =~ "2_12" ]] ||
2947                         { echo "skip $(basename $tarball)"; continue; }
2948                 flr_upgrade=yes dom_new_upgrade=yes \
2949                 t32_test $tarball writeconf || let "rc += $?"
2950         done
2951         return $rc
2952 }
2953 run_test 32g "flr/dom upgrade test"
2954
2955 test_33a() { # bug 12333, was test_33
2956         local FSNAME2=test-$testnum
2957
2958         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2959         local mkfsoptions
2960
2961         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
2962
2963         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
2964                 local dev=${SINGLEMDS}_dev
2965                 local MDSDEV=${!dev}
2966
2967                 is_blkdev $SINGLEMDS $MDSDEV &&
2968                         skip_env "mixed loopback and real device not working"
2969         fi
2970
2971         local fs2mdsdev=$(mdsdevname 1_2)
2972         local fs2ostdev=$(ostdevname 1_2)
2973         local fs2mdsvdev=$(mdsvdevname 1_2)
2974         local fs2ostvdev=$(ostvdevname 1_2)
2975
2976         if [ "$mds1_FSTYPE" == ldiskfs ]; then
2977                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
2978         fi
2979
2980         if combined_mgs_mds; then
2981                 local mgs_flag="--mgs"
2982         fi
2983
2984         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --fsname=${FSNAME2} \
2985                 --reformat $mgs_flag $mkfsoptions $fs2mdsdev $fs2mdsvdev ||
2986                 exit 10
2987         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2988                 --fsname=${FSNAME2} --index=0x1fff --reformat $fs2ostdev \
2989                 $fs2ostvdev || exit 10
2990
2991         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
2992         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2993
2994         if [[ $PERM_CMD == *"set_param -P"* ]]; then
2995                 do_facet mgs "$PERM_CMD timeout=200" ||
2996                         error "$PERM_CMD timeout=200 failed"
2997         else
2998                 do_facet mgs "$PERM_CMD $FSNAME2.sys.timeout=200" ||
2999                         error "$PERM_CMD $FSNAME2.sys.timeout=200 failed"
3000         fi
3001         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
3002         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
3003         echo "ok."
3004
3005         cp /etc/hosts $MOUNT2/ || error "copy /etc/hosts $MOUNT2/ failed"
3006         $LFS getstripe $MOUNT2/hosts ||
3007                 error "$LFS getstripe $MOUNT2/hosts failed"
3008
3009         umount $MOUNT2
3010
3011         # test lctl del_ost on large index
3012         do_facet mgs "$LCTL del_ost -t ${FSNAME2}-OST1fff" ||
3013                 error "del_ost failed with $?"
3014         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
3015         echo "ok."
3016         $LFS df | grep -q OST1fff && error "del_ost did not remove OST1fff!"
3017         umount $MOUNT2
3018
3019         stop fs2ost -f
3020         stop fs2mds -f
3021         cleanup_nocli || error "cleanup_nocli failed with $?"
3022 }
3023 run_test 33a "Mount ost with a large index number"
3024
3025 test_33b() {    # was test_34
3026         setup
3027
3028         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
3029         # Drop lock cancelation reply during umount
3030         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
3031         do_facet client $LCTL set_param fail_loc=0x80000304
3032         #lctl set_param debug=-1
3033         umount_client $MOUNT
3034         cleanup || error "cleanup failed with $?"
3035 }
3036 run_test 33b "Drop cancel during umount"
3037
3038 test_34a() {
3039         setup
3040         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
3041         manual_umount_client
3042         rc=$?
3043         do_facet client killall -USR1 multiop
3044         if [ $rc -eq 0 ]; then
3045                 error "umount not fail!"
3046         fi
3047         sleep 1
3048         cleanup || error "cleanup failed with rc $?"
3049 }
3050 run_test 34a "umount with opened file should be fail"
3051
3052 test_34b() {
3053         setup
3054         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3055         stop_mds || error "Unable to stop MDS"
3056
3057         manual_umount_client --force || error "mtab after failed umount with $?"
3058
3059         cleanup || error "cleanup failed with $?"
3060 }
3061 run_test 34b "force umount with failed mds should be normal"
3062
3063 test_34c() {
3064         setup
3065         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3066         stop_ost || error "Unable to stop OST1"
3067
3068         manual_umount_client --force || error "mtab after failed umount with $?"
3069
3070         cleanup || error "cleanup failed with $?"
3071 }
3072 run_test 34c "force umount with failed ost should be normal"
3073
3074 test_35a() { # bug 12459
3075         setup
3076
3077         DBG_SAVE="`$LCTL get_param -n debug`"
3078         $LCTL set_param debug="ha"
3079
3080         log "Set up a fake failnode for the MDS"
3081         FAKENID="127.0.0.2"
3082         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
3083                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
3084
3085         if [[ $PERM_CMD == *"set_param -P"* ]]; then
3086                 do_facet mgs "$PERM_CMD \
3087                               mdc.*${device}*.import=connection=$(h2nettype $FAKENID)" ||
3088                         error "Setting mdc.*${device}*.import=connection=\
3089                                $(h2nettype $FAKENID) failed."
3090         else
3091                 do_facet mgs "$PERM_CMD \
3092                               ${device}.failover.node=$(h2nettype $FAKENID)" ||
3093                         error "Setting ${device}.failover.node=\
3094                                $(h2nettype $FAKENID) failed."
3095         fi
3096         log "Wait for RECONNECT_INTERVAL seconds (10s)"
3097         sleep 10
3098
3099         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
3100         $LCTL clear
3101         log "$MSG"
3102         log "Stopping the MDT: $device"
3103         stop_mdt 1 || error "MDT0 stop fail"
3104
3105         df $MOUNT > /dev/null 2>&1 &
3106         DFPID=$!
3107         log "Restarting the MDT: $device"
3108         start_mdt 1 || error "MDT0 start fail"
3109         log "Wait for df ($DFPID) ... "
3110         wait $DFPID
3111         log "done"
3112         $LCTL set_param debug="$DBG_SAVE"
3113
3114         # retrieve from the log the first server that the client tried to
3115         # contact after the connection loss
3116         $LCTL dk $TMP/lustre-log-$TESTNAME.log
3117         NEXTCONN=`awk "/${MSG}/ {start = 1;}
3118                        /import_select_connection.*$device-mdc.* using connection/ {
3119                                 if (start) {
3120                                         if (\\\$NF ~ /$FAKENID/)
3121                                                 print \\\$NF;
3122                                         else
3123                                                 print 0;
3124                                         exit;
3125                                 }
3126                        }" $TMP/lustre-log-$TESTNAME.log`
3127         [ "$NEXTCONN" != "0" ] &&
3128                 error "Tried to connect to ${NEXTCONN} not last active server"
3129         cleanup || error "cleanup failed with $?"
3130         # remove nid settings
3131         writeconf_or_reformat
3132 }
3133 run_test 35a "Reconnect to the last active server first"
3134
3135 test_35b() { # bug 18674
3136         remote_mds || skip "local MDS"
3137         setup
3138
3139         debugsave
3140         $LCTL set_param debug="ha"
3141         $LCTL clear
3142         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
3143         log "$MSG"
3144
3145         log "Set up a fake failnode for the MDS"
3146         FAKENID="127.0.0.2"
3147         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
3148                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
3149
3150         if [[ $PERM_CMD == *"set_param -P"* ]]; then
3151                 do_facet mgs "$PERM_CMD \
3152                               mdc.*${device}*.import=connection=$(h2nettype $FAKENID)" ||
3153                         error "Set mdc.*${device}*.import=connection=\
3154                                $(h2nettype $FAKENID) failed"
3155         else
3156                 do_facet mgs "$PERM_CMD \
3157                               ${device}.failover.node=$(h2nettype $FAKENID)" ||
3158                         error "Set ${device}.failover.node=\
3159                                $(h2nettype $FAKENID) failed"
3160         fi
3161
3162         local at_max_saved=0
3163         # adaptive timeouts may prevent seeing the issue
3164         if at_is_enabled; then
3165                 at_max_saved=$(at_max_get mds)
3166                 at_max_set 0 mds client
3167         fi
3168
3169         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3170
3171         log "Injecting EBUSY on MDS"
3172         # Setting OBD_FAIL_MDS_RESEND=0x136
3173         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" ||
3174                 error "unable to set param fail_loc=0x80000136"
3175
3176         $LCTL set_param mdc.${FSNAME}*.stats=clear
3177
3178         log "Creating a test file and stat it"
3179         touch $MOUNT/$tdir/$tfile || error "touch $MOUNT/$tdir/$tfile failed"
3180         stat $MOUNT/$tdir/$tfile
3181
3182         log "Stop injecting EBUSY on MDS"
3183         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" ||
3184                 error "unable to set param fail_loc=0"
3185         rm -f $MOUNT/$tdir/$tfile || error "remove $MOUNT/$tdir/$tfile failed"
3186
3187         log "done"
3188         # restore adaptive timeout
3189         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
3190
3191         $LCTL dk $TMP/lustre-log-$TESTNAME.log
3192
3193         CONNCNT=$($LCTL get_param mdc.${FSNAME}*.stats |
3194                   awk '/mds_connect/{print $2}')
3195
3196         # retrieve from the log if the client has ever tried to
3197         # contact the fake server after the loss of connection
3198         FAILCONN=`awk "BEGIN {ret = 0;}
3199                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
3200                                 ret = 1;
3201                                 if (\\\$NF ~ /$FAKENID/) {
3202                                         ret = 2;
3203                                         exit;
3204                                 }
3205                        }
3206                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
3207
3208         [ "$FAILCONN" == "0" ] &&
3209                 error "The client reconnection has not been triggered"
3210         [ "$FAILCONN" == "2" ] &&
3211                 error "Primary server busy, client reconnect to failover failed"
3212
3213         # LU-290
3214         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
3215         # Reconnects are supposed to be rate limited to one every 5s
3216         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] &&
3217                 error "Too many reconnects $CONNCNT"
3218
3219         cleanup || error "cleanup failed with $?"
3220         # remove nid settings
3221         writeconf_or_reformat
3222 }
3223 run_test 35b "Continue reconnection retries, if the active server is busy"
3224
3225 test_36() { # 12743
3226         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
3227
3228         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] ||
3229                 skip "remote OST"
3230
3231         local rc=0
3232         local FSNAME2=test1234
3233         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
3234
3235         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
3236
3237         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
3238                 is_blkdev $SINGLEMDS $MDSDEV &&
3239                         skip_env "mixed loopback and real device not working"
3240         fi
3241
3242         local fs2mdsdev=$(mdsdevname 1_2)
3243         local fs2ostdev=$(ostdevname 1_2)
3244         local fs3ostdev=$(ostdevname 2_2)
3245         local fs2mdsvdev=$(mdsvdevname 1_2)
3246         local fs2ostvdev=$(ostvdevname 1_2)
3247         local fs3ostvdev=$(ostvdevname 2_2)
3248
3249         load_modules
3250         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
3251                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
3252         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
3253         #     different one than the default value here.
3254         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
3255                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
3256         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
3257                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
3258
3259         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
3260         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
3261         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
3262         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
3263         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
3264
3265         sleep 5 # until 11778 fixed
3266
3267         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || error "dd failed"
3268
3269         BKTOTAL=$($LCTL get_param -n obdfilter.*.kbytestotal |
3270                   awk 'BEGIN{total=0}; {total+=$1}; END{print total}')
3271         BKFREE=$($LCTL get_param -n obdfilter.*.kbytesfree |
3272                  awk 'BEGIN{free=0}; {free+=$1}; END{print free}')
3273         BKAVAIL=$($LCTL get_param -n obdfilter.*.kbytesavail |
3274                   awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
3275         STRING=$(df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}')
3276         DFTOTAL=$(echo $STRING | cut -d, -f1)
3277         DFUSED=$(echo $STRING  | cut -d, -f2)
3278         DFAVAIL=$(echo $STRING | cut -d, -f3)
3279         DFFREE=$(($DFTOTAL - $DFUSED))
3280
3281         ALLOWANCE=$((64 * $OSTCOUNT))
3282
3283         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
3284            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
3285                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
3286                 rc=1
3287         fi
3288         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
3289            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
3290                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
3291                 rc=2
3292         fi
3293         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
3294            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
3295                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
3296                 rc=3
3297         fi
3298
3299         $UMOUNT $MOUNT2
3300         stop fs3ost -f || error "unable to stop OST3"
3301         stop fs2ost -f || error "unable to stop OST2"
3302         stop fs2mds -f || error "unable to stop second MDS"
3303         unload_modules_conf || error "unable unload modules"
3304         return $rc
3305 }
3306 run_test 36 "df report consistency on OSTs with different block size"
3307
3308 test_37() {
3309         local mntpt=$(facet_mntpt $SINGLEMDS)
3310         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
3311         local mdsdev_sym="$TMP/sym_mdt.img"
3312         local opts=$MDS_MOUNT_OPTS
3313         local rc=0
3314
3315         if [ "$mds1_FSTYPE" != ldiskfs ]; then
3316                 skip "ldiskfs only test"
3317         fi
3318
3319         echo "MDS :     $mdsdev"
3320         echo "SYMLINK : $mdsdev_sym"
3321         do_facet $SINGLEMDS rm -f $mdsdev_sym
3322
3323         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
3324
3325         echo "mount symlink device - $mdsdev_sym"
3326
3327         if ! do_facet $SINGLEMDS test -b $mdsdev; then
3328                 opts=$(csa_add "$opts" -o loop)
3329         fi
3330
3331         load_modules
3332         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
3333                 $mdsdev_sym $mntpt 2>&1)
3334         rc=${PIPESTATUS[0]}
3335
3336         echo mount_op=$mount_op
3337
3338         do_facet $SINGLEMDS "$UMOUNT $mntpt && rm -f $mdsdev_sym"
3339
3340         if $(echo $mount_op | grep -q "unable to set tunable"); then
3341                 error "set tunables failed for symlink device"
3342         fi
3343
3344         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
3345 }
3346 run_test 37 "verify set tunables works for symlink device"
3347
3348 test_38() { # bug 14222
3349         local mntpt=$(facet_mntpt $SINGLEMDS)
3350
3351         setup
3352         # like runtests
3353         local COUNT=10
3354         local SRC="/etc /bin"
3355         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
3356
3357         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
3358         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3359         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
3360                 error "copying $SRC to $DIR/$tdir"
3361         sync
3362         umount_client $MOUNT || error "umount_client $MOUNT failed"
3363         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
3364         stop_mds || error "Unable to stop MDS"
3365         log "delete lov_objid file on MDS"
3366
3367         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
3368
3369         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
3370
3371         unmount_fstype $SINGLEMDS || error "umount failed (1)"
3372
3373         # check create in mds_lov_connect
3374         start_mds || error "unable to start MDS"
3375         mount_client $MOUNT || error "mount_client $MOUNT failed"
3376         for f in $FILES; do
3377                 [ $V ] && log "verifying $DIR/$tdir/$f"
3378                 diff -q $f $DIR/$tdir/$f || ERROR=y
3379         done
3380         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
3381         if [ "$ERROR" = "y" ]; then
3382                 # check it's updates in sync
3383                 umount_client $MOUNT
3384                 stop_mds
3385                 mount_fstype $SIGNLEMDS
3386                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
3387                 unmount_fstype $SINGLEMDS
3388                 error "old and new files are different after connect" || true
3389         fi
3390         touch $DIR/$tdir/f2 || error "f2 file create failed"
3391
3392         # check it's updates in sync
3393         umount_client $MOUNT || error "second umount_client $MOUNT failed"
3394         stop_mds
3395
3396         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
3397
3398         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
3399         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
3400
3401         unmount_fstype $SINGLEMDS || error "umount failed (3)"
3402
3403         start_mds || error "unable to start MDS"
3404         mount_client $MOUNT || error "mount_client $MOUNT failed"
3405         for f in $FILES; do
3406                 [ $V ] && log "verifying $DIR/$tdir/$f"
3407                 diff -q $f $DIR/$tdir/$f || ERROR=y
3408         done
3409         touch $DIR/$tdir/f3 || error "f3 file create failed"
3410         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
3411         umount_client $MOUNT || error "third umount_client $MOUNT failed"
3412         stop_mds
3413         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
3414         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
3415         unmount_fstype $SINGLEMDS || error "umount failed (4)"
3416
3417         [ "$ERROR" = "y" ] &&
3418                 error "old and new files are different after sync" || true
3419
3420         log "files compared the same"
3421         cleanup || error "cleanup failed with $?"
3422 }
3423 run_test 38 "MDS recreates missing lov_objid file from OST data"
3424
3425 test_39() {
3426         PTLDEBUG=+malloc
3427         setup
3428         cleanup || error "cleanup failed with $?"
3429         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
3430                 error "memory leak detected" || true
3431 }
3432 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
3433
3434 test_40() { # bug 15759
3435         start_ost || error "Unable to start OST1"
3436         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
3437         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
3438         start_mds
3439         cleanup || error "cleanup failed with rc $?"
3440 }
3441 run_test 40 "race during service thread startup"
3442
3443 test_41a() { #bug 14134
3444         if [ "$mds1_FSTYPE" == ldiskfs ] &&
3445            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
3446                 skip "Loop devices does not work with nosvc option"
3447         fi
3448
3449         combined_mgs_mds || skip "needs combined MGT and MDT device"
3450
3451         start_mdt 1 -o nosvc -n
3452         if [ $MDSCOUNT -ge 2 ]; then
3453                 for num in $(seq 2 $MDSCOUNT); do
3454                         start_mdt $num || return
3455                 done
3456         fi
3457         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
3458         start_mdt 1 -o nomgs,force
3459         mount_client $MOUNT || error "mount_client $MOUNT failed"
3460         sleep 5
3461
3462         echo "blah blah" > $MOUNT/$tfile
3463         cat $MOUNT/$tfile
3464
3465         umount_client $MOUNT || error "umount_client $MOUNT failed"
3466         stop ost1 -f || error "unable to stop OST1"
3467         stop_mds || error "Unable to stop MDS"
3468         stop_mds || error "Unable to stop MDS on second try"
3469 }
3470 run_test 41a "mount mds with --nosvc and --nomgs"
3471
3472 test_41b() {
3473         if [ "$mds1_FSTYPE" == ldiskfs ] &&
3474            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
3475                 skip "Loop devices does not work with nosvc option"
3476         fi
3477
3478         ! combined_mgs_mds && skip "needs combined mgs device"
3479
3480         stopall
3481         reformat
3482         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
3483
3484         start_mdt 1 -o nosvc -n
3485         if [ $MDSCOUNT -ge 2 ]; then
3486                 for num in $(seq 2 $MDSCOUNT); do
3487                         start_mdt $num || return
3488                 done
3489         fi
3490         start_ost || error "Unable to start OST1"
3491         start_mdt 1 -o nomgs,force
3492         mount_client $MOUNT || error "mount_client $MOUNT failed"
3493         sleep 5
3494
3495         echo "blah blah" > $MOUNT/$tfile
3496         cat $MOUNT/$tfile || error "cat $MOUNT/$tfile failed"
3497
3498         umount_client $MOUNT -f || error "umount_client $MOUNT failed"
3499         stop_ost || error "Unable to stop OST1"
3500         stop_mds || error "Unable to stop MDS"
3501         stop_mds || error "Unable to stop MDS on second try"
3502 }
3503 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
3504
3505 test_41c() {
3506         local oss_list=$(comma_list $(osts_nodes))
3507
3508         [[ "$MDS1_VERSION" -ge $(version_code 2.6.52) ]] ||
3509         [[ "$MDS1_VERSION" -ge $(version_code 2.5.26) &&
3510            "$MDS1_VERSION" -lt $(version_code 2.5.50) ]] ||
3511         [[ "$MDS1_VERSION" -ge $(version_code 2.5.4) &&
3512            "$MDS1_VERSION" -lt $(version_code 2.5.11) ]] ||
3513                 skip "Need MDS version 2.5.4+ or 2.5.26+ or 2.6.52+"
3514
3515         # ensure mds1 ost1 have been created even if running sub-test standalone
3516         cleanup
3517         setup
3518         cleanup || error "cleanup failed"
3519
3520         # using directly mount command instead of start() function to avoid
3521         # any side effect of // with others/externals tools/features
3522         # ("zpool import", ...)
3523
3524         # MDT concurrent start
3525
3526         LOAD_MODULES_REMOTE=true load_modules
3527         do_facet $SINGLEMDS "lsmod | grep -q libcfs" ||
3528                 error "MDT concurrent start: libcfs module not loaded"
3529
3530         local mds1dev=$(mdsdevname 1)
3531         local mds1mnt=$(facet_mntpt mds1)
3532         local mds1opts=$MDS_MOUNT_OPTS
3533
3534         if [ "$mds1_FSTYPE" == ldiskfs ] &&
3535            ! do_facet mds1 test -b $mds1dev; then
3536                 mds1opts=$(csa_add "$mds1opts" -o loop)
3537         fi
3538         if [[ "$mds1_FSTYPE" == zfs ]]; then
3539                 import_zpool mds1 || return ${PIPESTATUS[0]}
3540         fi
3541
3542         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
3543         do_facet mds1 "$LCTL set_param fail_loc=0x80000716"
3544
3545         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts &
3546         local pid=$!
3547
3548         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts
3549         local rc2=$?
3550         wait $pid
3551         local rc=$?
3552
3553         do_facet mds1 "$LCTL set_param fail_loc=0x0"
3554         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
3555                 echo "1st MDT start succeed"
3556                 echo "2nd MDT start failed with $rc2"
3557         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
3558                 echo "1st MDT start failed with $rc"
3559                 echo "2nd MDT start succeed"
3560         else
3561                 stop mds1 -f
3562                 error "unexpected concurrent MDT mounts result, rc=$rc rc2=$rc2"
3563         fi
3564
3565         if [ $MDSCOUNT -ge 2 ]; then
3566                 for num in $(seq 2 $MDSCOUNT); do
3567                         start_mdt $num || return
3568                 done
3569         fi
3570
3571         # OST concurrent start
3572
3573         do_rpc_nodes $oss_list "lsmod | grep -q libcfs" ||
3574                 error "OST concurrent start: libcfs module not loaded"
3575
3576         local ost1dev=$(ostdevname 1)
3577         local ost1mnt=$(facet_mntpt ost1)
3578         local ost1opts=$OST_MOUNT_OPTS
3579
3580         if [ "$ost1_FSTYPE" == ldiskfs ] &&
3581            ! do_facet ost1 test -b $ost1dev; then
3582                 ost1opts=$(csa_add "$ost1opts" -o loop)
3583         fi
3584         if [[ "$ost1_FSTYPE" == zfs ]]; then
3585                 import_zpool ost1 || return ${PIPESTATUS[0]}
3586         fi
3587
3588         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
3589         do_facet ost1 "$LCTL set_param fail_loc=0x80000716"
3590
3591         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts &
3592         pid=$!
3593
3594         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts
3595         rc2=$?
3596         wait $pid
3597         rc=$?
3598         do_facet ost1 "$LCTL set_param fail_loc=0x0"
3599         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
3600                 echo "1st OST start succeed"
3601                 echo "2nd OST start failed with $rc2"
3602         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
3603                 echo "1st OST start failed with $rc"
3604                 echo "2nd OST start succeed"
3605         else
3606                 stop_mds -f
3607                 stop ost1 -f
3608                 error "unexpected concurrent OST mounts result, rc=$rc rc2=$rc2"
3609         fi
3610         # cleanup
3611         stop_mds
3612         stop ost1 -f
3613
3614         # verify everything ok
3615         start_mds
3616         if [ $? != 0 ]
3617         then
3618                 stop_mds
3619                 error "MDT(s) start failed"
3620         fi
3621
3622         start_ost
3623         if [ $? != 0 ]
3624         then
3625                 stop_mds
3626                 stop ost1 -f
3627                 error "OST(s) start failed"
3628         fi
3629
3630         mount_client $MOUNT
3631         if [ $? != 0 ]
3632         then
3633                 stop_mds
3634                 stop ost1 -f
3635                 error "client start failed"
3636         fi
3637         check_mount
3638         if [ $? != 0 ]
3639         then
3640                 stop_mds
3641                 stop ost1 -f
3642                 error "client mount failed"
3643         fi
3644         cleanup
3645 }
3646 run_test 41c "concurrent mounts of MDT/OST should all fail but one"
3647
3648 test_42() { #bug 14693
3649         local PARAM
3650
3651         setup
3652         check_mount || error "client was not mounted"
3653
3654         if [[ $PERM_CMD == *"set_param -P"* ]]; then
3655                 PARAM="llite.$FSNAME-*.some_wrong_param"
3656         else
3657                 PARAM="$FSNAME.llite.some_wrong_param"
3658         fi
3659
3660         do_facet mgs $PERM_CMD $PARAM=10
3661         umount_client $MOUNT ||
3662                 error "unmounting client failed with invalid llite param"
3663         mount_client $MOUNT ||
3664                 error "mounting client failed with invalid llite param"
3665
3666         do_facet mgs $PERM_CMD $PARAM=20
3667         cleanup || error "stopping $FSNAME failed with invalid sys param"
3668         setup
3669         check_mount || error "client was not mounted with invalid sys param"
3670         cleanup || error "stopping $FSNAME failed with invalid sys param"
3671 }
3672 run_test 42 "allow client/server mount/unmount with invalid config param"
3673
3674 test_43a() {
3675         [[ "$MGS_VERSION" -ge $(version_code 2.5.58) ]] ||
3676                 skip "Need MDS version at least 2.5.58"
3677         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
3678
3679         ID1=${ID1:-501}
3680         USER1=$(getent passwd | grep :$ID1:$ID1: | cut -d: -f1)
3681         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1"
3682
3683         setup
3684         chmod ugo+x $DIR || error "chmod 0 failed"
3685         set_persistent_param_and_check mds1                             \
3686                 "mdt.$FSNAME-MDT0000.root_squash"                       \
3687                 "$FSNAME.mdt.root_squash"                               \
3688                 "0:0"
3689         wait_update $HOSTNAME                                           \
3690                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3691                 "0:0" ||
3692                 error "check llite root_squash failed!"
3693         set_persistent_param_and_check mds1                             \
3694                 "mdt.$FSNAME-MDT0000.nosquash_nids"                     \
3695                 "$FSNAME.mdt.nosquash_nids"                             \
3696                 "NONE"
3697         wait_update $HOSTNAME                                           \
3698                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3699                 "NONE" ||
3700                 error "check llite nosquash_nids failed!"
3701
3702         #
3703         # create set of test files
3704         #
3705         echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
3706         chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
3707         chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
3708
3709         echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
3710         chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
3711
3712         mkdir_on_mdt0 $DIR/$tdir-rootdir || error "mkdir failed"
3713         chmod go-rwx $DIR/$tdir-rootdir || error "chmod 3 failed"
3714         touch $DIR/$tdir-rootdir/tfile-1 || error "touch failed"
3715
3716         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
3717         chmod go-rw $DIR/$tfile-user1file || error "chmod 7 failed"
3718         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
3719
3720         #
3721         # check root_squash:
3722         #   set root squash UID:GID to RUNAS_ID
3723         #   root should be able to access only files owned by RUNAS_ID
3724         #
3725         set_persistent_param_and_check mds1                             \
3726                 "mdt.$FSNAME-MDT0000.root_squash"                       \
3727                 "$FSNAME.mdt.root_squash"                               \
3728                 "$RUNAS_ID:$RUNAS_ID"
3729         wait_update $HOSTNAME                                           \
3730                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3731                 "$RUNAS_ID:$RUNAS_ID" ||
3732                 error "check llite root_squash failed!"
3733
3734         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
3735         dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3736                 error "$ST: root read permission is denied"
3737         echo "$ST: root read permission is granted - ok"
3738
3739         echo "444" |
3740         dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3741                 error "$ST: root write permission is denied"
3742         echo "$ST: root write permission is granted - ok"
3743
3744         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3745         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3746                 error "$ST: root read permission is granted"
3747         echo "$ST: root read permission is denied - ok"
3748
3749         echo "555" |
3750         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3751                 error "$ST: root write permission is granted"
3752         echo "$ST: root write permission is denied - ok"
3753
3754         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3755                 rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null &&
3756                         error "$ST: root unlink permission is granted"
3757         echo "$ST: root unlink permission is denied - ok"
3758
3759         touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null &&
3760                 error "$ST: root create permission is granted"
3761         echo "$ST: root create permission is denied - ok"
3762
3763         # LU-1778
3764         # check root_squash is enforced independently
3765         # of client cache content
3766         #
3767         # access file by USER1, keep access open
3768         # root should be denied access to user file
3769
3770         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
3771         pid=$!
3772         sleep 1
3773
3774         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
3775         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3776             { kill $pid; error "$ST: root read permission is granted"; }
3777         echo "$ST: root read permission is denied - ok"
3778
3779         echo "777" |
3780         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3781             { kill $pid; error "$ST: root write permission is granted"; }
3782         echo "$ST: root write permission is denied - ok"
3783
3784         kill $pid
3785         wait $pid
3786
3787         #
3788         # check nosquash_nids:
3789         #   put client's NID into nosquash_nids list,
3790         #   root should be able to access root file after that
3791         #
3792         local NIDLIST=$($LCTL list_nids all | tr '\n' ' ')
3793         NIDLIST="2@gni $NIDLIST 192.168.0.[2,10]@tcp"
3794         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
3795         set_persistent_param_and_check mds1                             \
3796                 "mdt.$FSNAME-MDT0000.nosquash_nids"                     \
3797                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
3798                 "$NIDLIST"
3799         wait_update $HOSTNAME                                           \
3800                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3801                 "$NIDLIST" ||
3802                 error "check llite nosquash_nids failed!"
3803
3804         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3805         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3806                 error "$ST: root read permission is denied"
3807         echo "$ST: root read permission is granted - ok"
3808
3809         echo "666" |
3810         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3811                 error "$ST: root write permission is denied"
3812         echo "$ST: root write permission is granted - ok"
3813
3814         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3815         rm $DIR/$tdir-rootdir/tfile-1 ||
3816                 error "$ST: root unlink permission is denied"
3817         echo "$ST: root unlink permission is granted - ok"
3818         touch $DIR/$tdir-rootdir/tfile-2 ||
3819                 error "$ST: root create permission is denied"
3820         echo "$ST: root create permission is granted - ok"
3821         cleanup || error "cleanup failed with $?"
3822 }
3823 run_test 43a "check root_squash and nosquash_nids"
3824
3825 test_43b() { # LU-5690
3826         [[ "$MGS_VERSION" -ge $(version_code 2.7.62) ]] ||
3827                 skip "Need MGS version 2.7.62+"
3828
3829         if [[ -z "$fs2mds_DEV" ]]; then
3830                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
3831                 skip_env "mixed loopback and real device not working"
3832         fi
3833
3834         local fs2mdsdev=$(mdsdevname 1_2)
3835         local fs2mdsvdev=$(mdsvdevname 1_2)
3836
3837         # temporarily use fs2mds as fs2mgs
3838         local fs2mgs=fs2mds
3839         local fs2mgsdev=$fs2mdsdev
3840         local fs2mgsvdev=$fs2mdsvdev
3841
3842         local fsname=test1234
3843
3844         load_module llite/lustre
3845         local client_ip=$(host_nids_address $HOSTNAME $NETTYPE)
3846         local host=${client_ip//*./}
3847         local net=${client_ip/%$host/}
3848         local nosquash_nids=$(h2nettype $net[$host,$host,$host])
3849
3850         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
3851                 --param mdt.root_squash=$RUNAS_ID:$RUNAS_ID \
3852                 --param mdt.nosquash_nids=$nosquash_nids \
3853                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
3854         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS  || error "start fs2mgs failed"
3855         stop $fs2mgs -f || error "stop fs2mgs failed"
3856         cleanup || error "cleanup failed with $?"
3857 }
3858 run_test 43b "parse nosquash_nids with commas in expr_list"
3859
3860 test_44() { # 16317
3861         setup
3862         check_mount || error "check_mount"
3863         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
3864         STATS_FOUND=no
3865         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
3866         for VAL in $UUIDS; do
3867                 NID=$(echo $VAL | cut -d= -f1)
3868                 CLUUID=$(echo $VAL | cut -d= -f2)
3869                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
3870         done
3871         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
3872         cleanup || error "cleanup failed with $?"
3873 }
3874 run_test 44 "mounted client proc entry exists"
3875
3876 test_45() { #17310
3877         setup
3878         check_mount || error "check_mount"
3879         stop_mds || error "Unable to stop MDS"
3880         df -h $MOUNT &
3881         log "sleep 60 sec"
3882         sleep 60
3883         #define OBD_FAIL_PTLRPC_LONG_REPL_UNLINK        0x50f
3884         do_facet client "$LCTL set_param fail_loc=0x8000050f"
3885         log "sleep 10 sec"
3886         sleep 10
3887         manual_umount_client --force || error "manual_umount_client failed"
3888         do_facet client "$LCTL set_param fail_loc=0x0"
3889         start_mds || error "unable to start MDS"
3890         mount_client $MOUNT || error "mount_client $MOUNT failed"
3891         cleanup || error "cleanup failed with $?"
3892 }
3893 run_test 45 "long unlink handling in ptlrpcd"
3894
3895 cleanup_46a() {
3896         trap 0
3897         local rc=0
3898         local count=$1
3899
3900         umount_client $MOUNT2 || rc=$?
3901         umount_client $MOUNT || rc=$?
3902         while [ $count -gt 0 ]; do
3903                 stop ost${count} -f || rc=$?
3904                 let count=count-1
3905         done
3906         stop_mds || rc=$?
3907         cleanup_nocli || rc=$?
3908         #writeconf to remove all ost2 traces for subsequent tests
3909         writeconf_or_reformat
3910         return $rc
3911 }
3912
3913 test_46a() {
3914         echo "Testing with $OSTCOUNT OSTs"
3915         reformat_and_config
3916         start_mds || error "unable to start MDS"
3917         #first client should see only one ost
3918         start_ost || error "Unable to start OST1"
3919         wait_osc_import_state mds ost FULL
3920         #start_client
3921         mount_client $MOUNT || error "mount_client $MOUNT failed"
3922         trap "cleanup_46a $OSTCOUNT" EXIT ERR
3923
3924         local i
3925         for (( i=2; i<=$OSTCOUNT; i++ )); do
3926                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
3927                         error "start_ost$i $(ostdevname $i) failed"
3928         done
3929
3930         # wait until osts in sync
3931         for (( i=2; i<=$OSTCOUNT; i++ )); do
3932             wait_osc_import_state mds ost$i FULL
3933             wait_osc_import_ready client ost$i
3934         done
3935
3936         #second client see all ost's
3937
3938         mount_client $MOUNT2 || error "mount_client failed"
3939         $LFS setstripe -c -1 $MOUNT2 ||
3940                 error "$LFS setstripe -c -1 $MOUNT2 failed"
3941         $LFS getstripe $MOUNT2 || error "$LFS getstripe $MOUNT2 failed"
3942
3943         echo "ok" > $MOUNT2/widestripe
3944         $LFS getstripe $MOUNT2/widestripe ||
3945                 error "$LFS getstripe $MOUNT2/widestripe failed"
3946         # fill acl buffer for avoid expand lsm to them
3947         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd |
3948                 while read acl; do
3949             setfacl -m $acl $MOUNT2/widestripe
3950         done
3951
3952         # will be deadlock
3953         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3954
3955         cleanup_46a $OSTCOUNT || error "cleanup_46a failed"
3956 }
3957 run_test 46a "handle ost additional - wide striped file"
3958
3959 test_47() { #17674
3960         reformat
3961         setup_noconfig
3962         check_mount || error "check_mount failed"
3963         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
3964
3965         local lru_size=[]
3966         local count=0
3967         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3968                 if echo $ns | grep "MDT[[:digit:]]*"; then
3969                         continue
3970                 fi
3971                 lrs=$(echo $ns | sed 's/.*lru_size=//')
3972                 lru_size[count]=$lrs
3973                 let count=count+1
3974         done
3975
3976         facet_failover ost1
3977         facet_failover $SINGLEMDS
3978         client_up || error "client_up failed"
3979
3980         count=0
3981         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3982                 if echo $ns | grep "MDT[[:digit:]]*"; then
3983                         continue
3984                 fi
3985                 lrs=$(echo $ns | sed 's/.*lru_size=//')
3986                 if ! test "$lrs" -eq "${lru_size[count]}"; then
3987                         n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
3988                         error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
3989                 fi
3990                 let count=count+1
3991         done
3992
3993         cleanup || error "cleanup failed with $?"
3994 }
3995 run_test 47 "server restart does not make client loss lru_resize settings"
3996
3997 cleanup_48() {
3998         trap 0
3999
4000         # reformat after this test is needed - if the test fails,
4001         # we will have unkillable file at FS
4002         reformat_and_config
4003 }
4004
4005 test_48() { # bz-17636 LU-7473
4006         local count
4007
4008         setup_noconfig
4009         check_mount || error "check_mount failed"
4010
4011         $LFS setstripe -c -1 $MOUNT ||
4012                 error "$LFS setstripe -c -1 $MOUNT failed"
4013         $LFS getstripe $MOUNT || error "$LFS getstripe $MOUNT failed"
4014
4015         echo "ok" > $MOUNT/widestripe
4016         $LFS getstripe $MOUNT/widestripe ||
4017                 error "$LFS getstripe $MOUNT/widestripe failed"
4018
4019         # In the future, we may introduce more EAs, such as selinux, enlarged
4020         # LOV EA, and so on. These EA will use some EA space that is shared by
4021         # ACL entries. So here we only check some reasonable ACL entries count,
4022         # instead of the max number that is calculated from the max_ea_size.
4023         if [ "$MDS1_VERSION" -lt $(version_code 2.8.57) ]; then
4024                 count=28        # hard coded of RPC protocol
4025         elif large_xattr_enabled; then
4026                 count=4500      # max_num 8187 max_ea_size = 65452
4027                                 # not create too many (4500) to save test time
4028         else
4029                 count=450       # max_num 497 max_ea_size = 4012
4030         fi
4031
4032         echo "It is expected to hold at least $count ACL entries"
4033         trap cleanup_48 EXIT ERR
4034         for ((i = 0; i < $count; i++)) do
4035                 setfacl -m u:$((i + 100)):rw $MOUNT/widestripe ||
4036                         error "Fail to setfacl for $MOUNT/widestripe at $i"
4037         done
4038
4039         cancel_lru_locks mdc
4040         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
4041         local r_count=$(getfacl $MOUNT/widestripe | grep "user:" | wc -l)
4042
4043         count=$((count + 1)) # for the entry "user::rw-"
4044
4045         [ $count -eq $r_count ] ||
4046                 error "Expected ACL entries $count, but got $r_count"
4047
4048         cleanup_48
4049 }
4050 run_test 48 "too many acls on file"
4051
4052 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
4053 test_49a() { # bug 17710
4054         local timeout_orig=$TIMEOUT
4055         local ldlm_timeout_orig=$LDLM_TIMEOUT
4056         local LOCAL_TIMEOUT=20
4057
4058         LDLM_TIMEOUT=$LOCAL_TIMEOUT
4059         TIMEOUT=$LOCAL_TIMEOUT
4060
4061         reformat
4062         setup_noconfig
4063         check_mount || error "client mount failed"
4064
4065         echo "check ldlm_timout..."
4066         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
4067         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
4068         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
4069
4070         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
4071                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
4072         fi
4073
4074         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
4075                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
4076         fi
4077
4078         umount_client $MOUNT || error "umount_client $MOUNT failed"
4079         stop_ost || error "problem stopping OSS"
4080         stop_mds || error "problem stopping MDS"
4081
4082         LDLM_TIMEOUT=$ldlm_timeout_orig
4083         TIMEOUT=$timeout_orig
4084 }
4085 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
4086
4087 test_49b() { # bug 17710
4088         local timeout_orig=$TIMEOUT
4089         local ldlm_timeout_orig=$LDLM_TIMEOUT
4090         local LOCAL_TIMEOUT=20
4091
4092         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
4093         TIMEOUT=$LOCAL_TIMEOUT
4094
4095         reformat
4096         setup_noconfig
4097         check_mount || error "client mount failed"
4098
4099         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
4100         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
4101         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
4102
4103         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
4104                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
4105         fi
4106
4107         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
4108                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
4109         fi
4110
4111         cleanup || error "cleanup failed"
4112
4113         LDLM_TIMEOUT=$ldlm_timeout_orig
4114         TIMEOUT=$timeout_orig
4115 }
4116 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
4117
4118 lazystatfs() {
4119         # wait long enough to exceed OBD_STATFS_CACHE_SECONDS = 1
4120         sleep 2
4121         # Test both statfs and lfs df and fail if either one fails
4122         multiop_bg_pause $1 f_
4123         RC=$?
4124         PID=$!
4125         killall -USR1 multiop
4126         [ $RC -ne 0 ] && log "lazystatfs multiop failed"
4127         wait $PID || { RC=$?; log "multiop return error "; }
4128
4129         # wait long enough to exceed OBD_STATFS_CACHE_SECONDS = 1
4130         sleep 2
4131         $LFS df -l &
4132         PID=$!
4133         sleep 5
4134         if kill -s 0 $PID; then
4135                 RC=1
4136                 kill -s 9 $PID
4137                 log "lazystatfs lfs df failed to complete in 5s"
4138         fi
4139
4140         return $RC
4141 }
4142
4143 test_50a() {
4144         setup
4145         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4146         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4147
4148         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
4149
4150         cleanup || error "cleanup failed with rc $?"
4151 }
4152 run_test 50a "lazystatfs all servers available"
4153
4154 test_50b() {
4155         setup
4156         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4157         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4158
4159         # Wait for client to detect down OST
4160         stop_ost || error "Unable to stop OST1"
4161         wait_osc_import_state client ost DISCONN
4162         $LCTL dl
4163         log "OSCs should all be DISCONN"
4164
4165         lazystatfs $MOUNT || error "lazystatfs should not return EIO"
4166
4167         umount_client $MOUNT || error "Unable to unmount client"
4168         stop_mds || error "Unable to stop MDS"
4169 }
4170 run_test 50b "lazystatfs all servers down"
4171
4172 test_50c() {
4173         start_mds || error "Unable to start MDS"
4174         start_ost || error "Unable to start OST1"
4175         start_ost2 || error "Unable to start OST2"
4176         mount_client $MOUNT || error "Unable to mount client"
4177         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4178         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4179
4180         # Wait for client to detect down OST
4181         stop_ost || error "Unable to stop OST1"
4182         wait_osc_import_state mds ost DISCONN
4183         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
4184
4185         umount_client $MOUNT || error "Unable to unmount client"
4186         stop_ost2 || error "Unable to stop OST2"
4187         stop_mds || error "Unable to stop MDS"
4188         #writeconf to remove all ost2 traces for subsequent tests
4189         writeconf_or_reformat
4190 }
4191 run_test 50c "lazystatfs one server down"
4192
4193 test_50d() {
4194         start_mds || error "Unable to start MDS"
4195         start_ost || error "Unable to start OST1"
4196         start_ost2 || error "Unable to start OST2"
4197         mount_client $MOUNT || error "Unable to mount client"
4198         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4199         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4200
4201         # Issue the statfs during the window where the client still
4202         # belives the OST to be available but it is in fact down.
4203         # No failure just a statfs which hangs for a timeout interval.
4204         stop_ost || error "Unable to stop OST1"
4205         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
4206
4207         umount_client $MOUNT || error "Unable to unmount client"
4208         stop_ost2 || error "Unable to stop OST2"
4209         stop_mds || error "Unable to stop MDS"
4210         #writeconf to remove all ost2 traces for subsequent tests
4211         writeconf_or_reformat
4212 }
4213 run_test 50d "lazystatfs client/server conn race"
4214
4215 test_50e() {
4216         local RC1
4217         local pid
4218
4219         reformat_and_config
4220         start_mds || error "Unable to start MDS"
4221         #first client should see only one ost
4222         start_ost || error "Unable to start OST1"
4223         wait_osc_import_state mds ost FULL
4224
4225         # Wait for client to detect down OST
4226         stop_ost || error "Unable to stop OST1"
4227         wait_osc_import_state mds ost DISCONN
4228
4229         mount_client $MOUNT || error "Unable to mount client"
4230         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
4231
4232         multiop_bg_pause $MOUNT _f
4233         RC1=$?
4234         pid=$!
4235
4236         if [ $RC1 -ne 0 ]; then
4237                 log "multiop failed $RC1"
4238         else
4239             kill -USR1 $pid
4240             sleep $(( $TIMEOUT+1 ))
4241             kill -0 $pid
4242             [ $? -ne 0 ] && error "process isn't sleep"
4243             start_ost || error "Unable to start OST1"
4244             wait $pid || error "statfs failed"
4245         fi
4246
4247         umount_client $MOUNT || error "Unable to unmount client"
4248         stop_ost || error "Unable to stop OST1"
4249         stop_mds || error "Unable to stop MDS"
4250 }
4251 run_test 50e "normal statfs all servers down"
4252
4253 test_50f() {
4254         local RC1
4255         local pid
4256         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
4257
4258         start_mds || error "Unable to start mds"
4259         #first client should see only one ost
4260         start_ost || error "Unable to start OST1"
4261         wait_osc_import_state mds ost FULL
4262
4263         start_ost2 || error "Unable to start OST2"
4264         wait_osc_import_state mds ost2 FULL
4265
4266         # Wait for client to detect down OST
4267         stop_ost2 || error "Unable to stop OST2"
4268
4269         wait_osc_import_state mds ost2 DISCONN
4270         mount_client $MOUNT || error "Unable to mount client"
4271         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
4272
4273         multiop_bg_pause $MOUNT _f
4274         RC1=$?
4275         pid=$!
4276
4277         if [ $RC1 -ne 0 ]; then
4278                 log "lazystatfs multiop failed $RC1"
4279         else
4280             kill -USR1 $pid
4281             sleep $(( $TIMEOUT+1 ))
4282             kill -0 $pid
4283             [ $? -ne 0 ] && error "process isn't sleep"
4284             start_ost2 || error "Unable to start OST2"
4285             wait $pid || error "statfs failed"
4286             stop_ost2 || error "Unable to stop OST2"
4287         fi
4288
4289         umount_client $MOUNT -f || error "Unable to unmount client"
4290         stop_ost || error "Unable to stop OST1"
4291         stop_mds || error "Unable to stop MDS"
4292         #writeconf to remove all ost2 traces for subsequent tests
4293         writeconf_or_reformat
4294 }
4295 run_test 50f "normal statfs one server in down"
4296
4297 test_50g() {
4298         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >=2 OSTs"
4299         setup
4300         start_ost2 || error "Unable to start OST2"
4301         wait_osc_import_state mds ost2 FULL
4302         wait_osc_import_ready client ost2
4303
4304         if [[ $PERM_CMD == *"set_param -P"* ]]; then
4305                 local PARAM="osc.${FSNAME}-OST0001*.active"
4306         else
4307                 local PARAM="${FSNAME}-OST0001.osc.active"
4308         fi
4309
4310         $LFS setstripe -c -1 $DIR/$tfile || error "$LFS setstripe failed"
4311         do_facet mgs $PERM_CMD $PARAM=0 || error "Unable to deactivate OST"
4312
4313         umount_client $MOUNT || error "Unable to unmount client"
4314         mount_client $MOUNT || error "Unable to mount client"
4315         # This df should not cause a panic
4316         df -k $MOUNT
4317
4318         do_facet mgs $PERM_CMD $PARAM=1 || error "Unable to activate OST"
4319         rm -f $DIR/$tfile || error "unable to remove file $DIR/$tfile"
4320         umount_client $MOUNT || error "Unable to unmount client"
4321         stop_ost2 || error "Unable to stop OST2"
4322         stop_ost || error "Unable to stop OST1"
4323         stop_mds || error "Unable to stop MDS"
4324         #writeconf to remove all ost2 traces for subsequent tests
4325         writeconf_or_reformat
4326 }
4327 run_test 50g "deactivated OST should not cause panic"
4328
4329 # LU-642
4330 test_50h() {
4331         # prepare MDT/OST, make OSC inactive for OST1
4332         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >=2 OSTs"
4333
4334         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
4335         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
4336                 error "tunefs OST1 failed"
4337         start_mds  || error "Unable to start MDT"
4338         start_ost  || error "Unable to start OST1"
4339         start_ost2 || error "Unable to start OST2"
4340         mount_client $MOUNT || error "client start failed"
4341
4342         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4343
4344         # activatate OSC for OST1
4345         set_persistent_param_and_check client            \
4346                 "osc.${FSNAME}-OST0000-osc-[!M]*.active" \
4347                 "${FSNAME}-OST0000.osc.active" 1
4348
4349         mkdir $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
4350         $LFS setstripe -c -1 -i 0 $DIR/$tdir/2 ||
4351                 error "$LFS setstripe $DIR/$tdir/2 failed"
4352         sleep 1 && echo "create a file after OST1 is activated"
4353         # doing some io, shouldn't crash
4354         dd if=/dev/zero of=$DIR/$tdir/2/$tfile-io bs=1M count=10
4355
4356         # check OSC import is working
4357         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
4358                 error "some OSC imports are still not connected"
4359
4360         # cleanup
4361         rm -rf $DIR/$tdir
4362         umount_client $MOUNT || error "Unable to umount client"
4363         stop_ost2 || error "Unable to stop OST2"
4364         cleanup_nocli || error "cleanup_nocli failed with $?"
4365 }
4366 run_test 50h "LU-642: activate deactivated OST"
4367
4368 test_50i() {
4369         # prepare MDT/OST, make OSC inactive for OST1
4370         [ "$MDSCOUNT" -lt "2" ] && skip "needs >= 2 MDTs"
4371
4372         load_modules
4373         [ $(facet_fstype mds2) == zfs ] && import_zpool mds2
4374         do_facet mds2 "$TUNEFS --param mdc.active=0 $(mdsdevname 2)" ||
4375                 error "tunefs MDT2 failed"
4376         start_mds  || error "Unable to start MDT"
4377         start_ost  || error "Unable to start OST1"
4378         start_ost2 || error "Unable to start OST2"
4379         mount_client $MOUNT || error "client start failed"
4380
4381         mkdir_on_mdt0 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4382
4383         if [[ $PERM_CMD == *"set_param -P"* ]]; then
4384                 $PERM_CMD mdc.${FSNAME}-MDT0001-mdc-*.active=0 &&
4385                         error "deactive MDC0 succeeds"
4386         else
4387                 $PERM_CMD ${FSNAME}-MDT0000.mdc.active=0 &&
4388                         error "deactive MDC0 succeeds"
4389         fi
4390
4391         # activate MDC for MDT2
4392         set_persistent_param_and_check client            \
4393                 "mdc.${FSNAME}-MDT0001-mdc-*.active" \
4394                 "${FSNAME}-MDT0001.mdc.active" 1
4395
4396         wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds2 FULL
4397         if [ "$MDS1_VERSION" -ge $(version_code 2.7.60) ]
4398         then
4399                 wait_dne_interconnect
4400         fi
4401         $LFS mkdir -i1 $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
4402         # create some file
4403         createmany -o $DIR/$tdir/2/$tfile-%d 1 || error "create files failed"
4404
4405         rm -rf $DIR/$tdir/2 || error "unlink dir failed"
4406
4407         # deactivate MDC for MDT2
4408         set_persistent_param_and_check client           \
4409                 "mdc.${FSNAME}-MDT0001-mdc-*.active"    \
4410                 "${FSNAME}-MDT0001.mdc.active" 0
4411
4412         wait_osp_active mds ${FSNAME}-MDT0001 1 0
4413
4414         $LFS mkdir -i1 $DIR/$tdir/2 &&
4415                 error "mkdir $DIR/$tdir/2 succeeds after deactive MDT"
4416
4417         $LFS mkdir -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
4418                 error "mkdir $DIR/$tdir/striped_dir fails after deactive MDT2"
4419
4420         local stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
4421         [ $stripe_count -eq $((MDSCOUNT - 1)) ] ||
4422                 error "wrong $stripe_count != $((MDSCOUNT -1)) for striped_dir"
4423
4424         # cleanup
4425         umount_client $MOUNT || error "Unable to umount client"
4426         stop_mds
4427         stop_ost
4428         stop_ost 2
4429 }
4430 run_test 50i "activate deactivated MDT"
4431
4432 test_51() {
4433         local LOCAL_TIMEOUT=20
4434
4435         reformat
4436         setup_noconfig
4437         check_mount || error "check_mount failed"
4438
4439         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
4440         $LFS setstripe -c -1 $MOUNT/$tdir ||
4441                 error "$LFS setstripe -c -1 $MOUNT/$tdir failed"
4442         #define OBD_FAIL_MDS_REINT_DELAY         0x142
4443         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
4444         touch $MOUNT/$tdir/$tfile &
4445         local pid=$!
4446         sleep 2
4447         start_ost2 || error "Unable to start OST1"
4448         wait $pid
4449         stop_ost2 || error "Unable to stop OST1"
4450         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4451         cleanup_nocli || error “stop server failed”
4452         #writeconf to remove all ost2 traces for subsequent tests
4453         writeconf_or_reformat
4454 }
4455 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
4456
4457 copy_files_xattrs()
4458 {
4459         local node=$1
4460         local dest=$2
4461         local xattrs=$3
4462         shift 3
4463
4464         do_node $node mkdir -p $dest
4465         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
4466
4467         do_node $node  'tar cf - '$*' | tar xf - -C '$dest';
4468                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
4469         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
4470
4471         do_node $node 'getfattr -d -m "[a-z]*\\." '$*' > '$xattrs
4472         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
4473 }
4474
4475 diff_files_xattrs()
4476 {
4477         local node=$1
4478         local backup=$2
4479         local xattrs=$3
4480         shift 3
4481
4482         local backup2=${TMP}/backup2
4483
4484         do_node $node mkdir -p $backup2
4485         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
4486
4487         do_node $node  'tar cf - '$*' | tar xf - -C '$backup2';
4488                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
4489         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
4490
4491         do_node $node "diff -rq $backup $backup2"
4492         [ $? -eq 0 ] || { error "contents differ"; return 3; }
4493
4494         local xattrs2=${TMP}/xattrs2
4495         do_node $node 'getfattr -d -m "[a-z]*\\." '$*' > '$xattrs2
4496         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
4497
4498         do_node $node "diff $xattrs $xattrs2"
4499         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
4500
4501         do_node $node "rm -rf $backup2 $xattrs2"
4502         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
4503 }
4504
4505 test_52() {
4506         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4507                 skip "ldiskfs only test"
4508         fi
4509
4510         start_mds || error "Unable to start MDS"
4511         start_ost || error "Unable to start OST1"
4512         mount_client $MOUNT || error "Unable to mount client"
4513
4514         local nrfiles=8
4515         local ost1mnt=$(facet_mntpt ost1)
4516         local ost1node=$(facet_active_host ost1)
4517         local ost1tmp=$TMP/conf52
4518         local loop
4519
4520         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
4521         touch $TMP/modified_first || error "Unable to create temporary file"
4522         local mtime=$(stat -c %Y $TMP/modified_first)
4523         do_node $ost1node "mkdir -p $ost1tmp &&
4524                            touch -m -d @$mtime $ost1tmp/modified_first" ||
4525                 error "Unable to create temporary file"
4526         sleep 1
4527
4528         $LFS setstripe -c -1 -S 1M $DIR/$tdir || error "$LFS setstripe failed"
4529
4530         for (( i=0; i < nrfiles; i++ )); do
4531                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
4532                         error "multiop failed"
4533                 echo -n .
4534         done
4535         echo
4536
4537         # sync all the data and make sure no pending data on the client,
4538         # thus the SOM xattr would not be changed any more.
4539         cancel_lru_locks osc
4540
4541         # backup files
4542         echo backup files to $TMP/$tdir
4543         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
4544         copy_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
4545                 error "Unable to copy files"
4546
4547         umount_client $MOUNT || error "Unable to umount client"
4548         stop_ost || error "Unable to stop ost1"
4549
4550         echo mount ost1 as ldiskfs
4551         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
4552         if ! do_node $ost1node test -b $ost1_dev; then
4553                 loop="-o loop"
4554         fi
4555         do_node $ost1node mount -t "$ost1_FSTYPE" $loop $ost1_dev \
4556                 $ost1mnt ||
4557                 error "Unable to mount ost1 as ldiskfs"
4558
4559         # backup objects
4560         echo backup objects to $ost1tmp/objects
4561         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
4562                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
4563         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
4564                         $objects ||
4565                 error "Unable to copy objects"
4566
4567         # move objects to lost+found
4568         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
4569         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
4570
4571         do_node $ost1node "umount $ost1mnt" ||
4572                 error "Unable to umount ost1 as ldiskfs"
4573
4574         start_ost || error "Unable to start OST1"
4575         mount_client $MOUNT || error "Unable to mount client"
4576
4577         local REPAIRED=$(do_node $ost1node "$LCTL get_param \
4578                          -n osd-ldiskfs.$FSNAME-OST0000.oi_scrub" |
4579                          awk '/^lf_repa[ri]*ed/ { print $2 }')
4580         [ $REPAIRED -gt 0 ] ||
4581                 error "Some entry under /lost+found should be repaired"
4582
4583         # compare files
4584         diff_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
4585                 error "Unable to diff files"
4586
4587         rm -rf $TMP/$tdir $TMP/file_xattrs ||
4588                 error "Unable to delete temporary files"
4589         do_node $ost1node "rm -rf $ost1tmp" ||
4590                 error "Unable to delete temporary files"
4591         cleanup || error "cleanup failed with $?"
4592 }
4593 run_test 52 "check recovering objects from lost+found"
4594
4595 # Checks threads_min/max/started for some service
4596 #
4597 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
4598 # parameter pattern prefix like 'ost.*.ost'.
4599 thread_sanity() {
4600         local modname=$1
4601         local facet=$2
4602         local parampat=$3
4603         local opts=$4
4604         local basethr=$5
4605         local tmin
4606         local tmin2
4607         local tmax
4608         local tmax2
4609         local tstarted
4610         local paramp
4611         local msg="Insane $modname thread counts"
4612         local ncpts=$(check_cpt_number $facet)
4613         local nthrs
4614         shift 4
4615
4616         check_mount || return 41
4617
4618         # We need to expand $parampat, but it may match multiple parameters, so
4619         # we'll pick the first one
4620         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
4621                 error "Couldn't expand ${parampat}.threads_min parameter name"
4622                 return 22
4623         fi
4624
4625         # Remove the .threads_min part
4626         paramp=${paramp%.threads_min}
4627
4628         # Check for sanity in defaults
4629         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4630                echo 0)
4631         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4632                echo 0)
4633         tstarted=$(do_facet $facet "$LCTL get_param \
4634                                     -n ${paramp}.threads_started" || echo 0)
4635         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
4636                 return $?
4637         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4638                 return $?
4639         nthrs=$(expr $tmax - $tmin)
4640         if [ $nthrs -lt $ncpts ]; then
4641                 nthrs=0
4642         else
4643                 nthrs=$ncpts
4644         fi
4645
4646         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
4647                 skip_env "module parameter forced $facet thread count"
4648
4649         # Check that we can change min/max
4650         do_facet $facet "$LCTL set_param \
4651                          ${paramp}.threads_min=$((tmin + nthrs))"
4652         do_facet $facet "$LCTL set_param \
4653                          ${paramp}.threads_max=$((tmax - nthrs))"
4654         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4655                 echo 0)
4656         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4657                 echo 0)
4658         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
4659                             $tmax2 == ($tmax - $nthrs)))' || return $?
4660
4661         # Check that we can set min/max to the same value
4662         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4663                echo 0)
4664         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
4665         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4666                 echo 0)
4667         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4668                 echo 0)
4669         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
4670
4671         # Check that we can't set max < min
4672         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
4673         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4674                 echo 0)
4675         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4676                 echo 0)
4677         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
4678
4679         # We need to ensure that we get the module options desired; to do this
4680         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
4681         LOAD_MODULES_REMOTE=true
4682         cleanup
4683         local oldvalue
4684         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
4685
4686         setmodopts -a $modname "$newvalue" oldvalue
4687
4688         setup
4689         check_mount || return 41
4690
4691         # Restore previous setting of MODOPTS_*
4692         setmodopts $modname "$oldvalue"
4693
4694         # Check that $opts took
4695         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4696                 echo 0)
4697         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4698                 echo 0)
4699         tstarted=$(do_facet $facet \
4700                    "$LCTL get_param -n ${paramp}.threads_started" || echo 0)
4701         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4702                 return $?
4703         cleanup
4704
4705         setup
4706 }
4707
4708 test_53a() {
4709         setup
4710         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
4711         cleanup || error "cleanup failed with rc $?"
4712 }
4713 run_test 53a "check OSS thread count params"
4714
4715 test_53b() {
4716         setup
4717         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
4718                                          -N mds.*.*.threads_max 2>/dev/null")
4719         if [ -z "$mds" ]; then
4720                 #running this on an old MDT
4721                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
4722         else
4723                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
4724         fi
4725         cleanup || error "cleanup failed with $?"
4726 }
4727 run_test 53b "check MDS thread count params"
4728
4729 test_54a() {
4730         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4731                 skip "ldiskfs only test"
4732         fi
4733
4734         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
4735                 error "llverdev failed with rc=$?"
4736         reformat_and_config
4737 }
4738 run_test 54a "test llverdev and partial verify of device"
4739
4740 test_54b() {
4741         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4742                 skip "ldiskfs only test"
4743         fi
4744
4745         setup
4746         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
4747         cleanup || error "cleanup failed with rc=$?"
4748 }
4749 run_test 54b "test llverfs and partial verify of filesystem"
4750
4751 lov_objid_size()
4752 {
4753         local max_ost_index=$1
4754
4755         echo -n $(((max_ost_index + 1) * 8))
4756 }
4757
4758 test_55() {
4759         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4760                 skip "ldiskfs only test"
4761         fi
4762
4763         local mdsdev=$(mdsdevname 1)
4764         local mdsvdev=$(mdsvdevname 1)
4765
4766         for i in 1023 2048
4767         do
4768                 if ! combined_mgs_mds; then
4769                         stop_mgs || error "stopping MGS service failed"
4770                         format_mgs || error "formatting MGT failed"
4771                 fi
4772                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
4773                         $mdsvdev || exit 10
4774                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
4775                         --reformat $(ostdevname 1) $(ostvdevname 1)
4776                 setup_noconfig
4777                 stopall
4778                 setup_noconfig
4779                 sync
4780
4781                 echo checking size of lov_objid for ost index $i
4782                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" |
4783                                  grep ^User | awk -F 'Size: ' '{print $2}')
4784                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
4785                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
4786                 else
4787                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
4788                 fi
4789                 stopall
4790         done
4791
4792         reformat_and_config
4793 }
4794 run_test 55 "check lov_objid size"
4795
4796 test_56a() {
4797         local mds_journal_size_orig=$MDSJOURNALSIZE
4798         local n
4799
4800         MDSJOURNALSIZE=16
4801
4802         formatall
4803         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
4804                 $(ostdevname 1) $(ostvdevname 1)
4805         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
4806                 $(ostdevname 2) $(ostvdevname 2)
4807
4808         start_mgsmds
4809         start_ost || error "Unable to start first ost (idx 10000)"
4810         start_ost2 || error "Unable to start second ost (idx 1000)"
4811         mount_client $MOUNT || error "Unable to mount client"
4812         echo ok
4813         $LFS osts
4814
4815         # test instantiating PFL components with sparse index LU-15513
4816         mkdir -p $MOUNT/$tdir
4817         $LFS setstripe -E 4M -c 1 -E 1G -c 4 -S4M -E eof -c -1 $MOUNT/$tdir
4818         dd if=/dev/zero of=$MOUNT/$tdir/$tfile bs=4K count=1 seek=10k ||
4819                 error "dd to second component failed"
4820
4821         if [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
4822            [[ "$MDS1_VERSION" -ge $(version_code 2.5.4) &&
4823               "$MDS1_VERSION" -lt $(version_code 2.5.11) ]]; then
4824                 wait_osc_import_state mds ost1 FULL
4825                 wait_osc_import_state mds ost2 FULL
4826                 $LFS setstripe --stripe-count=-1 $DIR/$tfile ||
4827                         error "Unable to setstripe $DIR/$tfile"
4828                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
4829                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
4830                 rm $DIR/$tfile
4831         fi
4832
4833         stopall
4834         MDSJOURNALSIZE=$mds_journal_size_orig
4835         reformat_and_config
4836 }
4837 run_test 56a "check big OST indexes and out-of-index-order start"
4838
4839 cleanup_56b() {
4840         trap 0
4841
4842         umount_client $MOUNT -f || error "unmount client failed"
4843         stop mds1
4844         stop mds2
4845         stop mds3
4846         stopall
4847         reformat_and_config
4848 }
4849
4850 test_56b() {
4851         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs"
4852
4853         trap cleanup_56b EXIT RETURN ERR
4854         stopall
4855
4856         if ! combined_mgs_mds ; then
4857                 format_mgs
4858                 start_mgs
4859         fi
4860
4861         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) --index=0 --reformat \
4862                 $(mdsdevname 1) $(mdsvdevname 1)
4863         add mds2 $(mkfs_opts mds2 $(mdsdevname 2)) --index=1 --reformat \
4864                 $(mdsdevname 2) $(mdsvdevname 2)
4865         add mds3 $(mkfs_opts mds3 $(mdsdevname 3)) --index=1000 --reformat \
4866                 $(mdsdevname 3) $(mdsvdevname 3)
4867         format_ost 1
4868         format_ost 2
4869
4870         start_mdt 1 || error "MDT 1 (idx 0) start failed"
4871         start_mdt 2 || error "MDT 2 (idx 1) start failed"
4872         start_mdt 3 || error "MDT 3 (idx 1000) start failed"
4873         start_ost || error "Unable to start first ost"
4874         start_ost2 || error "Unable to start second ost"
4875
4876         do_nodes $(comma_list $(mdts_nodes)) \
4877                 "$LCTL set_param mdt.*.enable_remote_dir=1 \
4878                 mdt.*.enable_remote_dir_gid=-1"
4879
4880         mount_client $MOUNT || error "Unable to mount client"
4881
4882         $LFS mkdir -c3 $MOUNT/$tdir || error "failed to make testdir"
4883
4884         echo "This is test file 1!" > $MOUNT/$tdir/$tfile.1 ||
4885                 error "failed to make test file 1"
4886         echo "This is test file 2!" > $MOUNT/$tdir/$tfile.2 ||
4887                 error "failed to make test file 2"
4888         echo "This is test file 1000!" > $MOUNT/$tdir/$tfile.1000 ||
4889                 error "failed to make test file 1000"
4890
4891         rm -rf $MOUNT/$tdir || error "failed to remove testdir"
4892
4893         $LFS mkdir -i1000 $MOUNT/$tdir.1000 ||
4894                 error "create remote dir at idx 1000 failed"
4895
4896         output=$($LFS df)
4897         echo "=== START lfs df OUTPUT ==="
4898         echo -e "$output"
4899         echo "==== END lfs df OUTPUT ===="
4900
4901         mdtcnt=$(echo -e "$output" | grep $FSNAME-MDT | wc -l)
4902         ostcnt=$(echo -e "$output" | grep $FSNAME-OST | wc -l)
4903
4904         echo "lfs df returned mdt count $mdtcnt and ost count $ostcnt"
4905         [ $mdtcnt -eq 3 ] || error "lfs df returned wrong mdt count"
4906         [ $ostcnt -eq 2 ] || error "lfs df returned wrong ost count"
4907
4908         echo "This is test file 1!" > $MOUNT/$tdir.1000/$tfile.1 ||
4909                 error "failed to make test file 1"
4910         echo "This is test file 2!" > $MOUNT/$tdir.1000/$tfile.2 ||
4911                 error "failed to make test file 2"
4912         echo "This is test file 1000!" > $MOUNT/$tdir.1000/$tfile.1000 ||
4913                 error "failed to make test file 1000"
4914         rm -rf $MOUNT/$tdir.1000 || error "failed to remove remote_dir"
4915
4916         output=$($LFS mdts)
4917         echo "=== START lfs mdts OUTPUT ==="
4918         echo -e "$output"
4919         echo "==== END lfs mdts OUTPUT ===="
4920
4921         echo -e "$output" | grep -v "MDTS:" | awk '{print $1}' |
4922                 sed 's/://g' > $TMP/mdts-actual.txt
4923         sort $TMP/mdts-actual.txt -o $TMP/mdts-actual.txt
4924
4925         echo -e "0\n1\n1000" > $TMP/mdts-expected.txt
4926
4927         diff $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4928         result=$?
4929
4930         rm $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4931
4932         [ $result -eq 0 ] || error "target_obd proc file is incorrect!"
4933 }
4934 run_test 56b "test target_obd correctness with nonconsecutive MDTs"
4935
4936 test_57a() { # bug 22656
4937         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4938         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4939                     tail -1 | awk '{print $1}')
4940         writeconf_or_reformat
4941         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
4942         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
4943                 error "tunefs failed"
4944         start_mgsmds
4945         start_ost && error "OST registration from failnode should fail"
4946         cleanup
4947 }
4948 run_test 57a "initial registration from failnode should fail (should return errs)"
4949
4950 test_57b() {
4951         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4952         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4953                     tail -1 | awk '{print $1}')
4954         writeconf_or_reformat
4955         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
4956         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
4957                 error "tunefs failed"
4958         start_mgsmds
4959         start_ost || error "OST registration from servicenode should not fail"
4960         cleanup
4961 }
4962 run_test 57b "initial registration from servicenode should not fail"
4963
4964 count_osts() {
4965         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
4966 }
4967
4968 test_58() { # bug 22658
4969         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4970         setup_noconfig
4971         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4972         createmany -o $DIR/$tdir/$tfile-%d 100
4973         unlinkmany $DIR/$tdir/$tfile-%d 100
4974         stop_mds || error "Unable to stop MDS"
4975
4976         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4977         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4978
4979         # remove all files from the OBJECTS dir
4980         mount_fstype $SINGLEMDS
4981
4982         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4983
4984         unmount_fstype $SINGLEMDS
4985         # restart MDS with missing llog files
4986         start_mds || error "unable to start MDS"
4987         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
4988         cleanup
4989 }
4990 run_test 58 "missing llog files must not prevent MDT from mounting"
4991
4992 test_59() {
4993         start_mgsmds >> /dev/null
4994         local C1=$(count_osts)
4995         if [ $C1 -eq 0 ]; then
4996                 start_ost >> /dev/null
4997                 C1=$(count_osts)
4998         fi
4999         stopall
5000         echo "original ost count: $C1 (expect > 0)"
5001         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
5002         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
5003         local C2=$(count_osts)
5004         echo "after mdt writeconf count: $C2 (expect 0)"
5005         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
5006         echo "OST start without writeconf should fail:"
5007         start_ost >> /dev/null &&
5008                 error "OST start without writeconf didn't fail"
5009         echo "OST start with writeconf should succeed:"
5010         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
5011         local C3=$(count_osts)
5012         echo "after ost writeconf count: $C3 (expect 1)"
5013         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
5014         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
5015         local C4=$(count_osts)
5016         echo "after ost2 writeconf count: $C4 (expect 2)"
5017         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
5018         stop_ost2 >> /dev/null
5019         cleanup_nocli >> /dev/null
5020         #writeconf to remove all ost2 traces for subsequent tests
5021         writeconf_or_reformat
5022 }
5023 run_test 59 "writeconf mount option"
5024
5025 test_60a() { # LU-471
5026         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5027                 skip "ldiskfs only test"
5028         fi
5029
5030         local num
5031
5032         for num in $(seq $MDSCOUNT); do
5033                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
5034                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
5035                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
5036                         exit 10
5037         done
5038
5039         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
5040         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
5041
5042         # MDT default has dirdata feature
5043         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
5044         # we disable uninit_bg feature
5045         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
5046         # we set stride extended options
5047         echo $dump | grep stride > /dev/null || error "stride is not set"
5048         stop_mds
5049         reformat_and_config
5050 }
5051 run_test 60a "check mkfs.lustre --mkfsoptions -E -O options setting"
5052
5053 test_60b() {
5054         [[ "$mds1_FSTYPE" == ldiskfs ]] || skip "ldiskfs only test"
5055
5056         local features=$(do_facet $SINGLEMDS $DUMPE2FS $(mdsdevname 1) |
5057                          grep features)
5058         [ ${PIPESTATUS[0]} -eq 0 ] || error "$DUMPE2FS $(mdsdevname 1) failed"
5059
5060         echo $features
5061         # ea_inode feature should be enabled by default for MDTs
5062         [[ "$features" =~ "ea_inode" ]] || error "ea_inode is not set"
5063         # large_dir feature should be enabled by default for MDTs
5064         [[ "$features" =~ "large_dir" ]] || error "large_dir is not set"
5065 }
5066 run_test 60b "check mkfs.lustre MDT default features"
5067
5068 test_61a() { # LU-80
5069         local lxattr=$(large_xattr_enabled)
5070
5071         [ "$MDS1_VERSION" -ge $(version_code 2.1.53) ] ||
5072                 skip "Need MDS version at least 2.1.53"
5073
5074         if [ "$mds1_FSTYPE" == ldiskfs ] &&
5075              ! large_xattr_enabled; then
5076                 lxattr=true
5077
5078                 for num in $(seq $MDSCOUNT); do
5079                         do_facet mds${num} $TUNE2FS -O ea_inode \
5080                                 $(mdsdevname $num) ||
5081                                 error "tune2fs on mds $num failed"
5082                 done
5083         fi
5084
5085         setup || error "setting up the filesystem failed"
5086         client_up || error "starting client failed"
5087
5088         local file=$DIR/$tfile
5089         touch $file || error "touch $file failed"
5090
5091         local large_value="$(generate_string $(max_xattr_size))"
5092         local small_value="bar"
5093
5094         local name="trusted.big"
5095         log "save large xattr of $(max_xattr_size) bytes on $name on $file"
5096         setfattr -n $name -v $large_value $file ||
5097                 error "saving $name on $file failed"
5098
5099         local new_value=$(get_xattr_value $name $file)
5100         [[ "$new_value" != "$large_value" ]] &&
5101                 error "$name different after saving"
5102
5103         log "shrink value of $name on $file"
5104         setfattr -n $name -v $small_value $file ||
5105                 error "shrinking value of $name on $file failed"
5106
5107         new_value=$(get_xattr_value $name $file)
5108         [[ "$new_value" != "$small_value" ]] &&
5109                 error "$name different after shrinking"
5110
5111         log "grow value of $name on $file"
5112         setfattr -n $name -v $large_value $file ||
5113                 error "growing value of $name on $file failed"
5114
5115         new_value=$(get_xattr_value $name $file)
5116         [[ "$new_value" != "$large_value" ]] &&
5117                 error "$name different after growing"
5118
5119         log "check value of $name on $file after remounting MDS"
5120         fail $SINGLEMDS
5121         new_value=$(get_xattr_value $name $file)
5122         [[ "$new_value" != "$large_value" ]] &&
5123                 error "$name different after remounting MDS"
5124
5125         log "remove large xattr $name from $file"
5126         setfattr -x $name $file || error "removing $name from $file failed"
5127
5128         if $lxattr && [ "$mds1_FSTYPE" == ldiskfs ]; then
5129                 stopall || error "stopping for e2fsck run"
5130                 for num in $(seq $MDSCOUNT); do
5131                         run_e2fsck $(facet_active_host mds$num) \
5132                                 $(mdsdevname $num) "-y" ||
5133                                 error "e2fsck MDT$num failed"
5134                 done
5135                 setup_noconfig || error "remounting the filesystem failed"
5136         fi
5137
5138         # need to delete this file to avoid problems in other tests
5139         rm -f $file
5140         cleanup || error "stopping systems failed"
5141 }
5142 run_test 61a "large xattr"
5143
5144 test_61b() { # LU-80
5145         local lxattr=$(large_xattr_enabled)
5146
5147         [ "$MDS1_VERSION" -ge $(version_code 2.1.53) ] ||
5148                 skip "Need MDS version at least 2.1.53"
5149
5150         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5151                 skip "ldiskfs specific bug"
5152         fi
5153
5154         if ! large_xattr_enabled; then
5155                 lxattr=true
5156
5157                 for num in $(seq $MDSCOUNT); do
5158                         do_facet mds${num} $TUNE2FS -O ea_inode \
5159                                 $(mdsdevname $num) ||
5160                                 error "tune2fs on mds $num failed"
5161                 done
5162         fi
5163
5164         setup || error "setting up the filesystem failed"
5165         client_up || error "starting client failed"
5166
5167         local _file=$MOUNT/panda
5168         local large_value="$(generate_string $(max_xattr_size))"
5169         local name="trusted.big"
5170
5171         touch ${_file} || error "touch ${_file} failed"
5172         setfattr -n $name -v $large_value ${_file} ||
5173                 error "saving $name on $file failed"
5174
5175         MDT_DEV="${FSNAME}-MDT0000"
5176         MDT_DEVNAME=$(mdsdevname ${SINGLEMDS//mds/})
5177
5178         stopall || error "stopping for e2fsck run"
5179
5180
5181         ino=$(do_facet $SINGLEMDS "$DEBUGFS -R 'stat /ROOT/panda' \
5182                 ${MDT_DEVNAME} | grep trusted.big")
5183         ino=$(echo "${ino}" | awk '{print $2;}')
5184         echo "large ea "${ino}
5185
5186         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"ln $ino /lost+found\\\" \
5187                  ${MDT_DEVNAME}"
5188
5189         setup_noconfig || error "remounting the filesystem failed"
5190
5191         do_facet $SINGLEMDS $LCTL lfsck_start -M ${MDT_DEV} -t namespace || {
5192                 error "can't start lfsck namespace"
5193         }
5194
5195         sleep 5
5196         wait_update_facet $SINGLEMDS "$LCTL get_param -n \
5197                 mdd.${MDT_DEV}.lfsck_namespace |
5198                 awk '/^status/ { print \\\$2 }'" "completed" 32 || {
5199                 error "(2) unexpected status"
5200         }
5201
5202         stopall || error "stopping for e2fsck run"
5203         for num in $(seq $MDSCOUNT); do
5204                 run_e2fsck $(facet_active_host mds$num) \
5205                         $(mdsdevname $num) "-y" ||
5206                         error "e2fsck MDT$num failed"
5207         done
5208         setup_noconfig || error "remounting the filesystem failed"
5209
5210         # need to delete this file to avoid problems in other tests
5211         rm -f $file
5212         cleanup || error "stopping systems failed"
5213 }
5214 run_test 61b "large xattr"
5215
5216 test_62() {
5217         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5218                 skip "ldiskfs only test"
5219         fi
5220         [[ "$MDS1_VERSION" -ge $(version_code 2.2.51) ]] ||
5221                 skip "Need MDS version at least 2.2.51"
5222
5223         # MRP-118
5224         local mdsdev=$(mdsdevname 1)
5225         local ostdev=$(ostdevname 1)
5226
5227         echo "disable journal for mds"
5228         do_facet mds1 $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
5229         start_mds && error "MDT start should fail"
5230         echo "disable journal for ost"
5231         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
5232         start_ost && error "OST start should fail"
5233         cleanup || error "cleanup failed with rc $?"
5234         reformat_and_config
5235 }
5236 run_test 62 "start with disabled journal"
5237
5238 test_63() {
5239         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5240                 skip "ldiskfs only test"
5241         fi
5242
5243         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ldiskfs
5244         local inode_slab=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
5245                            awk '/ldiskfs_inode_cache/ { print $5 / $6 }')
5246         if [ -z "$inode_slab" ]; then
5247                 skip "ldiskfs module has not been loaded"
5248         fi
5249
5250         if grep -q "CONFIG_DEBUG_LOCK_ALLOC=y" /boot/config-$(uname -r); then
5251                 skip "test is not compatible with CONFIG_DEBUG_LOCK_ALLOC=y"
5252         fi
5253
5254         echo "$inode_slab ldiskfs inodes per page"
5255         [ "${inode_slab%.*}" -ge "3" ] && return 0
5256
5257         # If kmalloc-128 is also 1 per page - this is a debug kernel
5258         # and so this is not an error.
5259         local kmalloc128=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
5260                            awk '/^(dma-kmalloc|size)-128 / { print $5 / $6 }')
5261         # 32 128-byte chunks in 4k
5262         [ "${kmalloc128%.*}" -lt "32" ] ||
5263                 error "ldiskfs inode too big, only $inode_slab objs/page, " \
5264                       "kmalloc128 = $kmalloc128 objs/page"
5265 }
5266 run_test 63 "Verify each page can at least hold 3 ldiskfs inodes"
5267
5268 test_64() {
5269         start_mds || error "unable to start MDS"
5270         start_ost || error "Unable to start OST1"
5271         start_ost2 || error "Unable to start second ost"
5272         mount_client $MOUNT || error "Unable to mount client"
5273         stop_ost2 || error "Unable to stop second ost"
5274         echo "$LFS df"
5275         $LFS df --lazy
5276         umount_client $MOUNT -f || error “unmount $MOUNT failed”
5277         cleanup_nocli || error "cleanup_nocli failed with $?"
5278         #writeconf to remove all ost2 traces for subsequent tests
5279         writeconf_or_reformat
5280 }
5281 run_test 64 "check lfs df --lazy "
5282
5283 test_65() { # LU-2237
5284         # Currently, the test is only valid for ldiskfs backend
5285         [ "$mds1_FSTYPE" != ldiskfs ] &&
5286                 skip "ldiskfs only test"
5287
5288         local devname=$(mdsdevname ${SINGLEMDS//mds/})
5289         local brpt=$(facet_mntpt brpt)
5290         local opts=""
5291
5292         if ! do_facet $SINGLEMDS "test -b $devname"; then
5293                 opts="-o loop"
5294         fi
5295
5296         stop_mds || error "Unable to stop MDS"
5297         local obj=$(do_facet $SINGLEMDS \
5298                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
5299                     grep Inode)
5300         if [ -z "$obj" ]; then
5301                 # The MDT may be just re-formatted, mount the MDT for the
5302                 # first time to guarantee the "last_rcvd" file is there.
5303                 start_mds || error "fail to mount the MDS for the first time"
5304                 stop_mds || error "Unable to stop MDS"
5305         fi
5306
5307         # remove the "last_rcvd" file
5308         do_facet $SINGLEMDS "mkdir -p $brpt"
5309         do_facet $SINGLEMDS \
5310                 "mount -t $mds1_FSTYPE $opts $devname $brpt"
5311         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
5312         do_facet $SINGLEMDS "$UMOUNT $brpt"
5313
5314         # restart MDS, the "last_rcvd" file should be recreated.
5315         start_mds || error "fail to restart the MDS"
5316         stop_mds || error "Unable to stop MDS"
5317         obj=$(do_facet $SINGLEMDS \
5318               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
5319         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
5320 }
5321 run_test 65 "re-create the lost last_rcvd file when server mount"
5322
5323 test_66() {
5324         [[ "$MGS_VERSION" -ge $(version_code 2.3.59) ]] ||
5325                 skip "Need MGS version at least 2.3.59"
5326
5327         setup
5328         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
5329         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
5330
5331         # add EXCLUDE records to config log, they are not to be
5332         # removed by lctl replace_nids
5333         set_conf_param_and_check mds                                    \
5334             "$LCTL get_param -n osc.$FSNAME-OST0000-osc-MDT0000.active" \
5335             "$FSNAME-OST0000.osc.active"                                \
5336             "0"
5337
5338         echo "replace_nids should fail if MDS, OSTs and clients are UP"
5339         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
5340                 error "replace_nids fail"
5341
5342         umount_client $MOUNT || error "unmounting client failed"
5343         echo "replace_nids should fail if MDS and OSTs are UP"
5344         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
5345                 error "replace_nids fail"
5346
5347         stop_ost || error "Unable to stop OST1"
5348         echo "replace_nids should fail if MDS is UP"
5349         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
5350                 error "replace_nids fail"
5351
5352         stop_mds || error "stopping mds failed"
5353
5354         if combined_mgs_mds; then
5355                 start_mdt 1 "-o nosvc" ||
5356                         error "starting mds with nosvc option failed"
5357         fi
5358
5359         echo "command should accept two parameters"
5360         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
5361                 error "command should accept two params"
5362
5363         echo "correct device name should be passed"
5364         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
5365                 error "wrong devname"
5366
5367         echo "wrong nids list should not destroy the system"
5368         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
5369                 error "wrong parse"
5370         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "asdfasdf, asdfadf" &&
5371                 error "wrong parse"
5372
5373         echo "replace OST nid"
5374         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
5375                 error "replace nids failed"
5376
5377         echo "command should accept two parameters"
5378         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
5379                 error "command should accept two params"
5380
5381         echo "wrong nids list should not destroy the system"
5382         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
5383                 error "wrong parse"
5384
5385         local FAKE_NIDS="192.168.0.112@tcp1,192.168.0.112@tcp2"
5386         local FAKE_FAILOVER="192.168.0.113@tcp1,192.168.0.113@tcp2"
5387         local NIDS_AND_FAILOVER="$MDS_NID,$FAKE_NIDS:$FAKE_FAILOVER"
5388         echo "set NIDs with failover"
5389         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $NIDS_AND_FAILOVER ||
5390                 error "replace nids failed"
5391
5392
5393         echo "replace MDS nid"
5394         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
5395                 error "replace nids failed"
5396
5397         if ! combined_mgs_mds ; then
5398                 stop_mgs
5399         else
5400                 stop_mds || error "Unable to stop MDS"
5401         fi
5402
5403         start_mgsmds || error "start mgsmds failed"
5404         set_conf_param_and_check mds                                    \
5405             "$LCTL get_param -n osc.$FSNAME-OST0000-osc-MDT0000.active" \
5406             "$FSNAME-OST0000.osc.active"                                \
5407             "1"
5408         start_ost || error "unable to start OST"
5409         mount_client $MOUNT || error "mount client failed"
5410
5411         check_mount || error "error after nid replace"
5412         cleanup || error "cleanup failed"
5413         reformat_and_config
5414 }
5415 run_test 66 "replace nids"
5416
5417 test_67() { #LU-2950
5418         local legacy="$TMP/legacy_lnet_config"
5419         local new="$TMP/new_routes_test"
5420         local out="$TMP/config_out_file"
5421         local verify="$TMP/conv_verify"
5422         local verify_conf="$TMP/conf_verify"
5423
5424         # Create the legacy file that will be run through the
5425         # lustre_routes_conversion script
5426         cat <<- LEGACY_LNET_CONFIG > $legacy
5427                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
5428                 tcp2 54 10.1.3.2@tcp;
5429                 tcp3 10.3.4.3@tcp:3;
5430                 tcp4 10.3.3.4@tcp;
5431         LEGACY_LNET_CONFIG
5432
5433         # Create the verification file to verify the output of
5434         # lustre_routes_conversion script against.
5435         cat <<- VERIFY_LNET_CONFIG > $verify
5436                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
5437                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
5438                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
5439                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
5440                 tcp4: { gateway: 10.3.3.4@tcp }
5441         VERIFY_LNET_CONFIG
5442
5443         # Create the verification file to verify the output of
5444         # lustre_routes_config script against
5445         cat <<- VERIFY_LNET_CONFIG > $verify_conf
5446                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
5447                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
5448                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
5449                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
5450                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
5451         VERIFY_LNET_CONFIG
5452
5453         $LUSTRE_ROUTES_CONVERSION $legacy $new > /dev/null
5454         if [ -f $new ]; then
5455                 # verify the conversion output
5456                 cmp -s $new $verify > /dev/null
5457                 if [ $? -eq 1 ]; then
5458                         error "routes conversion failed"
5459                 fi
5460
5461                 lustre_routes_config --dry-run --verbose $new > $out
5462                 # check that the script succeeded
5463                 cmp -s $out $verify_conf > /dev/null
5464                 if [ $? -eq 1 ]; then
5465                         error "routes config failed"
5466                 fi
5467         else
5468                 error "routes conversion test failed"
5469         fi
5470         # remove generated files
5471         rm -f $new $legacy $verify $verify_conf $out
5472 }
5473 run_test 67 "test routes conversion and configuration"
5474
5475 test_68() {
5476         local fid
5477         local seq
5478         local START
5479         local END
5480
5481         [ "$MDS1_VERSION" -ge $(version_code 2.4.53) ] ||
5482                 skip "Need MDS version at least 2.4.53"
5483
5484         umount_client $MOUNT || error "umount client failed"
5485
5486         start_mgsmds
5487         start_ost
5488
5489         # START-END - the sequences we'll be reserving
5490         START=$(do_facet $SINGLEMDS \
5491                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
5492         END=$((START + (1 << 30)))
5493         do_facet $SINGLEMDS \
5494                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
5495
5496         # reset the sequences MDT0000 has already assigned
5497         do_facet $SINGLEMDS \
5498                 $LCTL set_param seq.srv*MDT0000.space=clear
5499
5500         # remount to let the client allocate new sequence
5501         mount_client $MOUNT || error "mount client failed"
5502
5503         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
5504         do_facet $SINGLEMDS \
5505                 $LCTL get_param seq.srv*MDT0000.space
5506         $LFS path2fid $DIR/$tfile
5507
5508         local old_ifs="$IFS"
5509         IFS='[:]'
5510         fid=($($LFS path2fid $DIR/$tfile))
5511         IFS="$old_ifs"
5512         let seq=${fid[1]}
5513
5514         if [[ $seq < $END ]]; then
5515                 error "used reserved sequence $seq?"
5516         fi
5517         cleanup || error "cleanup failed with $?"
5518 }
5519 run_test 68 "be able to reserve specific sequences in FLDB"
5520
5521 # Test 69: is about the total number of objects ever created on an OST.
5522 # so that when it is reformatted the normal MDS->OST orphan recovery won't
5523 # just "precreate" the missing objects. In the past it might try to recreate
5524 # millions of objects after an OST was reformatted
5525 test_69() {
5526         [[ "$MDS1_VERSION" -lt $(version_code 2.4.2) ]] &&
5527                 skip "Need MDS version at least 2.4.2"
5528
5529         [[ "$MDS1_VERSION" -ge $(version_code 2.4.50) ]] &&
5530         [[ "$MDS1_VERSION" -lt $(version_code 2.5.0) ]] &&
5531                 skip "Need MDS version at least 2.5.0"
5532
5533         setup
5534         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5535
5536         # use OST0000 since it probably has the most creations
5537         local OSTNAME=$(ostname_from_index 0)
5538         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
5539         local last_id=$(do_facet mds1 $LCTL get_param -n \
5540                         osp.$mdtosc_proc1.prealloc_last_id)
5541
5542         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
5543         # verify that the LAST_ID recovery is working properly. If
5544         # not, then the OST will refuse to allow the MDS connect
5545         # because the LAST_ID value is too different from the MDS
5546         #define OST_MAX_PRECREATE=20000
5547         local ost_max_pre=20000
5548         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
5549
5550         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
5551         # need to create any files. So, skip this section.
5552         if [ $num_create -gt 0 ]; then
5553                 # Check the number of inodes available on OST0
5554                 local files=0
5555                 local ifree=$($LFS df -i $MOUNT |
5556                         awk '/OST0000/ { print $4 }'; exit ${PIPESTATUS[0]})
5557                 log "On OST0, $ifree inodes available. Want $num_create. rc=$?"
5558
5559                 $LFS setstripe -i 0 $DIR/$tdir ||
5560                         error "$LFS setstripe -i 0 $DIR/$tdir failed"
5561                 if [ $ifree -lt 10000 ]; then
5562                         files=$(( ifree - 50 ))
5563                 else
5564                         files=10000
5565                 fi
5566
5567                 local j=$((num_create / files + 1))
5568                 for i in $(seq 1 $j); do
5569                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
5570                                 error "createmany fail create $files files: $?"
5571                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
5572                                 error "unlinkmany failed unlink $files files"
5573                 done
5574         fi
5575
5576         # delete all of the files with objects on OST0 so the
5577         # filesystem is not inconsistent later on
5578         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
5579
5580         umount_client $MOUNT || error "umount client failed"
5581         stop_ost || error "OST0 stop failure"
5582         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
5583                 $(ostdevname 1) $(ostvdevname 1) ||
5584                 error "reformat and replace $ostdev failed"
5585         start_ost || error "OST0 restart failure"
5586         wait_osc_import_state mds ost FULL
5587
5588         sleep $((TIMEOUT/2)) #object recreation requires some time
5589         mount_client $MOUNT || error "mount client failed"
5590         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
5591         local idx=$($LFS getstripe -i $DIR/$tdir/$tfile-last)
5592         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
5593
5594         local iused=$($LFS df -i $MOUNT |
5595                 awk '/OST0000/ { print $3 }'; exit ${PIPESTATUS[0]})
5596         log "On OST0, $iused used inodes rc=$?"
5597         [ $iused -ge $((ost_max_pre + 1000)) ] &&
5598                 error "OST replacement created too many inodes; $iused"
5599         cleanup || error "cleanup failed with $?"
5600 }
5601 run_test 69 "replace an OST with the same index"
5602
5603 test_70a() {
5604         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5605         local MDTIDX=1
5606
5607         cleanup || error "cleanup failed with $?"
5608
5609         start_mdt 1 || error "MDT0 start fail"
5610
5611         start_ost || error "OST0 start fail"
5612         for num in $(seq 2 $MDSCOUNT); do
5613                 start_mdt $num || return
5614         done
5615
5616         mount_client $MOUNT || error "mount client fails"
5617
5618         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
5619
5620         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5621                 error "create remote dir fail"
5622
5623         rm -rf $DIR/$tdir || error "delete dir fail"
5624         cleanup || error "cleanup failed with $?"
5625 }
5626 run_test 70a "start MDT0, then OST, then MDT1"
5627
5628 test_70b() {
5629         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5630         local MDTIDX=1
5631
5632         start_ost || error "OST0 start fail"
5633
5634         start_mds || error "MDS start fail"
5635
5636         mount_client $MOUNT || error "mount client fails"
5637
5638         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
5639
5640         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5641                 error "create remote dir fail"
5642
5643         rm -rf $DIR/$tdir || error "delete dir fail"
5644
5645         cleanup || error "cleanup failed with $?"
5646 }
5647 run_test 70b "start OST, MDT1, MDT0"
5648
5649 test_70c() {
5650         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5651         local MDTIDX=1
5652
5653         start_mds || error "MDS start fail"
5654         start_ost || error "OST0 start fail"
5655
5656         mount_client $MOUNT || error "mount client fails"
5657         stop_mdt 1 || error "MDT1 start fail"
5658
5659         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
5660         echo "deactivate $mdc_for_mdt1"
5661         $LCTL --device $mdc_for_mdt1 deactivate ||
5662                 error "set $mdc_for_mdt1 deactivate failed"
5663
5664         mkdir $DIR/$tdir && error "mkdir succeed"
5665
5666         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
5667                 error "create remote dir succeed"
5668
5669         cleanup || error "cleanup failed with $?"
5670 }
5671 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
5672
5673 test_70d() {
5674         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5675         local MDTIDX=1
5676
5677         start_mds || error "MDS start fail"
5678         start_ost || error "OST0 start fail"
5679
5680         mount_client $MOUNT || error "mount client fails"
5681
5682         stop_mdt 2 || error "MDT1 start fail"
5683
5684         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
5685                              awk '{print $4}')
5686         echo "deactivate $mdc_for_mdt2"
5687         $LCTL --device $mdc_for_mdt2 deactivate ||
5688                 error "set $mdc_for_mdt2 deactivate failed"
5689
5690         mkdir $DIR/$tdir || error "mkdir fail"
5691         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
5692                 error "create remote dir succeed"
5693
5694         rm -rf $DIR/$tdir || error "delete dir fail"
5695
5696         cleanup || error "cleanup failed with $?"
5697 }
5698 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
5699
5700 test_70e() {
5701         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5702
5703         [ "$MDS1_VERSION" -ge $(version_code 2.7.62) ] ||
5704                 skip "Need MDS version at least 2.7.62"
5705
5706         reformat || error "reformat failed with $?"
5707
5708         load_modules
5709
5710         local mdsdev=$(mdsdevname 1)
5711         local ostdev=$(ostdevname 1)
5712         local mdsvdev=$(mdsvdevname 1)
5713         local ostvdev=$(ostvdevname 1)
5714         local opts_mds="$(mkfs_opts mds1 $mdsdev) --reformat $mdsdev $mdsvdev"
5715         local opts_ost="$(mkfs_opts ost1 $ostdev) --reformat $ostdev $ostvdev"
5716
5717         if ! combined_mgs_mds ; then
5718                 start_mgs
5719         fi
5720
5721         add mds1 $opts_mds || error "add mds1 failed"
5722         start_mdt 1 || error "start mdt1 failed"
5723         add ost1 $opts_ost || error "add ost1 failed"
5724         start_ost || error "start ost failed"
5725         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5726
5727         local soc=$(do_facet mds1 "$LCTL get_param -n \
5728                     mdt.*MDT0000.sync_lock_cancel")
5729         [ $soc == "never" ] || error "SoC enabled on single MDS"
5730
5731         for i in $(seq 2 $MDSCOUNT); do
5732                 mdsdev=$(mdsdevname $i)
5733                 mdsvdev=$(mdsvdevname $i)
5734                 opts_mds="$(mkfs_opts mds$i $mdsdev) --reformat $mdsdev \
5735                           $mdsvdev"
5736                 add mds$i $opts_mds || error "add mds$i failed"
5737                 start_mdt $i || error "start mdt$i fail"
5738         done
5739
5740         wait_dne_interconnect
5741
5742         for i in $(seq $MDSCOUNT); do
5743                 soc=$(do_facet mds$i "$LCTL get_param -n \
5744                         mdt.*MDT000$((i - 1)).sync_lock_cancel")
5745                 [ $soc == "blocking" ] || error "SoC not enabled on DNE"
5746         done
5747
5748         for i in $(seq 2 $MDSCOUNT); do
5749                 stop_mdt $i || error "stop mdt$i fail"
5750         done
5751         soc=$(do_facet mds1 "$LCTL get_param -n \
5752                 mdt.*MDT0000.sync_lock_cancel")
5753         [ $soc == "never" ] || error "SoC enabled on single MDS"
5754         umount_client $MOUNT -f > /dev/null
5755
5756         cleanup || error "cleanup failed with $?"
5757 }
5758 run_test 70e "Sync-on-Cancel will be enabled by default on DNE"
5759
5760 test_71a() {
5761         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5762         if combined_mgs_mds; then
5763                 skip "needs separate MGS/MDT"
5764         fi
5765         local MDTIDX=1
5766
5767         start_mdt 1 || error "MDT0 start fail"
5768         start_ost || error "OST0 start fail"
5769         for num in $(seq 2 $MDSCOUNT); do
5770                 start_mdt $num || return
5771         done
5772
5773         start_ost2 || error "OST1 start fail"
5774
5775         mount_client $MOUNT || error "mount client fails"
5776
5777         mkdir $DIR/$tdir || error "mkdir fail"
5778         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5779                 error "create remote dir succeed"
5780
5781         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5782         rm -rf $DIR/$tdir || error "delete dir fail"
5783
5784         umount_client $MOUNT || error "umount_client failed"
5785         stop_mds || error "MDS stop fail"
5786         stop_ost || error "OST0 stop fail"
5787         stop_ost2 || error "OST1 stop fail"
5788 }
5789 run_test 71a "start MDT0 OST0, MDT1, OST1"
5790
5791 test_71b() {
5792         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5793         if combined_mgs_mds; then
5794                 skip "needs separate MGS/MDT"
5795         fi
5796         local MDTIDX=1
5797
5798         for num in $(seq 2 $MDSCOUNT); do
5799                 start_mdt $num || return
5800         done
5801         start_ost || error "OST0 start fail"
5802         start_mdt 1 || error "MDT0 start fail"
5803         start_ost2 || error "OST1 start fail"
5804
5805         mount_client $MOUNT || error "mount client fails"
5806
5807         mkdir $DIR/$tdir || error "mkdir fail"
5808         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5809                 error "create remote dir succeed"
5810
5811         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5812         rm -rf $DIR/$tdir || error "delete dir fail"
5813
5814         umount_client $MOUNT || error "umount_client failed"
5815         stop_mds || error "MDT0 stop fail"
5816         stop_ost || error "OST0 stop fail"
5817         stop_ost2 || error "OST1 stop fail"
5818 }
5819 run_test 71b "start MDT1, OST0, MDT0, OST1"
5820
5821 test_71c() {
5822         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5823         combined_mgs_mds && skip "needs separate MGS/MDT"
5824
5825         local MDTIDX=1
5826
5827         start_ost || error "OST0 start fail"
5828         start_ost2 || error "OST1 start fail"
5829         for num in $(seq 2 $MDSCOUNT); do
5830                 start_mdt $num || return
5831         done
5832         start_mdt 1 || error "MDT0 start fail"
5833
5834         mount_client $MOUNT || error "mount client fails"
5835
5836         mkdir $DIR/$tdir || error "mkdir fail"
5837         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5838                 error "create remote dir succeed"
5839
5840         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5841         rm -rf $DIR/$tdir || error "delete dir fail"
5842
5843         umount_client $MOUNT || error "umount_client failed"
5844         stop_mds || error "MDS stop fail"
5845         stop_ost || error "OST0 stop fail"
5846         stop_ost2 || error "OST1 stop fail"
5847
5848 }
5849 run_test 71c "start OST0, OST1, MDT1, MDT0"
5850
5851 test_71d() {
5852         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5853         combined_mgs_mds && skip "needs separate MGS/MDT"
5854
5855         local MDTIDX=1
5856
5857         start_ost || error "OST0 start fail"
5858         for num in $(seq 2 $MDSCOUNT); do
5859                 start_mdt $num || return
5860         done
5861         start_mdt 1 || error "MDT0 start fail"
5862         start_ost2 || error "OST1 start fail"
5863
5864         mount_client $MOUNT || error "mount client fails"
5865
5866         mkdir $DIR/$tdir || error "mkdir fail"
5867         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5868                         error "create remote dir succeed"
5869
5870         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5871         rm -rf $DIR/$tdir || error "delete dir fail"
5872
5873         umount_client $MOUNT || error "umount_client failed"
5874         stop_mds || error "MDS stop fail"
5875         stop_ost || error "OST0 stop fail"
5876         stop_ost2 || error "OST1 stop fail"
5877
5878 }
5879 run_test 71d "start OST0, MDT1, MDT0, OST1"
5880
5881 test_71e() {
5882         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5883         combined_mgs_mds && skip "needs separate MGS/MDT"
5884
5885         local MDTIDX=1
5886
5887         start_ost || error "OST0 start fail"
5888         for num in $(seq 2 $MDSCOUNT); do
5889                 start_mdt $num || return
5890         done
5891         start_ost2 || error "OST1 start fail"
5892         start_mdt 1 || error "MDT0 start fail"
5893
5894         mount_client $MOUNT || error "mount client fails"
5895
5896         mkdir $DIR/$tdir || error "mkdir fail"
5897         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5898                 error "create remote dir succeed"
5899
5900         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5901         rm -rf $DIR/$tdir || error "delete dir fail"
5902
5903         umount_client $MOUNT || error "umount_client failed"
5904         stop_mds || error "MDS stop fail"
5905         stop_ost || error "OST0 stop fail"
5906         stop_ost2 || error "OST1 stop fail"
5907
5908 }
5909 run_test 71e "start OST0, MDT1, OST1, MDT0"
5910
5911 test_72() { #LU-2634
5912         [ "$mds1_FSTYPE" != ldiskfs ] &&
5913                 skip "ldiskfs only test"
5914
5915         local mdsdev=$(mdsdevname 1)
5916         local ostdev=$(ostdevname 1)
5917         local cmd="$E2FSCK -fnvd $mdsdev"
5918         local fn=3
5919         local add_options
5920
5921         cleanup
5922         load_modules
5923
5924         if combined_mgs_mds; then
5925                 add_options='--reformat'
5926         else
5927                 add_options='--reformat --replace'
5928         fi
5929
5930         #tune MDT with "-O extents"
5931
5932         for num in $(seq $MDSCOUNT); do
5933                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
5934                         $add_options $(mdsdevname $num) $(mdsvdevname $num) ||
5935                         error "add mds $num failed"
5936                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
5937                         error "$TUNE2FS failed on mds${num}"
5938         done
5939
5940         add ost1 $(mkfs_opts ost1 $ostdev) $add_options $ostdev ||
5941                 error "add $ostdev failed"
5942         start_mds || error "start mds failed"
5943         start_ost || error "start ost failed"
5944         mount_client $MOUNT || error "mount client failed"
5945
5946         #create some short symlinks
5947         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5948         createmany -o $DIR/$tdir/$tfile-%d $fn
5949         echo "create $fn short symlinks"
5950         for i in $(seq -w 1 $fn); do
5951                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
5952         done
5953         ls -al $MOUNT
5954
5955         #umount
5956         umount_client $MOUNT || error "umount client failed"
5957         stop_mds || error "stop mds failed"
5958         stop_ost || error "stop ost failed"
5959
5960         #run e2fsck
5961         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
5962 }
5963 run_test 72 "test fast symlink with extents flag enabled"
5964
5965 test_73() { #LU-3006
5966         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
5967         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
5968                 error "1st tunefs failed"
5969         start_mgsmds || error "start mds failed"
5970         start_ost || error "start ost failed"
5971         mount_client $MOUNT || error "mount client failed"
5972         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
5973                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
5974         umount_client $MOUNT || error "umount client failed"
5975         stop_ost
5976         stop_mds
5977 }
5978 run_test 73 "failnode to update from mountdata properly"
5979
5980 test_75() { # LU-2374
5981         [[ "$MDS1_VERSION" -lt $(version_code 2.4.1) ]] &&
5982                 skip "Need MDS version at least 2.4.1"
5983
5984         local index=0
5985         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
5986                 --replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
5987         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
5988                 --replace --reformat $(ostdevname 1) $(ostvdevname 1)"
5989
5990         #check with default parameters
5991         add mds1 $opts_mds || error "add mds1 failed for default params"
5992         add ost1 $opts_ost || error "add ost1 failed for default params"
5993
5994         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
5995         opts_mds=$(echo $opts_mds |
5996                    sed -e "s/--index=$index/--index=$index --mdt/")
5997         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
5998         opts_ost=$(echo $opts_ost |
5999                    sed -e "s/--index=$index/--index=$index --ost/")
6000
6001         add mds1 $opts_mds || error "add mds1 failed for new params"
6002         add ost1 $opts_ost || error "add ost1 failed for new params"
6003
6004         reformat_and_config
6005         return 0
6006 }
6007 run_test 75 "The order of --index should be irrelevant"
6008
6009 test_76a() {
6010         [[ "$MGS_VERSION" -ge $(version_code 2.4.52) ]] ||
6011                 skip "Need MDS version at least 2.4.52"
6012
6013         setup
6014         local MDMB_PARAM="osc.*.max_dirty_mb"
6015         echo "Change MGS params"
6016         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
6017                 head -1)
6018         echo "max_dirty_mb: $MAX_DIRTY_MB"
6019         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB - 10))
6020         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
6021         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
6022         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
6023                 head -1" $NEW_MAX_DIRTY_MB
6024         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
6025         echo "$MAX_DIRTY_MB"
6026         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
6027                 error "error while apply max_dirty_mb"
6028
6029         echo "Check the value is stored after remount"
6030         stopall
6031         setupall
6032         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
6033                 head -1" $NEW_MAX_DIRTY_MB
6034         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
6035         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
6036                 error "max_dirty_mb is not saved after remount"
6037
6038         echo "Change OST params"
6039         CLIENT_PARAM="obdfilter.*.client_cache_count"
6040         local CLIENT_CACHE_COUNT
6041         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6042                 head -1)
6043         echo "client_cache_count: $CLIENT_CACHE_COUNT"
6044         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
6045         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
6046         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
6047         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
6048                 head -1" $NEW_CLIENT_CACHE_COUNT
6049         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6050                 head -1)
6051         echo "$CLIENT_CACHE_COUNT"
6052         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
6053                 error "error while apply client_cache_count"
6054
6055         echo "Check the value is stored after remount"
6056         stopall
6057         setupall
6058         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
6059                 head -1" $NEW_CLIENT_CACHE_COUNT
6060         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6061                 head -1)
6062         echo "$CLIENT_CACHE_COUNT"
6063         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
6064                 error "client_cache_count is not saved after remount"
6065         stopall
6066 }
6067 run_test 76a "set permanent params with lctl across mounts"
6068
6069 test_76b() { # LU-4783
6070         [[ "$MGS_VERSION" -ge $(version_code 2.5.57) ]] ||
6071                 skip "Need MGS version at least 2.5.57"
6072         stopall
6073         setupall
6074         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
6075                 error "start params log failed"
6076         stopall
6077 }
6078 run_test 76b "verify params log setup correctly"
6079
6080 test_76c() {
6081         [[ "$MGS_VERSION" -ge $(version_code 2.8.54) ]] ||
6082                 skip "Need MDS version at least 2.4.52"
6083         setupall
6084         local MASK_PARAM="mdd.*.changelog_mask"
6085         echo "Change changelog_mask"
6086         do_facet mgs $LCTL set_param -P $MASK_PARAM=-CLOSE ||
6087                 error "Can't change changlog_mask"
6088         wait_update $(facet_host mds) "$LCTL get_param -n $MASK_PARAM |
6089                 grep 'CLOSE'" ""
6090
6091         echo "Check the value is stored after mds remount"
6092         stop_mds || error "Failed to stop MDS"
6093         start_mds || error "Failed to start MDS"
6094         local CHANGELOG_MASK=$(do_facet mgs $LCTL get_param -n $MASK_PARAM)
6095         echo $CHANGELOG_MASK | grep CLOSE > /dev/null &&
6096                 error "changelog_mask is not changed"
6097
6098         stopall
6099 }
6100 run_test 76c "verify changelog_mask is applied with lctl set_param -P"
6101
6102 test_76d() { #LU-9399
6103         setupall
6104
6105         local xattr_cache="llite.*.xattr_cache"
6106         local cmd="$LCTL get_param -n $xattr_cache | head -1"
6107         local new=$((($(eval $cmd) + 1) % 2))
6108
6109         echo "lctl set_param -P llite.*.xattr_cache=$new"
6110         do_facet mgs $LCTL set_param -P $xattr_cache=$new ||
6111                 error "Can't change xattr_cache"
6112         wait_update $HOSTNAME "$cmd" "$new"
6113
6114         echo "Check $xattr_cache on client $MOUNT"
6115         umount_client $MOUNT || error "umount $MOUNT failed"
6116         mount_client $MOUNT || error "mount $MOUNT failed"
6117         [ $(eval $cmd) -eq $new ] ||
6118                 error "$xattr_cache != $new on client $MOUNT"
6119
6120         echo "Check $xattr_cache on the new client $MOUNT2"
6121         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6122         [ $(eval $cmd) -eq $new ] ||
6123                 error "$xattr_cache != $new on client $MOUNT2"
6124         umount_client $MOUNT2 || error "umount $MOUNT2 failed"
6125
6126         stopall
6127 }
6128 run_test 76d "verify llite.*.xattr_cache can be set by 'lctl set_param -P' correctly"
6129
6130 test_77() { # LU-3445
6131         [[ "$MDS1_VERSION" -ge $(version_code 2.8.55) ]] ||
6132                 skip "Need MDS version 2.8.55+ "
6133
6134         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
6135                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
6136                 skip_env "mixed loopback and real device not working"
6137         fi
6138
6139         local fs2mdsdev=$(mdsdevname 1_2)
6140         local fs2ostdev=$(ostdevname 1_2)
6141         local fs2mdsvdev=$(mdsvdevname 1_2)
6142         local fs2ostvdev=$(ostvdevname 1_2)
6143         local fsname=test1234
6144         local mgsnid
6145         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
6146
6147         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
6148
6149         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
6150                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
6151         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
6152                 error "start fs2mds failed"
6153
6154         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
6155         mgsnid="0.0.0.0@tcp,$mgsnid,$mgsnid:$mgsnid"
6156
6157         add fs2ost --mgsnode=$mgsnid $(mkfs_opts ost1 $fs2ostdev) \
6158                 --failnode=$failnid --fsname=$fsname \
6159                 --reformat $fs2ostdev $fs2ostvdev ||
6160                         error "add fs2ost failed"
6161         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
6162
6163         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
6164         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
6165         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
6166         cleanup_fs2
6167 }
6168 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
6169
6170 test_78() {
6171         [[ "$mds1_FSTYPE" != ldiskfs ||
6172            "$ost1_FSTYPE" != ldiskfs ]] &&
6173                 skip "ldiskfs only test"
6174
6175         # reformat the Lustre filesystem with a smaller size
6176         local saved_MDSCOUNT=$MDSCOUNT
6177         local saved_MDSSIZE=$MDSSIZE
6178         local saved_OSTCOUNT=$OSTCOUNT
6179         local saved_OSTSIZE=$OSTSIZE
6180         MDSCOUNT=1
6181         OSTCOUNT=1
6182         MDSSIZE=$((MDSSIZE - 20000))
6183         OSTSIZE=$((OSTSIZE - 20000))
6184         reformat || error "(1) reformat Lustre filesystem failed"
6185         MDSSIZE=$saved_MDSSIZE
6186         OSTSIZE=$saved_OSTSIZE
6187
6188         # mount the Lustre filesystem
6189         setup_noconfig || error "(2) setup Lustre filesystem failed"
6190
6191         # create some files
6192         log "create test files"
6193         local i
6194         local file
6195         local num_files=100
6196
6197         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
6198         $LFS df; $LFS df -i
6199         for i in $(seq $num_files); do
6200                 file=$MOUNT/$tdir/$tfile-$i
6201                 dd if=/dev/urandom of=$file count=1 bs=1M || {
6202                         $LCTL get_param osc.*.cur*grant*
6203                         $LFS df; $LFS df -i;
6204                         # stop creating files if there is no more space
6205                         if [ ! -e $file ]; then
6206                                 num_files=$((i - 1))
6207                                 break
6208                         fi
6209
6210                         $LFS getstripe -v $file
6211                         local ost_idx=$(LFS getstripe -i $file)
6212                         do_facet ost$((ost_idx + 1)) \
6213                                 $LCTL get_param obdfilter.*.*grant*
6214                         error "(4) create $file failed"
6215                 }
6216         done
6217
6218         # unmount the Lustre filesystem
6219         cleanup || error "(5) cleanup Lustre filesystem failed"
6220
6221         # run e2fsck on the MDT and OST devices
6222         local mds_host=$(facet_active_host $SINGLEMDS)
6223         local ost_host=$(facet_active_host ost1)
6224         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6225         local ost_dev=$(ostdevname 1)
6226
6227         run_e2fsck $mds_host $mds_dev "-y"
6228         run_e2fsck $ost_host $ost_dev "-y"
6229
6230         # get the original block count of the MDT and OST filesystems
6231         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
6232         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
6233
6234         # expand the MDT and OST filesystems to the device size
6235         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
6236         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
6237
6238         # run e2fsck on the MDT and OST devices again
6239         run_e2fsck $mds_host $mds_dev "-y"
6240         run_e2fsck $ost_host $ost_dev "-y"
6241
6242         # mount the Lustre filesystem
6243         setup
6244
6245         # check the files
6246         log "check files after expanding the MDT and OST filesystems"
6247         for i in $(seq $num_files); do
6248                 file=$MOUNT/$tdir/$tfile-$i
6249                 $CHECKSTAT -t file -s 1048576 $file ||
6250                         error "(6) checkstat $file failed"
6251         done
6252
6253         # create more files
6254         log "create more files after expanding the MDT and OST filesystems"
6255         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
6256                 file=$MOUNT/$tdir/$tfile-$i
6257                 dd if=/dev/urandom of=$file count=1 bs=1M ||
6258                         error "(7) create $file failed"
6259         done
6260
6261         # unmount the Lustre filesystem
6262         cleanup || error "(8) cleanup Lustre filesystem failed"
6263
6264         # run e2fsck on the MDT and OST devices
6265         run_e2fsck $mds_host $mds_dev "-y"
6266         run_e2fsck $ost_host $ost_dev "-y"
6267
6268         # get the maximum block count of the MDT and OST filesystems
6269         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
6270         local ost_max_blks=$(get_block_count ost1 $ost_dev)
6271
6272         # get the minimum block count of the MDT and OST filesystems
6273         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
6274                                 grep minimum | sed -e 's/^.*filesystem: //g')
6275         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
6276                                 grep minimum | sed -e 's/^.*filesystem: //g')
6277
6278         # shrink the MDT and OST filesystems to a smaller size
6279         local shrunk=false
6280         local new_blks
6281         local base_blks
6282         if [[ $mds_max_blks -gt $mds_min_blks &&
6283               $mds_max_blks -gt $mds_orig_blks ]]; then
6284                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
6285                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
6286                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
6287                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
6288                         error "shrink $SINGLEMDS to $new_blks failed"
6289                 shrunk=true
6290         fi
6291
6292         if [[ $ost_max_blks -gt $ost_min_blks &&
6293               $ost_max_blks -gt $ost_orig_blks ]]; then
6294                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
6295                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
6296                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
6297                 run_resize2fs ost1 $ost_dev $new_blks ||
6298                         error "shrink ost1 to $new_blks failed"
6299                 shrunk=true
6300         fi
6301
6302         # check whether the MDT or OST filesystem was shrunk or not
6303         if ! $shrunk; then
6304                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
6305                 reformat_and_config ||
6306                         error "(10) reformat Lustre filesystem failed"
6307                 return 0
6308         fi
6309
6310         # run e2fsck on the MDT and OST devices again
6311         run_e2fsck $mds_host $mds_dev "-y"
6312         run_e2fsck $ost_host $ost_dev "-y"
6313
6314         # mount the Lustre filesystem again
6315         setup
6316
6317         # check the files
6318         log "check files after shrinking the MDT and OST filesystems"
6319         for i in $(seq $((num_files + 10))); do
6320                 file=$MOUNT/$tdir/$tfile-$i
6321                 $CHECKSTAT -t file -s 1048576 $file ||
6322                         error "(11) checkstat $file failed"
6323         done
6324
6325         # unmount and reformat the Lustre filesystem
6326         cleanup || error "(12) cleanup Lustre filesystem failed"
6327         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
6328
6329         MDSCOUNT=$saved_MDSCOUNT
6330         OSTCOUNT=$saved_OSTCOUNT
6331         reformat_and_config || error "(14) reformat Lustre filesystem failed"
6332 }
6333 run_test 78 "run resize2fs on MDT and OST filesystems"
6334
6335 test_79() { # LU-4227
6336         [[ "$MDS1_VERSION" -ge $(version_code 2.5.59) ]] ||
6337                 skip "Need MDS version at least 2.5.59"
6338
6339         local mdsdev1=$(mdsdevname 1)
6340         local mdsvdev1=$(mdsvdevname 1)
6341         local mdsdev2=$(mdsdevname 2)
6342         local mdsvdev2=$(mdsvdevname 2)
6343         local ostdev1=$(ostdevname 1)
6344         local ostvdev1=$(ostvdevname 1)
6345         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
6346         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
6347         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
6348         local mgsnode_opt
6349
6350         # remove --mgs/--mgsnode from mkfs.lustre options
6351         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
6352
6353         mgsnode_opt=$(echo $opts_mds2 |
6354                 awk '{ for ( i = 1; i < NF; i++ )
6355                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
6356         [ -n "$mgsnode_opt" ] &&
6357                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
6358
6359         mgsnode_opt=$(echo $opts_ost1 |
6360                 awk '{ for ( i = 1; i < NF; i++ )
6361                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
6362         [ -n "$mgsnode_opt" ] &&
6363                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
6364         load_modules
6365         # -MGS, format a mdt without --mgs option
6366         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
6367                 error "Must specify --mgs when formatting mdt combined with mgs"
6368
6369         # +MGS, format a mdt/ost without --mgsnode option
6370         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
6371                 > /dev/null || error "start mds1 failed"
6372         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
6373                 error "Must specify --mgsnode when formatting a mdt"
6374         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
6375                 error "Must specify --mgsnode when formatting an ost"
6376
6377         reformat_and_config
6378 }
6379 run_test 79 "format MDT/OST without mgs option (should return errors)"
6380
6381 test_80() {
6382         start_mds || error "Failed to start MDT"
6383         start_ost || error "Failed to start OST1"
6384         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
6385 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
6386         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
6387         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
6388         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
6389         sleep 30
6390         start_ost2 || error "Failed to start OST2"
6391
6392         do_facet ost1 "$LCTL set_param fail_loc=0"
6393         stop_ost2
6394         stop_ost
6395         stop_mds
6396 }
6397 run_test 80 "mgc import reconnect race"
6398
6399 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
6400 save_ostindex() {
6401         local new_ostcount=$1
6402         saved_ostcount=$OSTCOUNT
6403         OSTCOUNT=$new_ostcount
6404
6405         local i
6406         local index
6407         for i in $(seq $OSTCOUNT); do
6408                 index=OSTINDEX$i
6409                 eval saved_ostindex$i=${!index}
6410                 eval OSTINDEX$i=""
6411         done
6412 }
6413
6414 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
6415 restore_ostindex() {
6416         trap 0
6417
6418         local i
6419         local index
6420         for i in $(seq $OSTCOUNT); do
6421                 index=saved_ostindex$i
6422                 eval OSTINDEX$i=${!index}
6423         done
6424         OSTCOUNT=$saved_ostcount
6425
6426         reformat
6427         if ! combined_mgs_mds ; then
6428                 start_mgs
6429         fi
6430 }
6431
6432 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
6433 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
6434 # assigned index and ensures we can mount such a formatted file system
6435 test_81() { # LU-4665
6436         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6437                 skip "Need MDS version at least 2.6.54"
6438         [[ $OSTCOUNT -ge 3 ]] || skip_env "needs >= 3 OSTs"
6439
6440         stopall
6441
6442         # Each time RANDOM is referenced, a random integer between 0 and 32767
6443         # is generated.
6444         local i
6445         local saved_ostindex1=$OSTINDEX1
6446         for i in 65535 $((RANDOM + 65536)); do
6447                 echo -e "\nFormat ost1 with --index=$i, should fail"
6448                 OSTINDEX1=$i
6449                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
6450                    $(ostdevname 1) $(ostvdevname 1); then
6451                         OSTINDEX1=$saved_ostindex1
6452                         error "format ost1 with --index=$i should fail"
6453                 fi
6454         done
6455         OSTINDEX1=$saved_ostindex1
6456
6457         save_ostindex 3
6458
6459         # Format OSTs with random sparse indices.
6460         trap "restore_ostindex" EXIT
6461         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
6462         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
6463
6464         # Setup and check Lustre filesystem.
6465         start_mgsmds || error "start_mgsmds failed"
6466         for i in $(seq $OSTCOUNT); do
6467                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6468                         error "start ost$i failed"
6469         done
6470
6471         mount_client $MOUNT || error "mount client $MOUNT failed"
6472         check_mount || error "check client $MOUNT failed"
6473
6474         # Check max_easize.
6475         local max_easize=$($LCTL get_param -n llite.*.max_easize)
6476         # 65452 is XATTR_SIZE_MAX less ldiskfs ea overhead
6477         if large_xattr_enabled; then
6478                 [[ $max_easize -ge 65452 ]] ||
6479                         error "max_easize is $max_easize, should be at least 65452 bytes"
6480         else
6481                 # LU-11868
6482                 # 4012 is 4096 less ldiskfs ea overhead
6483                 [[ $max_easize -ge 4012 ]] ||
6484                         error "max_easize is $max_easize, should be at least 4012 bytes"
6485         fi
6486
6487         restore_ostindex
6488 }
6489 run_test 81 "sparse OST indexing"
6490
6491 # Here we exercise the stripe placement functionality on a file system that
6492 # has formatted the OST with a random index. With the file system the following
6493 # functionality is tested:
6494 #
6495 # 1. Creating a new file with a specific stripe layout.
6496 #
6497 # 2. Modifiy a existing empty file with a specific stripe layout.
6498 #
6499 # 3. Ensure we fail to set the stripe layout of a file that already has one.
6500 #
6501 # 4. If ost-index is defined we need to ensure it is the first entry in the
6502 #    ost index list returned by lfs getstripe.
6503 #
6504 # 5. Lastly ensure this functionality fails with directories.
6505 test_82a() { # LU-4665
6506         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6507                 skip "Need MDS version at least 2.6.54"
6508         [[ $OSTCOUNT -ge 3 ]] || skip_env "needs >= 3 OSTs"
6509
6510         stopall
6511
6512         save_ostindex 3
6513
6514         # Format OSTs with random sparse indices.
6515         local i
6516         local index
6517         local ost_indices
6518         local LOV_V1_INSANE_STRIPE_COUNT=65532
6519         for i in $(seq $OSTCOUNT); do
6520                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
6521                 ost_indices+=" $index"
6522         done
6523         ost_indices=$(comma_list $ost_indices)
6524
6525         stack_trap "restore_ostindex" EXIT
6526         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
6527         OST_INDEX_LIST=[$ost_indices] formatall
6528
6529         # Setup Lustre filesystem.
6530         start_mgsmds || error "start_mgsmds failed"
6531         for i in $(seq $OSTCOUNT); do
6532                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6533                         error "start ost$i failed"
6534         done
6535
6536         # Collect debug information - start of test
6537         do_nodes $(comma_list $(mdts_nodes)) \
6538                    $LCTL get_param osp.*.prealloc_*_id
6539
6540         mount_client $MOUNT || error "mount client $MOUNT failed"
6541         wait_osts_up
6542
6543         $LFS df $MOUNT
6544         check_lfs_df_ret_val $? || error "$LFS df $MOUNT failed"
6545         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6546
6547         stack_trap "do_nodes $(comma_list $(mdts_nodes)) \
6548                    $LCTL get_param osp.*.prealloc_*_id" EXIT
6549
6550         # 1. If the file does not exist, new file will be created
6551         #    with specified OSTs.
6552         local file=$DIR/$tdir/$tfile-1
6553         local cmd="$LFS setstripe -o $ost_indices $file"
6554         echo -e "\n$cmd"
6555         eval $cmd || error "$cmd failed"
6556         check_stripe_count $file $OSTCOUNT
6557         check_obdidx $file $ost_indices
6558         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6559                 error "write $file failed"
6560
6561         # 2. If the file already exists and is an empty file, the file
6562         #    will be attached with specified layout.
6563         file=$DIR/$tdir/$tfile-2
6564         mcreate $file || error "mcreate $file failed"
6565         cmd="$LFS setstripe -o $ost_indices $file"
6566         echo -e "\n$cmd"
6567         eval $cmd || error "$cmd failed"
6568         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6569                 error "write $file failed"
6570         check_stripe_count $file $OSTCOUNT
6571         check_obdidx $file $ost_indices
6572
6573         # 3. If the file already has a valid layout attached, the command
6574         #    should fail with EBUSY.
6575         echo -e "\n$cmd"
6576         eval $cmd && error "stripe is already set on $file, $cmd should fail"
6577
6578         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
6579         #    be in the OST indices list.
6580         local start_ost_idx=${ost_indices##*,}
6581         file=$DIR/$tdir/$tfile-3
6582         cmd="$LFS setstripe -o $ost_indices -i $start_ost_idx $file"
6583         echo -e "\n$cmd"
6584         eval $cmd || error "$cmd failed"
6585         check_stripe_count $file $OSTCOUNT
6586         check_obdidx $file $ost_indices
6587         check_start_ost_idx $file $start_ost_idx
6588
6589         file=$DIR/$tdir/$tfile-4
6590         cmd="$LFS setstripe"
6591         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
6592         cmd+=" -i $start_ost_idx $file"
6593         echo -e "\n$cmd"
6594         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
6595
6596         # 5. Specifying OST indices for directory should succeed.
6597         local dir=$DIR/$tdir/$tdir
6598         mkdir $dir || error "mkdir $dir failed"
6599         cmd="$LFS setstripe -o $ost_indices $dir"
6600         if [ "$MDS1_VERSION" -gt $(version_code 2.11.53) ] &&
6601                 [ "$CLIENT_VERSION" -gt $(version_code 2.11.53) ]; then
6602                 echo -e "\n$cmd"
6603                 eval $cmd || error "unable to specify OST indices on directory"
6604         else
6605                 echo "need MDS+client version at least 2.11.53"
6606         fi
6607
6608         restore_ostindex
6609 }
6610 run_test 82a "specify OSTs for file (succeed) or directory (succeed)"
6611
6612 cleanup_82b() {
6613         trap 0
6614
6615         # Remove OSTs from a pool and destroy the pool.
6616         destroy_pool $ost_pool || true
6617
6618         restore_ostindex
6619 }
6620
6621 # Test 82b is run to ensure that if the user supplies a pool with a specific
6622 # stripe layout that it behaves proprerly. It should fail in the case that
6623 # the supplied OST index list points to OSTs not contained in the user
6624 # supplied pool.
6625 test_82b() { # LU-4665
6626         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6627                 skip "Need MDS version at least 2.6.54"
6628         [[ $OSTCOUNT -ge 4 ]] || skip_env "needs >= 4 OSTs"
6629
6630         stopall
6631
6632         save_ostindex 4
6633
6634         # Format OSTs with random sparse indices.
6635         local i
6636         local index
6637         local ost_indices
6638         local LOV_V1_INSANE_STRIPE_COUNT=65532
6639         for i in $(seq $OSTCOUNT); do
6640                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
6641                 ost_indices+=" $index"
6642         done
6643         ost_indices=$(comma_list $ost_indices)
6644
6645         trap "restore_ostindex" EXIT
6646         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
6647         OST_INDEX_LIST=[$ost_indices] formatall
6648
6649         # Setup Lustre filesystem.
6650         start_mgsmds || error "start_mgsmds failed"
6651         for i in $(seq $OSTCOUNT); do
6652                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6653                         error "start ost$i failed"
6654         done
6655
6656         mount_client $MOUNT || error "mount client $MOUNT failed"
6657
6658         wait_osts_up
6659         $LFS df $MOUNT
6660         check_lfs_df_ret_val $? || error "$LFS df $MOUNT failed"
6661         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6662
6663         # Create a new pool and add OSTs into it.
6664         local ost_pool=$FSNAME.$TESTNAME
6665         create_pool $ost_pool || error "create OST pool $ost_pool failed"
6666
6667         trap - EXIT
6668         trap "cleanup_82b" EXIT
6669
6670         local ost_idx_in_list=${ost_indices##*,}
6671         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
6672                                 $ost_idx_in_list)
6673
6674         local ost_targets="$FSNAME-OST["
6675         for i in ${ost_idx_in_pool//,/ }; do
6676                 ost_targets=$ost_targets$(printf "%04x," $i)
6677         done
6678         ost_targets="${ost_targets%,}]"
6679
6680         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
6681                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
6682                                  sort -u | tr '\n' ' ')
6683
6684         local cmd="$LCTL pool_add $ost_pool $ost_targets"
6685         do_facet mgs $cmd || error "$cmd failed"
6686         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
6687                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
6688                                         error "wait_update $ost_pool failed"
6689         wait_update_facet $SINGLEMDS "$LCTL pool_list $ost_pool | wc -l" 4 ||
6690                                 error "wait_update pool_list $ost_pool failed"
6691
6692         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
6693         # then the OSTs must be the members of the pool.
6694         local file=$DIR/$tdir/$tfile
6695         cmd="$LFS setstripe -p $ost_pool -o $ost_idx_in_list $file"
6696         echo -e "\n$cmd"
6697         eval $cmd && error "OST with index $ost_idx_in_list should be" \
6698                            "in OST pool $ost_pool"
6699
6700         # Only select OST $ost_idx_in_list from $ost_pool for file.
6701         ost_idx_in_list=${ost_idx_in_pool#*,}
6702         cmd="$LFS setstripe -p $ost_pool -o $ost_idx_in_list $file"
6703         echo -e "\n$cmd"
6704         eval $cmd || error "$cmd failed"
6705         cmd="$LFS getstripe $file"
6706         echo -e "\n$cmd"
6707         eval $cmd || error "$cmd failed"
6708         check_stripe_count $file 2
6709         check_obdidx $file $ost_idx_in_list
6710         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6711                 error "write $file failed"
6712
6713         cleanup_82b
6714 }
6715 run_test 82b "specify OSTs for file with --pool and --ost-list options"
6716
6717 test_83() {
6718         [[ "$OST1_VERSION" -ge $(version_code 2.6.91) ]] ||
6719                 skip "Need OST version at least 2.6.91"
6720         if [ "$ost1_FSTYPE" != ldiskfs ]; then
6721                 skip "ldiskfs only test"
6722         fi
6723
6724         local dev
6725         local ostmnt
6726         local fstype
6727         local mnt_opts
6728
6729         dev=$(ostdevname 1)
6730         ostmnt=$(facet_mntpt ost1)
6731
6732         # Mount the OST as an ldiskfs filesystem.
6733         log "mount the OST $dev as a $ost1_FSTYPE filesystem"
6734         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
6735                 --reformat $dev > /dev/null ||
6736                 error "format ost1 error"
6737
6738         if ! test -b $dev; then
6739                 mnt_opts=$(csa_add "$OST_MOUNT_FS_OPTS" -o loop)
6740         fi
6741         echo "mnt_opts $mnt_opts"
6742         do_facet ost1 mount -t "$ost1_FSTYPE" $dev \
6743                 $ostmnt $mnt_opts
6744         # Run llverfs on the mounted ldiskfs filesystem.
6745         # It is needed to get ENOSPACE.
6746         log "run llverfs in partial mode on the OST $ost1_FSTYPE $ostmnt"
6747         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
6748                 "no" || error "run_llverfs error on $ost1_FSTYPE"
6749
6750         # Unmount the OST.
6751         log "unmount the OST $dev"
6752         stop ost1
6753
6754         # Delete file IO_scrub. Later osd_scrub_setup will try to
6755         # create "IO_scrub" but will get ENOSPACE.
6756         writeconf_all
6757         echo "start ost1 service on `facet_active_host ost1`"
6758         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
6759
6760         local err
6761         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
6762         echo "string err $err"
6763         [ -z "$err" ] || error $err
6764         reformat_and_config
6765 }
6766 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
6767 Busy inodes after unmount ..."
6768
6769 test_84() {
6770         local facet=$SINGLEMDS
6771         local num=$(echo $facet | tr -d "mds")
6772         local dev=$(mdsdevname $num)
6773         local time_min=$(recovery_time_min)
6774         local recovery_duration
6775         local completed_clients
6776         local correct_clients
6777         local wrap_up=5
6778
6779         echo "start mds service on $(facet_active_host $facet)"
6780         start_mds \
6781         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
6782                 error "start MDS failed"
6783
6784         start_ost || error "start OST0000 failed"
6785         start_ost2 || error "start OST0001 failed"
6786
6787         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
6788
6789         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
6790         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6791         # make sure new superblock labels are sync'd before disabling writes
6792         sync_all_data
6793         sleep 5
6794
6795         replay_barrier $SINGLEMDS
6796         createmany -o $DIR1/$tfile-%d 1000
6797
6798         # We need to catch the end of recovery window to extend it.
6799         # Skip 5 requests and add delay to request handling.
6800         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
6801         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
6802
6803         facet_failover --fsck $SINGLEMDS || error "failover: $?"
6804         client_up
6805
6806         echo "recovery status"
6807         do_facet $SINGLEMDS \
6808                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
6809
6810         recovery_duration=$(do_facet $SINGLEMDS \
6811                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6812                 awk '/recovery_duration/ { print $2 }')
6813         (( $recovery_duration > $time_min + $wrap_up )) &&
6814                 error "recovery_duration > recovery_time_hard + wrap up"
6815         completed_clients=$(do_facet $SINGLEMDS \
6816                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6817                 awk '/completed_clients/ { print $2 }')
6818
6819         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
6820         [ "$completed_clients" = "${correct_clients}" ] ||
6821                 error "$completed_clients != $correct_clients"
6822
6823         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
6824         umount_client $MOUNT1
6825         umount_client $MOUNT2
6826
6827         stop_ost
6828         stop_ost2
6829         stop_mds
6830 }
6831 run_test 84 "check recovery_hard_time"
6832
6833 test_85() {
6834         [[ "$OST1_VERSION" -ge $(version_code 2.7.55) ]] ||
6835                 skip "Need OST version at least 2.7.55"
6836 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
6837         do_facet ost1 "lctl set_param fail_loc=0x197"
6838         start_ost
6839         stop_ost
6840 }
6841 run_test 85 "osd_ost init: fail ea_fid_set"
6842
6843 cleanup_86() {
6844         trap 0
6845
6846         # ost1 has already registered to the MGS before the reformat.
6847         # So after reformatting it with option "-G", it could not be
6848         # mounted to the MGS. Cleanup the system for subsequent tests.
6849         reformat_and_config
6850 }
6851
6852 test_86() {
6853         [ "$ost1_FSTYPE" = zfs ] &&
6854                 skip "LU-6442: no such mkfs params for ZFS OSTs"
6855         [[ "$MDS1_VERSION" -ge $(version_code 2.7.56) ]] ||
6856                 skip "Need server version newer than 2.7.55"
6857
6858         local NEWSIZE=1024
6859         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6860                 awk '/Flex block group size: / { print $NF; exit; }')
6861
6862         [ "$OLDSIZE" == "$NEWSIZE" ] && skip "$NEWSIZE groups already"
6863
6864         local opts=" -O flex_bg -G $NEWSIZE"
6865         opts=$(OST_FS_MKFS_OPTS+="$opts" mkfs_opts ost1 $(ostdevname 1))
6866         opts+=" --reformat $(ostdevname 1) $(ostvdevname 1)"
6867         echo "params: $opts"
6868
6869         trap cleanup_86 EXIT ERR
6870
6871         stopall
6872         add ost1 $opts || error "add ost1 failed with new params"
6873
6874         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6875                 awk '/Flex block group size: / { print $NF; exit; }')
6876
6877         [[ $FOUNDSIZE == $NEWSIZE ]] ||
6878                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
6879
6880         cleanup_86
6881 }
6882 run_test 86 "Replacing mkfs.lustre -G option"
6883
6884 test_87() { #LU-6544
6885         [[ "$MDS1_VERSION" -ge $(version_code 2.9.51) ]] ||
6886                 skip "Need MDS version at least 2.9.51"
6887         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
6888                 skip "ldiskfs only test"
6889         [[ $OSTCOUNT -gt 59 ]] &&
6890                 skip "Ignore wide striping situation"
6891         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
6892
6893         local mdsdev=$(mdsdevname 1)
6894         local mdsvdev=$(mdsvdevname 1)
6895         local file=$DIR/$tfile
6896         local mntpt=$(facet_mntpt $SINGLEMDS)
6897         local used_xattr_blk=0
6898         local inode_size=${1:-1024}
6899         local left_size=0
6900         local xtest="trusted.test"
6901         local value
6902         local orig
6903         local i
6904         local stripe_cnt=$(($OSTCOUNT + 2))
6905
6906         #Please see ldiskfs_make_lustre() for MDT inode size calculation
6907         if [ $stripe_cnt -gt 16 ]; then
6908                 inode_size=2048
6909         fi
6910         left_size=$(expr $inode_size - \
6911                         156 - \
6912                         32 - \
6913                         32 - 40 \* 3 - 32 \* 3 - $stripe_cnt \* 24 - 16 - 3 -  \
6914                         24 - 16 - 3 - \
6915                         24 - 18 - $(expr length $tfile) - 16 - 4)
6916         if [ $left_size -le 0 ]; then
6917                 echo "No space($left_size) is expected in inode."
6918                 echo "Try 1-byte xattr instead to verify this."
6919                 left_size=1
6920         else
6921                 echo "Estimate: at most $left_size-byte space left in inode."
6922         fi
6923
6924         unload_modules
6925         reformat
6926
6927         if ! combined_mgs_mds ; then
6928                 start_mgs
6929         fi
6930
6931         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$stripe_cnt \
6932                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
6933         start_mdt 1 > /dev/null || error "start mdt1 failed"
6934         for i in $(seq $OSTCOUNT); do
6935                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
6936                         error "start ost$i failed"
6937         done
6938         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
6939         check_mount || error "check client $MOUNT failed"
6940
6941         #set xattr
6942         $LFS setstripe -E 1M -S 1M -c 1 -E 64M -c 1 -E -1 -c -1 $file ||
6943                 error "Create file with 3 components failed"
6944         $TRUNCATE $file $((1024*1024*64+1)) || error "truncate file failed"
6945         i=$($LFS getstripe -I3 -c $file) || error "get 3rd stripe count failed"
6946         if [ $i -ne $OSTCOUNT ]; then
6947                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
6948                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
6949                 echo -n "the expected left space is changed to "
6950                 echo "$left_size bytes at most."
6951         fi
6952         value=$(generate_string $left_size)
6953         setfattr -n $xtest -v $value $file
6954         orig=$(get_xattr_value $xtest $file)
6955         [[ "$orig" != "$value" ]] && error "$xtest changed"
6956
6957         #Verify if inode has some expected space left
6958         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
6959         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
6960         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
6961
6962         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
6963         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
6964                         awk '{ print $1 }')
6965         [[ $used_xattr_blk -eq 0 ]] &&
6966                 error "Please check MDS inode size calculation: \
6967                        more than $left_size-byte space left in inode."
6968         echo "Verified: at most $left_size-byte space left in inode."
6969
6970         unmount_ldiskfs $SINGLEMDS
6971
6972         for i in $(seq $OSTCOUNT); do
6973                 stop ost$i -f || error "stop ost$i failed"
6974         done
6975 }
6976 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
6977
6978 test_88() {
6979         [ "$mds1_FSTYPE" == zfs ] &&
6980                 skip "LU-6662: no implementation for ZFS"
6981
6982         load_modules
6983
6984         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6985                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6986
6987         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6988                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
6989                 error "default mount options is missing"
6990
6991         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6992                 --mountfsoptions="user_xattr,errors=panic" \
6993                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6994
6995         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6996                 grep -e \".*opts:.*errors=panic.*\"" ||
6997                 error "user can't override default mount options"
6998 }
6999 run_test 88 "check the default mount options can be overridden"
7000
7001 test_89() { # LU-7131
7002         [[ "$MDS1_VERSION" -ge $(version_code 2.9.54) ]] ||
7003                 skip "Need MDT version at least 2.9.54"
7004
7005         local key=failover.node
7006         local val1=192.0.2.254@tcp0 # Reserved IPs, see RFC 5735
7007         local val2=192.0.2.255@tcp0
7008         local mdsdev=$(mdsdevname 1)
7009         local params
7010
7011         stopall
7012
7013         if [[ "$mds1_FSTYPE" == zfs ]]; then
7014                 import_zpool mds1 || return ${PIPESTATUS[0]}
7015         fi
7016
7017         # Check that parameters are added correctly
7018         echo "tunefs --param $key=$val1"
7019         do_facet mds1 "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
7020                 error "tunefs --param $key=$val1 failed"
7021         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7022                 error "tunefs --dryrun failed"
7023         params=${params##*Parameters:}
7024         params=${params%%exiting*}
7025         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val1) = "1" ] ||
7026                 error "on-disk parameter not added correctly via tunefs"
7027
7028         # Check that parameters replace existing instances when added
7029         echo "tunefs --param $key=$val2"
7030         do_facet mds1 "$TUNEFS --param $key=$val2 $mdsdev >/dev/null" ||
7031                 error "tunefs --param $key=$val2 failed"
7032         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7033                 error "tunefs --dryrun failed"
7034         params=${params##*Parameters:}
7035         params=${params%%exiting*}
7036         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "1" ] ||
7037                 error "on-disk parameter not replaced via tunefs"
7038         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val2) = "1" ] ||
7039                 error "on-disk parameter not replaced correctly via tunefs"
7040
7041         # Check that a parameter is erased properly
7042         echo "tunefs --erase-param $key"
7043         do_facet mds1 "$TUNEFS --erase-param $key $mdsdev >/dev/null" ||
7044                 error "tunefs --erase-param $key failed"
7045         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7046                 error "tunefs --dryrun failed"
7047         params=${params##*Parameters:}
7048         params=${params%%exiting*}
7049         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "0" ] ||
7050                 error "on-disk parameter not erased correctly via tunefs"
7051
7052         # Check that all the parameters are erased
7053         do_facet mds1 "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
7054                 error "tunefs --param $key=$val1 failed"
7055         echo "tunefs --erase-params"
7056         do_facet mds1 "$TUNEFS --erase-params $mdsdev >/dev/null" ||
7057                 error "tunefs --erase-params failed"
7058         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7059                 error "tunefs --dryrun failed"
7060         params=${params##*Parameters:}
7061         params=${params%%exiting*}
7062         params=$(echo $params | tr ' ' '\n')
7063         [ -z "$params" ] ||
7064                 error "all on-disk parameters not erased correctly via tunefs $params"
7065
7066         # Check the order of options --erase-params and --param
7067         echo "tunefs --param $key=$val1 --erase-params"
7068         do_facet mds1 \
7069                 "$TUNEFS --param $key=$val1 --erase-params $mdsdev >/dev/null"||
7070                 error "tunefs --param $key=$val1 --erase-params failed"
7071         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7072                 error "tunefs --dryrun failed"
7073         params=${params##*Parameters:}
7074         params=${params%%exiting*}
7075         [ $(echo $params | tr ' ' '\n') == "$key=$val1" ] ||
7076                 error "on-disk param not added correctly with --erase-params"
7077
7078         reformat_and_config
7079 }
7080 run_test 89 "check tunefs --param and --erase-param{s} options"
7081
7082 # $1 test directory
7083 # $2 (optional) value of max_mod_rpcs_in_flight to set
7084 check_max_mod_rpcs_in_flight() {
7085         local dir="$1"
7086         local mmr="$2"
7087         local idx
7088         local facet
7089         local tmp
7090         local i
7091
7092         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
7093         facet="mds$((0x$idx + 1))"
7094
7095         if [ -z "$mmr" ]; then
7096                 # get value of max_mod_rcps_in_flight
7097                 mmr=$($LCTL get_param -n \
7098                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
7099                         error "Unable to get max_mod_rpcs_in_flight"
7100                 echo "max_mod_rcps_in_flight is $mmr"
7101         else
7102                 # set value of max_mod_rpcs_in_flight
7103                 $LCTL set_param \
7104                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
7105                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
7106                 echo "max_mod_rpcs_in_flight set to $mmr"
7107         fi
7108
7109         # create mmr+1 files
7110         echo "creating $((mmr + 1)) files ..."
7111         umask 0022
7112         for i in $(seq $((mmr + 1))); do
7113                 touch $dir/file-$i
7114         done
7115
7116         ### part 1 ###
7117
7118         # consumes mmr-1 modify RPC slots
7119         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7120         # drop requests on MDT so that RPC slots are consumed
7121         # during all the request resend interval
7122         do_facet $facet "$LCTL set_param fail_loc=0x159"
7123         echo "launch $((mmr - 1)) chmod in parallel ..."
7124         for i in $(seq $((mmr - 1))); do
7125                 chmod 0600 $dir/file-$i &
7126         done
7127         sleep 1
7128
7129         # send one additional modify RPC
7130         do_facet $facet "$LCTL set_param fail_loc=0"
7131         echo "launch 1 additional chmod in parallel ..."
7132         chmod 0600 $dir/file-$mmr &
7133         sleep 1
7134
7135         # check this additional modify RPC get a modify RPC slot
7136         # and succeed its operation
7137         checkstat -vp 0600 $dir/file-$mmr ||
7138                 error "Unable to send $mmr modify RPCs in parallel"
7139         wait
7140
7141         ### part 2 ###
7142
7143         # consumes mmr modify RPC slots
7144         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7145         # drop requests on MDT so that RPC slots are consumed
7146         # during all the request resend interval
7147         do_facet $facet "$LCTL set_param fail_loc=0x159"
7148         echo "launch $mmr chmod in parallel ..."
7149         for i in $(seq $mmr); do
7150                 chmod 0666 $dir/file-$i &
7151         done
7152         sleep 1
7153
7154         # send one additional modify RPC
7155         do_facet $facet "$LCTL set_param fail_loc=0"
7156         echo "launch 1 additional chmod in parallel ..."
7157         chmod 0666 $dir/file-$((mmr + 1)) &
7158         sleep 1
7159
7160         # check this additional modify RPC blocked getting a modify RPC slot
7161         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
7162                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
7163         wait
7164 }
7165
7166 test_90a() {
7167         setup
7168
7169         [[ $($LCTL get_param mdc.*.import |
7170              grep "connect_flags:.*multi_mod_rpc") ]] ||
7171                 skip "Need MDC with 'multi_mod_rpcs' feature"
7172
7173         # check default value
7174         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
7175         check_max_mod_rpcs_in_flight $DIR/$tdir
7176
7177         cleanup
7178 }
7179 run_test 90a "check max_mod_rpcs_in_flight is enforced"
7180
7181 test_90b() {
7182         local idx
7183         local facet
7184         local tmp
7185         local mmrpc
7186
7187         setup
7188
7189         [[ $($LCTL get_param mdc.*.import |
7190              grep "connect_flags:.*multi_mod_rpc") ]] ||
7191                 skip "Need MDC with 'multi_mod_rpcs' feature"
7192
7193         ### test 1.
7194         # update max_mod_rpcs_in_flight
7195         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
7196         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
7197
7198         ### test 2.
7199         # check client is able to send multiple modify RPCs in paralell
7200         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
7201                 grep -c "multi_mod_rpcs")
7202         if [ "$tmp" -ne $MDSCOUNT ]; then
7203                 cleanup
7204                 skip "Client not able to send multiple modify RPCs in parallel"
7205         fi
7206
7207         # update max_mod_rpcs_in_flight
7208         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
7209         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
7210
7211         ### test 3.
7212         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
7213         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
7214         facet="mds$((0x$idx + 1))"
7215
7216         # save MDT max_mod_rpcs_per_client
7217         mmrpc=$(do_facet $facet \
7218                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
7219
7220         # update max_mod_rpcs_in_flight
7221         umount_client $MOUNT
7222         do_facet $facet \
7223                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7224         mount_client $MOUNT
7225         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
7226         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
7227
7228         # restore MDT max_mod_rpcs_per_client initial value
7229         do_facet $facet \
7230                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7231
7232         rm -rf $DIR/${tdir}?
7233         cleanup
7234 }
7235 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
7236
7237 save_params_90c() {
7238         # get max_rpcs_in_flight value
7239         mrif_90c=$($LCTL get_param -n \
7240                    mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
7241         echo "max_rpcs_in_flight is $mrif_90c"
7242
7243         # get max_mod_rpcs_in_flight value
7244         mmrif_90c=$($LCTL get_param -n \
7245                     mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight)
7246         echo "max_mod_rpcs_in_flight is $mmrif_90c"
7247
7248         # get MDT max_mod_rpcs_per_client value
7249         mmrpc_90c=$(do_facet mds1 \
7250                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
7251         echo "max_mod_rpcs_per_client is $mmrpc_90c"
7252 }
7253
7254 restore_params_90c() {
7255         trap 0
7256
7257         # restore max_rpcs_in_flight value
7258         do_facet mgs $LCTL set_param -P \
7259                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$mrif_90c
7260
7261         # restore max_mod_rpcs_in_flight value
7262         do_facet mgs $LCTL set_param -P \
7263                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mmrif_90c
7264
7265         # restore MDT max_mod_rpcs_per_client value
7266         do_facet mds1 "echo $mmrpc_90c > \
7267                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7268 }
7269
7270 test_90c() {
7271         local tmp
7272
7273         setup
7274
7275         [[ $($LCTL get_param mdc.*.import |
7276              grep "connect_flags:.*multi_mod_rpc") ]] ||
7277                 skip "Need MDC with 'multi_mod_rpcs' feature"
7278
7279         # check client is able to send multiple modify RPCs in paralell
7280         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
7281                 grep -c "multi_mod_rpcs")
7282         if [ "$tmp" -ne $MDSCOUNT ]; then
7283                 cleanup
7284                 skip "Client not able to send multiple modify RPCs in parallel"
7285         fi
7286
7287         save_params_90c
7288         stack_trap restore_params_90c
7289
7290         # testcase 1
7291         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
7292         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
7293         do_facet mds1 "echo $mrif_90c > \
7294                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7295
7296         # if max_mod_rpcs_in_flight is set to be equal to or larger than
7297         # max_rpcs_in_flight, then max_rpcs_in_flight will be increased
7298         if [[ "$CLIENT_VERSION" -ge $(version_code 2.13.53) ]]; then
7299                 $LCTL set_param \
7300                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif_90c ||
7301                         error "set max_mod_rpcs_in_flight to $mrif_90c failed"
7302
7303                 local new_mrif=$($LCTL get_param -n \
7304                                  mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
7305                 ((new_mrif == mrif_90c + 1)) ||
7306                         error "max_rpcs_in_flight was not increased"
7307         fi
7308
7309         umount_client $MOUNT
7310         do_facet mds1 "echo $mmrpc_90c > \
7311                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7312         mount_client $MOUNT
7313
7314         # testcase 2
7315         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
7316         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
7317         $LCTL set_param \
7318                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc_90c + 2))
7319
7320         $LCTL set_param \
7321         mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc_90c + 1)) &&
7322         error "set max_mod_rpcs_in_flight to $((mmrpc_90c + 1)) should fail"
7323
7324         # testcase 3
7325         # attempt to set max_mod_rpcs_in_flight permanently
7326         do_facet mgs $LCTL set_param -P \
7327                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$mrif_90c
7328
7329         do_facet mgs $LCTL set_param -P \
7330                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif_90c
7331
7332         remount_client $MOUNT
7333
7334         wait_update_facet --verbose client "$LCTL get_param -n \
7335                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight" \
7336                 "$((mrif_90c + 1))" ||
7337                 error "expected '$((mrif_90c + 1))' for max_rpcs_in_flight"
7338
7339         wait_update_facet --verbose client "$LCTL get_param -n \
7340                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight" \
7341                 "$mrif_90c" ||
7342                 error "expected '$mrif_90c' for max_mod_rpcs_in_flight"
7343
7344         restore_params_90c
7345         cleanup
7346 }
7347 run_test 90c "check max_mod_rpcs_in_flight update limits"
7348
7349 test_90d() {
7350         local idx
7351         local facet
7352         local mmr
7353         local i
7354         local pid
7355
7356         setup
7357
7358         [[ $($LCTL get_param mdc.*.import |
7359              grep "connect_flags:.*multi_mod_rpc") ]] ||
7360                 skip "Need MDC with 'multi_mod_rpcs' feature"
7361
7362         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
7363         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
7364         facet="mds$((0x$idx + 1))"
7365
7366         # check client version supports multislots
7367         tmp=$($LCTL get_param -N \
7368                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
7369         if [ -z "$tmp" ]; then
7370                 cleanup
7371                 skip "Client does not support multiple modify RPCs in flight"
7372         fi
7373
7374         # get current value of max_mod_rcps_in_flight
7375         mmr=$($LCTL get_param -n \
7376                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
7377         echo "max_mod_rcps_in_flight is $mmr"
7378
7379         # create mmr files
7380         echo "creating $mmr files ..."
7381         umask 0022
7382         for i in $(seq $mmr); do
7383                 touch $DIR/$tdir/file-$i
7384         done
7385
7386         # prepare for close RPC
7387         multiop_bg_pause $DIR/$tdir/file-close O_c
7388         pid=$!
7389
7390         # consumes mmr modify RPC slots
7391         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7392         # drop requests on MDT so that RPC slots are consumed
7393         # during all the request resend interval
7394         do_facet $facet "$LCTL set_param fail_loc=0x159"
7395         echo "launch $mmr chmod in parallel ..."
7396         for i in $(seq $mmr); do
7397                 chmod 0600 $DIR/$tdir/file-$i &
7398         done
7399
7400         # send one additional close RPC
7401         do_facet $facet "$LCTL set_param fail_loc=0"
7402         echo "launch 1 additional close in parallel ..."
7403         kill -USR1 $pid
7404         cancel_lru_locks mdc
7405         sleep 1
7406
7407         # check this additional close RPC get a modify RPC slot
7408         # and multiop process completed
7409         [ -d /proc/$pid ] &&
7410                 error "Unable to send the additional close RPC in parallel"
7411         wait
7412         rm -rf $DIR/$tdir
7413         cleanup
7414 }
7415 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
7416
7417 check_uuid_on_ost() {
7418         local nid=$1
7419         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
7420 }
7421
7422 check_uuid_on_mdt() {
7423         local nid=$1
7424         do_facet $SINGLEMDS "$LCTL get_param mdt.${mds1_svc}*.exports.'$nid'.uuid"
7425 }
7426
7427 test_91() {
7428         local uuid
7429         local nid
7430         local found
7431
7432         [[ "$OST1_VERSION" -ge $(version_code 2.7.63) ]] ||
7433                 skip "Need OST version at least 2.7.63"
7434         [[ "$MDS1_VERSION" -ge $(version_code 2.7.63) ]] ||
7435                 skip "Need MDT version at least 2.7.63"
7436
7437         start_mds || error "MDS start failed"
7438         start_ost || error "unable to start OST"
7439         mount_client $MOUNT || error "client start failed"
7440         check_mount || error "check_mount failed"
7441
7442         if remote_mds; then
7443                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
7444         else
7445                 nid="0@lo"
7446         fi
7447         uuid=$(get_client_uuid $MOUNT)
7448
7449         echo "list nids on mdt:"
7450         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
7451         echo "uuid from $nid:"
7452         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
7453
7454         found=$(check_uuid_on_mdt $nid | grep $uuid)
7455         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
7456         found=$(check_uuid_on_ost $nid | grep $uuid)
7457         [ -z "$found" ] && error "can't find $uuid $nid on OST"
7458
7459         # umount the client so it won't reconnect
7460         manual_umount_client --force || error "failed to umount $?"
7461         # shouldn't disappear on MDS after forced umount
7462         found=$(check_uuid_on_mdt $nid | grep $uuid)
7463         [ -z "$found" ] && error "can't find $uuid $nid"
7464
7465         echo "evict $nid"
7466         do_facet $SINGLEMDS \
7467                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
7468         sleep 1 # eviction above is async, give it some time to proceed
7469
7470         found=$(check_uuid_on_mdt $nid | grep $uuid)
7471         [ -n "$found" ] && error "found $uuid $nid on MDT"
7472         found=$(check_uuid_on_ost $nid | grep $uuid)
7473         [ -n "$found" ] && error "found $uuid $nid on OST"
7474
7475         # check it didn't reconnect (being umounted)
7476         sleep $((TIMEOUT+1))
7477         found=$(check_uuid_on_mdt $nid | grep $uuid)
7478         [ -n "$found" ] && error "found $uuid $nid on MDT"
7479         found=$(check_uuid_on_ost $nid | grep $uuid)
7480         [ -n "$found" ] && error "found $uuid $nid on OST"
7481
7482         cleanup
7483 }
7484 run_test 91 "evict-by-nid support"
7485
7486 generate_ldev_conf() {
7487         # generate an ldev.conf file
7488         local ldevconfpath=$1
7489         local fstype=
7490         local fsldevformat=""
7491         rm -f $ldevconfpath
7492
7493         local facets="mgs,$(get_facets OST),$(get_facets MDS)"
7494         for facet in ${facets//,/ }; do
7495                 fsldevformat=""
7496                 fstype=$(facet_fstype $facet)
7497                 [ "$fstype" = zfs ] && fsldevformat="$fstype:"
7498                 local host=$(facet_host $facet)
7499                 local fo="-"
7500                 local varfo=${facet}failover_HOST
7501                 if [ $facet == mgs ] && combined_mgs_mds; then
7502                         varfo=mds1failover_HOST
7503                 fi
7504                 [ -n "${!varfo}" ] && fo=${!varfo}
7505                 local type=$(echo $facet | tr -d "[:digit:]" | \
7506                         tr "[:lower:]" "[:upper:]" | sed s/MDS/MDT/ )
7507                 local num=1
7508                 [ ${facet} == mgs ] ||
7509                         num=$(facet_number $facet)
7510                 printf "%s\t%s\t%s-%s%04x\t%s%s\n" \
7511                         ${host} \
7512                         ${fo} \
7513                         $FSNAME \
7514                         $type \
7515                         $(( num - 1 )) \
7516                         $fsldevformat \
7517                         $(facet_device $facet) >> $ldevconfpath
7518         done
7519
7520         echo "----- $ldevconfpath -----"
7521         cat $ldevconfpath
7522         echo "--- END $ldevconfpath ---"
7523
7524 }
7525
7526 generate_nids() {
7527         # generate a nids file (mapping between hostname to nid)
7528         # looks like we only have the MGS nid available to us
7529         # so just echo that to a file
7530         local nidspath=$1
7531         echo -e "${mgs_HOST}\t${MGSNID}" > $nidspath
7532
7533         echo "----- $nidspath -----"
7534         cat $nidspath
7535         echo "--- END $nidspath ---"
7536 }
7537
7538 compare_ldev_output() {
7539         local ldev_output=$1
7540         local expected_output=$2
7541
7542         sort $expected_output -o $expected_output
7543         sort $ldev_output -o $ldev_output
7544
7545         echo "-- START OF LDEV OUTPUT --"
7546         cat $ldev_output
7547         echo "--- END OF LDEV OUTPUT ---"
7548
7549         echo "-- START OF EXPECTED OUTPUT --"
7550         cat $expected_output
7551         echo "--- END OF EXPECTED OUTPUT ---"
7552
7553         diff $expected_output $ldev_output
7554         return $?
7555 }
7556
7557 test_92() {
7558         if [ -z "$LDEV" ]; then
7559                 error "ldev is missing!"
7560         fi
7561
7562         local LDEVCONFPATH=$TMP/ldev.conf
7563         local NIDSPATH=$TMP/nids
7564
7565         echo "Host is $(hostname)"
7566
7567         generate_ldev_conf $LDEVCONFPATH
7568         generate_nids $NIDSPATH
7569
7570         # echo the mgs nid and compare it to environment variable MGSNID
7571         local facets="$(get_facets OST),$(get_facets MDS),mgs"
7572         for facet in ${facets//,/ }; do
7573                 local host=$(facet_host $facet)
7574                 local output=$($LDEV -c $LDEVCONFPATH -H $host -n $NIDSPATH echo %m)
7575
7576                 echo "-- START OF LDEV OUTPUT --"
7577                 echo -e "$output"
7578                 echo "--- END OF LDEV OUTPUT ---"
7579
7580                 [ -z "$output" ] &&
7581                         error "ldev failed to execute!"
7582
7583                 # need to process multiple lines because of
7584                 # several targets on host
7585                 echo -e $output | awk '{ print $2 }' | while read -r line ; do
7586                         [ "$line" = "$MGSNID" ] ||
7587                                 error "ldev failed mgs nid '$line', \
7588                                         expected '$MGSNID'"
7589                 done
7590         done
7591         rm -f $LDEVCONFPATH $NIDSPATH
7592 }
7593 run_test 92 "ldev returns MGS NID correctly in command substitution"
7594
7595 test_93() {
7596         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs"
7597
7598         reformat
7599         #start mgs or mgs/mdt0
7600         if ! combined_mgs_mds ; then
7601                 start_mgs
7602                 start_mdt 1
7603         else
7604                 start_mdt 1
7605         fi
7606
7607         start_ost || error "OST0 start fail"
7608
7609         #define OBD_FAIL_MGS_WRITE_TARGET_DELAY  0x90e
7610         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x8000090e"
7611         for num in $(seq 2 $MDSCOUNT); do
7612                 start_mdt $num &
7613         done
7614
7615         mount_client $MOUNT || error "mount client fails"
7616         wait_osc_import_state mds ost FULL
7617         wait_osc_import_ready client ost
7618         check_mount || error "check_mount failed"
7619
7620         cleanup || error "cleanup failed with $?"
7621 }
7622 run_test 93 "register mulitple MDT at the same time"
7623
7624 test_94() {
7625         if [ -z "$LDEV" ]; then
7626                 error "ldev is missing!"
7627         fi
7628
7629         local LDEVCONFPATH=$TMP/ldev.conf
7630         local NIDSPATH=$TMP/nids
7631
7632         generate_ldev_conf $LDEVCONFPATH
7633         generate_nids $NIDSPATH
7634
7635         local LDEV_OUTPUT=$TMP/ldev-output.txt
7636         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME > $LDEV_OUTPUT
7637
7638         # ldev failed, error
7639         if [ $? -ne 0 ]; then
7640                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7641                 error "ldev failed to execute!"
7642         fi
7643
7644         # expected output
7645         local EXPECTED_OUTPUT=$TMP/ldev-expected.txt
7646
7647         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7648
7649         for num in $(seq $MDSCOUNT); do
7650                 printf "%s-MDT%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7651         done
7652
7653         for num in $(seq $OSTCOUNT); do
7654                 printf "%s-OST%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7655         done
7656
7657         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7658
7659         if [ $? -ne 0 ]; then
7660                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7661                 error "ldev failed to produce the correct hostlist!"
7662         fi
7663
7664         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7665 }
7666 run_test 94 "ldev outputs correct labels for file system name query"
7667
7668 test_95() {
7669         if [ -z "$LDEV" ]; then
7670                 error "ldev is missing!"
7671         fi
7672
7673         local LDEVCONFPATH=$TMP/ldev.conf
7674         local NIDSPATH=$TMP/nids
7675
7676         generate_ldev_conf $LDEVCONFPATH
7677         generate_nids $NIDSPATH
7678
7679         # SUCCESS CASES
7680         # file sys filter
7681         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME &>/dev/null
7682         if [ $? -ne 0 ]; then
7683                 rm $LDEVCONFPATH $NIDSPATH
7684                 error "ldev label filtering w/ -F failed!"
7685         fi
7686
7687         # local filter
7688         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -l  &>/dev/null
7689         if [ $? -ne 0 ]; then
7690                 rm $LDEVCONFPATH $NIDSPATH
7691                 error "ldev label filtering w/ -l failed!"
7692         fi
7693
7694         # foreign filter
7695         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f &>/dev/null
7696         if [ $? -ne 0 ]; then
7697                 rm $LDEVCONFPATH $NIDSPATH
7698                 error "ldev label filtering w/ -f failed!"
7699         fi
7700
7701         # all filter
7702         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a &>/dev/null
7703         if [ $? -ne 0 ]; then
7704                 rm $LDEVCONFPATH $NIDSPATH
7705                 error "ldev label filtering w/ -a failed!"
7706         fi
7707
7708         # FAILURE CASES
7709         # all & file sys
7710         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -F $FSNAME &>/dev/null
7711         if [ $? -eq 0 ]; then
7712                 rm $LDEVCONFPATH $NIDSPATH
7713                 error "ldev label filtering w/ -a and -F incorrectly succeeded"
7714         fi
7715
7716         # all & foreign
7717         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -f &>/dev/null
7718         if [ $? -eq 0 ]; then
7719                 rm $LDEVCONFPATH $NIDSPATH
7720                 error "ldev label filtering w/ -a and -f incorrectly succeeded"
7721         fi
7722
7723         # all & local
7724         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -l &>/dev/null
7725         if [ $? -eq 0 ]; then
7726                 rm $LDEVCONFPATH $NIDSPATH
7727                 error "ldev label filtering w/ -a and -l incorrectly succeeded"
7728         fi
7729
7730         # foreign & local
7731         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f -l &>/dev/null
7732         if [ $? -eq 0 ]; then
7733                 rm $LDEVCONFPATH $NIDSPATH
7734                 error "ldev label filtering w/ -f and -l incorrectly succeeded"
7735         fi
7736
7737         # file sys & local
7738         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -l &>/dev/null
7739         if [ $? -eq 0 ]; then
7740                 rm $LDEVCONFPATH $NIDSPATH
7741                 error "ldev label filtering w/ -F and -l incorrectly succeeded"
7742         fi
7743
7744         # file sys & foreign
7745         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -f &>/dev/null
7746         if [ $? -eq 0 ]; then
7747                 rm $LDEVCONFPATH $NIDSPATH
7748                 error "ldev label filtering w/ -F and -f incorrectly succeeded"
7749         fi
7750
7751         rm $LDEVCONFPATH $NIDSPATH
7752 }
7753 run_test 95 "ldev should only allow one label filter"
7754
7755 test_96() {
7756         if [ -z "$LDEV" ]; then
7757                 error "ldev is missing!"
7758         fi
7759
7760         local LDEVCONFPATH=$TMP/ldev.conf
7761         local NIDSPATH=$TMP/nids
7762
7763         generate_ldev_conf $LDEVCONFPATH
7764         generate_nids $NIDSPATH
7765
7766         local LDEV_OUTPUT=$TMP/ldev-output.txt
7767         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -H $mgs_HOST \
7768                 echo %H-%b | \
7769                 awk '{print $2}' > $LDEV_OUTPUT
7770
7771         # ldev failed, error
7772         if [ $? -ne 0 ]; then
7773                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7774                 error "ldev failed to execute!"
7775         fi
7776
7777         # expected output
7778         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7779
7780         echo "$mgs_HOST-$(facet_fstype mgs)" > $EXPECTED_OUTPUT
7781
7782         local facets="$(get_facets OST),$(get_facets MDS)"
7783         for facet in ${facets//,/ }; do
7784                 local host=$(facet_host $facet)
7785                 [ "$mgs_HOST" == "$host" ] &&
7786                         echo "$host-$(facet_fstype $facet)" \
7787                         >> $EXPECTED_OUTPUT
7788         done
7789
7790         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7791
7792         if [ $? -ne 0 ]; then
7793                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7794                 error "ldev failed to produce the correct output!"
7795         fi
7796
7797         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7798 }
7799 run_test 96 "ldev returns hostname and backend fs correctly in command sub"
7800
7801 test_97() {
7802         if [ -z "$LDEV" ]; then
7803                 error "ldev is missing!"
7804         fi
7805
7806         local LDEVCONFPATH=$TMP/ldev.conf
7807         local NIDSPATH=$TMP/nids
7808
7809         generate_ldev_conf $LDEVCONFPATH
7810         generate_nids $NIDSPATH
7811
7812         local LDEV_OUTPUT=$TMP/ldev-output.txt
7813         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7814
7815         echo -e "\nMDT role"
7816         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mdt > $LDEV_OUTPUT
7817
7818         if [ $? -ne 0 ]; then
7819                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7820                 error "ldev failed to execute for mdt role!"
7821         fi
7822
7823         for num in $(seq $MDSCOUNT); do
7824                 printf "%s-MDT%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7825         done
7826
7827         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7828
7829         if [ $? -ne 0 ]; then
7830                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7831                 error "ldev failed to produce the correct output for mdt role!"
7832         fi
7833
7834         echo -e "\nOST role"
7835         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R ost > $LDEV_OUTPUT
7836
7837         if [ $? -ne 0 ]; then
7838                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7839                 error "ldev failed to execute for ost role!"
7840         fi
7841
7842         rm $EXPECTED_OUTPUT
7843         for num in $(seq $OSTCOUNT); do
7844                 printf "%s-OST%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7845         done
7846
7847         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7848
7849         if [ $? -ne 0 ]; then
7850                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7851                 error "ldev failed to produce the correct output for ost role!"
7852         fi
7853
7854         echo -e "\nMGS role"
7855         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mgs > $LDEV_OUTPUT
7856
7857         if [ $? -ne 0 ]; then
7858                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7859                 error "ldev failed to execute for mgs role!"
7860         fi
7861
7862         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7863
7864         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7865
7866         if [ $? -ne 0 ]; then
7867                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7868                 error "ldev failed to produce the correct output for mgs role!"
7869         fi
7870
7871         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7872 }
7873 run_test 97 "ldev returns correct ouput when querying based on role"
7874
7875 test_98()
7876 {
7877         local mountopt
7878         local temp=$MDS_MOUNT_OPTS
7879
7880         setup
7881         check_mount || error "mount failed"
7882         mountopt="user_xattr"
7883         for ((x = 1; x <= 400; x++)); do
7884                 mountopt="$mountopt,user_xattr"
7885         done
7886         mount_client $MOUNT remount,$mountopt 2>&1 | grep "too long" ||
7887                 error "Buffer overflow check failed"
7888         cleanup || error "cleanup failed"
7889 }
7890 run_test 98 "Buffer-overflow check while parsing mount_opts"
7891
7892 test_99()
7893 {
7894         [[ "$ost1_FSTYPE" != ldiskfs ]] &&
7895                 skip "ldiskfs only test"
7896         [[ "$OST1_VERSION" -ge $(version_code 2.8.57) ]] ||
7897                 skip "Need OST version at least 2.8.57"
7898
7899         local ost_opts="$(mkfs_opts ost1 $(ostdevname 1)) \
7900                 --reformat $(ostdevname 1) $(ostvdevname 1)"
7901         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" &&
7902                 skip "meta_bg already set"
7903
7904         local opts=ost_opts
7905         if [[ ${!opts} != *mkfsoptions* ]]; then
7906                 eval opts=\"${!opts} \
7907                 --mkfsoptions='\\\"-O ^resize_inode,meta_bg\\\"'\"
7908         else
7909                 local val=${!opts//--mkfsoptions=\\\"/ \
7910                 --mkfsoptions=\\\"-O ^resize_inode,meta_bg }
7911                 eval opts='${val}'
7912         fi
7913
7914         echo "params: $opts"
7915
7916         load_modules
7917         add ost1 $opts || error "add ost1 failed with new params"
7918
7919         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" ||
7920                 error "meta_bg is not set"
7921 }
7922 run_test 99 "Adding meta_bg option"
7923
7924 test_100() {
7925         reformat
7926
7927         start_mgsmds || error "MDS start failed"
7928         start_ost || error "unable to start OST"
7929         mount_client $MOUNT || error "client start failed"
7930         check_mount || error "check_mount failed"
7931
7932         # Desired output
7933         # MGS:
7934         #     0@lo
7935         # $FSNAME-MDT0000:
7936         #     0@lo
7937         # $FSNAME-OST0000:
7938         #     0@lo
7939         do_facet mgs 'lshowmount -v' | awk 'BEGIN {NR == 0; rc=1} /MGS:/ {rc=0}
7940                 END {exit rc}' || error "lshowmount have no output MGS"
7941
7942         do_facet mds1 'lshowmount -v' | awk 'BEGIN {NR == 2; rc=1} /-MDT0000:/
7943                 {rc=0} END {exit rc}' || error "lshowmount have no output MDT0"
7944
7945         do_facet ost1 'lshowmount -v' | awk 'BEGIN {NR == 4; rc=1} /-OST0000:/
7946                 {rc=0} END {exit rc}' || error "lshowmount have no output OST0"
7947
7948         cleanup || error "cleanup failed with $?"
7949 }
7950 run_test 100 "check lshowmount lists MGS, MDT, OST and 0@lo"
7951
7952 test_101a() {
7953         local createmany_pid
7954         local dev=$FSNAME-OST0000-osc-MDT0000
7955         setup
7956
7957         mkdir $DIR1/$tdir
7958         createmany -o $DIR1/$tdir/$tfile-%d 50000 &
7959         createmany_pid=$!
7960         # MDT->OST reconnection causes MDT<->OST last_id synchornisation
7961         # via osp_precreate_cleanup_orphans.
7962         for ((i = 0; i < 100; i++)); do
7963                 for ((k = 0; k < 10; k++)); do
7964                         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;" \
7965                                             "$LCTL --device $dev activate"
7966                 done
7967
7968                 ls -asl $MOUNT | grep '???' &&
7969                         { kill -9 $createmany_pid &>/dev/null;
7970                           error "File has no object on OST"; }
7971
7972                 kill -s 0 $createmany_pid || break
7973         done
7974         wait $createmany_pid
7975
7976         unlinkmany $DIR1/$tdir/$tfile-%d 50000
7977         cleanup
7978 }
7979 run_test 101a "Race MDT->OST reconnection with create"
7980
7981 test_101b () {
7982         local dev=$FSNAME-OST0000-osc-MDT0000
7983         local dir=$DIR1/$tdir
7984         setup
7985
7986         mkdir $dir
7987         $LFS setstripe -c 1 -i 0 $dir
7988         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;"
7989 #define OBD_FAIL_OSP_CON_EVENT_DELAY 0x2107
7990         do_facet mds1 "$LCTL set_param fail_loc=0x80002107 fail_val=20"
7991         do_facet $SINGLEMDS "$LCTL --device $dev activate;"
7992         stop_ost
7993         sleep 25
7994         start_ost
7995
7996         wait_osc_import_state client ost1 FULL
7997         touch $dir/$tfile || error "Can't create file"
7998
7999         cleanup
8000 }
8001 run_test 101b "Race events DISCONNECT and ACTIVE in osp"
8002
8003 test_102() {
8004         [[ "$MDS1_VERSION" -gt $(version_code 2.9.53) ]] ||
8005                 skip "Need server version greater than 2.9.53"
8006         [[ “$(mdsdevname 1)” != “$(mgsdevname)” ]] &&
8007                 [[ “$(facet_host mds1)” = “$(facet_host mgs)” ]] &&
8008                 skip "MGS must be on different node or combined"
8009
8010         cleanup || error "cleanup failed with $?"
8011
8012         local mds1dev=$(mdsdevname 1)
8013         local mds1mnt=$(facet_mntpt mds1)
8014         local mds1opts=$MDS_MOUNT_OPTS
8015
8016         if [ "$mds1_FSTYPE" == ldiskfs ] &&
8017            ! do_facet mds1 test -b $mds1dev; then
8018                 mds1opts=$(csa_add "$mds1opts" -o loop)
8019         fi
8020         if [[ "$mds1_FSTYPE" == zfs ]]; then
8021                 import_zpool mds1 || return ${PIPESTATUS[0]}
8022         fi
8023
8024         # unload all and only load libcfs to allow fail_loc setting
8025         do_facet mds1 $LUSTRE_RMMOD || error "unable to unload modules"
8026         do_facet mds1 modprobe libcfs || error "libcfs not loaded"
8027         do_facet mds1 lsmod \| grep libcfs || error "libcfs not loaded"
8028
8029         #define OBD_FAIL_OBDCLASS_MODULE_LOAD    0x60a
8030         do_facet mds1 "$LCTL set_param fail_loc=0x8000060a"
8031
8032         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts &&
8033                 error "mdt start must fail"
8034         do_facet mds1 lsmod \| grep  obdclass && error "obdclass must not load"
8035
8036         do_facet mds1 "$LCTL set_param fail_loc=0x0"
8037
8038         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts ||
8039                 error "mdt start must not fail"
8040
8041         cleanup || error "cleanup failed with $?"
8042 }
8043 run_test 102 "obdclass module cleanup upon error"
8044
8045 test_renamefs() {
8046         local newname=$1
8047
8048         echo "rename $FSNAME to $newname"
8049
8050         if ! combined_mgs_mds ; then
8051                 local dev=$(mgsdevname)
8052
8053                 do_facet mgs \
8054                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8055                                 error "(7) Fail to rename MGS"
8056                 if [ "$(facet_fstype mgs)" = "zfs" ]; then
8057                         reimport_zpool mgs $newname-mgs
8058                 fi
8059         fi
8060
8061         for num in $(seq $MDSCOUNT); do
8062                 local dev=$(mdsdevname $num)
8063
8064                 do_facet mds${num} \
8065                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8066                                 error "(8) Fail to rename MDT $num"
8067                 if [ "$(facet_fstype mds${num})" = "zfs" ]; then
8068                         reimport_zpool mds${num} $newname-mdt${num}
8069                 fi
8070         done
8071
8072         for num in $(seq $OSTCOUNT); do
8073                 local dev=$(ostdevname $num)
8074
8075                 do_facet ost${num} \
8076                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8077                                 error "(9) Fail to rename OST $num"
8078                 if [ "$(facet_fstype ost${num})" = "zfs" ]; then
8079                         reimport_zpool ost${num} $newname-ost${num}
8080                 fi
8081         done
8082 }
8083
8084 test_103_set_pool() {
8085         local pname=$1
8086         local ost_x=$2
8087
8088         do_facet mgs $LCTL pool_add $FSNAME.$pname ${FSNAME}-$ost_x ||
8089                 error "Fail to add $ost_x to $FSNAME.$pname"
8090         wait_update $HOSTNAME \
8091                 "lctl get_param -n lov.$FSNAME-clilov-*.pools.$pname |
8092                  grep $ost_x" "$FSNAME-${ost_x}_UUID" ||
8093                 error "$ost_x is NOT in pool $FSNAME.$pname"
8094 }
8095
8096 test_103_check_pool() {
8097         local save_fsname=$1
8098         local errno=$2
8099
8100         stat $DIR/$tdir/test-framework.sh ||
8101                 error "($errno) Fail to stat"
8102         do_facet mgs $LCTL pool_list $FSNAME.pool1 ||
8103                 error "($errno) Fail to list $FSNAME.pool1"
8104         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname ||
8105                 error "($errno) Fail to list $FSNAME.$save_fsname"
8106         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname |
8107                 grep ${FSNAME}-OST0000 ||
8108                 error "($errno) List $FSNAME.$save_fsname is invalid"
8109
8110         local pname=$($LFS getstripe --pool $DIR/$tdir/d0)
8111         [ "$pname" = "$save_fsname" ] ||
8112                 error "($errno) Unexpected pool name $pname"
8113 }
8114
8115 test_103() {
8116         check_mount_and_prep
8117         rm -rf $DIR/$tdir
8118         mkdir $DIR/$tdir || error "(1) Fail to mkdir $DIR/$tdir"
8119         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir ||
8120                 error "(2) Fail to copy test-framework.sh"
8121
8122         do_facet mgs $LCTL pool_new $FSNAME.pool1 ||
8123                 error "(3) Fail to create $FSNAME.pool1"
8124         # name the pool name as the fsname
8125         do_facet mgs $LCTL pool_new $FSNAME.$FSNAME ||
8126                 error "(4) Fail to create $FSNAME.$FSNAME"
8127
8128         test_103_set_pool $FSNAME OST0000
8129
8130         $LFS setstripe -p $FSNAME $DIR/$tdir/d0 ||
8131                 error "(6) Fail to setstripe on $DIR/$tdir/d0"
8132
8133         KEEP_ZPOOL=true
8134         stopall
8135
8136         test_renamefs mylustre
8137
8138         local save_fsname=$FSNAME
8139         FSNAME="mylustre"
8140         setupall
8141
8142         test_103_check_pool $save_fsname 7
8143
8144         if [ $OSTCOUNT -ge 2 ]; then
8145                 test_103_set_pool $save_fsname OST0001
8146         fi
8147
8148         $LFS setstripe -p $save_fsname $DIR/$tdir/f0 ||
8149                 error "(16) Fail to setstripe on $DIR/$tdir/f0"
8150
8151         stopall
8152
8153         test_renamefs tfs
8154
8155         FSNAME="tfs"
8156         setupall
8157
8158         test_103_check_pool $save_fsname 17
8159
8160         stopall
8161
8162         test_renamefs $save_fsname
8163
8164         FSNAME=$save_fsname
8165         setupall
8166         KEEP_ZPOOL=false
8167 }
8168 run_test 103 "rename filesystem name"
8169
8170 test_104a() { # LU-6952
8171         local mds_mountopts=$MDS_MOUNT_OPTS
8172         local ost_mountopts=$OST_MOUNT_OPTS
8173         local mds_mountfsopts=$MDS_MOUNT_FS_OPTS
8174         local lctl_ver=$(do_facet $SINGLEMDS $LCTL --version |
8175                         awk '{ print $2 }')
8176
8177         [[ $(version_code $lctl_ver) -lt $(version_code 2.9.55) ]] &&
8178                 skip "this test needs utils above 2.9.55"
8179
8180         # specify "acl" in mount options used by mkfs.lustre
8181         if [ -z "$MDS_MOUNT_FS_OPTS" ]; then
8182                 MDS_MOUNT_FS_OPTS="acl,user_xattr"
8183         else
8184
8185                 MDS_MOUNT_FS_OPTS="${MDS_MOUNT_FS_OPTS},acl,user_xattr"
8186         fi
8187
8188         echo "mountfsopt: $MDS_MOUNT_FS_OPTS"
8189
8190         #reformat/remount the MDT to apply the MDT_MOUNT_FS_OPT options
8191         formatall
8192         if ! combined_mgs_mds ; then
8193                 start_mgs
8194         fi
8195
8196         if [ -z "$MDS_MOUNT_OPTS" ]; then
8197                 MDS_MOUNT_OPTS="-o noacl"
8198         else
8199                 MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
8200         fi
8201
8202         for num in $(seq $MDSCOUNT); do
8203                 start mds$num $(mdsdevname $num) $MDS_MOUNT_OPTS ||
8204                         error "Failed to start MDS"
8205         done
8206
8207         for num in $(seq $OSTCOUNT); do
8208                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
8209                         error "Failed to start OST"
8210         done
8211
8212         mount_client $MOUNT
8213         setfacl -m "d:$RUNAS_ID:rwx" $MOUNT &&
8214                 error "ACL is applied when FS is mounted with noacl."
8215
8216         MDS_MOUNT_OPTS=$mds_mountopts
8217         OST_MOUNT_OPTS=$ost_mountopts
8218         MDS_MOUNT_FS_OPTS=$mds_mountfsopts
8219 }
8220 run_test 104a "Make sure user defined options are reflected in mount"
8221
8222 test_104b() { # LU-12859
8223         mount_client $MOUNT3 flock,localflock
8224         stack_trap "umount_client $MOUNT3" EXIT
8225         mount | grep "$MOUNT3 .*,flock" && error "flock is still set"
8226         mount | grep "$MOUNT3 .*,localflock" || error "localflock is not set"
8227         umount_client $MOUNT3
8228         mount_client $MOUNT3 localflock,flock
8229         mount | grep "$MOUNT3 .*,localflock" && error "localflock is still set"
8230         mount | grep "$MOUNT3 .*,flock" || error "flock is not set"
8231         umount_client $MOUNT3
8232         mount_client $MOUNT3 localflock,flock,noflock
8233         flock_is_enabled $MOUNT3 && error "some flock is still enabled" || true
8234 }
8235 run_test 104b "Mount uses last flock argument"
8236
8237 error_and_umount() {
8238         umount $TMP/$tdir
8239         rmdir $TMP/$tdir
8240         error $*
8241 }
8242
8243 test_105() {
8244         cleanup -f
8245         reformat
8246         setup_noconfig
8247         mkdir -p $TMP/$tdir
8248         mount --bind $DIR $TMP/$tdir || error "mount bind mnt pt failed"
8249         rm -f $TMP/$tdir/$tfile
8250         rm -f $TMP/$tdir/${tfile}1
8251
8252         # Files should not be created in ro bind mount point
8253         # remounting from rw to ro
8254         mount -o remount,ro $TMP/$tdir ||
8255                 error_and_umount "readonly remount of bind mnt pt failed"
8256         touch $TMP/$tdir/$tfile &&
8257                 error_and_umount "touch succeeds on ro bind mnt pt"
8258         [ -e $TMP/$tdir/$tfile ] &&
8259                 error_and_umount "file created on ro bind mnt pt"
8260
8261         # Files should be created in rw bind mount point
8262         # remounting from ro to rw
8263         mount -o remount,rw $TMP/$tdir ||
8264                 error_and_umount "read-write remount of bind mnt pt failed"
8265         touch $TMP/$tdir/${tfile}1 ||
8266                 error_and_umount "touch fails on rw bind mnt pt"
8267         [ -e $TMP/$tdir/${tfile}1 ] ||
8268                 error_and_umount "file not created on rw bind mnt pt"
8269         umount $TMP/$tdir || error "umount of bind mnt pt failed"
8270         rmdir $TMP/$tdir
8271         cleanup || error "cleanup failed with $?"
8272 }
8273 run_test 105 "check file creation for ro and rw bind mnt pt"
8274
8275 test_106() {
8276         local repeat=5
8277
8278         reformat
8279         setup_noconfig
8280         mkdir -p $DIR/$tdir || error "create $tdir failed"
8281         lfs setstripe -c 1 -i 0 $DIR/$tdir
8282 #define OBD_FAIL_CAT_RECORDS                        0x1312
8283         do_facet mds1 $LCTL set_param fail_loc=0x1312 fail_val=$repeat
8284
8285         for ((i = 1; i <= $repeat; i++)); do
8286
8287                 #one full plain llog
8288                 createmany -o $DIR/$tdir/f- 64768
8289
8290                 createmany -u $DIR/$tdir/f- 64768
8291         done
8292         wait_delete_completed $((TIMEOUT * 7))
8293 #ASSERTION osp_sync_thread() ( thread->t_flags != SVC_RUNNING ) failed
8294 #shows that osp code is buggy
8295         do_facet mds1 $LCTL set_param fail_loc=0 fail_val=0
8296
8297         cleanup
8298 }
8299 run_test 106 "check osp llog processing when catalog is wrapped"
8300
8301 test_107() {
8302         [[ "$MDS1_VERSION" -ge $(version_code 2.10.50) ]] ||
8303                 skip "Need MDS version > 2.10.50"
8304         local cmd
8305
8306         start_mgsmds || error "start_mgsmds failed"
8307         start_ost || error "unable to start OST"
8308
8309         # add unknown configuration parameter.
8310         if [[ $PERM_CMD == *"set_param -P"* ]]; then
8311                 cmd="$PERM_CMD ost.$FSNAME-OST0000*.unknown_param"
8312         else
8313                 cmd="$PERM_CMD $FSNAME-OST0000*.ost.unknown_param"
8314         fi
8315         do_facet mgs "$cmd=50"
8316         cleanup_nocli || error "cleanup_nocli failed with $?"
8317         load_modules
8318
8319         # unknown param should be ignored while mounting.
8320         start_ost || error "unable to start OST after unknown param set"
8321
8322         cleanup || error "cleanup failed with $?"
8323 }
8324 run_test 107 "Unknown config param should not fail target mounting"
8325
8326 t_108_prep() {
8327         local facet
8328
8329         $rcmd rm -rf $tmp > /dev/null 2>&1
8330         $rcmd mkdir -p $tmp/{mnt,images} || error "failed to mkdir remotely"
8331
8332         for facet in $facets; do
8333                 [ "$mds1_FSTYPE" = zfs ] &&
8334                         $rcmd $ZPOOL -f export lustre-$facet > /dev/null 2>&1
8335                 $rcmd mkdir $tmp/mnt/$facet ||
8336                         error "failed to mkdir $tmp/mnt/$facet"
8337                 $rcmd dd if=/dev/zero of=$tmp/images/$facet \
8338                         seek=199 bs=1M count=1 ||
8339                         error "failed to create $tmp/images/$facet"
8340         done
8341 }
8342
8343 t_108_mkfs() {
8344         local role=$1
8345         local idx=$2
8346         local bkfs=$3
8347         local mgs=$4
8348         local facet=${role}$((idx + 1))
8349         local pool=""
8350         [ $# -eq 5 ] && pool=$5
8351
8352         do_facet $SINGLEMDS $MKFS --fsname=lustre --$mgs \
8353                 --$role --index=$idx --replace --backfstype=$bkfs \
8354                 --device-size=200000 --reformat $pool $tmp/images/$facet ||
8355                 error "failed to mkfs for $facet"
8356 }
8357
8358 t_108_check() {
8359         echo "mounting client..."
8360         mount -t lustre ${nid}:/lustre $MOUNT ||
8361                 error "failed to mount lustre"
8362
8363         echo "check list"
8364         ls -l $MOUNT/local_dir || error "failed to list"
8365
8366         echo "check truncate && write"
8367         echo "dummmmmmmmmmmmm" > $MOUNT/remote_dir/fsx.c ||
8368                 error "failed to tuncate & write"
8369
8370         echo "check create"
8371         touch $MOUNT/foooo ||
8372                 error "failed to create"
8373
8374         echo "check read && write && append"
8375         sha1sum $MOUNT/conf-sanity.sh |
8376                 awk '{ print $1 }' > $MOUNT/checksum.new ||
8377                 error "failed to read(1)"
8378         sha1sum $MOUNT/remote_dir/unlinkmany.c |
8379                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
8380                 error "failed to read(2)"
8381         sha1sum $MOUNT/striped_dir/lockahead_test.o |
8382                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
8383                 error "failed to read(3)"
8384
8385         echo "verify data"
8386         diff $MOUNT/checksum.new $MOUNT/checksum.src ||
8387                 error "failed to verify data"
8388
8389         echo "done."
8390 }
8391
8392 t_108_cleanup() {
8393         trap 0
8394         local facet
8395
8396         echo "cleanup..."
8397         umount -f $MOUNT || error "failed to umount client"
8398         for facet in $facets; do
8399                 $rcmd umount -f $tmp/mnt/$facet ||
8400                         error "failed to umount $facet"
8401                 if [ "$mds1_FSTYPE" = zfs ]; then
8402                         $rcmd $ZPOOL export -f lustre-$facet ||
8403                                 error "failed to export lustre-$facet"
8404                 fi
8405         done
8406
8407         $rcmd rm -rf $tmp || error "failed to rm the dir $tmp"
8408 }
8409
8410 test_108a() {
8411         [ "$CLIENTONLY" ] && skip "Client-only testing"
8412         [ "$mds1_FSTYPE" != zfs ] && skip "zfs only test"
8413         [ "$MDS1_VERSION" -lt $(version_code 2.10.58) ] &&
8414                 skip "Need server version at least 2.10.58"
8415
8416         stopall
8417         load_modules
8418
8419         local tmp=$TMP/$tdir
8420         local rcmd="do_facet $SINGLEMDS"
8421         local facets="mdt1 mdt2 ost1 ost2"
8422         local nid=$($rcmd $LCTL list_nids | head -1)
8423         local facet
8424
8425         trap t_108_cleanup EXIT ERR
8426         t_108_prep
8427
8428         t_108_mkfs mdt 0 zfs mgs lustre-mdt1/mdt1
8429         t_108_mkfs mdt 1 zfs mgsnode=$nid lustre-mdt2/mdt2
8430         t_108_mkfs ost 0 zfs mgsnode=$nid lustre-ost1/ost1
8431         t_108_mkfs ost 1 zfs mgsnode=$nid lustre-ost2/ost2
8432
8433         for facet in $facets; do
8434                 $rcmd zfs set mountpoint=$tmp/mnt/$facet canmount=on \
8435                         lustre-$facet/$facet ||
8436                         error "failed to zfs set for $facet (1)"
8437                 $rcmd zfs mount lustre-$facet/$facet ||
8438                         error "failed to local mount $facet"
8439                 $rcmd tar jxf $LUSTRE/tests/ldiskfs_${facet}_2_11.tar.bz2 \
8440                         --xattrs --xattrs-include="trusted.*" \
8441                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
8442                         error "failed to untar image for $facet"
8443                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
8444                         error "failed to cleanup for $facet"
8445                 $rcmd zfs umount lustre-$facet/$facet ||
8446                         error "failed to local umount $facet"
8447                 $rcmd zfs set canmount=off lustre-$facet/$facet ||
8448                         error "failed to zfs set $facet (2)"
8449         done
8450
8451         echo "changing server nid..."
8452         $rcmd mount -t lustre -o nosvc lustre-mdt1/mdt1 $tmp/mnt/mdt1
8453         $rcmd lctl replace_nids $FSNAME-MDT0000 $nid
8454         $rcmd lctl replace_nids $FSNAME-MDT0001 $nid
8455         $rcmd lctl replace_nids $FSNAME-OST0000 $nid
8456         $rcmd lctl replace_nids $FSNAME-OST0001 $nid
8457         $rcmd umount $tmp/mnt/mdt1
8458
8459         for facet in $facets; do
8460                 echo "mounting $facet from backup..."
8461                 $rcmd mount -t lustre -o abort_recov lustre-$facet/$facet \
8462                         $tmp/mnt/$facet || error "failed to mount $facet"
8463         done
8464
8465         # ZFS backend can detect migration and trigger OI scrub automatically
8466         # sleep 3 seconds for scrub done
8467         sleep 3
8468
8469         t_108_check
8470         t_108_cleanup
8471 }
8472 run_test 108a "migrate from ldiskfs to ZFS"
8473
8474 test_108b() {
8475         [ "$CLIENTONLY" ] && skip "Client-only testing"
8476         [ "$mds1_FSTYPE" != ldiskfs ] && skip "ldiskfs only test"
8477         [ "$MDS1_VERSION" -lt $(version_code 2.10.58) ] &&
8478                 skip "Need server version at least 2.10.58"
8479
8480         stopall
8481         load_modules
8482
8483         local tmp=$TMP/$tdir
8484         local rcmd="do_facet $SINGLEMDS"
8485         local facets="mdt1 mdt2 ost1 ost2"
8486         local scrub_list="MDT0000 MDT0001 OST0000 OST0001"
8487         local nid=$($rcmd $LCTL list_nids | head -1)
8488         local facet
8489
8490         trap t_108_cleanup EXIT ERR
8491         t_108_prep
8492
8493         t_108_mkfs mdt 0 ldiskfs mgs
8494         t_108_mkfs mdt 1 ldiskfs mgsnode=$nid
8495         t_108_mkfs ost 0 ldiskfs mgsnode=$nid
8496         t_108_mkfs ost 1 ldiskfs mgsnode=$nid
8497
8498         for facet in $facets; do
8499                 $rcmd mount -t ldiskfs -o loop $tmp/images/$facet \
8500                         $tmp/mnt/$facet ||
8501                         error "failed to local mount $facet"
8502
8503                 $rcmd tar jxf $LUSTRE/tests/zfs_${facet}_2_11.tar.bz2 \
8504                         --xattrs --xattrs-include="*.*" \
8505                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
8506                         error "failed to untar image for $facet"
8507                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
8508                         error "failed to cleanup for $facet"
8509                 $rcmd umount $tmp/mnt/$facet ||
8510                         error "failed to local umount $facet"
8511         done
8512
8513         echo "changing server nid..."
8514         $rcmd mount -t lustre -o nosvc,loop $tmp/images/mdt1 $tmp/mnt/mdt1
8515         $rcmd lctl replace_nids $FSNAME-MDT0000 $nid
8516         $rcmd lctl replace_nids $FSNAME-MDT0001 $nid
8517         $rcmd lctl replace_nids $FSNAME-OST0000 $nid
8518         $rcmd lctl replace_nids $FSNAME-OST0001 $nid
8519         $rcmd umount $tmp/mnt/mdt1
8520
8521         for facet in $facets; do
8522                 echo "mounting $facet from backup..."
8523                 $rcmd mount -t lustre -o loop,abort_recov $tmp/images/$facet \
8524                         $tmp/mnt/$facet || error "failed to mount $facet"
8525         done
8526
8527         for facet in $scrub_list; do
8528                 $rcmd $LCTL lfsck_start -M $FSNAME-$facet -t scrub ||
8529                         error "failed to start OI scrub on $facet"
8530         done
8531
8532         # sleep 3 seconds for scrub done
8533         sleep 3
8534
8535         t_108_check
8536         t_108_cleanup
8537 }
8538 run_test 108b "migrate from ZFS to ldiskfs"
8539
8540 #
8541 # set number of permanent parameters
8542 #
8543 test_109_set_params() {
8544         local fsname=$1
8545
8546         set_persistent_param_and_check mds                          \
8547             "mdd.$fsname-MDT0000.atime_diff"                        \
8548             "$fsname-MDT0000.mdd.atime_diff"                        \
8549             "62"
8550         set_persistent_param_and_check mds                          \
8551             "mdd.$fsname-MDT0000.atime_diff"                        \
8552             "$fsname-MDT0000.mdd.atime_diff"                        \
8553             "63"
8554         set_persistent_param_and_check client                       \
8555             "llite.$fsname*.max_read_ahead_mb"                      \
8556             "$fsname.llite.max_read_ahead_mb"                       \
8557             "32"
8558         set_persistent_param_and_check client                       \
8559             "llite.$fsname*.max_read_ahead_mb"                      \
8560             "$fsname.llite.max_read_ahead_mb"                       \
8561             "64"
8562         create_pool $fsname.pool1 || error "create pool failed"
8563         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
8564                 error "pool_add failed"
8565         do_facet mgs $LCTL pool_remove $fsname.pool1 OST0000 ||
8566                 error "pool_remove failed"
8567         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
8568                 error "pool_add failed"
8569 }
8570
8571 #
8572 # check permanent parameters
8573 #
8574 test_109_test_params() {
8575         local fsname=$1
8576
8577         local atime_diff=$(do_facet mds $LCTL \
8578                 get_param -n mdd.$fsname-MDT0000.atime_diff)
8579         [ $atime_diff == 63 ] || error "wrong mdd parameter after clear_conf"
8580         local max_read_ahead_mb=$(do_facet client $LCTL \
8581                 get_param -n llite.$fsname*.max_read_ahead_mb)
8582         [ $max_read_ahead_mb == 64 ] ||
8583                 error "wrong llite parameter after clear_conf"
8584         local ost_in_pool=$(do_facet mds $LCTL pool_list $fsname.pool1 |
8585                 grep -v "^Pool:" | sed 's/_UUID//')
8586         [ $ost_in_pool = "$fsname-OST0000" ] ||
8587                 error "wrong pool after clear_conf"
8588 }
8589
8590 #
8591 # run lctl clear_conf, store CONFIGS before and after that
8592 #
8593 test_109_clear_conf()
8594 {
8595         local clear_conf_arg=$1
8596
8597         local mgsdev
8598         if ! combined_mgs_mds ; then
8599                 mgsdev=$(mgsdevname)
8600                 stop_mgs || error "stop_mgs failed"
8601                 start_mgs "-o nosvc" || error "start_mgs nosvc failed"
8602         else
8603                 mgsdev=$(mdsdevname 1)
8604                 start_mdt 1 "-o nosvc" || error "start_mdt 1 nosvc failed"
8605         fi
8606
8607         do_facet mgs "rm -rf $TMP/${tdir}/conf1; mkdir -p $TMP/${tdir}/conf1;" \
8608                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf1\\\" \
8609                 $mgsdev"
8610
8611         #
8612         # the command being tested
8613         #
8614         do_facet mgs $LCTL clear_conf $clear_conf_arg ||
8615                 error "clear_conf failed"
8616         if ! combined_mgs_mds ; then
8617                 stop_mgs || error "stop_mgs failed"
8618         else
8619                 stop_mdt 1 || error "stop_mdt 1 failed"
8620         fi
8621
8622         do_facet mgs "rm -rf $TMP/${tdir}/conf2; mkdir -p $TMP/${tdir}/conf2;" \
8623                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf2\\\" \
8624                 $mgsdev"
8625 }
8626
8627 test_109_file_shortened() {
8628         local file=$1
8629         local sizes=($(do_facet mgs "stat -c %s " \
8630                 "$TMP/${tdir}/conf1/CONFIGS/$file" \
8631                 "$TMP/${tdir}/conf2/CONFIGS/$file"))
8632         [ ${sizes[1]} -lt ${sizes[0]} ] && return 0
8633         return 1
8634 }
8635
8636 test_109a()
8637 {
8638         [ $MDS1_VERSION -lt $(version_code 2.10.59) ] &&
8639                 skip "Needs MDS version 2.10.59 or later."
8640         [ "$(facet_fstype mgs)" == zfs ] &&
8641                 skip "LU-8727: no implementation for ZFS"
8642
8643         stopall
8644         reformat
8645         setup_noconfig
8646         client_up || error "client_up failed"
8647
8648         #
8649         # set number of permanent parameters
8650         #
8651         test_109_set_params $FSNAME
8652
8653         umount_client $MOUNT || error "umount_client failed"
8654         stop_ost || error "stop_ost failed"
8655         stop_mds || error "stop_mds failed"
8656
8657         test_109_clear_conf $FSNAME
8658         #
8659         # make sure that all configs are cleared
8660         #
8661         test_109_file_shortened $FSNAME-MDT0000 ||
8662                 error "failed to clear MDT0000 config"
8663         test_109_file_shortened $FSNAME-client ||
8664                 error "failed to clear client config"
8665
8666         setup_noconfig
8667
8668         #
8669         # check that configurations are intact
8670         #
8671         test_109_test_params $FSNAME
8672
8673         #
8674         # Destroy pool.
8675         #
8676         destroy_test_pools || error "destroy test pools failed"
8677
8678         cleanup
8679 }
8680 run_test 109a "test lctl clear_conf fsname"
8681
8682 test_109b()
8683 {
8684         [ $MDS1_VERSION -lt $(version_code 2.10.59) ] &&
8685                 skip "Needs MDS version 2.10.59 or later."
8686         [ "$(facet_fstype mgs)" == zfs ] &&
8687                 skip "LU-8727: no implementation for ZFS"
8688
8689         stopall
8690         reformat
8691         setup_noconfig
8692         client_up || error "client_up failed"
8693
8694         #
8695         # set number of permanent parameters
8696         #
8697         test_109_set_params $FSNAME
8698
8699         umount_client $MOUNT || error "umount_client failed"
8700         stop_ost || error "stop_ost failed"
8701         stop_mds || error "stop_mds failed"
8702
8703         test_109_clear_conf $FSNAME-MDT0000
8704         #
8705         # make sure that only one config is cleared
8706         #
8707         test_109_file_shortened $FSNAME-MDT0000 ||
8708                 error "failed to clear MDT0000 config"
8709         test_109_file_shortened $FSNAME-client &&
8710                 error "failed to clear client config"
8711
8712         setup_noconfig
8713         #
8714         # check that configurations are intact
8715         #
8716         test_109_test_params $FSNAME
8717
8718         #
8719         # Destroy pool.
8720         #
8721         destroy_test_pools || error "destroy test pools failed"
8722
8723         cleanup
8724 }
8725 run_test 109b "test lctl clear_conf one config"
8726
8727 test_110()
8728 {
8729         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
8730                 skip "Only applicable to ldiskfs-based MDTs"
8731
8732         do_facet $SINGLEMDS $DEBUGFS -w -R supported_features |grep large_dir ||
8733                 skip "large_dir option is not supported on MDS"
8734         do_facet ost1 $DEBUGFS -w -R supported_features | grep large_dir ||
8735                 skip "large_dir option is not supported on OSS"
8736
8737         stopall # stop all targets before modifying the target counts
8738         local old_mdscount=$MDSCOUNT
8739         local old_ostcount=$OSTCOUNT
8740         local replace=""
8741         stack_trap "MDSCOUNT=$old_mdscount OSTCOUNT=$old_ostcount; reformat"
8742         MDSCOUNT=1
8743         OSTCOUNT=1
8744
8745         # ext4_dir_entry_2 struct size:264
8746         # dx_root struct size:8
8747         # dx_node struct size:8
8748         # dx_entry struct size:8
8749         # For 1024 bytes block size.
8750         # First level directory entries: 126
8751         # Second level directory entries: 127
8752         # Entries in leaf: 3
8753         # For 2 levels limit: 48006
8754         # For 3 levels limit : 6096762
8755         # Create 80000 files to safely exceed 2-level htree limit.
8756         CONF_SANITY_110_LINKS=${CONF_SANITY_110_LINKS:-80000}
8757
8758         # can fit at most 3 filenames per 1KB leaf block, but each
8759         # leaf/index block will only be 3/4 full before split at each level
8760         (( MDSSIZE < CONF_SANITY_110_LINKS / 3 * 4/3 * 4/3 )) &&
8761                 CONF_SANITY_110_LINKS=$((MDSSIZE * 3 * 3/4 * 3/4))
8762
8763         combined_mgs_mds || replace=" --replace "
8764         local opts="$(mkfs_opts mds1 $(mdsdevname 1)) \
8765                     $replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
8766         if [[ $opts != *large_dir* ]]; then
8767                 if [[ $opts != *mkfsoptions* ]]; then
8768                         opts+=" --mkfsoptions=\\\"-O large_dir -b 1024 -i 65536\\\""
8769                 else
8770                         opts="${opts//--mkfsoptions=\\\"/ \
8771                                 --mkfsoptions=\\\"-O large_dir -b 1024 -i 65536 }"
8772                 fi
8773         fi
8774         echo "MDT params: $opts"
8775         load_modules
8776         combined_mgs_mds || start_mgs
8777         add mds1 $opts || error "add mds1 failed with new params"
8778         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
8779
8780         opts="$(mkfs_opts ost1 $(ostdevname 1)) \
8781                 $replace --reformat $(ostdevname 1) $(ostvdevname 1)"
8782
8783         if [[ $opts != *large_dir* ]]; then
8784                 if [[ $opts != *mkfsoptions* ]]; then
8785                         opts+=" --mkfsoptions=\\\"-O large_dir\\\" "
8786                 else
8787                         opts="${opts//--mkfsoptions=\\\"/ \
8788                                 --mkfsoptions=\\\"-O large_dir }"
8789                 fi
8790         fi
8791         echo "OST params: $opts"
8792         add ost1 $opts || error "add ost1 failed with new params"
8793         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
8794
8795         MOUNT_2=yes mountcli || error "mount clients failed"
8796
8797         mkdir -v $DIR/$tdir || error "cannot create $DIR/$tdir"
8798         local pids count=0 group=0
8799
8800         echo "creating $CONF_SANITY_110_LINKS in total"
8801         while (( count < CONF_SANITY_110_LINKS )); do
8802                 local len=$((253 - $(wc -c <<<"$tfile-$group-40000-")))
8803                 local dir=DIR$((group % 2 + 1))
8804                 local target=${!dir}/$tdir/$tfile-$group
8805                 local long=$target-$(generate_name $len)-
8806                 local create=$((CONF_SANITY_110_LINKS - count))
8807
8808                 (( create > 40000 )) && create=40000
8809                 touch $target || error "creating $target failed"
8810                 echo "creating $create hard links to $target"
8811                 createmany -l $target $long $create &
8812                 pids+=" $!"
8813
8814                 count=$((count + create))
8815                 group=$((group + 1))
8816         done
8817         echo "waiting for PIDs$pids to complete"
8818         wait $pids || error "createmany failed after $group groups"
8819
8820         umount_client $MOUNT2 -f
8821         cleanup
8822
8823         run_e2fsck $(facet_active_host mds1) $(mdsdevname 1) -n
8824         MDSCOUNT=$old_mdscount
8825         OSTCOUNT=$old_ostcount
8826 }
8827 run_test 110 "Adding large_dir with 3-level htree"
8828
8829 test_111() {
8830         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
8831                 skip "Only applicable to ldiskfs-based MDTs"
8832
8833         is_dm_flakey_dev $SINGLEMDS $(mdsdevname 1) &&
8834                 skip "This test can not be executed on flakey dev"
8835
8836         do_facet $SINGLEMDS $DEBUGFS -w -R supported_features |grep large_dir ||
8837                 skip "large_dir option is not supported on MDS"
8838
8839         do_facet ost1 $DEBUGFS -w -R supported_features | grep large_dir ||
8840                 skip "large_dir option is not supported on OSS"
8841
8842         # cleanup before changing target counts
8843         cleanup
8844         local old_mdscount=$MDSCOUNT
8845         local old_ostcount=$OSTCOUNT
8846         local old_mdssize=$MDSSIZE
8847         local replace=""
8848         stack_trap "MDSSIZE=$old_mdssize MDSCOUNT=$old_mdscount \
8849                     OSTCOUNT=$old_ostcount; reformat"
8850         MDSCOUNT=1
8851         OSTCOUNT=1
8852         (( MDSSIZE < 2400000 )) && MDSSIZE=2400000 # need at least 2.4GB
8853
8854         local mdsdev=$(mdsdevname 1)
8855         combined_mgs_mds || replace=" --replace "
8856         local opts="$(mkfs_opts mds1 $(mdsdevname 1)) \
8857                     $replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
8858         if [[ $opts != *large_dir* ]]; then
8859                 if [[ $opts != *mkfsoptions* ]]; then
8860                         opts+=" --mkfsoptions=\\\"-O large_dir -i 1048576 \\\" "
8861                 else
8862                         opts="${opts//--mkfsoptions=\\\"/ \
8863                                 --mkfsoptions=\\\"-O large_dir -i 1048576 }"
8864                 fi
8865         fi
8866         echo "MDT params: $opts"
8867         load_modules
8868         combined_mgs_mds || start_mgs
8869         __touch_device mds 1
8870         add mds1 $opts || error "add mds1 failed with new params"
8871         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
8872
8873         opts="$(mkfs_opts ost1 $(ostdevname 1)) \
8874                 $replace --reformat $(ostdevname 1) $(ostvdevname 1)"
8875         if [[ $opts != *large_dir* ]]; then
8876                 if [[ $opts != *mkfsoptions* ]]; then
8877                         opts+=" --mkfsoptions=\\\"-O large_dir \\\""
8878                 else
8879                         opts="${opts//--mkfsoptions=\\\"/ --mkfsoptions=\\\"-O large_dir }"
8880                 fi
8881         fi
8882         echo "OST params: $opts"
8883         __touch_device ost 1
8884         add ost1 $opts || error "add ost1 failed with new params"
8885         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
8886
8887         MOUNT_2=yes mountcli
8888         mkdir $DIR/$tdir || error "cannot create $DIR/$tdir"
8889         lfs df $DIR/$tdir
8890         lfs df -i $DIR/$tdir
8891
8892         local group=0
8893
8894         local start=$SECONDS
8895         local dirsize=0
8896         local dirmax=$((2 << 30))
8897         local needskip=0
8898         local taken=0
8899         local rate=0
8900         local left=0
8901         local num=0
8902         while (( !needskip & dirsize < dirmax )); do
8903                 local pids=""
8904
8905                 for cli in ${CLIENTS//,/ }; do
8906                         local len=$((253 - $(wc -c <<<"$cli-$group-60000-")))
8907                         local target=$cli-$group
8908                         local long=$DIR/$tdir/$target-$(generate_name $len)-
8909
8910                         RPWD=$DIR/$tdir do_node $cli touch $target ||
8911                                 error "creating $target failed"
8912                         echo "creating 60000 hardlinks to $target"
8913                         RPWD=$DIR/$tdir do_node $cli createmany -l $target $long 60000 &
8914                         pids+=" $!"
8915
8916                         group=$((group + 1))
8917                         target=$cli-$group
8918                         long=$DIR2/$tdir/$target-$(generate_name $len)-
8919
8920                         RPWD=$DIR2/$tdir do_node $cli touch $target ||
8921                                 error "creating $target failed"
8922                         echo "creating 60000 hardlinks to $target"
8923                         RPWD=$DIR2/$tdir do_node $cli createmany -l $target $long 60000 &
8924                         pids+=" $!"
8925
8926                         group=$((group + 1))
8927                 done
8928                 echo "waiting for PIDs$pids to complete"
8929                 wait $pids || error "createmany failed after $group groups"
8930                 dirsize=$(stat -c %s $DIR/$tdir)
8931                 taken=$((SECONDS - start))
8932                 rate=$((dirsize / taken))
8933                 left=$(((dirmax - dirsize) / rate))
8934                 num=$((group * 60000))
8935                 echo "estimate ${left}s left after $num files / ${taken}s"
8936                 # if the estimated time remaining is too large (it may change
8937                 # over time as the create rate is not constant) then exit
8938                 # without declaring a failure.
8939                 (( left > 1200 )) && needskip=1
8940         done
8941
8942         umount_client $MOUNT2 -f
8943         cleanup
8944
8945         ! (( $needskip )) ||
8946                 echo "ETA ${left}s after $num files / ${taken}s is too long"
8947
8948         run_e2fsck $(facet_active_host mds1) $(mdsdevname 1) -n
8949         MDSCOUNT=$old_mdscount
8950         OSTCOUNT=$old_ostcount
8951         MDSSIZE=$old_mdssize
8952 }
8953 run_test 111 "Adding large_dir with over 2GB directory"
8954
8955 test_112() {
8956         start_mds || error "MDS start failed"
8957         start_ost || error "OSS start failed"
8958         echo "start ost2 service on $(facet_active_host ost2)"
8959         start ost2 $(ostdevname 2) $(csa_add "$OST_MOUNT_OPTS" -o no_precreate) ||
8960                 error "start ost2 facet failed"
8961         local val=$(do_facet ost2 \
8962                    "$LCTL get_param -n obdfilter.$FSNAME-OST0001*.no_precreate")
8963         (( $val == 1 )) || error "obdfilter.$FSNAME-OST0001*.no_precreate=$val"
8964
8965         mount_client $MOUNT || error "mount client failed"
8966         wait_osc_import_state mds1 ost1 FULL
8967         wait_osc_import_state client ost1 FULL
8968         wait_osc_import_state client ost2 FULL
8969
8970         $LFS setstripe -i 0 $DIR/$tfile.0 ||
8971                 error "problem creating $tfile.0 on OST0000"
8972         $LFS setstripe -i 1 $DIR/$tfile.1 && $LFS getstripe $DIR/$tfile.1 &&
8973                 (( $($LFS getstripe -i $DIR/$tfile.1) == 1 )) &&
8974                 error "allowed to create $tfile.1 on OST0001"
8975         do_facet ost2 $LCTL set_param obdfilter.*.no_precreate=0
8976         sleep_maxage
8977         $LFS setstripe -i 1 $DIR/$tfile.2 ||
8978                 error "failed to create $tfile.2 on ost1 facet"
8979         # files not cleaned with ONLY_REPEAT because of client unmount below
8980         rm -f $DIR/$tfile.[012]
8981         stop_ost2 || error "stop ost2 facet failed"
8982         cleanup
8983 }
8984 run_test 112 "mount OST with nocreate option"
8985
8986 cleanup_115()
8987 {
8988         trap 0
8989         stopall
8990         do_facet mds1 rm -f $1
8991 }
8992
8993 test_115() {
8994         if [ "$mds1_FSTYPE" != ldiskfs ]; then
8995                 skip "Only applicable to ldiskfs-based MDTs"
8996         fi
8997         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
8998
8999         local dbfs_ver=$(do_facet mds1 $DEBUGFS -V 2>&1)
9000
9001         echo "debugfs version: $dbfs_ver"
9002         echo "$dbfs_ver" | egrep -w "1.44.3.wc1|1.44.5.wc1|1.45.2.wc1" &&
9003                 skip_env "This version of debugfs doesn't show inode number"
9004
9005         local IMAGESIZE=$((3072 << 30)) # 3072 GiB
9006
9007         stopall
9008
9009         FLAKEY=false
9010
9011         echo "client1: "
9012         $LCTL dl
9013         mount | grep lustre
9014         echo "mds1: "
9015         do_facet mds1 "hostname; $LCTL dl; mount"
9016         echo "ost1: "
9017         do_facet ost1 "hostname; $LCTL dl; mount"
9018         # We need MDT size 3072GB, because it is smallest
9019         # partition that can store 2B inodes
9020         do_facet mds1 "mkdir -p $TMP/$tdir"
9021         local mdsimgname=$TMP/$tdir/lustre-mdt
9022
9023         do_facet mds1 "rm -f $mdsimgname"
9024         do_facet mds1 "touch $mdsimgname"
9025         stack_trap "cleanup_115 $mdsimgname" EXIT
9026         do_facet mds1 "$TRUNCATE $mdsimgname $IMAGESIZE" ||
9027                 skip "Backend FS doesn't support sparse files"
9028         local mdsdev=$(do_facet mds1 "losetup -f")
9029
9030         do_facet mds1 "losetup $mdsdev $mdsimgname"
9031
9032         local mds_opts="$(mkfs_opts mds1 $(mdsdevname 1))        \
9033                 --mkfsoptions='-O ea_inode,^resize_inode,meta_bg \
9034                 -N 2247484000 -E lazy_itable_init' --device-size=$IMAGESIZE"
9035         add mds1 $mds_opts --mgs --reformat $mdsdev ||
9036                 skip_env "format large MDT failed"
9037
9038         local ostdev=$(ostdevname 1)
9039
9040         local opts="$(mkfs_opts ost1 $ostdev) \
9041                 --reformat $ostdev $ostdev"
9042         add ost1 $opts || error "add ost1 failed with new params"
9043         start mds1  $mdsdev $MDS_MOUNT_OPTS || error "start MDS failed"
9044         start_ost || error "start OSS failed"
9045         mount_client $MOUNT || error "mount client failed"
9046
9047         mkdir -p $DIR/$tdir || error "mkdir $DIR/$tdir fail"
9048         local goal="/sys/fs/ldiskfs/$(basename $mdsdev)/inode_goal"
9049         echo goal: $goal
9050         # 2147483648 is 0x80000000
9051         do_facet mds1 "echo 2147483648 >> $goal; grep . $goal"
9052         touch $DIR/$tdir/$tfile
9053
9054         # attrs from 1 to 16 go to block, 17th - to inode
9055         local i
9056
9057         for i in {1..17}; do
9058                 local nm="trusted.ea$i"
9059                 setfattr -n $nm -v $(printf "xattr%0250d" $i) $DIR/$tdir/$tfile
9060         done
9061
9062         do_facet mds1 "$DEBUGFS -c -R 'stat ROOT/$tdir/$tfile' $mdsdev"
9063
9064         # inode <2147483649> trusted.ea16 (255)
9065         local inode_num=$(do_facet mds1 \
9066                         "$DEBUGFS -c -R 'stat ROOT/$tdir/$tfile' $mdsdev" |
9067                          awk '/ea17/ { print $2 }' |
9068                          sed -e 's/>//' -e 's/<//' -e 's/\"//')
9069         echo "inode num: $inode_num"
9070         [ $inode_num -ge 2147483648 ] || error "inode $inode_num too small"
9071         do_facet mds1 "losetup -d $mdsdev"
9072 }
9073 run_test 115 "Access large xattr with inodes number over 2TB"
9074
9075 test_116() {
9076         [ "$mds1_FSTYPE" != ldiskfs ] && skip "ldiskfs only test"
9077         [ "$MDS1_VERSION" -lt $(version_code 2.10.59) ] &&
9078                 skip "Need server version at least 2.10.59"
9079         do_facet $SINGLEMDS which mkfs.xfs ||
9080                 skip_env "No mkfs.xfs installed"
9081
9082         stopall
9083         load_modules
9084
9085         local tmpmnt=$TMP/$tdir
9086         local mdtimg=$tfile-mdt0
9087
9088         do_facet $SINGLEMDS mkdir -p $tmpmnt
9089         stack_trap "do_facet $SINGLEMDS rmdir $tmpmnt" EXIT
9090
9091         do_facet $SINGLEMDS touch $TMP/$mdtimg
9092         stack_trap "do_facet $SINGLEMDS rm -f $TMP/$mdtimg" EXIT
9093         do_facet $SINGLEMDS mkfs -t xfs -d file,size=1t,name=$TMP/$mdtimg ||
9094                 error "mkfs temporary xfs image"
9095
9096         do_facet $SINGLEMDS mount $TMP/$mdtimg $tmpmnt ||
9097                 error "mount temporary xfs image"
9098         stack_trap "do_facet $SINGLEMDS umount $tmpmnt" EXIT
9099         local old_mdssize=$MDSSIZE
9100         local old_mdsisize=$MDSISIZE
9101
9102         MDSSIZE=$((17 * 1024 * 1024 * 1024)) # 17T MDT
9103         MDSISIZE=$((16 << 20))
9104         local opts17t="$(mkfs_opts $SINGLEMDS)"
9105
9106         MDSSIZE=$old_mdssize
9107         MDSISIZE=$old_mdsisize
9108
9109         do_facet $SINGLEMDS $MKFS \
9110                 ${opts17t/-E /-E lazy_itable_init,lazy_journal_init,} \
9111                 $tmpmnt/$mdtimg ||
9112                 error "failed to mkfs for $tmpmnt/$mdtimg"
9113
9114         do_facet $SINGLEMDS $TUNE2FS -l $tmpmnt/$mdtimg |
9115                 grep -qw 'features.*extent' || error "extent should be enabled"
9116         reformat_and_config
9117 }
9118 run_test 116 "big size MDT support"
9119
9120 test_117() {
9121         setup
9122         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.nrs_policies=fifo"
9123         do_facet ost1 "$LCTL get_param -n ost.OSS.ost_io.nrs_tbf_rule" &&
9124                 error "get_param should fail"
9125         cleanup || error "cleanup failed with rc $?"
9126 }
9127 run_test 117 "lctl get_param return errors properly"
9128
9129 test_119() {
9130         local had_config
9131         local size_mb
9132
9133         [[ "$MDSCOUNT" -ge 2 ]] || skip "Need more at least 2 MDTs"
9134
9135         had_config=$(do_facet mds1 "$LCTL get_param debug | grep config")
9136         do_facet mds1 "$LCTL set_param debug=+config"
9137         do_facet mds1 "$LCTL clear"
9138
9139         setup
9140         do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)" &>/dev/null
9141         # mount after writeconf will make "add osp" added to mdt0 config:
9142         # 53 (224)marker  60 (flags=0x01, v2.5.1.0) lustre-MDT0001  'add osp'
9143         # 54 (080)add_uuid  nid=...  0:  1:...
9144         # 55 (144)attach    0:lustre-MDT0001-osp-MDT0000  1:osp  2:...
9145         # 56 (144)setup     0:lustre-MDT0001-osp-MDT0000  1:...  2:...
9146         # 57 (136)modify_mdc_tgts add 0:lustre-MDT0000-mdtlov  1:...  2:1  3:1
9147         # duplicate modify_mdc_tgts caused crashes
9148
9149         debug_size_save
9150         # using larger debug_mb size to avoid lctl dk log truncation
9151         size_mb=$((DEBUG_SIZE_SAVED * 4))
9152         for i in {1..3}; do
9153                 stop_mdt 2
9154                 # though config processing stops after failed attach and setup
9155                 # it will proceed after the failed command after each writeconf
9156                 # this is the original scenario of the issue
9157                 do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)" &>/dev/null
9158                 do_facet mds1 "$LCTL set_param debug_mb=$size_mb"
9159                 start_mdt 2
9160
9161                 wait_update_facet_cond mds1 \
9162                         "$LCTL dk | grep -c Processed.log.$FSNAME-MDT0000" \
9163                         ">" 1 300
9164         done
9165         debug_size_restore
9166
9167         [[ -z "$had_config" ]] && do_facet mds1 lctl set_param debug=-config
9168
9169         reformat
9170 }
9171 run_test 119 "writeconf on slave mdt shouldn't duplicate mdc/osp and crash"
9172
9173 test_120() { # LU-11130
9174         [ "$MDSCOUNT" -lt 2 ] && skip "mdt count < 2"
9175         [ "$mds1_FSTYPE" != ldiskfs ] &&
9176                 skip "ldiskfs only test"
9177         [ "$MDS1_VERSION" -lt $(version_code 2.11.56) ] &&
9178                 skip "Need DNE2 capable MD target with LU-11130 fix"
9179
9180         setup
9181
9182         local mds1host=$(facet_active_host mds1)
9183         local mds1dev=$(mdsdevname 1)
9184
9185         $LFS mkdir -i 1 $DIR/$tdir
9186         $LFS mkdir -i 0 $DIR/$tdir/mds1dir
9187
9188         ln -s foo $DIR/$tdir/bar
9189         mv $DIR/$tdir/bar $DIR/$tdir/mds1dir/bar2 ||
9190                 error "cross-target rename failed"
9191
9192         stopall
9193
9194         run_e2fsck $mds1host $mds1dev "-n"
9195 }
9196 run_test 120 "cross-target rename should not create bad symlinks"
9197
9198 test_121(){
9199         stopall
9200         start_mgsmds || error "MGS MDS Start failed"
9201         fail mgs
9202         stop_mds || error "Stopping MDSes failed"
9203         #failback
9204         start_mds
9205         fail mgs
9206         stop_mds || error "Stopping MDSes failed"
9207 }
9208 run_test 121 "failover MGS"
9209
9210 test_122a() {
9211         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9212         [[ "$OST1_VERSION" -ge $(version_code 2.11.53) ]] ||
9213                 skip "Need OST version at least 2.11.53"
9214
9215         reformat
9216         LOAD_MODULES_REMOTE=true load_modules
9217 #define OBD_FAIL_OFD_SET_OID 0x1e0
9218         do_facet ost1 $LCTL set_param fail_loc=0x00001e0
9219
9220         setup_noconfig
9221         $LFS mkdir -i1 -c1 $DIR/$tdir
9222         $LFS setstripe -i0 -c1 $DIR/$tdir
9223         do_facet ost1 $LCTL set_param fail_loc=0
9224         createmany -o $DIR/$tdir/file_ 1000 ||
9225                 error "Fail to create a new sequence"
9226
9227         cleanup
9228 }
9229 run_test 122a "Check OST sequence update"
9230
9231 test_122b() {
9232         [[ "$OST1_VERSION" -ge $(version_code 2.11.53) ]] ||
9233                 skip "Need OST version at least 2.11.53"
9234         local err
9235
9236         reformat
9237         LOAD_MODULES_REMOTE=true load_modules
9238 #define OBD_FAIL_OFD_SET_OID 0x1e0
9239         do_facet ost1 $LCTL set_param fail_loc=0x00001e0
9240
9241         stack_trap cleanup EXIT
9242         setup_noconfig
9243         do_facet ost1 $LCTL set_param obdfilter.*.precreate_batch=256
9244         $LFS mkdir -i0 -c1 $DIR/$tdir || error "failed to create directory"
9245         $LFS setstripe -i0 -c1 $DIR/$tdir || error "failed to setstripe"
9246         do_facet ost1 $LCTL set_param fail_loc=0
9247         # overflow IDIF 32bit and create > OST_MAX_PRECREATE*5
9248         # so a new wrong sequence would differ from an original with error
9249         #define OST_MAX_PRECREATE 20000
9250         local ost_max_precreate=20100
9251         local num_create=$(( ost_max_precreate * 5 ))
9252
9253         # Check the number of inodes available on OST0
9254         local files=0
9255         local ifree=$($LFS df -i $MOUNT |
9256                 awk '/OST0000/ { print $4 }'; exit ${PIPESTATUS[0]})
9257
9258         log "On OST0, $ifree inodes available. Want $num_create. rc=$?"
9259
9260         if [ $ifree -lt 10000 ]; then
9261                 files=$(( ifree - 50 ))
9262         else
9263                 files=10000
9264         fi
9265
9266         local j=$((num_create / files + 1))
9267
9268         for i in $(seq 1 $j); do
9269                 createmany -o $DIR/$tdir/$tfile-$i- $files ||
9270                         error "createmany fail create $files files: $?"
9271                 unlinkmany $DIR/$tdir/$tfile-$i- $files ||
9272                         error "unlinkmany failed unlink $files files"
9273         done
9274         sync
9275         touch $DIR/$tdir/$tfile
9276         do_facet ost1 sync
9277         #we need a write req during recovery for ofd_seq_load
9278         replay_barrier ost1
9279         dd if=/dev/urandom of=$DIR/$tdir/$tfile bs=1024k count=1 oflag=sync ||
9280                  error "failed to write file"
9281
9282         # OBD_FAIL_OST_CREATE_NET 0x204
9283         do_facet ost1 $LCTL set_param fail_loc=0x80000204
9284         fail ost1
9285         createmany -o $DIR/$tdir/file_ 100
9286         sync
9287
9288         err=$(do_facet ost1 dmesg | tac | sed "/Recovery over/,$ d" |
9289               grep "OST replaced or reformatted")
9290         [ -z "$err" ] || error $err
9291 }
9292 run_test 122b "Check OST sequence wouldn't change when IDIF 32bit overflows"
9293
9294 test_123aa() {
9295         remote_mgs_nodsh && skip "remote MGS with nodsh"
9296         [ -d $MOUNT/.lustre ] || setup
9297
9298         # test old logid format until removal from llog_ioctl.c::str2logid()
9299         if [ $MGS_VERSION -lt $(version_code 3.1.53) ]; then
9300                 do_facet mgs $LCTL dl | grep MGS
9301                 do_facet mgs "$LCTL --device %MGS llog_print \
9302                               \\\\\\\$$FSNAME-client 1 10" ||
9303                         error "old llog_print failed"
9304         fi
9305
9306         # test new logid format
9307         if [ $MGS_VERSION -ge $(version_code 2.9.53) ]; then
9308                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
9309                         error "new llog_print failed"
9310         fi
9311 }
9312 run_test 123aa "llog_print works with FIDs and simple names"
9313
9314 test_123ab() {
9315         remote_mgs_nodsh && skip "remote MGS with nodsh"
9316         [[ $MGS_VERSION -gt $(version_code 2.11.51) ]] ||
9317                 skip "Need server with working llog_print support"
9318
9319         [ -d $MOUNT/.lustre ] || setup
9320
9321         local yaml
9322         local orig_val
9323         local mgs_arg=""
9324
9325         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9326                 mgs_arg="--device MGS"
9327
9328         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
9329         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME"
9330
9331         yaml=$(do_facet mgs $LCTL $mgs_arg llog_print params |
9332                grep jobid_name | tail -n 1)
9333
9334         local param=$(awk '{ print $10 }' <<< "$yaml")
9335         local val=$(awk '{ print $12 }' <<< "$yaml")
9336         #return to the default
9337         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
9338         [ $val = "TESTNAME" ] || error "bad value: $val"
9339         [ $param = "jobid_name," ] || error "Bad param: $param"
9340 }
9341 run_test 123ab "llog_print params output values from set_param -P"
9342
9343 test_123ac() { # LU-11566
9344         remote_mgs_nodsh && skip "remote MGS with nodsh"
9345         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
9346                 skip "Need 'lctl llog_print --start' on MGS"
9347
9348         local start=10
9349         local end=50
9350         local mgs_arg=""
9351
9352         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9353                 mgs_arg="--device MGS"
9354
9355         [ -d $MOUNT/.lustre ] || setup
9356
9357         # - { index: 10, event: add_uuid, nid: 192.168.20.1@tcp(0x20000c0a81401,
9358         #     node: 192.168.20.1@tcp }
9359         do_facet mgs $LCTL $mgs_arg \
9360                 llog_print --start $start --end $end $FSNAME-client | tr -d , |
9361                 while read DASH BRACE INDEX idx EVENT BLAH BLAH BLAH; do
9362                 (( idx >= start )) || error "llog_print index $idx < $start"
9363                 (( idx <= end )) || error "llog_print index $idx > $end"
9364         done
9365 }
9366 run_test 123ac "llog_print with --start and --end"
9367
9368 test_123ad() { # LU-11566
9369         remote_mgs_nodsh && skip "remote MGS with nodsh"
9370         # older versions of lctl may not print all records properly
9371         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
9372                 skip "Need 'lctl llog_print --start' on MGS"
9373
9374         [ -d $MOUNT/.lustre ] || setup
9375
9376         # append a new record, to avoid issues if last record was cancelled
9377         local old=$($LCTL get_param -n osc.*-OST0000-*.max_dirty_mb | head -1)
9378         do_facet mgs $LCTL conf_param $FSNAME-OST0000.osc.max_dirty_mb=$old
9379
9380         # logid:            [0x3:0xa:0x0]:0
9381         # flags:            4 (plain)
9382         # records_count:    72
9383         # last_index:       72
9384         local num=$(do_facet mgs $LCTL --device MGS llog_info $FSNAME-client |
9385                     awk '/last_index:/ { print $2 - 1 }')
9386
9387         # - { index: 71, event: set_timeout, num: 0x14, param: sys.timeout=20 }
9388         local last=$(do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9389                      tail -1 | awk '{ print $4 }' | tr -d , )
9390         (( last == num )) || error "llog_print only showed $last/$num records"
9391 }
9392 run_test 123ad "llog_print shows all records"
9393
9394 test_123ae() { # LU-11566
9395         local max
9396         local mgs_arg=""
9397         local log
9398         local id
9399         local orig
9400         local new
9401         local rpcs
9402
9403         remote_mgs_nodsh && skip "remote MGS with nodsh"
9404         [ -d $MOUNT/.lustre ] || setupall
9405
9406         max=$($LCTL get_param -n osc.*-OST0000-*.max_dirty_mb | head -1)
9407         pgs=$($LCTL get_param -n osc.*-OST0000-*.max_pages_per_rpc | head -1)
9408         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9409                 mgs_arg="--device MGS"
9410
9411         if do_facet mgs "$LCTL help llog_cancel" 2>&1| grep -q -- --log_id; then
9412                 # save one set_param -P record in case none exist
9413
9414                 do_facet mgs $LCTL set_param -P osc.*.max_pages_per_rpc=$pgs
9415                 stack_trap "do_facet mgs $LCTL set_param -P -d \
9416                                 osc.*.max_pages_per_rpc"
9417
9418                 log=params
9419                 orig=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9420                         tail -1 | awk '{ print $4 }' | tr -d , )
9421                 do_facet mgs $LCTL set_param -P osc.*.max_dirty_mb=$max
9422                 do_facet mgs $LCTL $mgs_arg llog_print $log | tail -1 |
9423                         grep "parameter: osc.*.max_dirty_mb" ||
9424                         error "new set_param -P wasn't stored in params log"
9425
9426                 # - { index: 71, event: set_param, device: general,
9427                 #     param: osc.*.max_dirty_mb, value: 256 }
9428                 id=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9429                      tail -1 | awk '{ print $4 }' | tr -d , )
9430                 do_facet mgs $LCTL $mgs_arg llog_cancel $log --log_idx=$id
9431                 local new=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9432                             tail -1 | awk '{ print $4 }' | tr -d , )
9433                 (( new == orig )) ||
9434                         error "new llog_cancel now $new, not at $orig records"
9435         fi
9436
9437         # test old positional parameters for a while still
9438         if [ "$MGS_VERSION" -le $(version_code 3.1.53) ]; then
9439                 log=$FSNAME-client
9440
9441                 do_facet mgs $LCTL conf_param \
9442                         $FSNAME-OST0000.osc.max_pages_per_rpc=$pgs
9443                 stack_trap "do_facet mgs $LCTL conf_param -d \
9444                                 $FSNAME-OST0000.osc.max_pages_per_rpc"
9445
9446                 orig=$(do_facet mgs $LCTL --device MGS llog_print $log |
9447                        tail -1 | awk '{ print $4 }' | tr -d , )
9448                 do_facet mgs $LCTL conf_param $FSNAME-OST0000.osc.max_dirty_mb=$max
9449                 do_facet mgs $LCTL --device MGS llog_print $log |
9450                         tail -1 | grep "parameter: osc.max_dirty_mb" ||
9451                         error "old conf_param wasn't stored in params log"
9452                 do_facet mgs $LCTL --device MGS llog_print $log
9453                 # - { index: 71, event: conf_param, device: testfs-OST0000-osc,
9454                 #     param: osc.max_dirty_mb=256 }
9455                 id=$(do_facet mgs $LCTL --device MGS llog_print $log |
9456                      tail -1 | awk '{ print $4 }' | tr -d , )
9457                 do_facet mgs $LCTL --device MGS llog_cancel $log $id
9458                 do_facet mgs $LCTL --device MGS llog_print $log
9459                 new=$(do_facet mgs $LCTL --device MGS llog_print $log |
9460                       tail -1 | awk '{ print $4 }' | tr -d , )
9461                 (( new == orig )) ||
9462                         error "old llog_cancel now $new, not at $orig records"
9463         fi
9464 }
9465 run_test 123ae "llog_cancel can cancel requested record"
9466
9467 test_123af() { #LU-13609
9468         [ "$MGS_VERSION" -ge $(version_code 2.13.54) -a \
9469            "$MDS1_VERSION" -ge $(version_code 2.13.54) ] ||
9470                 skip "Need both MGS and MDS version at least 2.13.54"
9471
9472         [ -d $MOUNT/.lustre ] || setupall
9473         stack_trap "do_facet mds1 $LCTL set_param fail_loc=0" EXIT
9474
9475         local device
9476         local facet
9477         local cmd
9478         local orig_clist
9479         local orig_count
9480         local new_clist
9481         local new_count
9482
9483         for device in "MGS" "$FSNAME-MDT0000"; do
9484                 cmd="--device $device llog_catlist"
9485                 echo "lctl $cmd ..."
9486                 if [ "$device" = "MGS" ]; then
9487                         facet="mgs"
9488                 else
9489                         facet="mds1"
9490                 fi
9491                 orig_clist=($(do_facet $facet $LCTL $cmd | awk '{ print $2 }'))
9492                 orig_count=${#orig_clist[@]}
9493                 echo "orig_clist: ${orig_clist[*]}"
9494
9495                 #define OBD_FAIL_CATLIST 0x131b
9496                 #fetch to llog records from the second one
9497                 do_facet $facet $LCTL set_param fail_loc=0x131b fail_val=2
9498
9499                 new_clist=($(do_facet $facet $LCTL $cmd | awk '{ print $2 }'))
9500                 new_count=${#new_clist[@]}
9501                 echo "new_clist: ${new_clist[*]}"
9502
9503                 [ $new_count -eq $((orig_count - 1)) ] ||
9504                         error "$new_count != $orig_count - 1"
9505                 for i in $(seq 0 $new_count); do
9506                         j=$((i + 1))
9507                         [ "${orig_clist[$j]}" = "${new_clist[$i]}" ] ||
9508                                 error "${orig_clist[$j]} != ${new_clist[$i]}"
9509                 done
9510                 do_facet mds1 $LCTL set_param fail_loc=0
9511                 echo "done"
9512         done
9513 }
9514 run_test 123af "llog_catlist can show all config files correctly"
9515
9516 test_123ag() { # LU-15142
9517         local rec
9518         local orig_val
9519
9520         remote_mgs_nodsh && skip "remote MGS with nodsh"
9521         (( $MGS_VERSION >= $(version_code 2.14.55) )) ||
9522                 skip "Need server version least 2.14.55"
9523
9524         [ -d $MOUNT/.lustre ] || setup
9525
9526         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
9527         stack_trap "do_facet mgs $LCTL set_param -P jobid_name=$orig_val"
9528
9529         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME1"
9530         do_facet mgs $LCTL set_param -P -d jobid_name
9531         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9532                 grep -c jobid_name)
9533         (( rec == 0 )) || error "parameter was not deleted, check #1"
9534         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME1"
9535         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9536                 grep -c jobid_name)
9537         (( rec == 1)) || error "parameter is not set"
9538         # usage with ordinary set_param format works too
9539         do_facet mgs $LCTL set_param -P -d jobid_name="ANY"
9540         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9541                 grep -c jobid_name)
9542         (( rec == 0 )) || error "parameter was not deleted, check #2"
9543 }
9544 run_test 123ag "llog_print skips values deleted by set_param -P -d"
9545
9546 test_123ah() { #LU-7668 del_ost
9547         [ "$MGS_VERSION" -ge $(version_code 2.15.50) -a \
9548            "$MDS1_VERSION" -ge $(version_code 2.15.50) ] ||
9549                 skip "Need both MGS and MDS version at least 2.15.50"
9550
9551         [ -d $MOUNT/.lustre ] || setupall
9552         stack_trap "do_facet mds1 $LCTL set_param fail_loc=0" EXIT
9553
9554         local cmd="--device MGS llog_print"
9555
9556         cli_llogcnt_orig=$(do_facet mgs $LCTL $cmd $FSNAME-client |
9557                                 grep -c $FSNAME-OST0000)
9558         mds1_llogcnt_orig=$(do_facet mgs $LCTL $cmd $FSNAME-MDT0000 |
9559                                 grep -c $FSNAME-OST0000)
9560
9561         [ $cli_llogcnt_orig -gt 0 ] ||
9562                 error "$FSNAME-OST0000 not found (client)"
9563         [ $mds1_llogcnt_orig -gt 0 ] || error "$FSNAME-OST0000 not found (MDT)"
9564
9565         # -n/--dryrun should NOT modify catalog
9566         do_facet mgs "$LCTL del_ost -n -t $FSNAME-OST0000" ||
9567                 error "del_ost --dryrun failed with $?"
9568
9569         local cli_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-client |
9570                         grep -c $FSNAME-OST0000)
9571         local mds1_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-MDT0000 |
9572                         grep -c $FSNAME-OST0000)
9573
9574         [ $cli_llogcnt -eq $cli_llogcnt_orig ] ||
9575                 error "--dryrun error: $cli_llogcnt != $cli_llogcnt_orig"
9576         [ $mds1_llogcnt -eq $mds1_llogcnt_orig ] ||
9577                 error "--dryrun error: $mds1_llogcnt != $mds1_llogcnt_orig"
9578
9579         # actual run
9580         do_facet mgs "$LCTL del_ost --target $FSNAME-OST0000" ||
9581                 error "del_ost failed with $?"
9582
9583         local cli_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-client |
9584                         grep -c $FSNAME-OST0000)
9585         local mds1_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-MDT0000 |
9586                         grep -c $FSNAME-OST0000)
9587
9588         # every catalog entry for OST0000 should have been cancelled
9589         [ $cli_llogcnt -eq 0 ] || error "$FSNAME-OST0000 not cancelled (cli)"
9590         [ $mds1_llogcnt -eq 0 ] || error "$FSNAME-OST0000 not cancelled (MDT)"
9591
9592         umount_client $MOUNT
9593         mount_client $MOUNT
9594
9595         $LFS df | grep -q OST0000 && error "del_ost did not remove OST0000!"
9596         cleanup
9597         reformat_and_config
9598 }
9599 run_test 123ah "del_ost cancels config log entries correctly"
9600
9601 test_123F() {
9602         remote_mgs_nodsh && skip "remote MGS with nodsh"
9603
9604         [ -d $MOUNT/.lustre ] || setup
9605         local yaml_file="$TMP/$tfile.yaml"
9606
9607         do_facet mgs rm "$yaml_file"
9608         local cfgfiles=$(do_facet mgs "lctl --device MGS llog_catlist" |
9609                          sed 's/config_log://')
9610
9611         # set jobid_var to a different value for test
9612         local orig_val=$(do_facet mgs $LCTL get_param jobid_var)
9613
9614         do_facet mgs $LCTL set_param -P jobid_var="TESTNAME"
9615
9616         for i in $cfgfiles params; do
9617                 do_facet mgs "lctl --device MGS llog_print ${i} >> $yaml_file"
9618         done
9619
9620         echo "Unmounting FS"
9621         stopall
9622         echo "Writeconf"
9623         writeconf_all
9624         echo "Remounting"
9625         setup_noconfig
9626
9627         # Reapply the config from before
9628         echo "Setting configuration parameters"
9629         do_facet mgs "lctl set_param -F $yaml_file"
9630
9631         local set_val=$(do_facet mgs $LCTL get_param jobid_var)
9632
9633         do_facet mgs $LCTL set_param -P $orig_val
9634
9635         [ $set_val == "jobid_var=TESTNAME" ] ||
9636                 error "$set_val is not TESTNAME"
9637
9638         do_facet mgs rm "$yaml_file"
9639         cleanup
9640 }
9641 run_test 123F "clear and reset all parameters using set_param -F"
9642
9643 test_124()
9644 {
9645         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9646         [ -z $mds2failover_HOST ] && skip "needs MDT failover setup"
9647
9648         setup
9649         do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9650                 grep 1.2.3.4@tcp && error "Should not be fake nid"
9651         do_facet mgs $LCTL conf_param $FSNAME-MDT0001.failover.node=1.2.3.4@tcp\
9652                 || error "Set params error"
9653         do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9654                 grep 1.2.3.4@tcp || error "Fake nid should be added"
9655         cleanup
9656
9657         load_modules
9658         if combined_mgs_mds; then
9659                 start_mdt 1 "-o nosvc" ||
9660                         error "starting mds with nosvc option failed"
9661         fi
9662         local nid=$(do_facet mds2 $LCTL list_nids | head -1)
9663         local failover_nid=$(do_node $mds2failover_HOST $LCTL list_nids | head -1)
9664
9665         do_facet mgs $LCTL replace_nids $FSNAME-MDT0001 $nid:$failover_nid ||
9666                 error "replace_nids execution error"
9667
9668         if combined_mgs_mds; then
9669                 stop_mdt 1
9670         fi
9671
9672         setup
9673         fail mds2
9674         echo "lfs setdirstripe"
9675         $LFS setdirstripe -i 1 $MOUNT/$tdir || error "setdirstirpe error"
9676         echo ok
9677 }
9678 run_test 124 "check failover after replace_nids"
9679
9680 get_max_sectors_kb() {
9681         local facet="$1"
9682         local device="$2"
9683         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9684         local max_sectors_path="/sys/block/${dev_base}/queue/max_sectors_kb"
9685
9686         do_facet ${facet} "[[ -e ${max_sectors_path} ]] &&
9687                            cat ${max_sectors_path}"
9688 }
9689
9690 get_max_hw_sectors_kb() {
9691         local facet="$1"
9692         local device="$2"
9693         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9694         local max_hw_path="/sys/block/${dev_base}/queue/max_hw_sectors_kb"
9695
9696         do_facet ${facet} "[[ -e ${max_hw_path} ]] && cat ${max_hw_path}"
9697 }
9698
9699 set_max_sectors_kb() {
9700         local facet="$1"
9701         local device="$2"
9702         local value="$3"
9703         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9704         local max_sectors_path="/sys/block/${dev_base}/queue/max_sectors_kb"
9705
9706         do_facet ${facet} "[[ -e ${max_sectors_path} ]] &&
9707                            echo ${value} > ${max_sectors_path}"
9708         rc=$?
9709
9710         [[ $rc -ne 0 ]] && echo "Failed to set ${max_sectors_path} to ${value}"
9711
9712         return $rc
9713 }
9714
9715 # Return 0 if all slave devices have max_sectors_kb == max_hw_sectors_kb
9716 # Otherwise return > 0
9717 check_slaves_max_sectors_kb()
9718 {
9719         local facet="$1"
9720         local device="$2"
9721         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9722         local slaves_dir=/sys/block/${dev_base}/slaves
9723         local slave_devices=$(do_facet ${facet} "ls ${slaves_dir} 2>/dev/null")
9724         [[ -z ${slave_devices} ]] && return 0
9725
9726         local slave max_sectors new_max_sectors max_hw_sectors path
9727         local rc=0
9728
9729         for slave in ${slave_devices}; do
9730                 path="/dev/${slave}"
9731                 ! is_blkdev ${facet} ${path} && continue
9732                 max_sectors=$(get_max_sectors_kb ${facet} ${path})
9733                 max_hw_sectors=$(get_max_hw_sectors_kb ${facet} ${path})
9734                 new_max_sectors=${max_hw_sectors}
9735                 [[ ${new_max_sectors} -gt ${RQ_SIZE_LIMIT} ]] &&
9736                         new_max_sectors=${RQ_SIZE_LIMIT}
9737
9738                 if [[ ${max_sectors} -ne ${new_max_sectors} ]]; then
9739                         echo "${path} ${max_sectors} ${new_max_sectors}"
9740                         ((rc++))
9741                 fi
9742                 check_slaves_max_sectors_kb ${facet} ${path}
9743                 ((rc + $?))
9744         done
9745
9746         return $rc
9747 }
9748
9749 test_125()
9750 {
9751         local facet_list="mgs mds1 ost1"
9752         combined_mgs_mds && facet_list="mgs ost1"
9753
9754         local facet
9755         for facet in ${facet_list}; do
9756                 [[ $(facet_fstype ${facet}) != ldiskfs ]] &&
9757                         skip "ldiskfs only test" &&
9758                         return 0
9759                 ! is_blkdev ${facet} $(facet_device ${facet}) &&
9760                         skip "requires all real devices" &&
9761                         return 0
9762         done
9763
9764         local rc=0
9765         # We don't increase IO request size limit past 16MB. See comments in
9766         # lustre/utils/libmount_utils_ldiskfs.c:tune_max_sectors_kb()
9767         RQ_SIZE_LIMIT=$((16 * 1024))
9768         local device old_max_sectors new_max_sectors max_hw_sectors
9769         for facet in ${facet_list}; do
9770                 device=$(facet_device ${facet})
9771                 old_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9772                 max_hw_sectors=$(get_max_hw_sectors_kb ${facet} ${device})
9773
9774                 # The expected value after l_tunedisk is executed
9775                 new_max_sectors=$old_max_sectors
9776                 [[ ${new_max_sectors_kb} -gt ${RQ_SIZE_LIMIT} ]] &&
9777                         new_max_sectors_kb=${RQ_SIZE_LIMIT}
9778
9779                 # Ensure the current value of max_sectors_kb does not equal
9780                 # max_hw_sectors_kb, so we can tell whether l_tunedisk did
9781                 # anything
9782                 set_max_sectors_kb ${facet} ${device} $((new_max_sectors - 1))
9783
9784                 # Value before l_tunedisk
9785                 local pre_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9786                 if [[ ${pre_max_sectors} -ne $((new_max_sectors - 1)) ]]; then
9787                         echo "unable to satsify test pre-condition:"
9788                         echo "${pre_max_sectors} != $((new_max_sectors - 1))"
9789                         ((rc++))
9790                         continue
9791                 fi
9792
9793                 echo "Before: ${facet} ${device} ${pre_max_sectors} ${max_hw_sectors}"
9794
9795                 do_facet ${facet} "l_tunedisk ${device}"
9796
9797                 # Value after l_tunedisk
9798                 local post_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9799
9800                 echo "After: ${facet} ${device} ${post_max_sectors} ${max_hw_sectors}"
9801
9802                 if [[ ${facet} != ost1 ]]; then
9803                         if [[ ${post_max_sectors} -ne ${pre_max_sectors} ]]; then
9804                                 echo "l_tunedisk modified max_sectors_kb of ${facet}"
9805                                 ((rc++))
9806                         fi
9807
9808                         set_max_sectors_kb ${facet} ${device} ${old_max_sectors}
9809                 else
9810                         if [[ ${post_max_sectors} -eq ${pre_max_sectors} ]]; then
9811                                 echo "l_tunedisk failed to modify max_sectors_kb of ${facet}"
9812                                 ((rc++))
9813                         fi
9814
9815                         check_slaves_max_sectors_kb ${facet} ${device} ||
9816                                 ((rc++))
9817                 fi
9818         done
9819
9820         return $rc
9821 }
9822 run_test 125 "check l_tunedisk only tunes OSTs and their slave devices"
9823
9824 test_126() {
9825         [[ "$MDS1_VERSION" -ge $(version_code 2.13.52) ]] ||
9826                 skip "Need MDS version at least 2.13.52"
9827
9828         cleanup
9829         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ../libcfs/libcfs/libcfs
9830         #define OBD_FAIL_OBD_SETUP 0x60d
9831         do_facet mds1 $LCTL set_param fail_loc=0x60d
9832         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_modules &
9833         for i in {1..40}; do
9834                 do_facet mds1 lsmod | grep -q osd_$mds1_FSTYPE && break
9835                 sleep 1
9836         done
9837         clear_failloc $SINGLEMDS 20 &
9838         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
9839 }
9840 run_test 126 "mount in parallel shouldn't cause a crash"
9841
9842 test_127() {
9843         [[ "$ost1_FSTYPE" == ldiskfs ]] || skip "ldiskfs only test"
9844
9845         cleanup
9846         setup
9847         zconf_umount_clients $RCLIENTS $MOUNT
9848
9849         wait_osp_active ost ${FSNAME}-OST0000 0 1
9850         local osc_tgt="$FSNAME-OST0000-osc-$($LFS getname -i $DIR)"
9851         local avail1=($($LCTL get_param -n osc.${osc_tgt}.kbytesavail))
9852
9853         $LFS setstripe -i 0 $DIR/$tfile || error "failed creating $DIR/$tfile"
9854         dd if=/dev/zero of=$DIR/$tfile bs=1M oflag=direct || true
9855
9856         local avail2=($($LCTL get_param -n osc.${osc_tgt}.kbytesavail))
9857
9858         if ((avail2 * 100 / avail1 > 1)); then
9859                 lfs df $DIR
9860                 ls -l $DIR/$tfile
9861                 error "more than 1% space left: before=$avail1 after=$avail2"
9862         fi
9863
9864         local mbs=$(($(stat -c %s $DIR/$tfile) / (1024 * 1024)))
9865
9866         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$mbs conv=notrunc \
9867                 oflag=direct || error "overwrite failed"
9868 }
9869 run_test 127 "direct io overwrite on full ost"
9870
9871 test_128()
9872 {
9873         combined_mgs_mds && skip "need separate mgs device"
9874         [ "$ost2_FSTYPE" == zfs ] && import_zpool ost2
9875
9876         format_ost 2
9877         # Try to apply nolocallogs to the virgin OST. Should fail.
9878         do_facet ost2 "$TUNEFS --nolocallogs $(ostdevname 2)" &&
9879                 error "nolocallogs should not be allowed on the virgin target"
9880
9881         setupall
9882         stopall
9883
9884         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9885         # Start OST without MGS (local configs)
9886         do_facet ost1 "$TUNEFS --dryrun $(ostdevname 1)"
9887         start_ost || error "unable to start OST1"
9888         stop_ost || error "Unable to stop OST1"
9889
9890         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9891         # Do not allow reading local configs, should fail
9892         do_facet ost1 "$TUNEFS --nolocallogs $(ostdevname 1)" ||
9893                 error "Can not set nolocallogs"
9894         start_ost && error "OST1 started, but should fail"
9895
9896         # Connect to MGS successfully, reset nolocallogs flag
9897         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9898         start_mgs || error "unable to start MGS"
9899         start_ost || error "unable to start OST1"
9900
9901         do_facet ost1 "$TUNEFS --dryrun $(ostdevname 1)" | grep "nolocallogs" &&
9902                 error "nolocallogs expected to be reset"
9903
9904         stop_ost || error "Unable to stop OST1"
9905 }
9906 run_test 128 "Force using remote logs with --nolocallogs"
9907
9908 test_129()
9909 {
9910         stopall
9911         start_mds || error "MDS start failed"
9912         format_ost 1
9913         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &&
9914                 error "start ost1 should fail" || true
9915         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &&
9916                 error "second start ost1 should fail" || true
9917         do_facet ost1 "$TUNEFS --writeconf $(ostdevname 1)"
9918         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS ||
9919                 error "start ost1 failed"
9920         stop ost1
9921         stop_mds
9922 }
9923 run_test 129 "attempt to connect an OST with the same index should fail"
9924
9925 test_130()
9926 {
9927         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9928         setupall
9929         stop_mdt 2 || error "mdt2 stop failed"
9930         do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)"
9931         start_mdt 2 || error "mdt2 start failed"
9932         do_facet mds2 "$LCTL dl" | grep MDT0001-osp-MDT0001 &&
9933                 error "Illegal OSP device created" || true
9934 }
9935 run_test 130 "re-register an MDT after writeconf"
9936
9937 test_131() {
9938         [ "$mds1_FSTYPE" == "ldiskfs" ] || skip "ldiskfs only test"
9939         do_facet mds1 $DEBUGFS -R features $(mdsdevname 1) |
9940                 grep -q project || skip "skip project quota not supported"
9941
9942         local projid
9943
9944         setupall
9945         test_mkdir -c $MDSCOUNT -p $DIR/$tdir
9946         $LFS project -p 1000 $DIR/$tdir || error "set dir project id failed"
9947         createmany -o $DIR/$tdir/f 512
9948         for ((i = 0; i < 512; ++i)); do
9949                 $LFS project -p $i $DIR/$tdir/f${i} ||
9950                         error "set f${i} project id failed"
9951         done
9952
9953         test_mkdir -c $MDSCOUNT -p $DIR/$tdir.inherit
9954         $LFS project -p 1001 -s $DIR/$tdir.inherit
9955         createmany -o $DIR/$tdir.inherit/f 128
9956         (( $($LFS project $DIR/$tdir.inherit/f* |
9957                 awk '$1 == 1001 { print }' | wc -l) == 128 )) ||
9958                         error "files did not inherit projid 1001"
9959
9960         stopall
9961
9962         for i in $(seq $MDSCOUNT); do
9963                 mds_backup_restore mds$i ||
9964                         error "Backup/restore on mds$i failed"
9965         done
9966
9967         setupall
9968
9969         projid=($($LFS project -d $DIR/$tdir))
9970         [ ${projid[0]} == "1000" ] ||
9971                 error "projid expected 1000 not ${projid[0]}"
9972         for ((i = 0; i < 512; ++i)); do
9973                 projid=($($LFS project $DIR/$tdir/f${i}))
9974                 [ ${projid[0]} == "$i" ] ||
9975                         error "projid expected $i not ${projid[0]}"
9976         done
9977
9978         (( $($LFS project $DIR/$tdir.inherit/f* |
9979                 awk '$1 == 1001 { print }' | wc -l) == 128 )) ||
9980                         error "restore did not copy projid 1001"
9981 }
9982 run_test 131 "MDT backup restore with project ID"
9983
9984 test_132() {
9985         local err_cnt
9986         local err_cnt2
9987
9988         reformat
9989         combined_mgs_mds || start_mgs || error "unable to start MGS"
9990         start_mdt 1 || error "unable to start mdt1"
9991
9992         err_cnt=$(do_facet mds1 dmesg | grep -c "cannot take the layout locks")
9993         stop_mdt 1 || error "stop mdt1 failed"
9994
9995         [ "$mds1_FSTYPE" == zfs ] && import_zpool mds1
9996         do_facet mds1 $TUNEFS --param mdt.hsm_control=enabled $(mdsdevname 1) ||
9997                 error "tunefs failed"
9998         start_mdt 1 || error "cannot start mdt1"
9999
10000         err_cnt2=$(do_facet mds1 dmesg | grep -c "cannot take the layout locks")
10001         [ $err_cnt -eq $err_cnt2 ] || error "Can not take the layout lock"
10002         stop_mdt 1 || error "stop mdt1 failed"
10003 }
10004 run_test 132 "hsm_actions processed after failover"
10005
10006 # This test verifies we do RR allocation within a pool even if there is a
10007 # significant imbalance vs an OST outside the pool
10008 test_133() {
10009         [[ $OSTCOUNT -lt 4 ]] && skip_env "needs >= 4 OSTs"
10010         # This is the easiest way to ensure OSTs start out balanced
10011         reformat_and_config
10012         setupall
10013
10014         check_set_fallocate_or_skip
10015
10016         local testfile=$DIR/$tdir/$tfile
10017         local pool="testpool"
10018         local ostrange=$((OSTCOUNT - 1))
10019         # Select all but the last OST to add to the pool
10020         local poolostrange=$((OSTCOUNT - 2))
10021         local filenum=20
10022         local filecount
10023         local stripecount
10024
10025         declare -a AVAIL
10026         free_min_max
10027
10028         [ $MINV -eq 0 ] && error "no free space in OST$MINI"
10029         [ $MAXV -gt $((2 * $MINV)) ] &&
10030                 error "OSTs badly unbalanced after reformat"
10031
10032         create_pool $FSNAME.$pool || error "failed to create a pool"
10033         do_facet mgs $LCTL pool_add $FSNAME.$pool OST[0-$poolostrange] ||
10034                 error "failed to add OST[0-$poolostrange] to the pool"
10035
10036         test_mkdir -p $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
10037         # Consume space on the OSTs in the pool so they are unbalanced with the
10038         # OST outside of the pool
10039         # fill each OST 90% with fallocate so they are widely
10040         # imbalanced
10041         local size=$(((MINV * 9 / 10) * 1024))
10042         for ((i = 0; i <= poolostrange; i++)); do
10043                 $LFS setstripe -c 1 -i $i $testfile$i ||
10044                         error "failed to setstripe $testfile$i"
10045                 fallocate -l $size $testfile$i || error "fallocate failed"
10046         done
10047         ls -la $DIR/$tdir
10048         sleep_maxage
10049         $LFS df
10050
10051         # Create files in the pool now that there is an imbalance
10052         filecount=$(((OSTCOUNT - 1) * filenum))
10053         for ((i = 0; i < filecount; i++)); do
10054                 $LFS setstripe -p $pool $testfile-$i ||
10055                         error "failed to setstripe -p $pool $testfile-$i"
10056         done
10057         $LFS getstripe -i $testfile-* > /tmp/$tfile.log
10058         # Count the number of files with a stripe on each OST to verify the
10059         # pool allocated with round-robin
10060         for ((i = 0; i <= poolostrange; i++)); do
10061                 stripecount=$(grep -c $i /tmp/$tfile.log)
10062                 # Allow a little leeway
10063                 if (( stripecount < filenum - 1 ||
10064                       stripecount > filenum + 1 )); then
10065                         cat /tmp/$tfile.log
10066                         error "$stripecount != $filenum files on OST$i"
10067                 fi
10068         done
10069
10070         # Create files across the system now that there is an imbalance
10071         filecount=$((OSTCOUNT * filenum))
10072         for ((i = 1; i < filecount; i++)); do
10073                 $LFS setstripe $testfile-$i.2 ||
10074                         error "failed to setstripe $testilfe-$i.2"
10075         done
10076         $LFS getstripe -i $testfile-*.2 > /tmp/$tfile.log
10077         local qos_used=""
10078         # Count the number of files with a stripe on each OST to verify the
10079         # files are *NOT* allocated with round-robin
10080         for ((i = 0; i <= ostrange; i++)); do
10081                 stripecount=$(grep -c $i /tmp/$tfile.log)
10082                 if [[ $stripecount -ne $filenum ]]; then
10083                         qos_used="true"
10084                         echo "QOS: $stripecount != $filenum files on OST$i"
10085                 fi
10086         done
10087         if [ -z "$qos_used" ]; then
10088                 error "QOS not used on imbalanced OSTs!"
10089         fi
10090
10091         rm -rf /tmp/$tfile.log $DIR/$tdir
10092         do_facet mgs $LCTL pool_remove $FSNAME.$pool OST[0-$poolostrange] ||
10093                 "failed to remove OST[0-$poolostrange] from the pool"
10094         do_facet mgs $LCTL pool_destroy $FSNAME.$pool ||
10095                 error "failed to destroy pool"
10096 }
10097 run_test 133 "stripe QOS: free space balance in a pool"
10098
10099 if ! combined_mgs_mds ; then
10100         stop mgs
10101 fi
10102
10103 cleanup_gss
10104
10105 # restore the values of MDSSIZE and OSTSIZE
10106 MDSSIZE=$STORED_MDSSIZE
10107 OSTSIZE=$STORED_OSTSIZE
10108 reformat
10109
10110 complete $SECONDS
10111 check_and_cleanup_lustre
10112 exit_status