Whamcloud - gitweb
LU-7668 utils: add lctl del_ost
[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         mount_client $MOUNT || error "mount client failed"
5589         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
5590         local idx=$($LFS getstripe -i $DIR/$tdir/$tfile-last)
5591         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
5592
5593         local iused=$($LFS df -i $MOUNT |
5594                 awk '/OST0000/ { print $3 }'; exit ${PIPESTATUS[0]})
5595         log "On OST0, $iused used inodes rc=$?"
5596         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
5597                 error "OST replacement created too many inodes; $iused"
5598         cleanup || error "cleanup failed with $?"
5599 }
5600 run_test 69 "replace an OST with the same index"
5601
5602 test_70a() {
5603         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5604         local MDTIDX=1
5605
5606         cleanup || error "cleanup failed with $?"
5607
5608         start_mdt 1 || error "MDT0 start fail"
5609
5610         start_ost || error "OST0 start fail"
5611         for num in $(seq 2 $MDSCOUNT); do
5612                 start_mdt $num || return
5613         done
5614
5615         mount_client $MOUNT || error "mount client fails"
5616
5617         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
5618
5619         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5620                 error "create remote dir fail"
5621
5622         rm -rf $DIR/$tdir || error "delete dir fail"
5623         cleanup || error "cleanup failed with $?"
5624 }
5625 run_test 70a "start MDT0, then OST, then MDT1"
5626
5627 test_70b() {
5628         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5629         local MDTIDX=1
5630
5631         start_ost || error "OST0 start fail"
5632
5633         start_mds || error "MDS start fail"
5634
5635         mount_client $MOUNT || error "mount client fails"
5636
5637         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
5638
5639         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5640                 error "create remote dir fail"
5641
5642         rm -rf $DIR/$tdir || error "delete dir fail"
5643
5644         cleanup || error "cleanup failed with $?"
5645 }
5646 run_test 70b "start OST, MDT1, MDT0"
5647
5648 test_70c() {
5649         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5650         local MDTIDX=1
5651
5652         start_mds || error "MDS start fail"
5653         start_ost || error "OST0 start fail"
5654
5655         mount_client $MOUNT || error "mount client fails"
5656         stop_mdt 1 || error "MDT1 start fail"
5657
5658         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
5659         echo "deactivate $mdc_for_mdt1"
5660         $LCTL --device $mdc_for_mdt1 deactivate ||
5661                 error "set $mdc_for_mdt1 deactivate failed"
5662
5663         mkdir $DIR/$tdir && error "mkdir succeed"
5664
5665         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
5666                 error "create remote dir succeed"
5667
5668         cleanup || error "cleanup failed with $?"
5669 }
5670 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
5671
5672 test_70d() {
5673         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5674         local MDTIDX=1
5675
5676         start_mds || error "MDS start fail"
5677         start_ost || error "OST0 start fail"
5678
5679         mount_client $MOUNT || error "mount client fails"
5680
5681         stop_mdt 2 || error "MDT1 start fail"
5682
5683         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
5684                              awk '{print $4}')
5685         echo "deactivate $mdc_for_mdt2"
5686         $LCTL --device $mdc_for_mdt2 deactivate ||
5687                 error "set $mdc_for_mdt2 deactivate failed"
5688
5689         mkdir $DIR/$tdir || error "mkdir fail"
5690         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
5691                 error "create remote dir succeed"
5692
5693         rm -rf $DIR/$tdir || error "delete dir fail"
5694
5695         cleanup || error "cleanup failed with $?"
5696 }
5697 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
5698
5699 test_70e() {
5700         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5701
5702         [ "$MDS1_VERSION" -ge $(version_code 2.7.62) ] ||
5703                 skip "Need MDS version at least 2.7.62"
5704
5705         reformat || error "reformat failed with $?"
5706
5707         load_modules
5708
5709         local mdsdev=$(mdsdevname 1)
5710         local ostdev=$(ostdevname 1)
5711         local mdsvdev=$(mdsvdevname 1)
5712         local ostvdev=$(ostvdevname 1)
5713         local opts_mds="$(mkfs_opts mds1 $mdsdev) --reformat $mdsdev $mdsvdev"
5714         local opts_ost="$(mkfs_opts ost1 $ostdev) --reformat $ostdev $ostvdev"
5715
5716         if ! combined_mgs_mds ; then
5717                 start_mgs
5718         fi
5719
5720         add mds1 $opts_mds || error "add mds1 failed"
5721         start_mdt 1 || error "start mdt1 failed"
5722         add ost1 $opts_ost || error "add ost1 failed"
5723         start_ost || error "start ost failed"
5724         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5725
5726         local soc=$(do_facet mds1 "$LCTL get_param -n \
5727                     mdt.*MDT0000.sync_lock_cancel")
5728         [ $soc == "never" ] || error "SoC enabled on single MDS"
5729
5730         for i in $(seq 2 $MDSCOUNT); do
5731                 mdsdev=$(mdsdevname $i)
5732                 mdsvdev=$(mdsvdevname $i)
5733                 opts_mds="$(mkfs_opts mds$i $mdsdev) --reformat $mdsdev \
5734                           $mdsvdev"
5735                 add mds$i $opts_mds || error "add mds$i failed"
5736                 start_mdt $i || error "start mdt$i fail"
5737         done
5738
5739         wait_dne_interconnect
5740
5741         for i in $(seq $MDSCOUNT); do
5742                 soc=$(do_facet mds$i "$LCTL get_param -n \
5743                         mdt.*MDT000$((i - 1)).sync_lock_cancel")
5744                 [ $soc == "blocking" ] || error "SoC not enabled on DNE"
5745         done
5746
5747         for i in $(seq 2 $MDSCOUNT); do
5748                 stop_mdt $i || error "stop mdt$i fail"
5749         done
5750         soc=$(do_facet mds1 "$LCTL get_param -n \
5751                 mdt.*MDT0000.sync_lock_cancel")
5752         [ $soc == "never" ] || error "SoC enabled on single MDS"
5753         umount_client $MOUNT -f > /dev/null
5754
5755         cleanup || error "cleanup failed with $?"
5756 }
5757 run_test 70e "Sync-on-Cancel will be enabled by default on DNE"
5758
5759 test_71a() {
5760         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5761         if combined_mgs_mds; then
5762                 skip "needs separate MGS/MDT"
5763         fi
5764         local MDTIDX=1
5765
5766         start_mdt 1 || error "MDT0 start fail"
5767         start_ost || error "OST0 start fail"
5768         for num in $(seq 2 $MDSCOUNT); do
5769                 start_mdt $num || return
5770         done
5771
5772         start_ost2 || error "OST1 start fail"
5773
5774         mount_client $MOUNT || error "mount client fails"
5775
5776         mkdir $DIR/$tdir || error "mkdir fail"
5777         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5778                 error "create remote dir succeed"
5779
5780         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5781         rm -rf $DIR/$tdir || error "delete dir fail"
5782
5783         umount_client $MOUNT || error "umount_client failed"
5784         stop_mds || error "MDS stop fail"
5785         stop_ost || error "OST0 stop fail"
5786         stop_ost2 || error "OST1 stop fail"
5787 }
5788 run_test 71a "start MDT0 OST0, MDT1, OST1"
5789
5790 test_71b() {
5791         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5792         if combined_mgs_mds; then
5793                 skip "needs separate MGS/MDT"
5794         fi
5795         local MDTIDX=1
5796
5797         for num in $(seq 2 $MDSCOUNT); do
5798                 start_mdt $num || return
5799         done
5800         start_ost || error "OST0 start fail"
5801         start_mdt 1 || error "MDT0 start fail"
5802         start_ost2 || error "OST1 start fail"
5803
5804         mount_client $MOUNT || error "mount client fails"
5805
5806         mkdir $DIR/$tdir || error "mkdir fail"
5807         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5808                 error "create remote dir succeed"
5809
5810         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5811         rm -rf $DIR/$tdir || error "delete dir fail"
5812
5813         umount_client $MOUNT || error "umount_client failed"
5814         stop_mds || error "MDT0 stop fail"
5815         stop_ost || error "OST0 stop fail"
5816         stop_ost2 || error "OST1 stop fail"
5817 }
5818 run_test 71b "start MDT1, OST0, MDT0, OST1"
5819
5820 test_71c() {
5821         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5822         combined_mgs_mds && skip "needs separate MGS/MDT"
5823
5824         local MDTIDX=1
5825
5826         start_ost || error "OST0 start fail"
5827         start_ost2 || error "OST1 start fail"
5828         for num in $(seq 2 $MDSCOUNT); do
5829                 start_mdt $num || return
5830         done
5831         start_mdt 1 || error "MDT0 start fail"
5832
5833         mount_client $MOUNT || error "mount client fails"
5834
5835         mkdir $DIR/$tdir || error "mkdir fail"
5836         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5837                 error "create remote dir succeed"
5838
5839         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5840         rm -rf $DIR/$tdir || error "delete dir fail"
5841
5842         umount_client $MOUNT || error "umount_client failed"
5843         stop_mds || error "MDS stop fail"
5844         stop_ost || error "OST0 stop fail"
5845         stop_ost2 || error "OST1 stop fail"
5846
5847 }
5848 run_test 71c "start OST0, OST1, MDT1, MDT0"
5849
5850 test_71d() {
5851         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5852         combined_mgs_mds && skip "needs separate MGS/MDT"
5853
5854         local MDTIDX=1
5855
5856         start_ost || error "OST0 start fail"
5857         for num in $(seq 2 $MDSCOUNT); do
5858                 start_mdt $num || return
5859         done
5860         start_mdt 1 || error "MDT0 start fail"
5861         start_ost2 || error "OST1 start fail"
5862
5863         mount_client $MOUNT || error "mount client fails"
5864
5865         mkdir $DIR/$tdir || error "mkdir fail"
5866         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5867                         error "create remote dir succeed"
5868
5869         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5870         rm -rf $DIR/$tdir || error "delete dir fail"
5871
5872         umount_client $MOUNT || error "umount_client failed"
5873         stop_mds || error "MDS stop fail"
5874         stop_ost || error "OST0 stop fail"
5875         stop_ost2 || error "OST1 stop fail"
5876
5877 }
5878 run_test 71d "start OST0, MDT1, MDT0, OST1"
5879
5880 test_71e() {
5881         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5882         combined_mgs_mds && skip "needs separate MGS/MDT"
5883
5884         local MDTIDX=1
5885
5886         start_ost || error "OST0 start fail"
5887         for num in $(seq 2 $MDSCOUNT); do
5888                 start_mdt $num || return
5889         done
5890         start_ost2 || error "OST1 start fail"
5891         start_mdt 1 || error "MDT0 start fail"
5892
5893         mount_client $MOUNT || error "mount client fails"
5894
5895         mkdir $DIR/$tdir || error "mkdir fail"
5896         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5897                 error "create remote dir succeed"
5898
5899         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5900         rm -rf $DIR/$tdir || error "delete dir fail"
5901
5902         umount_client $MOUNT || error "umount_client failed"
5903         stop_mds || error "MDS stop fail"
5904         stop_ost || error "OST0 stop fail"
5905         stop_ost2 || error "OST1 stop fail"
5906
5907 }
5908 run_test 71e "start OST0, MDT1, OST1, MDT0"
5909
5910 test_72() { #LU-2634
5911         [ "$mds1_FSTYPE" != ldiskfs ] &&
5912                 skip "ldiskfs only test"
5913
5914         local mdsdev=$(mdsdevname 1)
5915         local ostdev=$(ostdevname 1)
5916         local cmd="$E2FSCK -fnvd $mdsdev"
5917         local fn=3
5918         local add_options
5919
5920         cleanup
5921         load_modules
5922
5923         if combined_mgs_mds; then
5924                 add_options='--reformat'
5925         else
5926                 add_options='--reformat --replace'
5927         fi
5928
5929         #tune MDT with "-O extents"
5930
5931         for num in $(seq $MDSCOUNT); do
5932                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
5933                         $add_options $(mdsdevname $num) $(mdsvdevname $num) ||
5934                         error "add mds $num failed"
5935                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
5936                         error "$TUNE2FS failed on mds${num}"
5937         done
5938
5939         add ost1 $(mkfs_opts ost1 $ostdev) $add_options $ostdev ||
5940                 error "add $ostdev failed"
5941         start_mds || error "start mds failed"
5942         start_ost || error "start ost failed"
5943         mount_client $MOUNT || error "mount client failed"
5944
5945         #create some short symlinks
5946         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5947         createmany -o $DIR/$tdir/$tfile-%d $fn
5948         echo "create $fn short symlinks"
5949         for i in $(seq -w 1 $fn); do
5950                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
5951         done
5952         ls -al $MOUNT
5953
5954         #umount
5955         umount_client $MOUNT || error "umount client failed"
5956         stop_mds || error "stop mds failed"
5957         stop_ost || error "stop ost failed"
5958
5959         #run e2fsck
5960         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
5961 }
5962 run_test 72 "test fast symlink with extents flag enabled"
5963
5964 test_73() { #LU-3006
5965         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
5966         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
5967                 error "1st tunefs failed"
5968         start_mgsmds || error "start mds failed"
5969         start_ost || error "start ost failed"
5970         mount_client $MOUNT || error "mount client failed"
5971         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
5972                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
5973         umount_client $MOUNT || error "umount client failed"
5974         stop_ost
5975         stop_mds
5976 }
5977 run_test 73 "failnode to update from mountdata properly"
5978
5979 test_75() { # LU-2374
5980         [[ "$MDS1_VERSION" -lt $(version_code 2.4.1) ]] &&
5981                 skip "Need MDS version at least 2.4.1"
5982
5983         local index=0
5984         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
5985                 --replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
5986         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
5987                 --replace --reformat $(ostdevname 1) $(ostvdevname 1)"
5988
5989         #check with default parameters
5990         add mds1 $opts_mds || error "add mds1 failed for default params"
5991         add ost1 $opts_ost || error "add ost1 failed for default params"
5992
5993         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
5994         opts_mds=$(echo $opts_mds |
5995                    sed -e "s/--index=$index/--index=$index --mdt/")
5996         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
5997         opts_ost=$(echo $opts_ost |
5998                    sed -e "s/--index=$index/--index=$index --ost/")
5999
6000         add mds1 $opts_mds || error "add mds1 failed for new params"
6001         add ost1 $opts_ost || error "add ost1 failed for new params"
6002
6003         reformat_and_config
6004         return 0
6005 }
6006 run_test 75 "The order of --index should be irrelevant"
6007
6008 test_76a() {
6009         [[ "$MGS_VERSION" -ge $(version_code 2.4.52) ]] ||
6010                 skip "Need MDS version at least 2.4.52"
6011
6012         setup
6013         local MDMB_PARAM="osc.*.max_dirty_mb"
6014         echo "Change MGS params"
6015         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
6016                 head -1)
6017         echo "max_dirty_mb: $MAX_DIRTY_MB"
6018         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB - 10))
6019         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
6020         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
6021         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
6022                 head -1" $NEW_MAX_DIRTY_MB
6023         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
6024         echo "$MAX_DIRTY_MB"
6025         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
6026                 error "error while apply max_dirty_mb"
6027
6028         echo "Check the value is stored after remount"
6029         stopall
6030         setupall
6031         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
6032                 head -1" $NEW_MAX_DIRTY_MB
6033         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
6034         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
6035                 error "max_dirty_mb is not saved after remount"
6036
6037         echo "Change OST params"
6038         CLIENT_PARAM="obdfilter.*.client_cache_count"
6039         local CLIENT_CACHE_COUNT
6040         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6041                 head -1)
6042         echo "client_cache_count: $CLIENT_CACHE_COUNT"
6043         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
6044         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
6045         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
6046         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
6047                 head -1" $NEW_CLIENT_CACHE_COUNT
6048         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6049                 head -1)
6050         echo "$CLIENT_CACHE_COUNT"
6051         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
6052                 error "error while apply client_cache_count"
6053
6054         echo "Check the value is stored after remount"
6055         stopall
6056         setupall
6057         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
6058                 head -1" $NEW_CLIENT_CACHE_COUNT
6059         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6060                 head -1)
6061         echo "$CLIENT_CACHE_COUNT"
6062         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
6063                 error "client_cache_count is not saved after remount"
6064         stopall
6065 }
6066 run_test 76a "set permanent params with lctl across mounts"
6067
6068 test_76b() { # LU-4783
6069         [[ "$MGS_VERSION" -ge $(version_code 2.5.57) ]] ||
6070                 skip "Need MGS version at least 2.5.57"
6071         stopall
6072         setupall
6073         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
6074                 error "start params log failed"
6075         stopall
6076 }
6077 run_test 76b "verify params log setup correctly"
6078
6079 test_76c() {
6080         [[ "$MGS_VERSION" -ge $(version_code 2.8.54) ]] ||
6081                 skip "Need MDS version at least 2.4.52"
6082         setupall
6083         local MASK_PARAM="mdd.*.changelog_mask"
6084         echo "Change changelog_mask"
6085         do_facet mgs $LCTL set_param -P $MASK_PARAM=-CLOSE ||
6086                 error "Can't change changlog_mask"
6087         wait_update $(facet_host mds) "$LCTL get_param -n $MASK_PARAM |
6088                 grep 'CLOSE'" ""
6089
6090         echo "Check the value is stored after mds remount"
6091         stop_mds || error "Failed to stop MDS"
6092         start_mds || error "Failed to start MDS"
6093         local CHANGELOG_MASK=$(do_facet mgs $LCTL get_param -n $MASK_PARAM)
6094         echo $CHANGELOG_MASK | grep CLOSE > /dev/null &&
6095                 error "changelog_mask is not changed"
6096
6097         stopall
6098 }
6099 run_test 76c "verify changelog_mask is applied with lctl set_param -P"
6100
6101 test_76d() { #LU-9399
6102         setupall
6103
6104         local xattr_cache="llite.*.xattr_cache"
6105         local cmd="$LCTL get_param -n $xattr_cache | head -1"
6106         local new=$((($(eval $cmd) + 1) % 2))
6107
6108         echo "lctl set_param -P llite.*.xattr_cache=$new"
6109         do_facet mgs $LCTL set_param -P $xattr_cache=$new ||
6110                 error "Can't change xattr_cache"
6111         wait_update $HOSTNAME "$cmd" "$new"
6112
6113         echo "Check $xattr_cache on client $MOUNT"
6114         umount_client $MOUNT || error "umount $MOUNT failed"
6115         mount_client $MOUNT || error "mount $MOUNT failed"
6116         [ $(eval $cmd) -eq $new ] ||
6117                 error "$xattr_cache != $new on client $MOUNT"
6118
6119         echo "Check $xattr_cache on the new client $MOUNT2"
6120         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6121         [ $(eval $cmd) -eq $new ] ||
6122                 error "$xattr_cache != $new on client $MOUNT2"
6123         umount_client $MOUNT2 || error "umount $MOUNT2 failed"
6124
6125         stopall
6126 }
6127 run_test 76d "verify llite.*.xattr_cache can be set by 'lctl set_param -P' correctly"
6128
6129 test_77() { # LU-3445
6130         [[ "$MDS1_VERSION" -ge $(version_code 2.8.55) ]] ||
6131                 skip "Need MDS version 2.8.55+ "
6132
6133         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
6134                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
6135                 skip_env "mixed loopback and real device not working"
6136         fi
6137
6138         local fs2mdsdev=$(mdsdevname 1_2)
6139         local fs2ostdev=$(ostdevname 1_2)
6140         local fs2mdsvdev=$(mdsvdevname 1_2)
6141         local fs2ostvdev=$(ostvdevname 1_2)
6142         local fsname=test1234
6143         local mgsnid
6144         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
6145
6146         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
6147
6148         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
6149                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
6150         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
6151                 error "start fs2mds failed"
6152
6153         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
6154         mgsnid="0.0.0.0@tcp,$mgsnid,$mgsnid:$mgsnid"
6155
6156         add fs2ost --mgsnode=$mgsnid $(mkfs_opts ost1 $fs2ostdev) \
6157                 --failnode=$failnid --fsname=$fsname \
6158                 --reformat $fs2ostdev $fs2ostvdev ||
6159                         error "add fs2ost failed"
6160         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
6161
6162         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
6163         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
6164         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
6165         cleanup_fs2
6166 }
6167 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
6168
6169 test_78() {
6170         [[ "$mds1_FSTYPE" != ldiskfs ||
6171            "$ost1_FSTYPE" != ldiskfs ]] &&
6172                 skip "ldiskfs only test"
6173
6174         # reformat the Lustre filesystem with a smaller size
6175         local saved_MDSCOUNT=$MDSCOUNT
6176         local saved_MDSSIZE=$MDSSIZE
6177         local saved_OSTCOUNT=$OSTCOUNT
6178         local saved_OSTSIZE=$OSTSIZE
6179         MDSCOUNT=1
6180         OSTCOUNT=1
6181         MDSSIZE=$((MDSSIZE - 20000))
6182         OSTSIZE=$((OSTSIZE - 20000))
6183         reformat || error "(1) reformat Lustre filesystem failed"
6184         MDSSIZE=$saved_MDSSIZE
6185         OSTSIZE=$saved_OSTSIZE
6186
6187         # mount the Lustre filesystem
6188         setup_noconfig || error "(2) setup Lustre filesystem failed"
6189
6190         # create some files
6191         log "create test files"
6192         local i
6193         local file
6194         local num_files=100
6195
6196         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
6197         $LFS df; $LFS df -i
6198         for i in $(seq $num_files); do
6199                 file=$MOUNT/$tdir/$tfile-$i
6200                 dd if=/dev/urandom of=$file count=1 bs=1M || {
6201                         $LCTL get_param osc.*.cur*grant*
6202                         $LFS df; $LFS df -i;
6203                         # stop creating files if there is no more space
6204                         if [ ! -e $file ]; then
6205                                 num_files=$((i - 1))
6206                                 break
6207                         fi
6208
6209                         $LFS getstripe -v $file
6210                         local ost_idx=$(LFS getstripe -i $file)
6211                         do_facet ost$((ost_idx + 1)) \
6212                                 $LCTL get_param obdfilter.*.*grant*
6213                         error "(4) create $file failed"
6214                 }
6215         done
6216
6217         # unmount the Lustre filesystem
6218         cleanup || error "(5) cleanup Lustre filesystem failed"
6219
6220         # run e2fsck on the MDT and OST devices
6221         local mds_host=$(facet_active_host $SINGLEMDS)
6222         local ost_host=$(facet_active_host ost1)
6223         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6224         local ost_dev=$(ostdevname 1)
6225
6226         run_e2fsck $mds_host $mds_dev "-y"
6227         run_e2fsck $ost_host $ost_dev "-y"
6228
6229         # get the original block count of the MDT and OST filesystems
6230         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
6231         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
6232
6233         # expand the MDT and OST filesystems to the device size
6234         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
6235         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
6236
6237         # run e2fsck on the MDT and OST devices again
6238         run_e2fsck $mds_host $mds_dev "-y"
6239         run_e2fsck $ost_host $ost_dev "-y"
6240
6241         # mount the Lustre filesystem
6242         setup
6243
6244         # check the files
6245         log "check files after expanding the MDT and OST filesystems"
6246         for i in $(seq $num_files); do
6247                 file=$MOUNT/$tdir/$tfile-$i
6248                 $CHECKSTAT -t file -s 1048576 $file ||
6249                         error "(6) checkstat $file failed"
6250         done
6251
6252         # create more files
6253         log "create more files after expanding the MDT and OST filesystems"
6254         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
6255                 file=$MOUNT/$tdir/$tfile-$i
6256                 dd if=/dev/urandom of=$file count=1 bs=1M ||
6257                         error "(7) create $file failed"
6258         done
6259
6260         # unmount the Lustre filesystem
6261         cleanup || error "(8) cleanup Lustre filesystem failed"
6262
6263         # run e2fsck on the MDT and OST devices
6264         run_e2fsck $mds_host $mds_dev "-y"
6265         run_e2fsck $ost_host $ost_dev "-y"
6266
6267         # get the maximum block count of the MDT and OST filesystems
6268         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
6269         local ost_max_blks=$(get_block_count ost1 $ost_dev)
6270
6271         # get the minimum block count of the MDT and OST filesystems
6272         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
6273                                 grep minimum | sed -e 's/^.*filesystem: //g')
6274         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
6275                                 grep minimum | sed -e 's/^.*filesystem: //g')
6276
6277         # shrink the MDT and OST filesystems to a smaller size
6278         local shrunk=false
6279         local new_blks
6280         local base_blks
6281         if [[ $mds_max_blks -gt $mds_min_blks &&
6282               $mds_max_blks -gt $mds_orig_blks ]]; then
6283                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
6284                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
6285                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
6286                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
6287                         error "shrink $SINGLEMDS to $new_blks failed"
6288                 shrunk=true
6289         fi
6290
6291         if [[ $ost_max_blks -gt $ost_min_blks &&
6292               $ost_max_blks -gt $ost_orig_blks ]]; then
6293                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
6294                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
6295                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
6296                 run_resize2fs ost1 $ost_dev $new_blks ||
6297                         error "shrink ost1 to $new_blks failed"
6298                 shrunk=true
6299         fi
6300
6301         # check whether the MDT or OST filesystem was shrunk or not
6302         if ! $shrunk; then
6303                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
6304                 reformat_and_config ||
6305                         error "(10) reformat Lustre filesystem failed"
6306                 return 0
6307         fi
6308
6309         # run e2fsck on the MDT and OST devices again
6310         run_e2fsck $mds_host $mds_dev "-y"
6311         run_e2fsck $ost_host $ost_dev "-y"
6312
6313         # mount the Lustre filesystem again
6314         setup
6315
6316         # check the files
6317         log "check files after shrinking the MDT and OST filesystems"
6318         for i in $(seq $((num_files + 10))); do
6319                 file=$MOUNT/$tdir/$tfile-$i
6320                 $CHECKSTAT -t file -s 1048576 $file ||
6321                         error "(11) checkstat $file failed"
6322         done
6323
6324         # unmount and reformat the Lustre filesystem
6325         cleanup || error "(12) cleanup Lustre filesystem failed"
6326         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
6327
6328         MDSCOUNT=$saved_MDSCOUNT
6329         OSTCOUNT=$saved_OSTCOUNT
6330         reformat_and_config || error "(14) reformat Lustre filesystem failed"
6331 }
6332 run_test 78 "run resize2fs on MDT and OST filesystems"
6333
6334 test_79() { # LU-4227
6335         [[ "$MDS1_VERSION" -ge $(version_code 2.5.59) ]] ||
6336                 skip "Need MDS version at least 2.5.59"
6337
6338         local mdsdev1=$(mdsdevname 1)
6339         local mdsvdev1=$(mdsvdevname 1)
6340         local mdsdev2=$(mdsdevname 2)
6341         local mdsvdev2=$(mdsvdevname 2)
6342         local ostdev1=$(ostdevname 1)
6343         local ostvdev1=$(ostvdevname 1)
6344         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
6345         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
6346         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
6347         local mgsnode_opt
6348
6349         # remove --mgs/--mgsnode from mkfs.lustre options
6350         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
6351
6352         mgsnode_opt=$(echo $opts_mds2 |
6353                 awk '{ for ( i = 1; i < NF; i++ )
6354                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
6355         [ -n "$mgsnode_opt" ] &&
6356                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
6357
6358         mgsnode_opt=$(echo $opts_ost1 |
6359                 awk '{ for ( i = 1; i < NF; i++ )
6360                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
6361         [ -n "$mgsnode_opt" ] &&
6362                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
6363         load_modules
6364         # -MGS, format a mdt without --mgs option
6365         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
6366                 error "Must specify --mgs when formatting mdt combined with mgs"
6367
6368         # +MGS, format a mdt/ost without --mgsnode option
6369         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
6370                 > /dev/null || error "start mds1 failed"
6371         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
6372                 error "Must specify --mgsnode when formatting a mdt"
6373         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
6374                 error "Must specify --mgsnode when formatting an ost"
6375
6376         reformat_and_config
6377 }
6378 run_test 79 "format MDT/OST without mgs option (should return errors)"
6379
6380 test_80() {
6381         start_mds || error "Failed to start MDT"
6382         start_ost || error "Failed to start OST1"
6383         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
6384 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
6385         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
6386         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
6387         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
6388         sleep 30
6389         start_ost2 || error "Failed to start OST2"
6390
6391         do_facet ost1 "$LCTL set_param fail_loc=0"
6392         stop_ost2
6393         stop_ost
6394         stop_mds
6395 }
6396 run_test 80 "mgc import reconnect race"
6397
6398 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
6399 save_ostindex() {
6400         local new_ostcount=$1
6401         saved_ostcount=$OSTCOUNT
6402         OSTCOUNT=$new_ostcount
6403
6404         local i
6405         local index
6406         for i in $(seq $OSTCOUNT); do
6407                 index=OSTINDEX$i
6408                 eval saved_ostindex$i=${!index}
6409                 eval OSTINDEX$i=""
6410         done
6411 }
6412
6413 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
6414 restore_ostindex() {
6415         trap 0
6416
6417         local i
6418         local index
6419         for i in $(seq $OSTCOUNT); do
6420                 index=saved_ostindex$i
6421                 eval OSTINDEX$i=${!index}
6422         done
6423         OSTCOUNT=$saved_ostcount
6424
6425         reformat
6426         if ! combined_mgs_mds ; then
6427                 start_mgs
6428         fi
6429 }
6430
6431 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
6432 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
6433 # assigned index and ensures we can mount such a formatted file system
6434 test_81() { # LU-4665
6435         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6436                 skip "Need MDS version at least 2.6.54"
6437         [[ $OSTCOUNT -ge 3 ]] || skip_env "needs >= 3 OSTs"
6438
6439         stopall
6440
6441         # Each time RANDOM is referenced, a random integer between 0 and 32767
6442         # is generated.
6443         local i
6444         local saved_ostindex1=$OSTINDEX1
6445         for i in 65535 $((RANDOM + 65536)); do
6446                 echo -e "\nFormat ost1 with --index=$i, should fail"
6447                 OSTINDEX1=$i
6448                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
6449                    $(ostdevname 1) $(ostvdevname 1); then
6450                         OSTINDEX1=$saved_ostindex1
6451                         error "format ost1 with --index=$i should fail"
6452                 fi
6453         done
6454         OSTINDEX1=$saved_ostindex1
6455
6456         save_ostindex 3
6457
6458         # Format OSTs with random sparse indices.
6459         trap "restore_ostindex" EXIT
6460         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
6461         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
6462
6463         # Setup and check Lustre filesystem.
6464         start_mgsmds || error "start_mgsmds failed"
6465         for i in $(seq $OSTCOUNT); do
6466                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6467                         error "start ost$i failed"
6468         done
6469
6470         mount_client $MOUNT || error "mount client $MOUNT failed"
6471         check_mount || error "check client $MOUNT failed"
6472
6473         # Check max_easize.
6474         local max_easize=$($LCTL get_param -n llite.*.max_easize)
6475         # 65452 is XATTR_SIZE_MAX less ldiskfs ea overhead
6476         if large_xattr_enabled; then
6477                 [[ $max_easize -ge 65452 ]] ||
6478                         error "max_easize is $max_easize, should be at least 65452 bytes"
6479         else
6480                 # LU-11868
6481                 # 4012 is 4096 less ldiskfs ea overhead
6482                 [[ $max_easize -ge 4012 ]] ||
6483                         error "max_easize is $max_easize, should be at least 4012 bytes"
6484         fi
6485
6486         restore_ostindex
6487 }
6488 run_test 81 "sparse OST indexing"
6489
6490 # Here we exercise the stripe placement functionality on a file system that
6491 # has formatted the OST with a random index. With the file system the following
6492 # functionality is tested:
6493 #
6494 # 1. Creating a new file with a specific stripe layout.
6495 #
6496 # 2. Modifiy a existing empty file with a specific stripe layout.
6497 #
6498 # 3. Ensure we fail to set the stripe layout of a file that already has one.
6499 #
6500 # 4. If ost-index is defined we need to ensure it is the first entry in the
6501 #    ost index list returned by lfs getstripe.
6502 #
6503 # 5. Lastly ensure this functionality fails with directories.
6504 test_82a() { # LU-4665
6505         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6506                 skip "Need MDS version at least 2.6.54"
6507         [[ $OSTCOUNT -ge 3 ]] || skip_env "needs >= 3 OSTs"
6508
6509         stopall
6510
6511         save_ostindex 3
6512
6513         # Format OSTs with random sparse indices.
6514         local i
6515         local index
6516         local ost_indices
6517         local LOV_V1_INSANE_STRIPE_COUNT=65532
6518         for i in $(seq $OSTCOUNT); do
6519                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
6520                 ost_indices+=" $index"
6521         done
6522         ost_indices=$(comma_list $ost_indices)
6523
6524         stack_trap "restore_ostindex" EXIT
6525         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
6526         OST_INDEX_LIST=[$ost_indices] formatall
6527
6528         # Setup Lustre filesystem.
6529         start_mgsmds || error "start_mgsmds failed"
6530         for i in $(seq $OSTCOUNT); do
6531                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6532                         error "start ost$i failed"
6533         done
6534
6535         # Collect debug information - start of test
6536         do_nodes $(comma_list $(mdts_nodes)) \
6537                    $LCTL get_param osp.*.prealloc_*_id
6538
6539         mount_client $MOUNT || error "mount client $MOUNT failed"
6540         wait_osts_up
6541
6542         $LFS df $MOUNT
6543         check_lfs_df_ret_val $? || error "$LFS df $MOUNT failed"
6544         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6545
6546         stack_trap "do_nodes $(comma_list $(mdts_nodes)) \
6547                    $LCTL get_param osp.*.prealloc_*_id" EXIT
6548
6549         # 1. If the file does not exist, new file will be created
6550         #    with specified OSTs.
6551         local file=$DIR/$tdir/$tfile-1
6552         local cmd="$LFS setstripe -o $ost_indices $file"
6553         echo -e "\n$cmd"
6554         eval $cmd || error "$cmd failed"
6555         check_stripe_count $file $OSTCOUNT
6556         check_obdidx $file $ost_indices
6557         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6558                 error "write $file failed"
6559
6560         # 2. If the file already exists and is an empty file, the file
6561         #    will be attached with specified layout.
6562         file=$DIR/$tdir/$tfile-2
6563         mcreate $file || error "mcreate $file failed"
6564         cmd="$LFS setstripe -o $ost_indices $file"
6565         echo -e "\n$cmd"
6566         eval $cmd || error "$cmd failed"
6567         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6568                 error "write $file failed"
6569         check_stripe_count $file $OSTCOUNT
6570         check_obdidx $file $ost_indices
6571
6572         # 3. If the file already has a valid layout attached, the command
6573         #    should fail with EBUSY.
6574         echo -e "\n$cmd"
6575         eval $cmd && error "stripe is already set on $file, $cmd should fail"
6576
6577         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
6578         #    be in the OST indices list.
6579         local start_ost_idx=${ost_indices##*,}
6580         file=$DIR/$tdir/$tfile-3
6581         cmd="$LFS setstripe -o $ost_indices -i $start_ost_idx $file"
6582         echo -e "\n$cmd"
6583         eval $cmd || error "$cmd failed"
6584         check_stripe_count $file $OSTCOUNT
6585         check_obdidx $file $ost_indices
6586         check_start_ost_idx $file $start_ost_idx
6587
6588         file=$DIR/$tdir/$tfile-4
6589         cmd="$LFS setstripe"
6590         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
6591         cmd+=" -i $start_ost_idx $file"
6592         echo -e "\n$cmd"
6593         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
6594
6595         # 5. Specifying OST indices for directory should succeed.
6596         local dir=$DIR/$tdir/$tdir
6597         mkdir $dir || error "mkdir $dir failed"
6598         cmd="$LFS setstripe -o $ost_indices $dir"
6599         if [ "$MDS1_VERSION" -gt $(version_code 2.11.53) ] &&
6600                 [ "$CLIENT_VERSION" -gt $(version_code 2.11.53) ]; then
6601                 echo -e "\n$cmd"
6602                 eval $cmd || error "unable to specify OST indices on directory"
6603         else
6604                 echo "need MDS+client version at least 2.11.53"
6605         fi
6606
6607         restore_ostindex
6608 }
6609 run_test 82a "specify OSTs for file (succeed) or directory (succeed)"
6610
6611 cleanup_82b() {
6612         trap 0
6613
6614         # Remove OSTs from a pool and destroy the pool.
6615         destroy_pool $ost_pool || true
6616
6617         restore_ostindex
6618 }
6619
6620 # Test 82b is run to ensure that if the user supplies a pool with a specific
6621 # stripe layout that it behaves proprerly. It should fail in the case that
6622 # the supplied OST index list points to OSTs not contained in the user
6623 # supplied pool.
6624 test_82b() { # LU-4665
6625         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6626                 skip "Need MDS version at least 2.6.54"
6627         [[ $OSTCOUNT -ge 4 ]] || skip_env "needs >= 4 OSTs"
6628
6629         stopall
6630
6631         save_ostindex 4
6632
6633         # Format OSTs with random sparse indices.
6634         local i
6635         local index
6636         local ost_indices
6637         local LOV_V1_INSANE_STRIPE_COUNT=65532
6638         for i in $(seq $OSTCOUNT); do
6639                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
6640                 ost_indices+=" $index"
6641         done
6642         ost_indices=$(comma_list $ost_indices)
6643
6644         trap "restore_ostindex" EXIT
6645         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
6646         OST_INDEX_LIST=[$ost_indices] formatall
6647
6648         # Setup Lustre filesystem.
6649         start_mgsmds || error "start_mgsmds failed"
6650         for i in $(seq $OSTCOUNT); do
6651                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6652                         error "start ost$i failed"
6653         done
6654
6655         mount_client $MOUNT || error "mount client $MOUNT failed"
6656
6657         wait_osts_up
6658         $LFS df $MOUNT
6659         check_lfs_df_ret_val $? || error "$LFS df $MOUNT failed"
6660         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6661
6662         # Create a new pool and add OSTs into it.
6663         local ost_pool=$FSNAME.$TESTNAME
6664         create_pool $ost_pool || error "create OST pool $ost_pool failed"
6665
6666         trap - EXIT
6667         trap "cleanup_82b" EXIT
6668
6669         local ost_idx_in_list=${ost_indices##*,}
6670         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
6671                                 $ost_idx_in_list)
6672
6673         local ost_targets="$FSNAME-OST["
6674         for i in ${ost_idx_in_pool//,/ }; do
6675                 ost_targets=$ost_targets$(printf "%04x," $i)
6676         done
6677         ost_targets="${ost_targets%,}]"
6678
6679         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
6680                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
6681                                  sort -u | tr '\n' ' ')
6682
6683         local cmd="$LCTL pool_add $ost_pool $ost_targets"
6684         do_facet mgs $cmd || error "$cmd failed"
6685         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
6686                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
6687                                         error "wait_update $ost_pool failed"
6688         wait_update_facet $SINGLEMDS "$LCTL pool_list $ost_pool | wc -l" 4 ||
6689                                 error "wait_update pool_list $ost_pool failed"
6690
6691         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
6692         # then the OSTs must be the members of the pool.
6693         local file=$DIR/$tdir/$tfile
6694         cmd="$LFS setstripe -p $ost_pool -o $ost_idx_in_list $file"
6695         echo -e "\n$cmd"
6696         eval $cmd && error "OST with index $ost_idx_in_list should be" \
6697                            "in OST pool $ost_pool"
6698
6699         # Only select OST $ost_idx_in_list from $ost_pool for file.
6700         ost_idx_in_list=${ost_idx_in_pool#*,}
6701         cmd="$LFS setstripe -p $ost_pool -o $ost_idx_in_list $file"
6702         echo -e "\n$cmd"
6703         eval $cmd || error "$cmd failed"
6704         cmd="$LFS getstripe $file"
6705         echo -e "\n$cmd"
6706         eval $cmd || error "$cmd failed"
6707         check_stripe_count $file 2
6708         check_obdidx $file $ost_idx_in_list
6709         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6710                 error "write $file failed"
6711
6712         cleanup_82b
6713 }
6714 run_test 82b "specify OSTs for file with --pool and --ost-list options"
6715
6716 test_83() {
6717         [[ "$OST1_VERSION" -ge $(version_code 2.6.91) ]] ||
6718                 skip "Need OST version at least 2.6.91"
6719         if [ "$ost1_FSTYPE" != ldiskfs ]; then
6720                 skip "ldiskfs only test"
6721         fi
6722
6723         local dev
6724         local ostmnt
6725         local fstype
6726         local mnt_opts
6727
6728         dev=$(ostdevname 1)
6729         ostmnt=$(facet_mntpt ost1)
6730
6731         # Mount the OST as an ldiskfs filesystem.
6732         log "mount the OST $dev as a $ost1_FSTYPE filesystem"
6733         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
6734                 --reformat $dev > /dev/null ||
6735                 error "format ost1 error"
6736
6737         if ! test -b $dev; then
6738                 mnt_opts=$(csa_add "$OST_MOUNT_FS_OPTS" -o loop)
6739         fi
6740         echo "mnt_opts $mnt_opts"
6741         do_facet ost1 mount -t "$ost1_FSTYPE" $dev \
6742                 $ostmnt $mnt_opts
6743         # Run llverfs on the mounted ldiskfs filesystem.
6744         # It is needed to get ENOSPACE.
6745         log "run llverfs in partial mode on the OST $ost1_FSTYPE $ostmnt"
6746         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
6747                 "no" || error "run_llverfs error on $ost1_FSTYPE"
6748
6749         # Unmount the OST.
6750         log "unmount the OST $dev"
6751         stop ost1
6752
6753         # Delete file IO_scrub. Later osd_scrub_setup will try to
6754         # create "IO_scrub" but will get ENOSPACE.
6755         writeconf_all
6756         echo "start ost1 service on `facet_active_host ost1`"
6757         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
6758
6759         local err
6760         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
6761         echo "string err $err"
6762         [ -z "$err" ] || error $err
6763         reformat_and_config
6764 }
6765 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
6766 Busy inodes after unmount ..."
6767
6768 test_84() {
6769         local facet=$SINGLEMDS
6770         local num=$(echo $facet | tr -d "mds")
6771         local dev=$(mdsdevname $num)
6772         local time_min=$(recovery_time_min)
6773         local recovery_duration
6774         local completed_clients
6775         local correct_clients
6776         local wrap_up=5
6777
6778         echo "start mds service on $(facet_active_host $facet)"
6779         start_mds \
6780         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
6781                 error "start MDS failed"
6782
6783         start_ost || error "start OST0000 failed"
6784         start_ost2 || error "start OST0001 failed"
6785
6786         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
6787
6788         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
6789         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6790         # make sure new superblock labels are sync'd before disabling writes
6791         sync_all_data
6792         sleep 5
6793
6794         replay_barrier $SINGLEMDS
6795         createmany -o $DIR1/$tfile-%d 1000
6796
6797         # We need to catch the end of recovery window to extend it.
6798         # Skip 5 requests and add delay to request handling.
6799         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
6800         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
6801
6802         facet_failover --fsck $SINGLEMDS || error "failover: $?"
6803         client_up
6804
6805         echo "recovery status"
6806         do_facet $SINGLEMDS \
6807                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
6808
6809         recovery_duration=$(do_facet $SINGLEMDS \
6810                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6811                 awk '/recovery_duration/ { print $2 }')
6812         (( $recovery_duration > $time_min + $wrap_up )) &&
6813                 error "recovery_duration > recovery_time_hard + wrap up"
6814         completed_clients=$(do_facet $SINGLEMDS \
6815                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6816                 awk '/completed_clients/ { print $2 }')
6817
6818         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
6819         [ "$completed_clients" = "${correct_clients}" ] ||
6820                 error "$completed_clients != $correct_clients"
6821
6822         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
6823         umount_client $MOUNT1
6824         umount_client $MOUNT2
6825
6826         stop_ost
6827         stop_ost2
6828         stop_mds
6829 }
6830 run_test 84 "check recovery_hard_time"
6831
6832 test_85() {
6833         [[ "$OST1_VERSION" -ge $(version_code 2.7.55) ]] ||
6834                 skip "Need OST version at least 2.7.55"
6835 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
6836         do_facet ost1 "lctl set_param fail_loc=0x197"
6837         start_ost
6838         stop_ost
6839 }
6840 run_test 85 "osd_ost init: fail ea_fid_set"
6841
6842 cleanup_86() {
6843         trap 0
6844
6845         # ost1 has already registered to the MGS before the reformat.
6846         # So after reformatting it with option "-G", it could not be
6847         # mounted to the MGS. Cleanup the system for subsequent tests.
6848         reformat_and_config
6849 }
6850
6851 test_86() {
6852         [ "$ost1_FSTYPE" = zfs ] &&
6853                 skip "LU-6442: no such mkfs params for ZFS OSTs"
6854         [[ "$MDS1_VERSION" -ge $(version_code 2.7.56) ]] ||
6855                 skip "Need server version newer than 2.7.55"
6856
6857         local NEWSIZE=1024
6858         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6859                 awk '/Flex block group size: / { print $NF; exit; }')
6860
6861         [ "$OLDSIZE" == "$NEWSIZE" ] && skip "$NEWSIZE groups already"
6862
6863         local opts=" -O flex_bg -G $NEWSIZE"
6864         opts=$(OST_FS_MKFS_OPTS+="$opts" mkfs_opts ost1 $(ostdevname 1))
6865         opts+=" --reformat $(ostdevname 1) $(ostvdevname 1)"
6866         echo "params: $opts"
6867
6868         trap cleanup_86 EXIT ERR
6869
6870         stopall
6871         add ost1 $opts || error "add ost1 failed with new params"
6872
6873         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6874                 awk '/Flex block group size: / { print $NF; exit; }')
6875
6876         [[ $FOUNDSIZE == $NEWSIZE ]] ||
6877                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
6878
6879         cleanup_86
6880 }
6881 run_test 86 "Replacing mkfs.lustre -G option"
6882
6883 test_87() { #LU-6544
6884         [[ "$MDS1_VERSION" -ge $(version_code 2.9.51) ]] ||
6885                 skip "Need MDS version at least 2.9.51"
6886         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
6887                 skip "ldiskfs only test"
6888         [[ $OSTCOUNT -gt 59 ]] &&
6889                 skip "Ignore wide striping situation"
6890         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
6891
6892         local mdsdev=$(mdsdevname 1)
6893         local mdsvdev=$(mdsvdevname 1)
6894         local file=$DIR/$tfile
6895         local mntpt=$(facet_mntpt $SINGLEMDS)
6896         local used_xattr_blk=0
6897         local inode_size=${1:-1024}
6898         local left_size=0
6899         local xtest="trusted.test"
6900         local value
6901         local orig
6902         local i
6903         local stripe_cnt=$(($OSTCOUNT + 2))
6904
6905         #Please see ldiskfs_make_lustre() for MDT inode size calculation
6906         if [ $stripe_cnt -gt 16 ]; then
6907                 inode_size=2048
6908         fi
6909         left_size=$(expr $inode_size - \
6910                         156 - \
6911                         32 - \
6912                         32 - 40 \* 3 - 32 \* 3 - $stripe_cnt \* 24 - 16 - 3 -  \
6913                         24 - 16 - 3 - \
6914                         24 - 18 - $(expr length $tfile) - 16 - 4)
6915         if [ $left_size -le 0 ]; then
6916                 echo "No space($left_size) is expected in inode."
6917                 echo "Try 1-byte xattr instead to verify this."
6918                 left_size=1
6919         else
6920                 echo "Estimate: at most $left_size-byte space left in inode."
6921         fi
6922
6923         unload_modules
6924         reformat
6925
6926         if ! combined_mgs_mds ; then
6927                 start_mgs
6928         fi
6929
6930         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$stripe_cnt \
6931                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
6932         start_mdt 1 > /dev/null || error "start mdt1 failed"
6933         for i in $(seq $OSTCOUNT); do
6934                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
6935                         error "start ost$i failed"
6936         done
6937         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
6938         check_mount || error "check client $MOUNT failed"
6939
6940         #set xattr
6941         $LFS setstripe -E 1M -S 1M -c 1 -E 64M -c 1 -E -1 -c -1 $file ||
6942                 error "Create file with 3 components failed"
6943         $TRUNCATE $file $((1024*1024*64+1)) || error "truncate file failed"
6944         i=$($LFS getstripe -I3 -c $file) || error "get 3rd stripe count failed"
6945         if [ $i -ne $OSTCOUNT ]; then
6946                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
6947                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
6948                 echo -n "the expected left space is changed to "
6949                 echo "$left_size bytes at most."
6950         fi
6951         value=$(generate_string $left_size)
6952         setfattr -n $xtest -v $value $file
6953         orig=$(get_xattr_value $xtest $file)
6954         [[ "$orig" != "$value" ]] && error "$xtest changed"
6955
6956         #Verify if inode has some expected space left
6957         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
6958         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
6959         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
6960
6961         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
6962         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
6963                         awk '{ print $1 }')
6964         [[ $used_xattr_blk -eq 0 ]] &&
6965                 error "Please check MDS inode size calculation: \
6966                        more than $left_size-byte space left in inode."
6967         echo "Verified: at most $left_size-byte space left in inode."
6968
6969         unmount_ldiskfs $SINGLEMDS
6970
6971         for i in $(seq $OSTCOUNT); do
6972                 stop ost$i -f || error "stop ost$i failed"
6973         done
6974 }
6975 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
6976
6977 test_88() {
6978         [ "$mds1_FSTYPE" == zfs ] &&
6979                 skip "LU-6662: no implementation for ZFS"
6980
6981         load_modules
6982
6983         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6984                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6985
6986         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6987                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
6988                 error "default mount options is missing"
6989
6990         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6991                 --mountfsoptions="user_xattr,errors=panic" \
6992                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6993
6994         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6995                 grep -e \".*opts:.*errors=panic.*\"" ||
6996                 error "user can't override default mount options"
6997 }
6998 run_test 88 "check the default mount options can be overridden"
6999
7000 test_89() { # LU-7131
7001         [[ "$MDS1_VERSION" -ge $(version_code 2.9.54) ]] ||
7002                 skip "Need MDT version at least 2.9.54"
7003
7004         local key=failover.node
7005         local val1=192.0.2.254@tcp0 # Reserved IPs, see RFC 5735
7006         local val2=192.0.2.255@tcp0
7007         local mdsdev=$(mdsdevname 1)
7008         local params
7009
7010         stopall
7011
7012         if [[ "$mds1_FSTYPE" == zfs ]]; then
7013                 import_zpool mds1 || return ${PIPESTATUS[0]}
7014         fi
7015
7016         # Check that parameters are added correctly
7017         echo "tunefs --param $key=$val1"
7018         do_facet mds1 "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
7019                 error "tunefs --param $key=$val1 failed"
7020         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7021                 error "tunefs --dryrun failed"
7022         params=${params##*Parameters:}
7023         params=${params%%exiting*}
7024         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val1) = "1" ] ||
7025                 error "on-disk parameter not added correctly via tunefs"
7026
7027         # Check that parameters replace existing instances when added
7028         echo "tunefs --param $key=$val2"
7029         do_facet mds1 "$TUNEFS --param $key=$val2 $mdsdev >/dev/null" ||
7030                 error "tunefs --param $key=$val2 failed"
7031         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7032                 error "tunefs --dryrun failed"
7033         params=${params##*Parameters:}
7034         params=${params%%exiting*}
7035         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "1" ] ||
7036                 error "on-disk parameter not replaced via tunefs"
7037         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val2) = "1" ] ||
7038                 error "on-disk parameter not replaced correctly via tunefs"
7039
7040         # Check that a parameter is erased properly
7041         echo "tunefs --erase-param $key"
7042         do_facet mds1 "$TUNEFS --erase-param $key $mdsdev >/dev/null" ||
7043                 error "tunefs --erase-param $key failed"
7044         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7045                 error "tunefs --dryrun failed"
7046         params=${params##*Parameters:}
7047         params=${params%%exiting*}
7048         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "0" ] ||
7049                 error "on-disk parameter not erased correctly via tunefs"
7050
7051         # Check that all the parameters are erased
7052         do_facet mds1 "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
7053                 error "tunefs --param $key=$val1 failed"
7054         echo "tunefs --erase-params"
7055         do_facet mds1 "$TUNEFS --erase-params $mdsdev >/dev/null" ||
7056                 error "tunefs --erase-params failed"
7057         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7058                 error "tunefs --dryrun failed"
7059         params=${params##*Parameters:}
7060         params=${params%%exiting*}
7061         params=$(echo $params | tr ' ' '\n')
7062         [ -z "$params" ] ||
7063                 error "all on-disk parameters not erased correctly via tunefs $params"
7064
7065         # Check the order of options --erase-params and --param
7066         echo "tunefs --param $key=$val1 --erase-params"
7067         do_facet mds1 \
7068                 "$TUNEFS --param $key=$val1 --erase-params $mdsdev >/dev/null"||
7069                 error "tunefs --param $key=$val1 --erase-params failed"
7070         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7071                 error "tunefs --dryrun failed"
7072         params=${params##*Parameters:}
7073         params=${params%%exiting*}
7074         [ $(echo $params | tr ' ' '\n') == "$key=$val1" ] ||
7075                 error "on-disk param not added correctly with --erase-params"
7076
7077         reformat_and_config
7078 }
7079 run_test 89 "check tunefs --param and --erase-param{s} options"
7080
7081 # $1 test directory
7082 # $2 (optional) value of max_mod_rpcs_in_flight to set
7083 check_max_mod_rpcs_in_flight() {
7084         local dir="$1"
7085         local mmr="$2"
7086         local idx
7087         local facet
7088         local tmp
7089         local i
7090
7091         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
7092         facet="mds$((0x$idx + 1))"
7093
7094         if [ -z "$mmr" ]; then
7095                 # get value of max_mod_rcps_in_flight
7096                 mmr=$($LCTL get_param -n \
7097                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
7098                         error "Unable to get max_mod_rpcs_in_flight"
7099                 echo "max_mod_rcps_in_flight is $mmr"
7100         else
7101                 # set value of max_mod_rpcs_in_flight
7102                 $LCTL set_param \
7103                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
7104                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
7105                 echo "max_mod_rpcs_in_flight set to $mmr"
7106         fi
7107
7108         # create mmr+1 files
7109         echo "creating $((mmr + 1)) files ..."
7110         umask 0022
7111         for i in $(seq $((mmr + 1))); do
7112                 touch $dir/file-$i
7113         done
7114
7115         ### part 1 ###
7116
7117         # consumes mmr-1 modify RPC slots
7118         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7119         # drop requests on MDT so that RPC slots are consumed
7120         # during all the request resend interval
7121         do_facet $facet "$LCTL set_param fail_loc=0x159"
7122         echo "launch $((mmr - 1)) chmod in parallel ..."
7123         for i in $(seq $((mmr - 1))); do
7124                 chmod 0600 $dir/file-$i &
7125         done
7126         sleep 1
7127
7128         # send one additional modify RPC
7129         do_facet $facet "$LCTL set_param fail_loc=0"
7130         echo "launch 1 additional chmod in parallel ..."
7131         chmod 0600 $dir/file-$mmr &
7132         sleep 1
7133
7134         # check this additional modify RPC get a modify RPC slot
7135         # and succeed its operation
7136         checkstat -vp 0600 $dir/file-$mmr ||
7137                 error "Unable to send $mmr modify RPCs in parallel"
7138         wait
7139
7140         ### part 2 ###
7141
7142         # consumes mmr modify RPC slots
7143         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7144         # drop requests on MDT so that RPC slots are consumed
7145         # during all the request resend interval
7146         do_facet $facet "$LCTL set_param fail_loc=0x159"
7147         echo "launch $mmr chmod in parallel ..."
7148         for i in $(seq $mmr); do
7149                 chmod 0666 $dir/file-$i &
7150         done
7151         sleep 1
7152
7153         # send one additional modify RPC
7154         do_facet $facet "$LCTL set_param fail_loc=0"
7155         echo "launch 1 additional chmod in parallel ..."
7156         chmod 0666 $dir/file-$((mmr + 1)) &
7157         sleep 1
7158
7159         # check this additional modify RPC blocked getting a modify RPC slot
7160         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
7161                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
7162         wait
7163 }
7164
7165 test_90a() {
7166         setup
7167
7168         [[ $($LCTL get_param mdc.*.import |
7169              grep "connect_flags:.*multi_mod_rpc") ]] ||
7170                 skip "Need MDC with 'multi_mod_rpcs' feature"
7171
7172         # check default value
7173         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
7174         check_max_mod_rpcs_in_flight $DIR/$tdir
7175
7176         cleanup
7177 }
7178 run_test 90a "check max_mod_rpcs_in_flight is enforced"
7179
7180 test_90b() {
7181         local idx
7182         local facet
7183         local tmp
7184         local mmrpc
7185
7186         setup
7187
7188         [[ $($LCTL get_param mdc.*.import |
7189              grep "connect_flags:.*multi_mod_rpc") ]] ||
7190                 skip "Need MDC with 'multi_mod_rpcs' feature"
7191
7192         ### test 1.
7193         # update max_mod_rpcs_in_flight
7194         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
7195         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
7196
7197         ### test 2.
7198         # check client is able to send multiple modify RPCs in paralell
7199         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
7200                 grep -c "multi_mod_rpcs")
7201         if [ "$tmp" -ne $MDSCOUNT ]; then
7202                 cleanup
7203                 skip "Client not able to send multiple modify RPCs in parallel"
7204         fi
7205
7206         # update max_mod_rpcs_in_flight
7207         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
7208         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
7209
7210         ### test 3.
7211         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
7212         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
7213         facet="mds$((0x$idx + 1))"
7214
7215         # save MDT max_mod_rpcs_per_client
7216         mmrpc=$(do_facet $facet \
7217                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
7218
7219         # update max_mod_rpcs_in_flight
7220         umount_client $MOUNT
7221         do_facet $facet \
7222                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7223         mount_client $MOUNT
7224         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
7225         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
7226
7227         # restore MDT max_mod_rpcs_per_client initial value
7228         do_facet $facet \
7229                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7230
7231         rm -rf $DIR/${tdir}?
7232         cleanup
7233 }
7234 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
7235
7236 save_params_90c() {
7237         # get max_rpcs_in_flight value
7238         mrif_90c=$($LCTL get_param -n \
7239                    mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
7240         echo "max_rpcs_in_flight is $mrif_90c"
7241
7242         # get max_mod_rpcs_in_flight value
7243         mmrif_90c=$($LCTL get_param -n \
7244                     mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight)
7245         echo "max_mod_rpcs_in_flight is $mmrif_90c"
7246
7247         # get MDT max_mod_rpcs_per_client value
7248         mmrpc_90c=$(do_facet mds1 \
7249                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
7250         echo "max_mod_rpcs_per_client is $mmrpc_90c"
7251 }
7252
7253 restore_params_90c() {
7254         trap 0
7255
7256         # restore max_rpcs_in_flight value
7257         do_facet mgs $LCTL set_param -P \
7258                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$mrif_90c
7259
7260         # restore max_mod_rpcs_in_flight value
7261         do_facet mgs $LCTL set_param -P \
7262                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mmrif_90c
7263
7264         # restore MDT max_mod_rpcs_per_client value
7265         do_facet mds1 "echo $mmrpc_90c > \
7266                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7267 }
7268
7269 test_90c() {
7270         local tmp
7271
7272         setup
7273
7274         [[ $($LCTL get_param mdc.*.import |
7275              grep "connect_flags:.*multi_mod_rpc") ]] ||
7276                 skip "Need MDC with 'multi_mod_rpcs' feature"
7277
7278         # check client is able to send multiple modify RPCs in paralell
7279         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
7280                 grep -c "multi_mod_rpcs")
7281         if [ "$tmp" -ne $MDSCOUNT ]; then
7282                 cleanup
7283                 skip "Client not able to send multiple modify RPCs in parallel"
7284         fi
7285
7286         save_params_90c
7287         stack_trap restore_params_90c
7288
7289         # testcase 1
7290         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
7291         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
7292         do_facet mds1 "echo $mrif_90c > \
7293                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7294
7295         # if max_mod_rpcs_in_flight is set to be equal to or larger than
7296         # max_rpcs_in_flight, then max_rpcs_in_flight will be increased
7297         if [[ "$CLIENT_VERSION" -ge $(version_code 2.13.53) ]]; then
7298                 $LCTL set_param \
7299                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif_90c ||
7300                         error "set max_mod_rpcs_in_flight to $mrif_90c failed"
7301
7302                 local new_mrif=$($LCTL get_param -n \
7303                                  mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
7304                 ((new_mrif == mrif_90c + 1)) ||
7305                         error "max_rpcs_in_flight was not increased"
7306         fi
7307
7308         umount_client $MOUNT
7309         do_facet mds1 "echo $mmrpc_90c > \
7310                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7311         mount_client $MOUNT
7312
7313         # testcase 2
7314         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
7315         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
7316         $LCTL set_param \
7317                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc_90c + 2))
7318
7319         $LCTL set_param \
7320         mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc_90c + 1)) &&
7321         error "set max_mod_rpcs_in_flight to $((mmrpc_90c + 1)) should fail"
7322
7323         # testcase 3
7324         # attempt to set max_mod_rpcs_in_flight permanently
7325         do_facet mgs $LCTL set_param -P \
7326                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$mrif_90c
7327
7328         do_facet mgs $LCTL set_param -P \
7329                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif_90c
7330
7331         remount_client $MOUNT
7332
7333         wait_update_facet --verbose client "$LCTL get_param -n \
7334                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight" \
7335                 "$((mrif_90c + 1))" ||
7336                 error "expected '$((mrif_90c + 1))' for max_rpcs_in_flight"
7337
7338         wait_update_facet --verbose client "$LCTL get_param -n \
7339                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight" \
7340                 "$mrif_90c" ||
7341                 error "expected '$mrif_90c' for max_mod_rpcs_in_flight"
7342
7343         restore_params_90c
7344         cleanup
7345 }
7346 run_test 90c "check max_mod_rpcs_in_flight update limits"
7347
7348 test_90d() {
7349         local idx
7350         local facet
7351         local mmr
7352         local i
7353         local pid
7354
7355         setup
7356
7357         [[ $($LCTL get_param mdc.*.import |
7358              grep "connect_flags:.*multi_mod_rpc") ]] ||
7359                 skip "Need MDC with 'multi_mod_rpcs' feature"
7360
7361         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
7362         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
7363         facet="mds$((0x$idx + 1))"
7364
7365         # check client version supports multislots
7366         tmp=$($LCTL get_param -N \
7367                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
7368         if [ -z "$tmp" ]; then
7369                 cleanup
7370                 skip "Client does not support multiple modify RPCs in flight"
7371         fi
7372
7373         # get current value of max_mod_rcps_in_flight
7374         mmr=$($LCTL get_param -n \
7375                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
7376         echo "max_mod_rcps_in_flight is $mmr"
7377
7378         # create mmr files
7379         echo "creating $mmr files ..."
7380         umask 0022
7381         for i in $(seq $mmr); do
7382                 touch $DIR/$tdir/file-$i
7383         done
7384
7385         # prepare for close RPC
7386         multiop_bg_pause $DIR/$tdir/file-close O_c
7387         pid=$!
7388
7389         # consumes mmr modify RPC slots
7390         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7391         # drop requests on MDT so that RPC slots are consumed
7392         # during all the request resend interval
7393         do_facet $facet "$LCTL set_param fail_loc=0x159"
7394         echo "launch $mmr chmod in parallel ..."
7395         for i in $(seq $mmr); do
7396                 chmod 0600 $DIR/$tdir/file-$i &
7397         done
7398
7399         # send one additional close RPC
7400         do_facet $facet "$LCTL set_param fail_loc=0"
7401         echo "launch 1 additional close in parallel ..."
7402         kill -USR1 $pid
7403         cancel_lru_locks mdc
7404         sleep 1
7405
7406         # check this additional close RPC get a modify RPC slot
7407         # and multiop process completed
7408         [ -d /proc/$pid ] &&
7409                 error "Unable to send the additional close RPC in parallel"
7410         wait
7411         rm -rf $DIR/$tdir
7412         cleanup
7413 }
7414 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
7415
7416 check_uuid_on_ost() {
7417         local nid=$1
7418         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
7419 }
7420
7421 check_uuid_on_mdt() {
7422         local nid=$1
7423         do_facet $SINGLEMDS "$LCTL get_param mdt.${mds1_svc}*.exports.'$nid'.uuid"
7424 }
7425
7426 test_91() {
7427         local uuid
7428         local nid
7429         local found
7430
7431         [[ "$OST1_VERSION" -ge $(version_code 2.7.63) ]] ||
7432                 skip "Need OST version at least 2.7.63"
7433         [[ "$MDS1_VERSION" -ge $(version_code 2.7.63) ]] ||
7434                 skip "Need MDT version at least 2.7.63"
7435
7436         start_mds || error "MDS start failed"
7437         start_ost || error "unable to start OST"
7438         mount_client $MOUNT || error "client start failed"
7439         check_mount || error "check_mount failed"
7440
7441         if remote_mds; then
7442                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
7443         else
7444                 nid="0@lo"
7445         fi
7446         uuid=$(get_client_uuid $MOUNT)
7447
7448         echo "list nids on mdt:"
7449         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
7450         echo "uuid from $nid:"
7451         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
7452
7453         found=$(check_uuid_on_mdt $nid | grep $uuid)
7454         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
7455         found=$(check_uuid_on_ost $nid | grep $uuid)
7456         [ -z "$found" ] && error "can't find $uuid $nid on OST"
7457
7458         # umount the client so it won't reconnect
7459         manual_umount_client --force || error "failed to umount $?"
7460         # shouldn't disappear on MDS after forced umount
7461         found=$(check_uuid_on_mdt $nid | grep $uuid)
7462         [ -z "$found" ] && error "can't find $uuid $nid"
7463
7464         echo "evict $nid"
7465         do_facet $SINGLEMDS \
7466                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
7467         sleep 1 # eviction above is async, give it some time to proceed
7468
7469         found=$(check_uuid_on_mdt $nid | grep $uuid)
7470         [ -n "$found" ] && error "found $uuid $nid on MDT"
7471         found=$(check_uuid_on_ost $nid | grep $uuid)
7472         [ -n "$found" ] && error "found $uuid $nid on OST"
7473
7474         # check it didn't reconnect (being umounted)
7475         sleep $((TIMEOUT+1))
7476         found=$(check_uuid_on_mdt $nid | grep $uuid)
7477         [ -n "$found" ] && error "found $uuid $nid on MDT"
7478         found=$(check_uuid_on_ost $nid | grep $uuid)
7479         [ -n "$found" ] && error "found $uuid $nid on OST"
7480
7481         cleanup
7482 }
7483 run_test 91 "evict-by-nid support"
7484
7485 generate_ldev_conf() {
7486         # generate an ldev.conf file
7487         local ldevconfpath=$1
7488         local fstype=
7489         local fsldevformat=""
7490         rm -f $ldevconfpath
7491
7492         local facets="mgs,$(get_facets OST),$(get_facets MDS)"
7493         for facet in ${facets//,/ }; do
7494                 fsldevformat=""
7495                 fstype=$(facet_fstype $facet)
7496                 [ "$fstype" = zfs ] && fsldevformat="$fstype:"
7497                 local host=$(facet_host $facet)
7498                 local fo="-"
7499                 local varfo=${facet}failover_HOST
7500                 if [ $facet == mgs ] && combined_mgs_mds; then
7501                         varfo=mds1failover_HOST
7502                 fi
7503                 [ -n "${!varfo}" ] && fo=${!varfo}
7504                 local type=$(echo $facet | tr -d "[:digit:]" | \
7505                         tr "[:lower:]" "[:upper:]" | sed s/MDS/MDT/ )
7506                 local num=1
7507                 [ ${facet} == mgs ] ||
7508                         num=$(facet_number $facet)
7509                 printf "%s\t%s\t%s-%s%04x\t%s%s\n" \
7510                         ${host} \
7511                         ${fo} \
7512                         $FSNAME \
7513                         $type \
7514                         $(( num - 1 )) \
7515                         $fsldevformat \
7516                         $(facet_device $facet) >> $ldevconfpath
7517         done
7518
7519         echo "----- $ldevconfpath -----"
7520         cat $ldevconfpath
7521         echo "--- END $ldevconfpath ---"
7522
7523 }
7524
7525 generate_nids() {
7526         # generate a nids file (mapping between hostname to nid)
7527         # looks like we only have the MGS nid available to us
7528         # so just echo that to a file
7529         local nidspath=$1
7530         echo -e "${mgs_HOST}\t${MGSNID}" > $nidspath
7531
7532         echo "----- $nidspath -----"
7533         cat $nidspath
7534         echo "--- END $nidspath ---"
7535 }
7536
7537 compare_ldev_output() {
7538         local ldev_output=$1
7539         local expected_output=$2
7540
7541         sort $expected_output -o $expected_output
7542         sort $ldev_output -o $ldev_output
7543
7544         echo "-- START OF LDEV OUTPUT --"
7545         cat $ldev_output
7546         echo "--- END OF LDEV OUTPUT ---"
7547
7548         echo "-- START OF EXPECTED OUTPUT --"
7549         cat $expected_output
7550         echo "--- END OF EXPECTED OUTPUT ---"
7551
7552         diff $expected_output $ldev_output
7553         return $?
7554 }
7555
7556 test_92() {
7557         if [ -z "$LDEV" ]; then
7558                 error "ldev is missing!"
7559         fi
7560
7561         local LDEVCONFPATH=$TMP/ldev.conf
7562         local NIDSPATH=$TMP/nids
7563
7564         echo "Host is $(hostname)"
7565
7566         generate_ldev_conf $LDEVCONFPATH
7567         generate_nids $NIDSPATH
7568
7569         # echo the mgs nid and compare it to environment variable MGSNID
7570         local facets="$(get_facets OST),$(get_facets MDS),mgs"
7571         for facet in ${facets//,/ }; do
7572                 local host=$(facet_host $facet)
7573                 local output=$($LDEV -c $LDEVCONFPATH -H $host -n $NIDSPATH echo %m)
7574
7575                 echo "-- START OF LDEV OUTPUT --"
7576                 echo -e "$output"
7577                 echo "--- END OF LDEV OUTPUT ---"
7578
7579                 [ -z "$output" ] &&
7580                         error "ldev failed to execute!"
7581
7582                 # need to process multiple lines because of
7583                 # several targets on host
7584                 echo -e $output | awk '{ print $2 }' | while read -r line ; do
7585                         [ "$line" = "$MGSNID" ] ||
7586                                 error "ldev failed mgs nid '$line', \
7587                                         expected '$MGSNID'"
7588                 done
7589         done
7590         rm -f $LDEVCONFPATH $NIDSPATH
7591 }
7592 run_test 92 "ldev returns MGS NID correctly in command substitution"
7593
7594 test_93() {
7595         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs"
7596
7597         reformat
7598         #start mgs or mgs/mdt0
7599         if ! combined_mgs_mds ; then
7600                 start_mgs
7601                 start_mdt 1
7602         else
7603                 start_mdt 1
7604         fi
7605
7606         start_ost || error "OST0 start fail"
7607
7608         #define OBD_FAIL_MGS_WRITE_TARGET_DELAY  0x90e
7609         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x8000090e"
7610         for num in $(seq 2 $MDSCOUNT); do
7611                 start_mdt $num &
7612         done
7613
7614         mount_client $MOUNT || error "mount client fails"
7615         wait_osc_import_state mds ost FULL
7616         wait_osc_import_ready client ost
7617         check_mount || error "check_mount failed"
7618
7619         cleanup || error "cleanup failed with $?"
7620 }
7621 run_test 93 "register mulitple MDT at the same time"
7622
7623 test_94() {
7624         if [ -z "$LDEV" ]; then
7625                 error "ldev is missing!"
7626         fi
7627
7628         local LDEVCONFPATH=$TMP/ldev.conf
7629         local NIDSPATH=$TMP/nids
7630
7631         generate_ldev_conf $LDEVCONFPATH
7632         generate_nids $NIDSPATH
7633
7634         local LDEV_OUTPUT=$TMP/ldev-output.txt
7635         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME > $LDEV_OUTPUT
7636
7637         # ldev failed, error
7638         if [ $? -ne 0 ]; then
7639                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7640                 error "ldev failed to execute!"
7641         fi
7642
7643         # expected output
7644         local EXPECTED_OUTPUT=$TMP/ldev-expected.txt
7645
7646         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7647
7648         for num in $(seq $MDSCOUNT); do
7649                 printf "%s-MDT%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7650         done
7651
7652         for num in $(seq $OSTCOUNT); do
7653                 printf "%s-OST%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7654         done
7655
7656         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7657
7658         if [ $? -ne 0 ]; then
7659                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7660                 error "ldev failed to produce the correct hostlist!"
7661         fi
7662
7663         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7664 }
7665 run_test 94 "ldev outputs correct labels for file system name query"
7666
7667 test_95() {
7668         if [ -z "$LDEV" ]; then
7669                 error "ldev is missing!"
7670         fi
7671
7672         local LDEVCONFPATH=$TMP/ldev.conf
7673         local NIDSPATH=$TMP/nids
7674
7675         generate_ldev_conf $LDEVCONFPATH
7676         generate_nids $NIDSPATH
7677
7678         # SUCCESS CASES
7679         # file sys filter
7680         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME &>/dev/null
7681         if [ $? -ne 0 ]; then
7682                 rm $LDEVCONFPATH $NIDSPATH
7683                 error "ldev label filtering w/ -F failed!"
7684         fi
7685
7686         # local filter
7687         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -l  &>/dev/null
7688         if [ $? -ne 0 ]; then
7689                 rm $LDEVCONFPATH $NIDSPATH
7690                 error "ldev label filtering w/ -l failed!"
7691         fi
7692
7693         # foreign filter
7694         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f &>/dev/null
7695         if [ $? -ne 0 ]; then
7696                 rm $LDEVCONFPATH $NIDSPATH
7697                 error "ldev label filtering w/ -f failed!"
7698         fi
7699
7700         # all filter
7701         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a &>/dev/null
7702         if [ $? -ne 0 ]; then
7703                 rm $LDEVCONFPATH $NIDSPATH
7704                 error "ldev label filtering w/ -a failed!"
7705         fi
7706
7707         # FAILURE CASES
7708         # all & file sys
7709         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -F $FSNAME &>/dev/null
7710         if [ $? -eq 0 ]; then
7711                 rm $LDEVCONFPATH $NIDSPATH
7712                 error "ldev label filtering w/ -a and -F incorrectly succeeded"
7713         fi
7714
7715         # all & foreign
7716         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -f &>/dev/null
7717         if [ $? -eq 0 ]; then
7718                 rm $LDEVCONFPATH $NIDSPATH
7719                 error "ldev label filtering w/ -a and -f incorrectly succeeded"
7720         fi
7721
7722         # all & local
7723         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -l &>/dev/null
7724         if [ $? -eq 0 ]; then
7725                 rm $LDEVCONFPATH $NIDSPATH
7726                 error "ldev label filtering w/ -a and -l incorrectly succeeded"
7727         fi
7728
7729         # foreign & local
7730         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f -l &>/dev/null
7731         if [ $? -eq 0 ]; then
7732                 rm $LDEVCONFPATH $NIDSPATH
7733                 error "ldev label filtering w/ -f and -l incorrectly succeeded"
7734         fi
7735
7736         # file sys & local
7737         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -l &>/dev/null
7738         if [ $? -eq 0 ]; then
7739                 rm $LDEVCONFPATH $NIDSPATH
7740                 error "ldev label filtering w/ -F and -l incorrectly succeeded"
7741         fi
7742
7743         # file sys & foreign
7744         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -f &>/dev/null
7745         if [ $? -eq 0 ]; then
7746                 rm $LDEVCONFPATH $NIDSPATH
7747                 error "ldev label filtering w/ -F and -f incorrectly succeeded"
7748         fi
7749
7750         rm $LDEVCONFPATH $NIDSPATH
7751 }
7752 run_test 95 "ldev should only allow one label filter"
7753
7754 test_96() {
7755         if [ -z "$LDEV" ]; then
7756                 error "ldev is missing!"
7757         fi
7758
7759         local LDEVCONFPATH=$TMP/ldev.conf
7760         local NIDSPATH=$TMP/nids
7761
7762         generate_ldev_conf $LDEVCONFPATH
7763         generate_nids $NIDSPATH
7764
7765         local LDEV_OUTPUT=$TMP/ldev-output.txt
7766         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -H $mgs_HOST \
7767                 echo %H-%b | \
7768                 awk '{print $2}' > $LDEV_OUTPUT
7769
7770         # ldev failed, error
7771         if [ $? -ne 0 ]; then
7772                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7773                 error "ldev failed to execute!"
7774         fi
7775
7776         # expected output
7777         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7778
7779         echo "$mgs_HOST-$(facet_fstype mgs)" > $EXPECTED_OUTPUT
7780
7781         local facets="$(get_facets OST),$(get_facets MDS)"
7782         for facet in ${facets//,/ }; do
7783                 local host=$(facet_host $facet)
7784                 [ "$mgs_HOST" == "$host" ] &&
7785                         echo "$host-$(facet_fstype $facet)" \
7786                         >> $EXPECTED_OUTPUT
7787         done
7788
7789         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7790
7791         if [ $? -ne 0 ]; then
7792                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7793                 error "ldev failed to produce the correct output!"
7794         fi
7795
7796         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7797 }
7798 run_test 96 "ldev returns hostname and backend fs correctly in command sub"
7799
7800 test_97() {
7801         if [ -z "$LDEV" ]; then
7802                 error "ldev is missing!"
7803         fi
7804
7805         local LDEVCONFPATH=$TMP/ldev.conf
7806         local NIDSPATH=$TMP/nids
7807
7808         generate_ldev_conf $LDEVCONFPATH
7809         generate_nids $NIDSPATH
7810
7811         local LDEV_OUTPUT=$TMP/ldev-output.txt
7812         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7813
7814         echo -e "\nMDT role"
7815         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mdt > $LDEV_OUTPUT
7816
7817         if [ $? -ne 0 ]; then
7818                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7819                 error "ldev failed to execute for mdt role!"
7820         fi
7821
7822         for num in $(seq $MDSCOUNT); do
7823                 printf "%s-MDT%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7824         done
7825
7826         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7827
7828         if [ $? -ne 0 ]; then
7829                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7830                 error "ldev failed to produce the correct output for mdt role!"
7831         fi
7832
7833         echo -e "\nOST role"
7834         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R ost > $LDEV_OUTPUT
7835
7836         if [ $? -ne 0 ]; then
7837                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7838                 error "ldev failed to execute for ost role!"
7839         fi
7840
7841         rm $EXPECTED_OUTPUT
7842         for num in $(seq $OSTCOUNT); do
7843                 printf "%s-OST%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7844         done
7845
7846         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7847
7848         if [ $? -ne 0 ]; then
7849                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7850                 error "ldev failed to produce the correct output for ost role!"
7851         fi
7852
7853         echo -e "\nMGS role"
7854         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mgs > $LDEV_OUTPUT
7855
7856         if [ $? -ne 0 ]; then
7857                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7858                 error "ldev failed to execute for mgs role!"
7859         fi
7860
7861         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7862
7863         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7864
7865         if [ $? -ne 0 ]; then
7866                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7867                 error "ldev failed to produce the correct output for mgs role!"
7868         fi
7869
7870         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7871 }
7872 run_test 97 "ldev returns correct ouput when querying based on role"
7873
7874 test_98()
7875 {
7876         local mountopt
7877         local temp=$MDS_MOUNT_OPTS
7878
7879         setup
7880         check_mount || error "mount failed"
7881         mountopt="user_xattr"
7882         for ((x = 1; x <= 400; x++)); do
7883                 mountopt="$mountopt,user_xattr"
7884         done
7885         mount_client $MOUNT remount,$mountopt 2>&1 | grep "too long" ||
7886                 error "Buffer overflow check failed"
7887         cleanup || error "cleanup failed"
7888 }
7889 run_test 98 "Buffer-overflow check while parsing mount_opts"
7890
7891 test_99()
7892 {
7893         [[ "$ost1_FSTYPE" != ldiskfs ]] &&
7894                 skip "ldiskfs only test"
7895         [[ "$OST1_VERSION" -ge $(version_code 2.8.57) ]] ||
7896                 skip "Need OST version at least 2.8.57"
7897
7898         local ost_opts="$(mkfs_opts ost1 $(ostdevname 1)) \
7899                 --reformat $(ostdevname 1) $(ostvdevname 1)"
7900         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" &&
7901                 skip "meta_bg already set"
7902
7903         local opts=ost_opts
7904         if [[ ${!opts} != *mkfsoptions* ]]; then
7905                 eval opts=\"${!opts} \
7906                 --mkfsoptions='\\\"-O ^resize_inode,meta_bg\\\"'\"
7907         else
7908                 local val=${!opts//--mkfsoptions=\\\"/ \
7909                 --mkfsoptions=\\\"-O ^resize_inode,meta_bg }
7910                 eval opts='${val}'
7911         fi
7912
7913         echo "params: $opts"
7914
7915         load_modules
7916         add ost1 $opts || error "add ost1 failed with new params"
7917
7918         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" ||
7919                 error "meta_bg is not set"
7920 }
7921 run_test 99 "Adding meta_bg option"
7922
7923 test_100() {
7924         reformat
7925
7926         start_mgsmds || error "MDS start failed"
7927         start_ost || error "unable to start OST"
7928         mount_client $MOUNT || error "client start failed"
7929         check_mount || error "check_mount failed"
7930
7931         # Desired output
7932         # MGS:
7933         #     0@lo
7934         # $FSNAME-MDT0000:
7935         #     0@lo
7936         # $FSNAME-OST0000:
7937         #     0@lo
7938         do_facet mgs 'lshowmount -v' | awk 'BEGIN {NR == 0; rc=1} /MGS:/ {rc=0}
7939                 END {exit rc}' || error "lshowmount have no output MGS"
7940
7941         do_facet mds1 'lshowmount -v' | awk 'BEGIN {NR == 2; rc=1} /-MDT0000:/
7942                 {rc=0} END {exit rc}' || error "lshowmount have no output MDT0"
7943
7944         do_facet ost1 'lshowmount -v' | awk 'BEGIN {NR == 4; rc=1} /-OST0000:/
7945                 {rc=0} END {exit rc}' || error "lshowmount have no output OST0"
7946
7947         cleanup || error "cleanup failed with $?"
7948 }
7949 run_test 100 "check lshowmount lists MGS, MDT, OST and 0@lo"
7950
7951 test_101a() {
7952         local createmany_pid
7953         local dev=$FSNAME-OST0000-osc-MDT0000
7954         setup
7955
7956         mkdir $DIR1/$tdir
7957         createmany -o $DIR1/$tdir/$tfile-%d 50000 &
7958         createmany_pid=$!
7959         # MDT->OST reconnection causes MDT<->OST last_id synchornisation
7960         # via osp_precreate_cleanup_orphans.
7961         for ((i = 0; i < 100; i++)); do
7962                 for ((k = 0; k < 10; k++)); do
7963                         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;" \
7964                                             "$LCTL --device $dev activate"
7965                 done
7966
7967                 ls -asl $MOUNT | grep '???' &&
7968                         { kill -9 $createmany_pid &>/dev/null;
7969                           error "File has no object on OST"; }
7970
7971                 kill -s 0 $createmany_pid || break
7972         done
7973         wait $createmany_pid
7974
7975         unlinkmany $DIR1/$tdir/$tfile-%d 50000
7976         cleanup
7977 }
7978 run_test 101a "Race MDT->OST reconnection with create"
7979
7980 test_101b () {
7981         local dev=$FSNAME-OST0000-osc-MDT0000
7982         local dir=$DIR1/$tdir
7983         setup
7984
7985         mkdir $dir
7986         $LFS setstripe -c 1 -i 0 $dir
7987         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;"
7988 #define OBD_FAIL_OSP_CON_EVENT_DELAY 0x2107
7989         do_facet mds1 "$LCTL set_param fail_loc=0x80002107 fail_val=20"
7990         do_facet $SINGLEMDS "$LCTL --device $dev activate;"
7991         stop_ost
7992         sleep 25
7993         start_ost
7994
7995         wait_osc_import_state client ost1 FULL
7996         touch $dir/$tfile || error "Can't create file"
7997
7998         cleanup
7999 }
8000 run_test 101b "Race events DISCONNECT and ACTIVE in osp"
8001
8002 test_102() {
8003         [[ "$MDS1_VERSION" -gt $(version_code 2.9.53) ]] ||
8004                 skip "Need server version greater than 2.9.53"
8005         [[ “$(mdsdevname 1)” != “$(mgsdevname)” ]] &&
8006                 [[ “$(facet_host mds1)” = “$(facet_host mgs)” ]] &&
8007                 skip "MGS must be on different node or combined"
8008
8009         cleanup || error "cleanup failed with $?"
8010
8011         local mds1dev=$(mdsdevname 1)
8012         local mds1mnt=$(facet_mntpt mds1)
8013         local mds1opts=$MDS_MOUNT_OPTS
8014
8015         if [ "$mds1_FSTYPE" == ldiskfs ] &&
8016            ! do_facet mds1 test -b $mds1dev; then
8017                 mds1opts=$(csa_add "$mds1opts" -o loop)
8018         fi
8019         if [[ "$mds1_FSTYPE" == zfs ]]; then
8020                 import_zpool mds1 || return ${PIPESTATUS[0]}
8021         fi
8022
8023         # unload all and only load libcfs to allow fail_loc setting
8024         do_facet mds1 $LUSTRE_RMMOD || error "unable to unload modules"
8025         do_facet mds1 modprobe libcfs || error "libcfs not loaded"
8026         do_facet mds1 lsmod \| grep libcfs || error "libcfs not loaded"
8027
8028         #define OBD_FAIL_OBDCLASS_MODULE_LOAD    0x60a
8029         do_facet mds1 "$LCTL set_param fail_loc=0x8000060a"
8030
8031         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts &&
8032                 error "mdt start must fail"
8033         do_facet mds1 lsmod \| grep  obdclass && error "obdclass must not load"
8034
8035         do_facet mds1 "$LCTL set_param fail_loc=0x0"
8036
8037         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts ||
8038                 error "mdt start must not fail"
8039
8040         cleanup || error "cleanup failed with $?"
8041 }
8042 run_test 102 "obdclass module cleanup upon error"
8043
8044 test_renamefs() {
8045         local newname=$1
8046
8047         echo "rename $FSNAME to $newname"
8048
8049         if ! combined_mgs_mds ; then
8050                 local dev=$(mgsdevname)
8051
8052                 do_facet mgs \
8053                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8054                                 error "(7) Fail to rename MGS"
8055                 if [ "$(facet_fstype mgs)" = "zfs" ]; then
8056                         reimport_zpool mgs $newname-mgs
8057                 fi
8058         fi
8059
8060         for num in $(seq $MDSCOUNT); do
8061                 local dev=$(mdsdevname $num)
8062
8063                 do_facet mds${num} \
8064                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8065                                 error "(8) Fail to rename MDT $num"
8066                 if [ "$(facet_fstype mds${num})" = "zfs" ]; then
8067                         reimport_zpool mds${num} $newname-mdt${num}
8068                 fi
8069         done
8070
8071         for num in $(seq $OSTCOUNT); do
8072                 local dev=$(ostdevname $num)
8073
8074                 do_facet ost${num} \
8075                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8076                                 error "(9) Fail to rename OST $num"
8077                 if [ "$(facet_fstype ost${num})" = "zfs" ]; then
8078                         reimport_zpool ost${num} $newname-ost${num}
8079                 fi
8080         done
8081 }
8082
8083 test_103_set_pool() {
8084         local pname=$1
8085         local ost_x=$2
8086
8087         do_facet mgs $LCTL pool_add $FSNAME.$pname ${FSNAME}-$ost_x ||
8088                 error "Fail to add $ost_x to $FSNAME.$pname"
8089         wait_update $HOSTNAME \
8090                 "lctl get_param -n lov.$FSNAME-clilov-*.pools.$pname |
8091                  grep $ost_x" "$FSNAME-${ost_x}_UUID" ||
8092                 error "$ost_x is NOT in pool $FSNAME.$pname"
8093 }
8094
8095 test_103_check_pool() {
8096         local save_fsname=$1
8097         local errno=$2
8098
8099         stat $DIR/$tdir/test-framework.sh ||
8100                 error "($errno) Fail to stat"
8101         do_facet mgs $LCTL pool_list $FSNAME.pool1 ||
8102                 error "($errno) Fail to list $FSNAME.pool1"
8103         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname ||
8104                 error "($errno) Fail to list $FSNAME.$save_fsname"
8105         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname |
8106                 grep ${FSNAME}-OST0000 ||
8107                 error "($errno) List $FSNAME.$save_fsname is invalid"
8108
8109         local pname=$($LFS getstripe --pool $DIR/$tdir/d0)
8110         [ "$pname" = "$save_fsname" ] ||
8111                 error "($errno) Unexpected pool name $pname"
8112 }
8113
8114 test_103() {
8115         check_mount_and_prep
8116         rm -rf $DIR/$tdir
8117         mkdir $DIR/$tdir || error "(1) Fail to mkdir $DIR/$tdir"
8118         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir ||
8119                 error "(2) Fail to copy test-framework.sh"
8120
8121         do_facet mgs $LCTL pool_new $FSNAME.pool1 ||
8122                 error "(3) Fail to create $FSNAME.pool1"
8123         # name the pool name as the fsname
8124         do_facet mgs $LCTL pool_new $FSNAME.$FSNAME ||
8125                 error "(4) Fail to create $FSNAME.$FSNAME"
8126
8127         test_103_set_pool $FSNAME OST0000
8128
8129         $LFS setstripe -p $FSNAME $DIR/$tdir/d0 ||
8130                 error "(6) Fail to setstripe on $DIR/$tdir/d0"
8131
8132         KEEP_ZPOOL=true
8133         stopall
8134
8135         test_renamefs mylustre
8136
8137         local save_fsname=$FSNAME
8138         FSNAME="mylustre"
8139         setupall
8140
8141         test_103_check_pool $save_fsname 7
8142
8143         if [ $OSTCOUNT -ge 2 ]; then
8144                 test_103_set_pool $save_fsname OST0001
8145         fi
8146
8147         $LFS setstripe -p $save_fsname $DIR/$tdir/f0 ||
8148                 error "(16) Fail to setstripe on $DIR/$tdir/f0"
8149
8150         stopall
8151
8152         test_renamefs tfs
8153
8154         FSNAME="tfs"
8155         setupall
8156
8157         test_103_check_pool $save_fsname 17
8158
8159         stopall
8160
8161         test_renamefs $save_fsname
8162
8163         FSNAME=$save_fsname
8164         setupall
8165         KEEP_ZPOOL=false
8166 }
8167 run_test 103 "rename filesystem name"
8168
8169 test_104a() { # LU-6952
8170         local mds_mountopts=$MDS_MOUNT_OPTS
8171         local ost_mountopts=$OST_MOUNT_OPTS
8172         local mds_mountfsopts=$MDS_MOUNT_FS_OPTS
8173         local lctl_ver=$(do_facet $SINGLEMDS $LCTL --version |
8174                         awk '{ print $2 }')
8175
8176         [[ $(version_code $lctl_ver) -lt $(version_code 2.9.55) ]] &&
8177                 skip "this test needs utils above 2.9.55"
8178
8179         # specify "acl" in mount options used by mkfs.lustre
8180         if [ -z "$MDS_MOUNT_FS_OPTS" ]; then
8181                 MDS_MOUNT_FS_OPTS="acl,user_xattr"
8182         else
8183
8184                 MDS_MOUNT_FS_OPTS="${MDS_MOUNT_FS_OPTS},acl,user_xattr"
8185         fi
8186
8187         echo "mountfsopt: $MDS_MOUNT_FS_OPTS"
8188
8189         #reformat/remount the MDT to apply the MDT_MOUNT_FS_OPT options
8190         formatall
8191         if ! combined_mgs_mds ; then
8192                 start_mgs
8193         fi
8194
8195         if [ -z "$MDS_MOUNT_OPTS" ]; then
8196                 MDS_MOUNT_OPTS="-o noacl"
8197         else
8198                 MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
8199         fi
8200
8201         for num in $(seq $MDSCOUNT); do
8202                 start mds$num $(mdsdevname $num) $MDS_MOUNT_OPTS ||
8203                         error "Failed to start MDS"
8204         done
8205
8206         for num in $(seq $OSTCOUNT); do
8207                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
8208                         error "Failed to start OST"
8209         done
8210
8211         mount_client $MOUNT
8212         setfacl -m "d:$RUNAS_ID:rwx" $MOUNT &&
8213                 error "ACL is applied when FS is mounted with noacl."
8214
8215         MDS_MOUNT_OPTS=$mds_mountopts
8216         OST_MOUNT_OPTS=$ost_mountopts
8217         MDS_MOUNT_FS_OPTS=$mds_mountfsopts
8218 }
8219 run_test 104a "Make sure user defined options are reflected in mount"
8220
8221 test_104b() { # LU-12859
8222         mount_client $MOUNT3 flock,localflock
8223         stack_trap "umount_client $MOUNT3" EXIT
8224         mount | grep "$MOUNT3 .*,flock" && error "flock is still set"
8225         mount | grep "$MOUNT3 .*,localflock" || error "localflock is not set"
8226         umount_client $MOUNT3
8227         mount_client $MOUNT3 localflock,flock
8228         mount | grep "$MOUNT3 .*,localflock" && error "localflock is still set"
8229         mount | grep "$MOUNT3 .*,flock" || error "flock is not set"
8230         umount_client $MOUNT3
8231         mount_client $MOUNT3 localflock,flock,noflock
8232         flock_is_enabled $MOUNT3 && error "some flock is still enabled" || true
8233 }
8234 run_test 104b "Mount uses last flock argument"
8235
8236 error_and_umount() {
8237         umount $TMP/$tdir
8238         rmdir $TMP/$tdir
8239         error $*
8240 }
8241
8242 test_105() {
8243         cleanup -f
8244         reformat
8245         setup_noconfig
8246         mkdir -p $TMP/$tdir
8247         mount --bind $DIR $TMP/$tdir || error "mount bind mnt pt failed"
8248         rm -f $TMP/$tdir/$tfile
8249         rm -f $TMP/$tdir/${tfile}1
8250
8251         # Files should not be created in ro bind mount point
8252         # remounting from rw to ro
8253         mount -o remount,ro $TMP/$tdir ||
8254                 error_and_umount "readonly remount of bind mnt pt failed"
8255         touch $TMP/$tdir/$tfile &&
8256                 error_and_umount "touch succeeds on ro bind mnt pt"
8257         [ -e $TMP/$tdir/$tfile ] &&
8258                 error_and_umount "file created on ro bind mnt pt"
8259
8260         # Files should be created in rw bind mount point
8261         # remounting from ro to rw
8262         mount -o remount,rw $TMP/$tdir ||
8263                 error_and_umount "read-write remount of bind mnt pt failed"
8264         touch $TMP/$tdir/${tfile}1 ||
8265                 error_and_umount "touch fails on rw bind mnt pt"
8266         [ -e $TMP/$tdir/${tfile}1 ] ||
8267                 error_and_umount "file not created on rw bind mnt pt"
8268         umount $TMP/$tdir || error "umount of bind mnt pt failed"
8269         rmdir $TMP/$tdir
8270         cleanup || error "cleanup failed with $?"
8271 }
8272 run_test 105 "check file creation for ro and rw bind mnt pt"
8273
8274 test_106() {
8275         local repeat=5
8276
8277         reformat
8278         setup_noconfig
8279         mkdir -p $DIR/$tdir || error "create $tdir failed"
8280         lfs setstripe -c 1 -i 0 $DIR/$tdir
8281 #define OBD_FAIL_CAT_RECORDS                        0x1312
8282         do_facet mds1 $LCTL set_param fail_loc=0x1312 fail_val=$repeat
8283
8284         for ((i = 1; i <= $repeat; i++)); do
8285
8286                 #one full plain llog
8287                 createmany -o $DIR/$tdir/f- 64768
8288
8289                 createmany -u $DIR/$tdir/f- 64768
8290         done
8291         wait_delete_completed $((TIMEOUT * 7))
8292 #ASSERTION osp_sync_thread() ( thread->t_flags != SVC_RUNNING ) failed
8293 #shows that osp code is buggy
8294         do_facet mds1 $LCTL set_param fail_loc=0 fail_val=0
8295
8296         cleanup
8297 }
8298 run_test 106 "check osp llog processing when catalog is wrapped"
8299
8300 test_107() {
8301         [[ "$MDS1_VERSION" -ge $(version_code 2.10.50) ]] ||
8302                 skip "Need MDS version > 2.10.50"
8303         local cmd
8304
8305         start_mgsmds || error "start_mgsmds failed"
8306         start_ost || error "unable to start OST"
8307
8308         # add unknown configuration parameter.
8309         if [[ $PERM_CMD == *"set_param -P"* ]]; then
8310                 cmd="$PERM_CMD ost.$FSNAME-OST0000*.unknown_param"
8311         else
8312                 cmd="$PERM_CMD $FSNAME-OST0000*.ost.unknown_param"
8313         fi
8314         do_facet mgs "$cmd=50"
8315         cleanup_nocli || error "cleanup_nocli failed with $?"
8316         load_modules
8317
8318         # unknown param should be ignored while mounting.
8319         start_ost || error "unable to start OST after unknown param set"
8320
8321         cleanup || error "cleanup failed with $?"
8322 }
8323 run_test 107 "Unknown config param should not fail target mounting"
8324
8325 t_108_prep() {
8326         local facet
8327
8328         $rcmd rm -rf $tmp > /dev/null 2>&1
8329         $rcmd mkdir -p $tmp/{mnt,images} || error "failed to mkdir remotely"
8330
8331         for facet in $facets; do
8332                 [ "$mds1_FSTYPE" = zfs ] &&
8333                         $rcmd $ZPOOL -f export lustre-$facet > /dev/null 2>&1
8334                 $rcmd mkdir $tmp/mnt/$facet ||
8335                         error "failed to mkdir $tmp/mnt/$facet"
8336                 $rcmd dd if=/dev/zero of=$tmp/images/$facet \
8337                         seek=199 bs=1M count=1 ||
8338                         error "failed to create $tmp/images/$facet"
8339         done
8340 }
8341
8342 t_108_mkfs() {
8343         local role=$1
8344         local idx=$2
8345         local bkfs=$3
8346         local mgs=$4
8347         local facet=${role}$((idx + 1))
8348         local pool=""
8349         [ $# -eq 5 ] && pool=$5
8350
8351         do_facet $SINGLEMDS $MKFS --fsname=lustre --$mgs \
8352                 --$role --index=$idx --replace --backfstype=$bkfs \
8353                 --device-size=200000 --reformat $pool $tmp/images/$facet ||
8354                 error "failed to mkfs for $facet"
8355 }
8356
8357 t_108_check() {
8358         echo "mounting client..."
8359         mount -t lustre ${nid}:/lustre $MOUNT ||
8360                 error "failed to mount lustre"
8361
8362         echo "check list"
8363         ls -l $MOUNT/local_dir || error "failed to list"
8364
8365         echo "check truncate && write"
8366         echo "dummmmmmmmmmmmm" > $MOUNT/remote_dir/fsx.c ||
8367                 error "failed to tuncate & write"
8368
8369         echo "check create"
8370         touch $MOUNT/foooo ||
8371                 error "failed to create"
8372
8373         echo "check read && write && append"
8374         sha1sum $MOUNT/conf-sanity.sh |
8375                 awk '{ print $1 }' > $MOUNT/checksum.new ||
8376                 error "failed to read(1)"
8377         sha1sum $MOUNT/remote_dir/unlinkmany.c |
8378                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
8379                 error "failed to read(2)"
8380         sha1sum $MOUNT/striped_dir/lockahead_test.o |
8381                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
8382                 error "failed to read(3)"
8383
8384         echo "verify data"
8385         diff $MOUNT/checksum.new $MOUNT/checksum.src ||
8386                 error "failed to verify data"
8387
8388         echo "done."
8389 }
8390
8391 t_108_cleanup() {
8392         trap 0
8393         local facet
8394
8395         echo "cleanup..."
8396         umount -f $MOUNT || error "failed to umount client"
8397         for facet in $facets; do
8398                 $rcmd umount -f $tmp/mnt/$facet ||
8399                         error "failed to umount $facet"
8400                 if [ "$mds1_FSTYPE" = zfs ]; then
8401                         $rcmd $ZPOOL export -f lustre-$facet ||
8402                                 error "failed to export lustre-$facet"
8403                 fi
8404         done
8405
8406         $rcmd rm -rf $tmp || error "failed to rm the dir $tmp"
8407 }
8408
8409 test_108a() {
8410         [ "$CLIENTONLY" ] && skip "Client-only testing"
8411         [ "$mds1_FSTYPE" != zfs ] && skip "zfs only test"
8412         [ "$MDS1_VERSION" -lt $(version_code 2.10.58) ] &&
8413                 skip "Need server version at least 2.10.58"
8414
8415         stopall
8416         load_modules
8417
8418         local tmp=$TMP/$tdir
8419         local rcmd="do_facet $SINGLEMDS"
8420         local facets="mdt1 mdt2 ost1 ost2"
8421         local nid=$($rcmd $LCTL list_nids | head -1)
8422         local facet
8423
8424         trap t_108_cleanup EXIT ERR
8425         t_108_prep
8426
8427         t_108_mkfs mdt 0 zfs mgs lustre-mdt1/mdt1
8428         t_108_mkfs mdt 1 zfs mgsnode=$nid lustre-mdt2/mdt2
8429         t_108_mkfs ost 0 zfs mgsnode=$nid lustre-ost1/ost1
8430         t_108_mkfs ost 1 zfs mgsnode=$nid lustre-ost2/ost2
8431
8432         for facet in $facets; do
8433                 $rcmd zfs set mountpoint=$tmp/mnt/$facet canmount=on \
8434                         lustre-$facet/$facet ||
8435                         error "failed to zfs set for $facet (1)"
8436                 $rcmd zfs mount lustre-$facet/$facet ||
8437                         error "failed to local mount $facet"
8438                 $rcmd tar jxf $LUSTRE/tests/ldiskfs_${facet}_2_11.tar.bz2 \
8439                         --xattrs --xattrs-include="trusted.*" \
8440                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
8441                         error "failed to untar image for $facet"
8442                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
8443                         error "failed to cleanup for $facet"
8444                 $rcmd zfs umount lustre-$facet/$facet ||
8445                         error "failed to local umount $facet"
8446                 $rcmd zfs set canmount=off lustre-$facet/$facet ||
8447                         error "failed to zfs set $facet (2)"
8448         done
8449
8450         echo "changing server nid..."
8451         $rcmd mount -t lustre -o nosvc lustre-mdt1/mdt1 $tmp/mnt/mdt1
8452         $rcmd lctl replace_nids $FSNAME-MDT0000 $nid
8453         $rcmd lctl replace_nids $FSNAME-MDT0001 $nid
8454         $rcmd lctl replace_nids $FSNAME-OST0000 $nid
8455         $rcmd lctl replace_nids $FSNAME-OST0001 $nid
8456         $rcmd umount $tmp/mnt/mdt1
8457
8458         for facet in $facets; do
8459                 echo "mounting $facet from backup..."
8460                 $rcmd mount -t lustre -o abort_recov lustre-$facet/$facet \
8461                         $tmp/mnt/$facet || error "failed to mount $facet"
8462         done
8463
8464         # ZFS backend can detect migration and trigger OI scrub automatically
8465         # sleep 3 seconds for scrub done
8466         sleep 3
8467
8468         t_108_check
8469         t_108_cleanup
8470 }
8471 run_test 108a "migrate from ldiskfs to ZFS"
8472
8473 test_108b() {
8474         [ "$CLIENTONLY" ] && skip "Client-only testing"
8475         [ "$mds1_FSTYPE" != ldiskfs ] && skip "ldiskfs only test"
8476         [ "$MDS1_VERSION" -lt $(version_code 2.10.58) ] &&
8477                 skip "Need server version at least 2.10.58"
8478
8479         stopall
8480         load_modules
8481
8482         local tmp=$TMP/$tdir
8483         local rcmd="do_facet $SINGLEMDS"
8484         local facets="mdt1 mdt2 ost1 ost2"
8485         local scrub_list="MDT0000 MDT0001 OST0000 OST0001"
8486         local nid=$($rcmd $LCTL list_nids | head -1)
8487         local facet
8488
8489         trap t_108_cleanup EXIT ERR
8490         t_108_prep
8491
8492         t_108_mkfs mdt 0 ldiskfs mgs
8493         t_108_mkfs mdt 1 ldiskfs mgsnode=$nid
8494         t_108_mkfs ost 0 ldiskfs mgsnode=$nid
8495         t_108_mkfs ost 1 ldiskfs mgsnode=$nid
8496
8497         for facet in $facets; do
8498                 $rcmd mount -t ldiskfs -o loop $tmp/images/$facet \
8499                         $tmp/mnt/$facet ||
8500                         error "failed to local mount $facet"
8501
8502                 $rcmd tar jxf $LUSTRE/tests/zfs_${facet}_2_11.tar.bz2 \
8503                         --xattrs --xattrs-include="*.*" \
8504                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
8505                         error "failed to untar image for $facet"
8506                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
8507                         error "failed to cleanup for $facet"
8508                 $rcmd umount $tmp/mnt/$facet ||
8509                         error "failed to local umount $facet"
8510         done
8511
8512         echo "changing server nid..."
8513         $rcmd mount -t lustre -o nosvc,loop $tmp/images/mdt1 $tmp/mnt/mdt1
8514         $rcmd lctl replace_nids $FSNAME-MDT0000 $nid
8515         $rcmd lctl replace_nids $FSNAME-MDT0001 $nid
8516         $rcmd lctl replace_nids $FSNAME-OST0000 $nid
8517         $rcmd lctl replace_nids $FSNAME-OST0001 $nid
8518         $rcmd umount $tmp/mnt/mdt1
8519
8520         for facet in $facets; do
8521                 echo "mounting $facet from backup..."
8522                 $rcmd mount -t lustre -o loop,abort_recov $tmp/images/$facet \
8523                         $tmp/mnt/$facet || error "failed to mount $facet"
8524         done
8525
8526         for facet in $scrub_list; do
8527                 $rcmd $LCTL lfsck_start -M $FSNAME-$facet -t scrub ||
8528                         error "failed to start OI scrub on $facet"
8529         done
8530
8531         # sleep 3 seconds for scrub done
8532         sleep 3
8533
8534         t_108_check
8535         t_108_cleanup
8536 }
8537 run_test 108b "migrate from ZFS to ldiskfs"
8538
8539 #
8540 # set number of permanent parameters
8541 #
8542 test_109_set_params() {
8543         local fsname=$1
8544
8545         set_persistent_param_and_check mds                          \
8546             "mdd.$fsname-MDT0000.atime_diff"                        \
8547             "$fsname-MDT0000.mdd.atime_diff"                        \
8548             "62"
8549         set_persistent_param_and_check mds                          \
8550             "mdd.$fsname-MDT0000.atime_diff"                        \
8551             "$fsname-MDT0000.mdd.atime_diff"                        \
8552             "63"
8553         set_persistent_param_and_check client                       \
8554             "llite.$fsname*.max_read_ahead_mb"                      \
8555             "$fsname.llite.max_read_ahead_mb"                       \
8556             "32"
8557         set_persistent_param_and_check client                       \
8558             "llite.$fsname*.max_read_ahead_mb"                      \
8559             "$fsname.llite.max_read_ahead_mb"                       \
8560             "64"
8561         create_pool $fsname.pool1 || error "create pool failed"
8562         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
8563                 error "pool_add failed"
8564         do_facet mgs $LCTL pool_remove $fsname.pool1 OST0000 ||
8565                 error "pool_remove failed"
8566         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
8567                 error "pool_add failed"
8568 }
8569
8570 #
8571 # check permanent parameters
8572 #
8573 test_109_test_params() {
8574         local fsname=$1
8575
8576         local atime_diff=$(do_facet mds $LCTL \
8577                 get_param -n mdd.$fsname-MDT0000.atime_diff)
8578         [ $atime_diff == 63 ] || error "wrong mdd parameter after clear_conf"
8579         local max_read_ahead_mb=$(do_facet client $LCTL \
8580                 get_param -n llite.$fsname*.max_read_ahead_mb)
8581         [ $max_read_ahead_mb == 64 ] ||
8582                 error "wrong llite parameter after clear_conf"
8583         local ost_in_pool=$(do_facet mds $LCTL pool_list $fsname.pool1 |
8584                 grep -v "^Pool:" | sed 's/_UUID//')
8585         [ $ost_in_pool = "$fsname-OST0000" ] ||
8586                 error "wrong pool after clear_conf"
8587 }
8588
8589 #
8590 # run lctl clear_conf, store CONFIGS before and after that
8591 #
8592 test_109_clear_conf()
8593 {
8594         local clear_conf_arg=$1
8595
8596         local mgsdev
8597         if ! combined_mgs_mds ; then
8598                 mgsdev=$(mgsdevname)
8599                 stop_mgs || error "stop_mgs failed"
8600                 start_mgs "-o nosvc" || error "start_mgs nosvc failed"
8601         else
8602                 mgsdev=$(mdsdevname 1)
8603                 start_mdt 1 "-o nosvc" || error "start_mdt 1 nosvc failed"
8604         fi
8605
8606         do_facet mgs "rm -rf $TMP/${tdir}/conf1; mkdir -p $TMP/${tdir}/conf1;" \
8607                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf1\\\" \
8608                 $mgsdev"
8609
8610         #
8611         # the command being tested
8612         #
8613         do_facet mgs $LCTL clear_conf $clear_conf_arg ||
8614                 error "clear_conf failed"
8615         if ! combined_mgs_mds ; then
8616                 stop_mgs || error "stop_mgs failed"
8617         else
8618                 stop_mdt 1 || error "stop_mdt 1 failed"
8619         fi
8620
8621         do_facet mgs "rm -rf $TMP/${tdir}/conf2; mkdir -p $TMP/${tdir}/conf2;" \
8622                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf2\\\" \
8623                 $mgsdev"
8624 }
8625
8626 test_109_file_shortened() {
8627         local file=$1
8628         local sizes=($(do_facet mgs "stat -c %s " \
8629                 "$TMP/${tdir}/conf1/CONFIGS/$file" \
8630                 "$TMP/${tdir}/conf2/CONFIGS/$file"))
8631         [ ${sizes[1]} -lt ${sizes[0]} ] && return 0
8632         return 1
8633 }
8634
8635 test_109a()
8636 {
8637         [ $MDS1_VERSION -lt $(version_code 2.10.59) ] &&
8638                 skip "Needs MDS version 2.10.59 or later."
8639         [ "$(facet_fstype mgs)" == zfs ] &&
8640                 skip "LU-8727: no implementation for ZFS"
8641
8642         stopall
8643         reformat
8644         setup_noconfig
8645         client_up || error "client_up failed"
8646
8647         #
8648         # set number of permanent parameters
8649         #
8650         test_109_set_params $FSNAME
8651
8652         umount_client $MOUNT || error "umount_client failed"
8653         stop_ost || error "stop_ost failed"
8654         stop_mds || error "stop_mds failed"
8655
8656         test_109_clear_conf $FSNAME
8657         #
8658         # make sure that all configs are cleared
8659         #
8660         test_109_file_shortened $FSNAME-MDT0000 ||
8661                 error "failed to clear MDT0000 config"
8662         test_109_file_shortened $FSNAME-client ||
8663                 error "failed to clear client config"
8664
8665         setup_noconfig
8666
8667         #
8668         # check that configurations are intact
8669         #
8670         test_109_test_params $FSNAME
8671
8672         #
8673         # Destroy pool.
8674         #
8675         destroy_test_pools || error "destroy test pools failed"
8676
8677         cleanup
8678 }
8679 run_test 109a "test lctl clear_conf fsname"
8680
8681 test_109b()
8682 {
8683         [ $MDS1_VERSION -lt $(version_code 2.10.59) ] &&
8684                 skip "Needs MDS version 2.10.59 or later."
8685         [ "$(facet_fstype mgs)" == zfs ] &&
8686                 skip "LU-8727: no implementation for ZFS"
8687
8688         stopall
8689         reformat
8690         setup_noconfig
8691         client_up || error "client_up failed"
8692
8693         #
8694         # set number of permanent parameters
8695         #
8696         test_109_set_params $FSNAME
8697
8698         umount_client $MOUNT || error "umount_client failed"
8699         stop_ost || error "stop_ost failed"
8700         stop_mds || error "stop_mds failed"
8701
8702         test_109_clear_conf $FSNAME-MDT0000
8703         #
8704         # make sure that only one config is cleared
8705         #
8706         test_109_file_shortened $FSNAME-MDT0000 ||
8707                 error "failed to clear MDT0000 config"
8708         test_109_file_shortened $FSNAME-client &&
8709                 error "failed to clear client config"
8710
8711         setup_noconfig
8712         #
8713         # check that configurations are intact
8714         #
8715         test_109_test_params $FSNAME
8716
8717         #
8718         # Destroy pool.
8719         #
8720         destroy_test_pools || error "destroy test pools failed"
8721
8722         cleanup
8723 }
8724 run_test 109b "test lctl clear_conf one config"
8725
8726 test_110()
8727 {
8728         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
8729                 skip "Only applicable to ldiskfs-based MDTs"
8730
8731         do_facet $SINGLEMDS $DEBUGFS -w -R supported_features |grep large_dir ||
8732                 skip "large_dir option is not supported on MDS"
8733         do_facet ost1 $DEBUGFS -w -R supported_features | grep large_dir ||
8734                 skip "large_dir option is not supported on OSS"
8735
8736         stopall # stop all targets before modifying the target counts
8737         local old_mdscount=$MDSCOUNT
8738         local old_ostcount=$OSTCOUNT
8739         local replace=""
8740         stack_trap "MDSCOUNT=$old_mdscount OSTCOUNT=$old_ostcount" EXIT
8741         MDSCOUNT=1
8742         OSTCOUNT=1
8743
8744         # ext4_dir_entry_2 struct size:264
8745         # dx_root struct size:8
8746         # dx_node struct size:8
8747         # dx_entry struct size:8
8748         # For 1024 bytes block size.
8749         # First level directory entries: 126
8750         # Second level directory entries: 127
8751         # Entries in leaf: 3
8752         # For 2 levels limit: 48006
8753         # For 3 levels limit : 6096762
8754         # Create 80000 files to safely exceed 2-level htree limit.
8755         CONF_SANITY_110_LINKS=${CONF_SANITY_110_LINKS:-80000}
8756
8757         # can fit at most 3 filenames per 1KB leaf block, but each
8758         # leaf/index block will only be 3/4 full before split at each level
8759         (( MDSSIZE < CONF_SANITY_110_LINKS / 3 * 4/3 * 4/3 )) &&
8760                 CONF_SANITY_110_LINKS=$((MDSSIZE * 3 * 3/4 * 3/4))
8761
8762         combined_mgs_mds || replace=" --replace "
8763         local opts="$(mkfs_opts mds1 $(mdsdevname 1)) \
8764                     $replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
8765         if [[ $opts != *large_dir* ]]; then
8766                 if [[ $opts != *mkfsoptions* ]]; then
8767                         opts+=" --mkfsoptions=\\\"-O large_dir -b 1024 -i 65536\\\""
8768                 else
8769                         opts="${opts//--mkfsoptions=\\\"/ \
8770                                 --mkfsoptions=\\\"-O large_dir -b 1024 -i 65536 }"
8771                 fi
8772         fi
8773         echo "MDT params: $opts"
8774         load_modules
8775         combined_mgs_mds || start_mgs
8776         add mds1 $opts || error "add mds1 failed with new params"
8777         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
8778
8779         opts="$(mkfs_opts ost1 $(ostdevname 1)) \
8780                 $replace --reformat $(ostdevname 1) $(ostvdevname 1)"
8781
8782         if [[ $opts != *large_dir* ]]; then
8783                 if [[ $opts != *mkfsoptions* ]]; then
8784                         opts+=" --mkfsoptions=\\\"-O large_dir\\\" "
8785                 else
8786                         opts="${opts//--mkfsoptions=\\\"/ \
8787                                 --mkfsoptions=\\\"-O large_dir }"
8788                 fi
8789         fi
8790         echo "OST params: $opts"
8791         add ost1 $opts || error "add ost1 failed with new params"
8792         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
8793
8794         MOUNT_2=yes mountcli || error "mount clients failed"
8795
8796         mkdir -v $DIR/$tdir || error "cannot create $DIR/$tdir"
8797         local pids count=0 group=0
8798
8799         echo "creating $CONF_SANITY_110_LINKS in total"
8800         while (( count < CONF_SANITY_110_LINKS )); do
8801                 local len=$((253 - $(wc -c <<<"$tfile-$group-40000-")))
8802                 local dir=DIR$((group % 2 + 1))
8803                 local target=${!dir}/$tdir/$tfile-$group
8804                 local long=$target-$(generate_name $len)-
8805                 local create=$((CONF_SANITY_110_LINKS - count))
8806
8807                 (( create > 40000 )) && create=40000
8808                 touch $target || error "creating $target failed"
8809                 echo "creating $create hard links to $target"
8810                 createmany -l $target $long $create &
8811                 pids+=" $!"
8812
8813                 count=$((count + create))
8814                 group=$((group + 1))
8815         done
8816         echo "waiting for PIDs$pids to complete"
8817         wait $pids || error "createmany failed after $group groups"
8818
8819         umount_client $MOUNT2 -f
8820         cleanup
8821
8822         run_e2fsck $(facet_active_host mds1) $(mdsdevname 1) -n
8823         MDSCOUNT=$old_mdscount
8824         OSTCOUNT=$old_ostcount
8825 }
8826 run_test 110 "Adding large_dir with 3-level htree"
8827
8828 test_111() {
8829         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
8830                 skip "Only applicable to ldiskfs-based MDTs"
8831
8832         is_dm_flakey_dev $SINGLEMDS $(mdsdevname 1) &&
8833                 skip "This test can not be executed on flakey dev"
8834
8835         do_facet $SINGLEMDS $DEBUGFS -w -R supported_features |grep large_dir ||
8836                 skip "large_dir option is not supported on MDS"
8837
8838         do_facet ost1 $DEBUGFS -w -R supported_features | grep large_dir ||
8839                 skip "large_dir option is not supported on OSS"
8840
8841         # cleanup before changing target counts
8842         cleanup
8843         local old_mdscount=$MDSCOUNT
8844         local old_ostcount=$OSTCOUNT
8845         local old_mdssize=$MDSSIZE
8846         local replace=""
8847         stack_trap "MDSSIZE=$MDSSIZE MDSCOUNT=$MDSCOUNT OSTCOUNT=$OSTCOUNT" EXIT
8848         MDSCOUNT=1
8849         OSTCOUNT=1
8850         (( MDSSIZE < 2400000 )) && MDSSIZE=2400000 # need at least 2.4GB
8851
8852         local mdsdev=$(mdsdevname 1)
8853         combined_mgs_mds || replace=" --replace "
8854         local opts="$(mkfs_opts mds1 $(mdsdevname 1)) \
8855                     $replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
8856         if [[ $opts != *large_dir* ]]; then
8857                 if [[ $opts != *mkfsoptions* ]]; then
8858                         opts+=" --mkfsoptions=\\\"-O large_dir -i 1048576 \\\" "
8859                 else
8860                         opts="${opts//--mkfsoptions=\\\"/ \
8861                                 --mkfsoptions=\\\"-O large_dir -i 1048576 }"
8862                 fi
8863         fi
8864         echo "MDT params: $opts"
8865         load_modules
8866         combined_mgs_mds || start_mgs
8867         __touch_device mds 1
8868         add mds1 $opts || error "add mds1 failed with new params"
8869         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
8870
8871         opts="$(mkfs_opts ost1 $(ostdevname 1)) \
8872                 $replace --reformat $(ostdevname 1) $(ostvdevname 1)"
8873         if [[ $opts != *large_dir* ]]; then
8874                 if [[ $opts != *mkfsoptions* ]]; then
8875                         opts+=" --mkfsoptions=\\\"-O large_dir \\\""
8876                 else
8877                         opts="${opts//--mkfsoptions=\\\"/ --mkfsoptions=\\\"-O large_dir }"
8878                 fi
8879         fi
8880         echo "OST params: $opts"
8881         __touch_device ost 1
8882         add ost1 $opts || error "add ost1 failed with new params"
8883         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
8884
8885         MOUNT_2=yes mountcli
8886         mkdir $DIR/$tdir || error "cannot create $DIR/$tdir"
8887         lfs df $DIR/$tdir
8888         lfs df -i $DIR/$tdir
8889
8890         local group=0
8891
8892         local start=$SECONDS
8893         local dirsize=0
8894         local dirmax=$((2 << 30))
8895         local needskip=0
8896         local taken=0
8897         local rate=0
8898         local left=0
8899         local num=0
8900         while (( !needskip & dirsize < dirmax )); do
8901                 local pids=""
8902
8903                 for cli in ${CLIENTS//,/ }; do
8904                         local len=$((253 - $(wc -c <<<"$cli-$group-60000-")))
8905                         local target=$cli-$group
8906                         local long=$DIR/$tdir/$target-$(generate_name $len)-
8907
8908                         RPWD=$DIR/$tdir do_node $cli touch $target ||
8909                                 error "creating $target failed"
8910                         echo "creating 60000 hardlinks to $target"
8911                         RPWD=$DIR/$tdir do_node $cli createmany -l $target $long 60000 &
8912                         pids+=" $!"
8913
8914                         group=$((group + 1))
8915                         target=$cli-$group
8916                         long=$DIR2/$tdir/$target-$(generate_name $len)-
8917
8918                         RPWD=$DIR2/$tdir do_node $cli touch $target ||
8919                                 error "creating $target failed"
8920                         echo "creating 60000 hardlinks to $target"
8921                         RPWD=$DIR2/$tdir do_node $cli createmany -l $target $long 60000 &
8922                         pids+=" $!"
8923
8924                         group=$((group + 1))
8925                 done
8926                 echo "waiting for PIDs$pids to complete"
8927                 wait $pids || error "createmany failed after $group groups"
8928                 dirsize=$(stat -c %s $DIR/$tdir)
8929                 taken=$((SECONDS - start))
8930                 rate=$((dirsize / taken))
8931                 left=$(((dirmax - dirsize) / rate))
8932                 num=$((group * 60000))
8933                 echo "estimate ${left}s left after $num files / ${taken}s"
8934                 # if the estimated time remaining is too large (it may change
8935                 # over time as the create rate is not constant) then exit
8936                 # without declaring a failure.
8937                 (( left > 1200 )) && needskip=1
8938         done
8939
8940         umount_client $MOUNT2 -f
8941         cleanup
8942
8943         (( $needskip )) && skip "ETA ${left}s after $num files / ${taken}s is too long"
8944
8945         run_e2fsck $(facet_active_host mds1) $(mdsdevname 1) -n
8946         MDSCOUNT=$old_mdscount
8947         OSTCOUNT=$old_ostcount
8948         MDSSIZE=$old_mdssize
8949 }
8950 run_test 111 "Adding large_dir with over 2GB directory"
8951
8952 test_112() {
8953         start_mds || error "MDS start failed"
8954         start_ost || error "OSS start failed"
8955         echo "start ost2 service on $(facet_active_host ost2)"
8956         start ost2 $(ostdevname 2) $(csa_add "$OST_MOUNT_OPTS" -o no_precreate) ||
8957                 error "start ost2 facet failed"
8958         local val=$(do_facet ost2 \
8959                    "$LCTL get_param -n obdfilter.$FSNAME-OST0001*.no_precreate")
8960         (( $val == 1 )) || error "obdfilter.$FSNAME-OST0001*.no_precreate=$val"
8961
8962         mount_client $MOUNT || error "mount client failed"
8963         wait_osc_import_state mds1 ost1 FULL
8964         wait_osc_import_state client ost1 FULL
8965         wait_osc_import_state client ost2 FULL
8966
8967         $LFS setstripe -i 0 $DIR/$tfile.0 ||
8968                 error "problem creating $tfile.0 on OST0000"
8969         $LFS setstripe -i 1 $DIR/$tfile.1 && $LFS getstripe $DIR/$tfile.1 &&
8970                 (( $($LFS getstripe -i $DIR/$tfile.1) == 1 )) &&
8971                 error "allowed to create $tfile.1 on OST0001"
8972         do_facet ost2 $LCTL set_param obdfilter.*.no_precreate=0
8973         sleep_maxage
8974         $LFS setstripe -i 1 $DIR/$tfile.2 ||
8975                 error "failed to create $tfile.2 on ost1 facet"
8976         # files not cleaned with ONLY_REPEAT because of client unmount below
8977         rm -f $DIR/$tfile.[012]
8978         stop_ost2 || error "stop ost2 facet failed"
8979         cleanup
8980 }
8981 run_test 112 "mount OST with nocreate option"
8982
8983 cleanup_115()
8984 {
8985         trap 0
8986         stopall
8987         do_facet mds1 rm -f $1
8988 }
8989
8990 test_115() {
8991         if [ "$mds1_FSTYPE" != ldiskfs ]; then
8992                 skip "Only applicable to ldiskfs-based MDTs"
8993         fi
8994         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
8995
8996         local dbfs_ver=$(do_facet mds1 $DEBUGFS -V 2>&1)
8997
8998         echo "debugfs version: $dbfs_ver"
8999         echo "$dbfs_ver" | egrep -w "1.44.3.wc1|1.44.5.wc1|1.45.2.wc1" &&
9000                 skip_env "This version of debugfs doesn't show inode number"
9001
9002         local IMAGESIZE=$((3072 << 30)) # 3072 GiB
9003
9004         stopall
9005
9006         FLAKEY=false
9007
9008         echo "client1: "
9009         $LCTL dl
9010         mount | grep lustre
9011         echo "mds1: "
9012         do_facet mds1 "hostname; $LCTL dl; mount"
9013         echo "ost1: "
9014         do_facet ost1 "hostname; $LCTL dl; mount"
9015         # We need MDT size 3072GB, because it is smallest
9016         # partition that can store 2B inodes
9017         do_facet mds1 "mkdir -p $TMP/$tdir"
9018         local mdsimgname=$TMP/$tdir/lustre-mdt
9019
9020         do_facet mds1 "rm -f $mdsimgname"
9021         do_facet mds1 "touch $mdsimgname"
9022         stack_trap "cleanup_115 $mdsimgname" EXIT
9023         do_facet mds1 "$TRUNCATE $mdsimgname $IMAGESIZE" ||
9024                 skip "Backend FS doesn't support sparse files"
9025         local mdsdev=$(do_facet mds1 "losetup -f")
9026
9027         do_facet mds1 "losetup $mdsdev $mdsimgname"
9028
9029         local mds_opts="$(mkfs_opts mds1 $(mdsdevname 1))        \
9030                 --mkfsoptions='-O ea_inode,^resize_inode,meta_bg \
9031                 -N 2247484000 -E lazy_itable_init' --device-size=$IMAGESIZE"
9032         add mds1 $mds_opts --mgs --reformat $mdsdev ||
9033                 skip_env "format large MDT failed"
9034
9035         local ostdev=$(ostdevname 1)
9036
9037         local opts="$(mkfs_opts ost1 $ostdev) \
9038                 --reformat $ostdev $ostdev"
9039         add ost1 $opts || error "add ost1 failed with new params"
9040         start mds1  $mdsdev $MDS_MOUNT_OPTS || error "start MDS failed"
9041         start_ost || error "start OSS failed"
9042         mount_client $MOUNT || error "mount client failed"
9043
9044         mkdir -p $DIR/$tdir || error "mkdir $DIR/$tdir fail"
9045         local goal="/sys/fs/ldiskfs/$(basename $mdsdev)/inode_goal"
9046         echo goal: $goal
9047         # 2147483648 is 0x80000000
9048         do_facet mds1 "echo 2147483648 >> $goal; grep . $goal"
9049         touch $DIR/$tdir/$tfile
9050
9051         # attrs from 1 to 16 go to block, 17th - to inode
9052         local i
9053
9054         for i in {1..17}; do
9055                 local nm="trusted.ea$i"
9056                 setfattr -n $nm -v $(printf "xattr%0250d" $i) $DIR/$tdir/$tfile
9057         done
9058
9059         do_facet mds1 "$DEBUGFS -c -R 'stat ROOT/$tdir/$tfile' $mdsdev"
9060
9061         # inode <2147483649> trusted.ea16 (255)
9062         local inode_num=$(do_facet mds1 \
9063                         "$DEBUGFS -c -R 'stat ROOT/$tdir/$tfile' $mdsdev" |
9064                          awk '/ea17/ { print $2 }' |
9065                          sed -e 's/>//' -e 's/<//' -e 's/\"//')
9066         echo "inode num: $inode_num"
9067         [ $inode_num -ge 2147483648 ] || error "inode $inode_num too small"
9068         do_facet mds1 "losetup -d $mdsdev"
9069 }
9070 run_test 115 "Access large xattr with inodes number over 2TB"
9071
9072 test_116() {
9073         [ "$mds1_FSTYPE" != ldiskfs ] && skip "ldiskfs only test"
9074         [ "$MDS1_VERSION" -lt $(version_code 2.10.59) ] &&
9075                 skip "Need server version at least 2.10.59"
9076         do_facet $SINGLEMDS which mkfs.xfs ||
9077                 skip_env "No mkfs.xfs installed"
9078
9079         stopall
9080         load_modules
9081
9082         local tmpmnt=$TMP/$tdir
9083         local mdtimg=$tfile-mdt0
9084
9085         do_facet $SINGLEMDS mkdir -p $tmpmnt
9086         stack_trap "do_facet $SINGLEMDS rmdir $tmpmnt" EXIT
9087
9088         do_facet $SINGLEMDS touch $TMP/$mdtimg
9089         stack_trap "do_facet $SINGLEMDS rm -f $TMP/$mdtimg" EXIT
9090         do_facet $SINGLEMDS mkfs -t xfs -d file,size=1t,name=$TMP/$mdtimg ||
9091                 error "mkfs temporary xfs image"
9092
9093         do_facet $SINGLEMDS mount $TMP/$mdtimg $tmpmnt ||
9094                 error "mount temporary xfs image"
9095         stack_trap "do_facet $SINGLEMDS umount $tmpmnt" EXIT
9096         local old_mdssize=$MDSSIZE
9097         local old_mdsisize=$MDSISIZE
9098
9099         MDSSIZE=$((17 * 1024 * 1024 * 1024)) # 17T MDT
9100         MDSISIZE=$((16 << 20))
9101         local opts17t="$(mkfs_opts $SINGLEMDS)"
9102
9103         MDSSIZE=$old_mdssize
9104         MDSISIZE=$old_mdsisize
9105
9106         do_facet $SINGLEMDS $MKFS \
9107                 ${opts17t/-E /-E lazy_itable_init,lazy_journal_init,} \
9108                 $tmpmnt/$mdtimg ||
9109                 error "failed to mkfs for $tmpmnt/$mdtimg"
9110
9111         do_facet $SINGLEMDS $TUNE2FS -l $tmpmnt/$mdtimg |
9112                 grep -qw 'features.*extent' || error "extent should be enabled"
9113         reformat_and_config
9114 }
9115 run_test 116 "big size MDT support"
9116
9117 test_117() {
9118         setup
9119         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.nrs_policies=fifo"
9120         do_facet ost1 "$LCTL get_param -n ost.OSS.ost_io.nrs_tbf_rule" &&
9121                 error "get_param should fail"
9122         cleanup || error "cleanup failed with rc $?"
9123 }
9124 run_test 117 "lctl get_param return errors properly"
9125
9126 test_119() {
9127         local had_config
9128         local size_mb
9129
9130         [[ "$MDSCOUNT" -ge 2 ]] || skip "Need more at least 2 MDTs"
9131
9132         had_config=$(do_facet mds1 "$LCTL get_param debug | grep config")
9133         do_facet mds1 "$LCTL set_param debug=+config"
9134         do_facet mds1 "$LCTL clear"
9135
9136         setup
9137         do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)" &>/dev/null
9138         # mount after writeconf will make "add osp" added to mdt0 config:
9139         # 53 (224)marker  60 (flags=0x01, v2.5.1.0) lustre-MDT0001  'add osp'
9140         # 54 (080)add_uuid  nid=...  0:  1:...
9141         # 55 (144)attach    0:lustre-MDT0001-osp-MDT0000  1:osp  2:...
9142         # 56 (144)setup     0:lustre-MDT0001-osp-MDT0000  1:...  2:...
9143         # 57 (136)modify_mdc_tgts add 0:lustre-MDT0000-mdtlov  1:...  2:1  3:1
9144         # duplicate modify_mdc_tgts caused crashes
9145
9146         debug_size_save
9147         # using larger debug_mb size to avoid lctl dk log truncation
9148         size_mb=$((DEBUG_SIZE_SAVED * 4))
9149         for i in {1..3}; do
9150                 stop_mdt 2
9151                 # though config processing stops after failed attach and setup
9152                 # it will proceed after the failed command after each writeconf
9153                 # this is the original scenario of the issue
9154                 do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)" &>/dev/null
9155                 do_facet mds1 "$LCTL set_param debug_mb=$size_mb"
9156                 start_mdt 2
9157
9158                 wait_update_facet_cond mds1 \
9159                         "$LCTL dk | grep -c Processed.log.$FSNAME-MDT0000" \
9160                         ">" 1 300
9161         done
9162         debug_size_restore
9163
9164         [[ -z "$had_config" ]] && do_facet mds1 lctl set_param debug=-config
9165
9166         reformat
9167 }
9168 run_test 119 "writeconf on slave mdt shouldn't duplicate mdc/osp and crash"
9169
9170 test_120() { # LU-11130
9171         [ "$MDSCOUNT" -lt 2 ] && skip "mdt count < 2"
9172         [ "$mds1_FSTYPE" != ldiskfs ] &&
9173                 skip "ldiskfs only test"
9174         [ "$MDS1_VERSION" -lt $(version_code 2.11.56) ] &&
9175                 skip "Need DNE2 capable MD target with LU-11130 fix"
9176
9177         setup
9178
9179         local mds1host=$(facet_active_host mds1)
9180         local mds1dev=$(mdsdevname 1)
9181
9182         $LFS mkdir -i 1 $DIR/$tdir
9183         $LFS mkdir -i 0 $DIR/$tdir/mds1dir
9184
9185         ln -s foo $DIR/$tdir/bar
9186         mv $DIR/$tdir/bar $DIR/$tdir/mds1dir/bar2 ||
9187                 error "cross-target rename failed"
9188
9189         stopall
9190
9191         run_e2fsck $mds1host $mds1dev "-n"
9192 }
9193 run_test 120 "cross-target rename should not create bad symlinks"
9194
9195 test_121(){
9196         stopall
9197         start_mgsmds || error "MGS MDS Start failed"
9198         fail mgs
9199         stop_mds || error "Stopping MDSes failed"
9200         #failback
9201         start_mds
9202         fail mgs
9203         stop_mds || error "Stopping MDSes failed"
9204 }
9205 run_test 121 "failover MGS"
9206
9207 test_122a() {
9208         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9209         [[ "$OST1_VERSION" -ge $(version_code 2.11.53) ]] ||
9210                 skip "Need OST version at least 2.11.53"
9211
9212         reformat
9213         LOAD_MODULES_REMOTE=true load_modules
9214 #define OBD_FAIL_OFD_SET_OID 0x1e0
9215         do_facet ost1 $LCTL set_param fail_loc=0x00001e0
9216
9217         setup_noconfig
9218         $LFS mkdir -i1 -c1 $DIR/$tdir
9219         $LFS setstripe -i0 -c1 $DIR/$tdir
9220         do_facet ost1 $LCTL set_param fail_loc=0
9221         createmany -o $DIR/$tdir/file_ 1000 ||
9222                 error "Fail to create a new sequence"
9223
9224         cleanup
9225 }
9226 run_test 122a "Check OST sequence update"
9227
9228 test_122b() {
9229         [[ "$OST1_VERSION" -ge $(version_code 2.11.53) ]] ||
9230                 skip "Need OST version at least 2.11.53"
9231         local err
9232
9233         reformat
9234         LOAD_MODULES_REMOTE=true load_modules
9235 #define OBD_FAIL_OFD_SET_OID 0x1e0
9236         do_facet ost1 $LCTL set_param fail_loc=0x00001e0
9237
9238         stack_trap cleanup EXIT
9239         setup_noconfig
9240         do_facet ost1 $LCTL set_param obdfilter.*.precreate_batch=256
9241         $LFS mkdir -i0 -c1 $DIR/$tdir || error "failed to create directory"
9242         $LFS setstripe -i0 -c1 $DIR/$tdir || error "failed to setstripe"
9243         do_facet ost1 $LCTL set_param fail_loc=0
9244         # overflow IDIF 32bit and create > OST_MAX_PRECREATE*5
9245         # so a new wrong sequence would differ from an original with error
9246         #define OST_MAX_PRECREATE 20000
9247         local ost_max_precreate=20100
9248         local num_create=$(( ost_max_precreate * 5 ))
9249
9250         # Check the number of inodes available on OST0
9251         local files=0
9252         local ifree=$($LFS df -i $MOUNT |
9253                 awk '/OST0000/ { print $4 }'; exit ${PIPESTATUS[0]})
9254
9255         log "On OST0, $ifree inodes available. Want $num_create. rc=$?"
9256
9257         if [ $ifree -lt 10000 ]; then
9258                 files=$(( ifree - 50 ))
9259         else
9260                 files=10000
9261         fi
9262
9263         local j=$((num_create / files + 1))
9264
9265         for i in $(seq 1 $j); do
9266                 createmany -o $DIR/$tdir/$tfile-$i- $files ||
9267                         error "createmany fail create $files files: $?"
9268                 unlinkmany $DIR/$tdir/$tfile-$i- $files ||
9269                         error "unlinkmany failed unlink $files files"
9270         done
9271         sync
9272         touch $DIR/$tdir/$tfile
9273         do_facet ost1 sync
9274         #we need a write req during recovery for ofd_seq_load
9275         replay_barrier ost1
9276         dd if=/dev/urandom of=$DIR/$tdir/$tfile bs=1024k count=1 oflag=sync ||
9277                  error "failed to write file"
9278
9279         # OBD_FAIL_OST_CREATE_NET 0x204
9280         do_facet ost1 $LCTL set_param fail_loc=0x80000204
9281         fail ost1
9282         createmany -o $DIR/$tdir/file_ 100
9283         sync
9284
9285         err=$(do_facet ost1 dmesg | tac | sed "/Recovery over/,$ d" |
9286               grep "OST replaced or reformatted")
9287         [ -z "$err" ] || error $err
9288 }
9289 run_test 122b "Check OST sequence wouldn't change when IDIF 32bit overflows"
9290
9291 test_123aa() {
9292         remote_mgs_nodsh && skip "remote MGS with nodsh"
9293         [ -d $MOUNT/.lustre ] || setup
9294
9295         # test old logid format until removal from llog_ioctl.c::str2logid()
9296         if [ $MGS_VERSION -lt $(version_code 3.1.53) ]; then
9297                 do_facet mgs $LCTL dl | grep MGS
9298                 do_facet mgs "$LCTL --device %MGS llog_print \
9299                               \\\\\\\$$FSNAME-client 1 10" ||
9300                         error "old llog_print failed"
9301         fi
9302
9303         # test new logid format
9304         if [ $MGS_VERSION -ge $(version_code 2.9.53) ]; then
9305                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
9306                         error "new llog_print failed"
9307         fi
9308 }
9309 run_test 123aa "llog_print works with FIDs and simple names"
9310
9311 test_123ab() {
9312         remote_mgs_nodsh && skip "remote MGS with nodsh"
9313         [[ $MGS_VERSION -gt $(version_code 2.11.51) ]] ||
9314                 skip "Need server with working llog_print support"
9315
9316         [ -d $MOUNT/.lustre ] || setup
9317
9318         local yaml
9319         local orig_val
9320         local mgs_arg=""
9321
9322         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9323                 mgs_arg="--device MGS"
9324
9325         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
9326         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME"
9327
9328         yaml=$(do_facet mgs $LCTL $mgs_arg llog_print params |
9329                grep jobid_name | tail -n 1)
9330
9331         local param=$(awk '{ print $10 }' <<< "$yaml")
9332         local val=$(awk '{ print $12 }' <<< "$yaml")
9333         #return to the default
9334         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
9335         [ $val = "TESTNAME" ] || error "bad value: $val"
9336         [ $param = "jobid_name," ] || error "Bad param: $param"
9337 }
9338 run_test 123ab "llog_print params output values from set_param -P"
9339
9340 test_123ac() { # LU-11566
9341         remote_mgs_nodsh && skip "remote MGS with nodsh"
9342         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
9343                 skip "Need 'lctl llog_print --start' on MGS"
9344
9345         local start=10
9346         local end=50
9347         local mgs_arg=""
9348
9349         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9350                 mgs_arg="--device MGS"
9351
9352         [ -d $MOUNT/.lustre ] || setup
9353
9354         # - { index: 10, event: add_uuid, nid: 192.168.20.1@tcp(0x20000c0a81401,
9355         #     node: 192.168.20.1@tcp }
9356         do_facet mgs $LCTL $mgs_arg \
9357                 llog_print --start $start --end $end $FSNAME-client | tr -d , |
9358                 while read DASH BRACE INDEX idx EVENT BLAH BLAH BLAH; do
9359                 (( idx >= start )) || error "llog_print index $idx < $start"
9360                 (( idx <= end )) || error "llog_print index $idx > $end"
9361         done
9362 }
9363 run_test 123ac "llog_print with --start and --end"
9364
9365 test_123ad() { # LU-11566
9366         remote_mgs_nodsh && skip "remote MGS with nodsh"
9367         # older versions of lctl may not print all records properly
9368         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
9369                 skip "Need 'lctl llog_print --start' on MGS"
9370
9371         [ -d $MOUNT/.lustre ] || setup
9372
9373         # append a new record, to avoid issues if last record was cancelled
9374         local old=$($LCTL get_param -n osc.*-OST0000-*.max_dirty_mb | head -1)
9375         do_facet mgs $LCTL conf_param $FSNAME-OST0000.osc.max_dirty_mb=$old
9376
9377         # logid:            [0x3:0xa:0x0]:0
9378         # flags:            4 (plain)
9379         # records_count:    72
9380         # last_index:       72
9381         local num=$(do_facet mgs $LCTL --device MGS llog_info $FSNAME-client |
9382                     awk '/last_index:/ { print $2 - 1 }')
9383
9384         # - { index: 71, event: set_timeout, num: 0x14, param: sys.timeout=20 }
9385         local last=$(do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9386                      tail -1 | awk '{ print $4 }' | tr -d , )
9387         (( last == num )) || error "llog_print only showed $last/$num records"
9388 }
9389 run_test 123ad "llog_print shows all records"
9390
9391 test_123ae() { # LU-11566
9392         local max
9393         local mgs_arg=""
9394         local log
9395         local id
9396         local orig
9397         local new
9398         local rpcs
9399
9400         remote_mgs_nodsh && skip "remote MGS with nodsh"
9401         [ -d $MOUNT/.lustre ] || setupall
9402
9403         max=$($LCTL get_param -n osc.*-OST0000-*.max_dirty_mb | head -1)
9404         pgs=$($LCTL get_param -n osc.*-OST0000-*.max_pages_per_rpc | head -1)
9405         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9406                 mgs_arg="--device MGS"
9407
9408         if do_facet mgs "$LCTL help llog_cancel" 2>&1| grep -q -- --log_id; then
9409                 # save one set_param -P record in case none exist
9410
9411                 do_facet mgs $LCTL set_param -P osc.*.max_pages_per_rpc=$pgs
9412                 stack_trap "do_facet mgs $LCTL set_param -P -d \
9413                                 osc.*.max_pages_per_rpc"
9414
9415                 log=params
9416                 orig=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9417                         tail -1 | awk '{ print $4 }' | tr -d , )
9418                 do_facet mgs $LCTL set_param -P osc.*.max_dirty_mb=$max
9419                 do_facet mgs $LCTL $mgs_arg llog_print $log | tail -1 |
9420                         grep "parameter: osc.*.max_dirty_mb" ||
9421                         error "new set_param -P wasn't stored in params log"
9422
9423                 # - { index: 71, event: set_param, device: general,
9424                 #     param: osc.*.max_dirty_mb, value: 256 }
9425                 id=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9426                      tail -1 | awk '{ print $4 }' | tr -d , )
9427                 do_facet mgs $LCTL $mgs_arg llog_cancel $log --log_idx=$id
9428                 local new=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9429                             tail -1 | awk '{ print $4 }' | tr -d , )
9430                 (( new == orig )) ||
9431                         error "new llog_cancel now $new, not at $orig records"
9432         fi
9433
9434         # test old positional parameters for a while still
9435         if [ "$MGS_VERSION" -le $(version_code 3.1.53) ]; then
9436                 log=$FSNAME-client
9437
9438                 do_facet mgs $LCTL conf_param \
9439                         $FSNAME-OST0000.osc.max_pages_per_rpc=$pgs
9440                 stack_trap "do_facet mgs $LCTL conf_param -d \
9441                                 $FSNAME-OST0000.osc.max_pages_per_rpc"
9442
9443                 orig=$(do_facet mgs $LCTL --device MGS llog_print $log |
9444                        tail -1 | awk '{ print $4 }' | tr -d , )
9445                 do_facet mgs $LCTL conf_param $FSNAME-OST0000.osc.max_dirty_mb=$max
9446                 do_facet mgs $LCTL --device MGS llog_print $log |
9447                         tail -1 | grep "parameter: osc.max_dirty_mb" ||
9448                         error "old conf_param wasn't stored in params log"
9449                 do_facet mgs $LCTL --device MGS llog_print $log
9450                 # - { index: 71, event: conf_param, device: testfs-OST0000-osc,
9451                 #     param: osc.max_dirty_mb=256 }
9452                 id=$(do_facet mgs $LCTL --device MGS llog_print $log |
9453                      tail -1 | awk '{ print $4 }' | tr -d , )
9454                 do_facet mgs $LCTL --device MGS llog_cancel $log $id
9455                 do_facet mgs $LCTL --device MGS llog_print $log
9456                 new=$(do_facet mgs $LCTL --device MGS llog_print $log |
9457                       tail -1 | awk '{ print $4 }' | tr -d , )
9458                 (( new == orig )) ||
9459                         error "old llog_cancel now $new, not at $orig records"
9460         fi
9461 }
9462 run_test 123ae "llog_cancel can cancel requested record"
9463
9464 test_123af() { #LU-13609
9465         [ "$MGS_VERSION" -ge $(version_code 2.13.54) -a \
9466            "$MDS1_VERSION" -ge $(version_code 2.13.54) ] ||
9467                 skip "Need both MGS and MDS version at least 2.13.54"
9468
9469         [ -d $MOUNT/.lustre ] || setupall
9470         stack_trap "do_facet mds1 $LCTL set_param fail_loc=0" EXIT
9471
9472         local device
9473         local facet
9474         local cmd
9475         local orig_clist
9476         local orig_count
9477         local new_clist
9478         local new_count
9479
9480         for device in "MGS" "$FSNAME-MDT0000"; do
9481                 cmd="--device $device llog_catlist"
9482                 echo "lctl $cmd ..."
9483                 if [ "$device" = "MGS" ]; then
9484                         facet="mgs"
9485                 else
9486                         facet="mds1"
9487                 fi
9488                 orig_clist=($(do_facet $facet $LCTL $cmd | awk '{ print $2 }'))
9489                 orig_count=${#orig_clist[@]}
9490                 echo "orig_clist: ${orig_clist[*]}"
9491
9492                 #define OBD_FAIL_CATLIST 0x131b
9493                 #fetch to llog records from the second one
9494                 do_facet $facet $LCTL set_param fail_loc=0x131b fail_val=2
9495
9496                 new_clist=($(do_facet $facet $LCTL $cmd | awk '{ print $2 }'))
9497                 new_count=${#new_clist[@]}
9498                 echo "new_clist: ${new_clist[*]}"
9499
9500                 [ $new_count -eq $((orig_count - 1)) ] ||
9501                         error "$new_count != $orig_count - 1"
9502                 for i in $(seq 0 $new_count); do
9503                         j=$((i + 1))
9504                         [ "${orig_clist[$j]}" = "${new_clist[$i]}" ] ||
9505                                 error "${orig_clist[$j]} != ${new_clist[$i]}"
9506                 done
9507                 do_facet mds1 $LCTL set_param fail_loc=0
9508                 echo "done"
9509         done
9510 }
9511 run_test 123af "llog_catlist can show all config files correctly"
9512
9513 test_123ag() { # LU-15142
9514         local rec
9515         local orig_val
9516
9517         remote_mgs_nodsh && skip "remote MGS with nodsh"
9518         (( $MGS_VERSION >= $(version_code 2.14.55) )) ||
9519                 skip "Need server version least 2.14.55"
9520
9521         [ -d $MOUNT/.lustre ] || setup
9522
9523         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
9524         stack_trap "do_facet mgs $LCTL set_param -P jobid_name=$orig_val"
9525
9526         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME1"
9527         do_facet mgs $LCTL set_param -P -d jobid_name
9528         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9529                 grep -c jobid_name)
9530         (( rec == 0 )) || error "parameter was not deleted, check #1"
9531         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME1"
9532         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9533                 grep -c jobid_name)
9534         (( rec == 1)) || error "parameter is not set"
9535         # usage with ordinary set_param format works too
9536         do_facet mgs $LCTL set_param -P -d jobid_name="ANY"
9537         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9538                 grep -c jobid_name)
9539         (( rec == 0 )) || error "parameter was not deleted, check #2"
9540 }
9541 run_test 123ag "llog_print skips values deleted by set_param -P -d"
9542
9543 test_123ah() { #LU-7668 del_ost
9544         [ "$MGS_VERSION" -ge $(version_code 2.15.50) -a \
9545            "$MDS1_VERSION" -ge $(version_code 2.15.50) ] ||
9546                 skip "Need both MGS and MDS version at least 2.15.50"
9547
9548         [ -d $MOUNT/.lustre ] || setupall
9549         stack_trap "do_facet mds1 $LCTL set_param fail_loc=0" EXIT
9550
9551         local cmd="--device MGS llog_print"
9552
9553         cli_llogcnt_orig=$(do_facet mgs $LCTL $cmd $FSNAME-client |
9554                                 grep -c $FSNAME-OST0000)
9555         mds1_llogcnt_orig=$(do_facet mgs $LCTL $cmd $FSNAME-MDT0000 |
9556                                 grep -c $FSNAME-OST0000)
9557
9558         [ $cli_llogcnt_orig -gt 0 ] ||
9559                 error "$FSNAME-OST0000 not found (client)"
9560         [ $mds1_llogcnt_orig -gt 0 ] || error "$FSNAME-OST0000 not found (MDT)"
9561
9562         # -n/--dryrun should NOT modify catalog
9563         do_facet mgs "$LCTL del_ost -n -t $FSNAME-OST0000" ||
9564                 error "del_ost --dryrun failed with $?"
9565
9566         local cli_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-client |
9567                         grep -c $FSNAME-OST0000)
9568         local mds1_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-MDT0000 |
9569                         grep -c $FSNAME-OST0000)
9570
9571         [ $cli_llogcnt -eq $cli_llogcnt_orig ] ||
9572                 error "--dryrun error: $cli_llogcnt != $cli_llogcnt_orig"
9573         [ $mds1_llogcnt -eq $mds1_llogcnt_orig ] ||
9574                 error "--dryrun error: $mds1_llogcnt != $mds1_llogcnt_orig"
9575
9576         # actual run
9577         do_facet mgs "$LCTL del_ost --target $FSNAME-OST0000" ||
9578                 error "del_ost failed with $?"
9579
9580         local cli_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-client |
9581                         grep -c $FSNAME-OST0000)
9582         local mds1_llogcnt=$(do_facet mgs $LCTL $cmd $FSNAME-MDT0000 |
9583                         grep -c $FSNAME-OST0000)
9584
9585         # every catalog entry for OST0000 should have been cancelled
9586         [ $cli_llogcnt -eq 0 ] || error "$FSNAME-OST0000 not cancelled (cli)"
9587         [ $mds1_llogcnt -eq 0 ] || error "$FSNAME-OST0000 not cancelled (MDT)"
9588
9589         umount_client $MOUNT
9590         mount_client $MOUNT
9591
9592         $LFS df | grep -q OST0000 && error "del_ost did not remove OST0000!"
9593         cleanup
9594         reformat_and_config
9595 }
9596 run_test 123ah "del_ost cancels config log entries correctly"
9597
9598 test_123F() {
9599         remote_mgs_nodsh && skip "remote MGS with nodsh"
9600
9601         [ -d $MOUNT/.lustre ] || setup
9602         local yaml_file="$TMP/$tfile.yaml"
9603
9604         do_facet mgs rm "$yaml_file"
9605         local cfgfiles=$(do_facet mgs "lctl --device MGS llog_catlist" |
9606                          sed 's/config_log://')
9607
9608         # set jobid_var to a different value for test
9609         local orig_val=$(do_facet mgs $LCTL get_param jobid_var)
9610
9611         do_facet mgs $LCTL set_param -P jobid_var="TESTNAME"
9612
9613         for i in $cfgfiles params; do
9614                 do_facet mgs "lctl --device MGS llog_print ${i} >> $yaml_file"
9615         done
9616
9617         echo "Unmounting FS"
9618         stopall
9619         echo "Writeconf"
9620         writeconf_all
9621         echo "Remounting"
9622         setup_noconfig
9623
9624         # Reapply the config from before
9625         echo "Setting configuration parameters"
9626         do_facet mgs "lctl set_param -F $yaml_file"
9627
9628         local set_val=$(do_facet mgs $LCTL get_param jobid_var)
9629
9630         do_facet mgs $LCTL set_param -P $orig_val
9631
9632         [ $set_val == "jobid_var=TESTNAME" ] ||
9633                 error "$set_val is not TESTNAME"
9634
9635         do_facet mgs rm "$yaml_file"
9636         cleanup
9637 }
9638 run_test 123F "clear and reset all parameters using set_param -F"
9639
9640 test_124()
9641 {
9642         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9643         [ -z $mds2failover_HOST ] && skip "needs MDT failover setup"
9644
9645         setup
9646         do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9647                 grep 1.2.3.4@tcp && error "Should not be fake nid"
9648         do_facet mgs $LCTL conf_param $FSNAME-MDT0001.failover.node=1.2.3.4@tcp\
9649                 || error "Set params error"
9650         do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9651                 grep 1.2.3.4@tcp || error "Fake nid should be added"
9652         cleanup
9653
9654         load_modules
9655         if combined_mgs_mds; then
9656                 start_mdt 1 "-o nosvc" ||
9657                         error "starting mds with nosvc option failed"
9658         fi
9659         local nid=$(do_facet mds2 $LCTL list_nids | head -1)
9660         local failover_nid=$(do_node $mds2failover_HOST $LCTL list_nids | head -1)
9661
9662         do_facet mgs $LCTL replace_nids $FSNAME-MDT0001 $nid:$failover_nid ||
9663                 error "replace_nids execution error"
9664
9665         if combined_mgs_mds; then
9666                 stop_mdt 1
9667         fi
9668
9669         setup
9670         fail mds2
9671         echo "lfs setdirstripe"
9672         $LFS setdirstripe -i 1 $MOUNT/$tdir || error "setdirstirpe error"
9673         echo ok
9674 }
9675 run_test 124 "check failover after replace_nids"
9676
9677 get_max_sectors_kb() {
9678         local facet="$1"
9679         local device="$2"
9680         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9681         local max_sectors_path="/sys/block/${dev_base}/queue/max_sectors_kb"
9682
9683         do_facet ${facet} "[[ -e ${max_sectors_path} ]] &&
9684                            cat ${max_sectors_path}"
9685 }
9686
9687 get_max_hw_sectors_kb() {
9688         local facet="$1"
9689         local device="$2"
9690         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9691         local max_hw_path="/sys/block/${dev_base}/queue/max_hw_sectors_kb"
9692
9693         do_facet ${facet} "[[ -e ${max_hw_path} ]] && cat ${max_hw_path}"
9694 }
9695
9696 set_max_sectors_kb() {
9697         local facet="$1"
9698         local device="$2"
9699         local value="$3"
9700         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9701         local max_sectors_path="/sys/block/${dev_base}/queue/max_sectors_kb"
9702
9703         do_facet ${facet} "[[ -e ${max_sectors_path} ]] &&
9704                            echo ${value} > ${max_sectors_path}"
9705         rc=$?
9706
9707         [[ $rc -ne 0 ]] && echo "Failed to set ${max_sectors_path} to ${value}"
9708
9709         return $rc
9710 }
9711
9712 # Return 0 if all slave devices have max_sectors_kb == max_hw_sectors_kb
9713 # Otherwise return > 0
9714 check_slaves_max_sectors_kb()
9715 {
9716         local facet="$1"
9717         local device="$2"
9718         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9719         local slaves_dir=/sys/block/${dev_base}/slaves
9720         local slave_devices=$(do_facet ${facet} "ls ${slaves_dir} 2>/dev/null")
9721         [[ -z ${slave_devices} ]] && return 0
9722
9723         local slave max_sectors new_max_sectors max_hw_sectors path
9724         local rc=0
9725
9726         for slave in ${slave_devices}; do
9727                 path="/dev/${slave}"
9728                 ! is_blkdev ${facet} ${path} && continue
9729                 max_sectors=$(get_max_sectors_kb ${facet} ${path})
9730                 max_hw_sectors=$(get_max_hw_sectors_kb ${facet} ${path})
9731                 new_max_sectors=${max_hw_sectors}
9732                 [[ ${new_max_sectors} -gt ${RQ_SIZE_LIMIT} ]] &&
9733                         new_max_sectors=${RQ_SIZE_LIMIT}
9734
9735                 if [[ ${max_sectors} -ne ${new_max_sectors} ]]; then
9736                         echo "${path} ${max_sectors} ${new_max_sectors}"
9737                         ((rc++))
9738                 fi
9739                 check_slaves_max_sectors_kb ${facet} ${path}
9740                 ((rc + $?))
9741         done
9742
9743         return $rc
9744 }
9745
9746 test_125()
9747 {
9748         local facet_list="mgs mds1 ost1"
9749         combined_mgs_mds && facet_list="mgs ost1"
9750
9751         local facet
9752         for facet in ${facet_list}; do
9753                 [[ $(facet_fstype ${facet}) != ldiskfs ]] &&
9754                         skip "ldiskfs only test" &&
9755                         return 0
9756                 ! is_blkdev ${facet} $(facet_device ${facet}) &&
9757                         skip "requires all real devices" &&
9758                         return 0
9759         done
9760
9761         local rc=0
9762         # We don't increase IO request size limit past 16MB. See comments in
9763         # lustre/utils/libmount_utils_ldiskfs.c:tune_max_sectors_kb()
9764         RQ_SIZE_LIMIT=$((16 * 1024))
9765         local device old_max_sectors new_max_sectors max_hw_sectors
9766         for facet in ${facet_list}; do
9767                 device=$(facet_device ${facet})
9768                 old_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9769                 max_hw_sectors=$(get_max_hw_sectors_kb ${facet} ${device})
9770
9771                 # The expected value after l_tunedisk is executed
9772                 new_max_sectors=$old_max_sectors
9773                 [[ ${new_max_sectors_kb} -gt ${RQ_SIZE_LIMIT} ]] &&
9774                         new_max_sectors_kb=${RQ_SIZE_LIMIT}
9775
9776                 # Ensure the current value of max_sectors_kb does not equal
9777                 # max_hw_sectors_kb, so we can tell whether l_tunedisk did
9778                 # anything
9779                 set_max_sectors_kb ${facet} ${device} $((new_max_sectors - 1))
9780
9781                 # Value before l_tunedisk
9782                 local pre_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9783                 if [[ ${pre_max_sectors} -ne $((new_max_sectors - 1)) ]]; then
9784                         echo "unable to satsify test pre-condition:"
9785                         echo "${pre_max_sectors} != $((new_max_sectors - 1))"
9786                         ((rc++))
9787                         continue
9788                 fi
9789
9790                 echo "Before: ${facet} ${device} ${pre_max_sectors} ${max_hw_sectors}"
9791
9792                 do_facet ${facet} "l_tunedisk ${device}"
9793
9794                 # Value after l_tunedisk
9795                 local post_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9796
9797                 echo "After: ${facet} ${device} ${post_max_sectors} ${max_hw_sectors}"
9798
9799                 if [[ ${facet} != ost1 ]]; then
9800                         if [[ ${post_max_sectors} -ne ${pre_max_sectors} ]]; then
9801                                 echo "l_tunedisk modified max_sectors_kb of ${facet}"
9802                                 ((rc++))
9803                         fi
9804
9805                         set_max_sectors_kb ${facet} ${device} ${old_max_sectors}
9806                 else
9807                         if [[ ${post_max_sectors} -eq ${pre_max_sectors} ]]; then
9808                                 echo "l_tunedisk failed to modify max_sectors_kb of ${facet}"
9809                                 ((rc++))
9810                         fi
9811
9812                         check_slaves_max_sectors_kb ${facet} ${device} ||
9813                                 ((rc++))
9814                 fi
9815         done
9816
9817         return $rc
9818 }
9819 run_test 125 "check l_tunedisk only tunes OSTs and their slave devices"
9820
9821 test_126() {
9822         [[ "$MDS1_VERSION" -ge $(version_code 2.13.52) ]] ||
9823                 skip "Need MDS version at least 2.13.52"
9824
9825         cleanup
9826         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ../libcfs/libcfs/libcfs
9827         #define OBD_FAIL_OBD_SETUP 0x60d
9828         do_facet mds1 $LCTL set_param fail_loc=0x60d
9829         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_modules &
9830         for i in {1..40}; do
9831                 do_facet mds1 lsmod | grep -q osd_$mds1_FSTYPE && break
9832                 sleep 1
9833         done
9834         clear_failloc $SINGLEMDS 20 &
9835         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
9836 }
9837 run_test 126 "mount in parallel shouldn't cause a crash"
9838
9839 test_127() {
9840         [[ "$ost1_FSTYPE" == ldiskfs ]] || skip "ldiskfs only test"
9841
9842         cleanup
9843         setup
9844         zconf_umount_clients $RCLIENTS $MOUNT
9845
9846         wait_osp_active ost ${FSNAME}-OST0000 0 1
9847         local osc_tgt="$FSNAME-OST0000-osc-$($LFS getname -i $DIR)"
9848         local avail1=($($LCTL get_param -n osc.${osc_tgt}.kbytesavail))
9849
9850         $LFS setstripe -i 0 $DIR/$tfile || error "failed creating $DIR/$tfile"
9851         dd if=/dev/zero of=$DIR/$tfile bs=1M oflag=direct || true
9852
9853         local avail2=($($LCTL get_param -n osc.${osc_tgt}.kbytesavail))
9854
9855         if ((avail2 * 100 / avail1 > 1)); then
9856                 lfs df $DIR
9857                 ls -l $DIR/$tfile
9858                 error "more than 1% space left: before=$avail1 after=$avail2"
9859         fi
9860
9861         local mbs=$(($(stat -c %s $DIR/$tfile) / (1024 * 1024)))
9862
9863         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$mbs conv=notrunc \
9864                 oflag=direct || error "overwrite failed"
9865 }
9866 run_test 127 "direct io overwrite on full ost"
9867
9868 test_128()
9869 {
9870         combined_mgs_mds && skip "need separate mgs device"
9871         [ "$ost2_FSTYPE" == zfs ] && import_zpool ost2
9872
9873         format_ost 2
9874         # Try to apply nolocallogs to the virgin OST. Should fail.
9875         do_facet ost2 "$TUNEFS --nolocallogs $(ostdevname 2)" &&
9876                 error "nolocallogs should not be allowed on the virgin target"
9877
9878         setupall
9879         stopall
9880
9881         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9882         # Start OST without MGS (local configs)
9883         do_facet ost1 "$TUNEFS --dryrun $(ostdevname 1)"
9884         start_ost || error "unable to start OST1"
9885         stop_ost || error "Unable to stop OST1"
9886
9887         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9888         # Do not allow reading local configs, should fail
9889         do_facet ost1 "$TUNEFS --nolocallogs $(ostdevname 1)" ||
9890                 error "Can not set nolocallogs"
9891         start_ost && error "OST1 started, but should fail"
9892
9893         # Connect to MGS successfully, reset nolocallogs flag
9894         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9895         start_mgs || error "unable to start MGS"
9896         start_ost || error "unable to start OST1"
9897
9898         do_facet ost1 "$TUNEFS --dryrun $(ostdevname 1)" | grep "nolocallogs" &&
9899                 error "nolocallogs expected to be reset"
9900
9901         stop_ost || error "Unable to stop OST1"
9902 }
9903 run_test 128 "Force using remote logs with --nolocallogs"
9904
9905 test_129()
9906 {
9907         stopall
9908         start_mds || error "MDS start failed"
9909         format_ost 1
9910         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &&
9911                 error "start ost1 should fail" || true
9912         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &&
9913                 error "second start ost1 should fail" || true
9914         do_facet ost1 "$TUNEFS --writeconf $(ostdevname 1)"
9915         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS ||
9916                 error "start ost1 failed"
9917         stop ost1
9918         stop_mds
9919 }
9920 run_test 129 "attempt to connect an OST with the same index should fail"
9921
9922 test_130()
9923 {
9924         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9925         setupall
9926         stop_mdt 2 || error "mdt2 stop failed"
9927         do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)"
9928         start_mdt 2 || error "mdt2 start failed"
9929         do_facet mds2 "$LCTL dl" | grep MDT0001-osp-MDT0001 &&
9930                 error "Illegal OSP device created" || true
9931 }
9932 run_test 130 "re-register an MDT after writeconf"
9933
9934 test_131() {
9935         [ "$mds1_FSTYPE" == "ldiskfs" ] || skip "ldiskfs only test"
9936         do_facet mds1 $DEBUGFS -R features $(mdsdevname 1) |
9937                 grep -q project || skip "skip project quota not supported"
9938
9939         local projid
9940
9941         setupall
9942         test_mkdir -c $MDSCOUNT -p $DIR/$tdir
9943         $LFS project -p 1000 $DIR/$tdir || error "set dir project id failed"
9944         createmany -o $DIR/$tdir/f 512
9945         for ((i = 0; i < 512; ++i)); do
9946                 $LFS project -p $i $DIR/$tdir/f${i} ||
9947                         error "set f${i} project id failed"
9948         done
9949
9950         test_mkdir -c $MDSCOUNT -p $DIR/$tdir.inherit
9951         $LFS project -p 1001 -s $DIR/$tdir.inherit
9952         createmany -o $DIR/$tdir.inherit/f 128
9953         (( $($LFS project $DIR/$tdir.inherit/f* |
9954                 awk '$1 == 1001 { print }' | wc -l) == 128 )) ||
9955                         error "files did not inherit projid 1001"
9956
9957         stopall
9958
9959         for i in $(seq $MDSCOUNT); do
9960                 mds_backup_restore mds$i ||
9961                         error "Backup/restore on mds$i failed"
9962         done
9963
9964         setupall
9965
9966         projid=($($LFS project -d $DIR/$tdir))
9967         [ ${projid[0]} == "1000" ] ||
9968                 error "projid expected 1000 not ${projid[0]}"
9969         for ((i = 0; i < 512; ++i)); do
9970                 projid=($($LFS project $DIR/$tdir/f${i}))
9971                 [ ${projid[0]} == "$i" ] ||
9972                         error "projid expected $i not ${projid[0]}"
9973         done
9974
9975         (( $($LFS project $DIR/$tdir.inherit/f* |
9976                 awk '$1 == 1001 { print }' | wc -l) == 128 )) ||
9977                         error "restore did not copy projid 1001"
9978 }
9979 run_test 131 "MDT backup restore with project ID"
9980
9981 test_132() {
9982         local err_cnt
9983         local err_cnt2
9984
9985         reformat
9986         combined_mgs_mds || start_mgs || error "unable to start MGS"
9987         start_mdt 1 || error "unable to start mdt1"
9988
9989         err_cnt=$(do_facet mds1 dmesg | grep -c "cannot take the layout locks")
9990         stop_mdt 1 || error "stop mdt1 failed"
9991
9992         [ "$mds1_FSTYPE" == zfs ] && import_zpool mds1
9993         do_facet mds1 $TUNEFS --param mdt.hsm_control=enabled $(mdsdevname 1) ||
9994                 error "tunefs failed"
9995         start_mdt 1 || error "cannot start mdt1"
9996
9997         err_cnt2=$(do_facet mds1 dmesg | grep -c "cannot take the layout locks")
9998         [ $err_cnt -eq $err_cnt2 ] || error "Can not take the layout lock"
9999         stop_mdt 1 || error "stop mdt1 failed"
10000 }
10001 run_test 132 "hsm_actions processed after failover"
10002
10003 # This test verifies we do RR allocation within a pool even if there is a
10004 # significant imbalance vs an OST outside the pool
10005 test_133() {
10006         [[ $OSTCOUNT -lt 4 ]] && skip_env "needs >= 4 OSTs"
10007         # This is the easiest way to ensure OSTs start out balanced
10008         reformat_and_config
10009         setupall
10010
10011         check_set_fallocate_or_skip
10012
10013         local testfile=$DIR/$tdir/$tfile
10014         local pool="testpool"
10015         local ostrange=$((OSTCOUNT - 1))
10016         # Select all but the last OST to add to the pool
10017         local poolostrange=$((OSTCOUNT - 2))
10018         local filenum=20
10019         local filecount
10020         local stripecount
10021
10022         declare -a AVAIL
10023         free_min_max
10024
10025         [ $MINV -eq 0 ] && error "no free space in OST$MINI"
10026         [ $MAXV -gt $((2 * $MINV)) ] &&
10027                 error "OSTs badly unbalanced after reformat"
10028
10029         create_pool $FSNAME.$pool || error "failed to create a pool"
10030         do_facet mgs $LCTL pool_add $FSNAME.$pool OST[0-$poolostrange] ||
10031                 error "failed to add OST[0-$poolostrange] to the pool"
10032
10033         test_mkdir -p $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
10034         # Consume space on the OSTs in the pool so they are unbalanced with the
10035         # OST outside of the pool
10036         # fill each OST 90% with fallocate so they are widely
10037         # imbalanced
10038         local size=$(((MINV * 9 / 10) * 1024))
10039         for ((i = 0; i <= poolostrange; i++)); do
10040                 $LFS setstripe -c 1 -i $i $testfile$i ||
10041                         error "failed to setstripe $testfile$i"
10042                 fallocate -l $size $testfile$i || error "fallocate failed"
10043         done
10044         ls -la $DIR/$tdir
10045         sleep_maxage
10046         $LFS df
10047
10048         # Create files in the pool now that there is an imbalance
10049         filecount=$(((OSTCOUNT - 1) * filenum))
10050         for ((i = 0; i < filecount; i++)); do
10051                 $LFS setstripe -p $pool $testfile-$i ||
10052                         error "failed to setstripe -p $pool $testfile-$i"
10053         done
10054         $LFS getstripe -i $testfile-* > /tmp/$tfile.log
10055         # Count the number of files with a stripe on each OST to verify the
10056         # pool allocated with round-robin
10057         for ((i = 0; i <= poolostrange; i++)); do
10058                 stripecount=$(grep -c $i /tmp/$tfile.log)
10059                 # Allow a little leeway
10060                 if (( stripecount < filenum - 1 ||
10061                       stripecount > filenum + 1 )); then
10062                         cat /tmp/$tfile.log
10063                         error "$stripecount != $filenum files on OST$i"
10064                 fi
10065         done
10066
10067         # Create files across the system now that there is an imbalance
10068         filecount=$((OSTCOUNT * filenum))
10069         for ((i = 1; i < filecount; i++)); do
10070                 $LFS setstripe $testfile-$i.2 ||
10071                         error "failed to setstripe $testilfe-$i.2"
10072         done
10073         $LFS getstripe -i $testfile-*.2 > /tmp/$tfile.log
10074         local qos_used=""
10075         # Count the number of files with a stripe on each OST to verify the
10076         # files are *NOT* allocated with round-robin
10077         for ((i = 0; i <= ostrange; i++)); do
10078                 stripecount=$(grep -c $i /tmp/$tfile.log)
10079                 if [[ $stripecount -ne $filenum ]]; then
10080                         qos_used="true"
10081                         echo "QOS: $stripecount != $filenum files on OST$i"
10082                 fi
10083         done
10084         if [ -z "$qos_used" ]; then
10085                 error "QOS not used on imbalanced OSTs!"
10086         fi
10087
10088         rm -rf /tmp/$tfile.log $DIR/$tdir
10089         do_facet mgs $LCTL pool_remove $FSNAME.$pool OST[0-$poolostrange] ||
10090                 "failed to remove OST[0-$poolostrange] from the pool"
10091         do_facet mgs $LCTL pool_destroy $FSNAME.$pool ||
10092                 error "failed to destroy pool"
10093 }
10094 run_test 133 "stripe QOS: free space balance in a pool"
10095
10096 if ! combined_mgs_mds ; then
10097         stop mgs
10098 fi
10099
10100 cleanup_gss
10101
10102 # restore the values of MDSSIZE and OSTSIZE
10103 MDSSIZE=$STORED_MDSSIZE
10104 OSTSIZE=$STORED_OSTSIZE
10105 reformat
10106
10107 complete $SECONDS
10108 check_and_cleanup_lustre
10109 exit_status