Whamcloud - gitweb
7eae993ede9e3464eb3850c92cadee578412a28c
[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=8191 --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         stop fs2ost -f
3011         stop fs2mds -f
3012         cleanup_nocli || error "cleanup_nocli failed with $?"
3013 }
3014 run_test 33a "Mount ost with a large index number"
3015
3016 test_33b() {    # was test_34
3017         setup
3018
3019         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
3020         # Drop lock cancelation reply during umount
3021         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
3022         do_facet client $LCTL set_param fail_loc=0x80000304
3023         #lctl set_param debug=-1
3024         umount_client $MOUNT
3025         cleanup || error "cleanup failed with $?"
3026 }
3027 run_test 33b "Drop cancel during umount"
3028
3029 test_34a() {
3030         setup
3031         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
3032         manual_umount_client
3033         rc=$?
3034         do_facet client killall -USR1 multiop
3035         if [ $rc -eq 0 ]; then
3036                 error "umount not fail!"
3037         fi
3038         sleep 1
3039         cleanup || error "cleanup failed with rc $?"
3040 }
3041 run_test 34a "umount with opened file should be fail"
3042
3043 test_34b() {
3044         setup
3045         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3046         stop_mds || error "Unable to stop MDS"
3047
3048         manual_umount_client --force || error "mtab after failed umount with $?"
3049
3050         cleanup || error "cleanup failed with $?"
3051 }
3052 run_test 34b "force umount with failed mds should be normal"
3053
3054 test_34c() {
3055         setup
3056         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3057         stop_ost || error "Unable to stop OST1"
3058
3059         manual_umount_client --force || error "mtab after failed umount with $?"
3060
3061         cleanup || error "cleanup failed with $?"
3062 }
3063 run_test 34c "force umount with failed ost should be normal"
3064
3065 test_35a() { # bug 12459
3066         setup
3067
3068         DBG_SAVE="`$LCTL get_param -n debug`"
3069         $LCTL set_param debug="ha"
3070
3071         log "Set up a fake failnode for the MDS"
3072         FAKENID="127.0.0.2"
3073         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
3074                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
3075
3076         if [[ $PERM_CMD == *"set_param -P"* ]]; then
3077                 do_facet mgs "$PERM_CMD \
3078                               mdc.*${device}*.import=connection=$(h2nettype $FAKENID)" ||
3079                         error "Setting mdc.*${device}*.import=connection=\
3080                                $(h2nettype $FAKENID) failed."
3081         else
3082                 do_facet mgs "$PERM_CMD \
3083                               ${device}.failover.node=$(h2nettype $FAKENID)" ||
3084                         error "Setting ${device}.failover.node=\
3085                                $(h2nettype $FAKENID) failed."
3086         fi
3087         log "Wait for RECONNECT_INTERVAL seconds (10s)"
3088         sleep 10
3089
3090         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
3091         $LCTL clear
3092         log "$MSG"
3093         log "Stopping the MDT: $device"
3094         stop_mdt 1 || error "MDT0 stop fail"
3095
3096         df $MOUNT > /dev/null 2>&1 &
3097         DFPID=$!
3098         log "Restarting the MDT: $device"
3099         start_mdt 1 || error "MDT0 start fail"
3100         log "Wait for df ($DFPID) ... "
3101         wait $DFPID
3102         log "done"
3103         $LCTL set_param debug="$DBG_SAVE"
3104
3105         # retrieve from the log the first server that the client tried to
3106         # contact after the connection loss
3107         $LCTL dk $TMP/lustre-log-$TESTNAME.log
3108         NEXTCONN=`awk "/${MSG}/ {start = 1;}
3109                        /import_select_connection.*$device-mdc.* using connection/ {
3110                                 if (start) {
3111                                         if (\\\$NF ~ /$FAKENID/)
3112                                                 print \\\$NF;
3113                                         else
3114                                                 print 0;
3115                                         exit;
3116                                 }
3117                        }" $TMP/lustre-log-$TESTNAME.log`
3118         [ "$NEXTCONN" != "0" ] &&
3119                 error "Tried to connect to ${NEXTCONN} not last active server"
3120         cleanup || error "cleanup failed with $?"
3121         # remove nid settings
3122         writeconf_or_reformat
3123 }
3124 run_test 35a "Reconnect to the last active server first"
3125
3126 test_35b() { # bug 18674
3127         remote_mds || skip "local MDS"
3128         setup
3129
3130         debugsave
3131         $LCTL set_param debug="ha"
3132         $LCTL clear
3133         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
3134         log "$MSG"
3135
3136         log "Set up a fake failnode for the MDS"
3137         FAKENID="127.0.0.2"
3138         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
3139                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
3140
3141         if [[ $PERM_CMD == *"set_param -P"* ]]; then
3142                 do_facet mgs "$PERM_CMD \
3143                               mdc.*${device}*.import=connection=$(h2nettype $FAKENID)" ||
3144                         error "Set mdc.*${device}*.import=connection=\
3145                                $(h2nettype $FAKENID) failed"
3146         else
3147                 do_facet mgs "$PERM_CMD \
3148                               ${device}.failover.node=$(h2nettype $FAKENID)" ||
3149                         error "Set ${device}.failover.node=\
3150                                $(h2nettype $FAKENID) failed"
3151         fi
3152
3153         local at_max_saved=0
3154         # adaptive timeouts may prevent seeing the issue
3155         if at_is_enabled; then
3156                 at_max_saved=$(at_max_get mds)
3157                 at_max_set 0 mds client
3158         fi
3159
3160         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3161
3162         log "Injecting EBUSY on MDS"
3163         # Setting OBD_FAIL_MDS_RESEND=0x136
3164         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" ||
3165                 error "unable to set param fail_loc=0x80000136"
3166
3167         $LCTL set_param mdc.${FSNAME}*.stats=clear
3168
3169         log "Creating a test file and stat it"
3170         touch $MOUNT/$tdir/$tfile || error "touch $MOUNT/$tdir/$tfile failed"
3171         stat $MOUNT/$tdir/$tfile
3172
3173         log "Stop injecting EBUSY on MDS"
3174         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" ||
3175                 error "unable to set param fail_loc=0"
3176         rm -f $MOUNT/$tdir/$tfile || error "remove $MOUNT/$tdir/$tfile failed"
3177
3178         log "done"
3179         # restore adaptive timeout
3180         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
3181
3182         $LCTL dk $TMP/lustre-log-$TESTNAME.log
3183
3184         CONNCNT=$($LCTL get_param mdc.${FSNAME}*.stats |
3185                   awk '/mds_connect/{print $2}')
3186
3187         # retrieve from the log if the client has ever tried to
3188         # contact the fake server after the loss of connection
3189         FAILCONN=`awk "BEGIN {ret = 0;}
3190                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
3191                                 ret = 1;
3192                                 if (\\\$NF ~ /$FAKENID/) {
3193                                         ret = 2;
3194                                         exit;
3195                                 }
3196                        }
3197                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
3198
3199         [ "$FAILCONN" == "0" ] &&
3200                 error "The client reconnection has not been triggered"
3201         [ "$FAILCONN" == "2" ] &&
3202                 error "Primary server busy, client reconnect to failover failed"
3203
3204         # LU-290
3205         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
3206         # Reconnects are supposed to be rate limited to one every 5s
3207         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] &&
3208                 error "Too many reconnects $CONNCNT"
3209
3210         cleanup || error "cleanup failed with $?"
3211         # remove nid settings
3212         writeconf_or_reformat
3213 }
3214 run_test 35b "Continue reconnection retries, if the active server is busy"
3215
3216 test_36() { # 12743
3217         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
3218
3219         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] ||
3220                 skip "remote OST"
3221
3222         local rc=0
3223         local FSNAME2=test1234
3224         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
3225
3226         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
3227
3228         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
3229                 is_blkdev $SINGLEMDS $MDSDEV &&
3230                         skip_env "mixed loopback and real device not working"
3231         fi
3232
3233         local fs2mdsdev=$(mdsdevname 1_2)
3234         local fs2ostdev=$(ostdevname 1_2)
3235         local fs3ostdev=$(ostdevname 2_2)
3236         local fs2mdsvdev=$(mdsvdevname 1_2)
3237         local fs2ostvdev=$(ostvdevname 1_2)
3238         local fs3ostvdev=$(ostvdevname 2_2)
3239
3240         load_modules
3241         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
3242                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
3243         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
3244         #     different one than the default value here.
3245         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
3246                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
3247         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
3248                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
3249
3250         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
3251         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
3252         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
3253         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
3254         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
3255
3256         sleep 5 # until 11778 fixed
3257
3258         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || error "dd failed"
3259
3260         BKTOTAL=$($LCTL get_param -n obdfilter.*.kbytestotal |
3261                   awk 'BEGIN{total=0}; {total+=$1}; END{print total}')
3262         BKFREE=$($LCTL get_param -n obdfilter.*.kbytesfree |
3263                  awk 'BEGIN{free=0}; {free+=$1}; END{print free}')
3264         BKAVAIL=$($LCTL get_param -n obdfilter.*.kbytesavail |
3265                   awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
3266         STRING=$(df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}')
3267         DFTOTAL=$(echo $STRING | cut -d, -f1)
3268         DFUSED=$(echo $STRING  | cut -d, -f2)
3269         DFAVAIL=$(echo $STRING | cut -d, -f3)
3270         DFFREE=$(($DFTOTAL - $DFUSED))
3271
3272         ALLOWANCE=$((64 * $OSTCOUNT))
3273
3274         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
3275            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
3276                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
3277                 rc=1
3278         fi
3279         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
3280            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
3281                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
3282                 rc=2
3283         fi
3284         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
3285            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
3286                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
3287                 rc=3
3288         fi
3289
3290         $UMOUNT $MOUNT2
3291         stop fs3ost -f || error "unable to stop OST3"
3292         stop fs2ost -f || error "unable to stop OST2"
3293         stop fs2mds -f || error "unable to stop second MDS"
3294         unload_modules_conf || error "unable unload modules"
3295         return $rc
3296 }
3297 run_test 36 "df report consistency on OSTs with different block size"
3298
3299 test_37() {
3300         local mntpt=$(facet_mntpt $SINGLEMDS)
3301         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
3302         local mdsdev_sym="$TMP/sym_mdt.img"
3303         local opts=$MDS_MOUNT_OPTS
3304         local rc=0
3305
3306         if [ "$mds1_FSTYPE" != ldiskfs ]; then
3307                 skip "ldiskfs only test"
3308         fi
3309
3310         echo "MDS :     $mdsdev"
3311         echo "SYMLINK : $mdsdev_sym"
3312         do_facet $SINGLEMDS rm -f $mdsdev_sym
3313
3314         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
3315
3316         echo "mount symlink device - $mdsdev_sym"
3317
3318         if ! do_facet $SINGLEMDS test -b $mdsdev; then
3319                 opts=$(csa_add "$opts" -o loop)
3320         fi
3321
3322         load_modules
3323         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
3324                 $mdsdev_sym $mntpt 2>&1)
3325         rc=${PIPESTATUS[0]}
3326
3327         echo mount_op=$mount_op
3328
3329         do_facet $SINGLEMDS "$UMOUNT $mntpt && rm -f $mdsdev_sym"
3330
3331         if $(echo $mount_op | grep -q "unable to set tunable"); then
3332                 error "set tunables failed for symlink device"
3333         fi
3334
3335         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
3336 }
3337 run_test 37 "verify set tunables works for symlink device"
3338
3339 test_38() { # bug 14222
3340         local mntpt=$(facet_mntpt $SINGLEMDS)
3341
3342         setup
3343         # like runtests
3344         local COUNT=10
3345         local SRC="/etc /bin"
3346         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
3347
3348         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
3349         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3350         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
3351                 error "copying $SRC to $DIR/$tdir"
3352         sync
3353         umount_client $MOUNT || error "umount_client $MOUNT failed"
3354         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
3355         stop_mds || error "Unable to stop MDS"
3356         log "delete lov_objid file on MDS"
3357
3358         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
3359
3360         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
3361
3362         unmount_fstype $SINGLEMDS || error "umount failed (1)"
3363
3364         # check create in mds_lov_connect
3365         start_mds || error "unable to start MDS"
3366         mount_client $MOUNT || error "mount_client $MOUNT failed"
3367         for f in $FILES; do
3368                 [ $V ] && log "verifying $DIR/$tdir/$f"
3369                 diff -q $f $DIR/$tdir/$f || ERROR=y
3370         done
3371         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
3372         if [ "$ERROR" = "y" ]; then
3373                 # check it's updates in sync
3374                 umount_client $MOUNT
3375                 stop_mds
3376                 mount_fstype $SIGNLEMDS
3377                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
3378                 unmount_fstype $SINGLEMDS
3379                 error "old and new files are different after connect" || true
3380         fi
3381         touch $DIR/$tdir/f2 || error "f2 file create failed"
3382
3383         # check it's updates in sync
3384         umount_client $MOUNT || error "second umount_client $MOUNT failed"
3385         stop_mds
3386
3387         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
3388
3389         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
3390         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
3391
3392         unmount_fstype $SINGLEMDS || error "umount failed (3)"
3393
3394         start_mds || error "unable to start MDS"
3395         mount_client $MOUNT || error "mount_client $MOUNT failed"
3396         for f in $FILES; do
3397                 [ $V ] && log "verifying $DIR/$tdir/$f"
3398                 diff -q $f $DIR/$tdir/$f || ERROR=y
3399         done
3400         touch $DIR/$tdir/f3 || error "f3 file create failed"
3401         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
3402         umount_client $MOUNT || error "third umount_client $MOUNT failed"
3403         stop_mds
3404         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
3405         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
3406         unmount_fstype $SINGLEMDS || error "umount failed (4)"
3407
3408         [ "$ERROR" = "y" ] &&
3409                 error "old and new files are different after sync" || true
3410
3411         log "files compared the same"
3412         cleanup || error "cleanup failed with $?"
3413 }
3414 run_test 38 "MDS recreates missing lov_objid file from OST data"
3415
3416 test_39() {
3417         PTLDEBUG=+malloc
3418         setup
3419         cleanup || error "cleanup failed with $?"
3420         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
3421                 error "memory leak detected" || true
3422 }
3423 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
3424
3425 test_40() { # bug 15759
3426         start_ost || error "Unable to start OST1"
3427         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
3428         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
3429         start_mds
3430         cleanup || error "cleanup failed with rc $?"
3431 }
3432 run_test 40 "race during service thread startup"
3433
3434 test_41a() { #bug 14134
3435         if [ "$mds1_FSTYPE" == ldiskfs ] &&
3436            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
3437                 skip "Loop devices does not work with nosvc option"
3438         fi
3439
3440         combined_mgs_mds || skip "needs combined MGT and MDT device"
3441
3442         start_mdt 1 -o nosvc -n
3443         if [ $MDSCOUNT -ge 2 ]; then
3444                 for num in $(seq 2 $MDSCOUNT); do
3445                         start_mdt $num || return
3446                 done
3447         fi
3448         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
3449         start_mdt 1 -o nomgs,force
3450         mount_client $MOUNT || error "mount_client $MOUNT failed"
3451         sleep 5
3452
3453         echo "blah blah" > $MOUNT/$tfile
3454         cat $MOUNT/$tfile
3455
3456         umount_client $MOUNT || error "umount_client $MOUNT failed"
3457         stop ost1 -f || error "unable to stop OST1"
3458         stop_mds || error "Unable to stop MDS"
3459         stop_mds || error "Unable to stop MDS on second try"
3460 }
3461 run_test 41a "mount mds with --nosvc and --nomgs"
3462
3463 test_41b() {
3464         if [ "$mds1_FSTYPE" == ldiskfs ] &&
3465            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
3466                 skip "Loop devices does not work with nosvc option"
3467         fi
3468
3469         ! combined_mgs_mds && skip "needs combined mgs device"
3470
3471         stopall
3472         reformat
3473         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
3474
3475         start_mdt 1 -o nosvc -n
3476         if [ $MDSCOUNT -ge 2 ]; then
3477                 for num in $(seq 2 $MDSCOUNT); do
3478                         start_mdt $num || return
3479                 done
3480         fi
3481         start_ost || error "Unable to start OST1"
3482         start_mdt 1 -o nomgs,force
3483         mount_client $MOUNT || error "mount_client $MOUNT failed"
3484         sleep 5
3485
3486         echo "blah blah" > $MOUNT/$tfile
3487         cat $MOUNT/$tfile || error "cat $MOUNT/$tfile failed"
3488
3489         umount_client $MOUNT -f || error "umount_client $MOUNT failed"
3490         stop_ost || error "Unable to stop OST1"
3491         stop_mds || error "Unable to stop MDS"
3492         stop_mds || error "Unable to stop MDS on second try"
3493 }
3494 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
3495
3496 test_41c() {
3497         local oss_list=$(comma_list $(osts_nodes))
3498
3499         [[ "$MDS1_VERSION" -ge $(version_code 2.6.52) ]] ||
3500         [[ "$MDS1_VERSION" -ge $(version_code 2.5.26) &&
3501            "$MDS1_VERSION" -lt $(version_code 2.5.50) ]] ||
3502         [[ "$MDS1_VERSION" -ge $(version_code 2.5.4) &&
3503            "$MDS1_VERSION" -lt $(version_code 2.5.11) ]] ||
3504                 skip "Need MDS version 2.5.4+ or 2.5.26+ or 2.6.52+"
3505
3506         # ensure mds1 ost1 have been created even if running sub-test standalone
3507         cleanup
3508         setup
3509         cleanup || error "cleanup failed"
3510
3511         # using directly mount command instead of start() function to avoid
3512         # any side effect of // with others/externals tools/features
3513         # ("zpool import", ...)
3514
3515         # MDT concurrent start
3516
3517         LOAD_MODULES_REMOTE=true load_modules
3518         do_facet $SINGLEMDS "lsmod | grep -q libcfs" ||
3519                 error "MDT concurrent start: libcfs module not loaded"
3520
3521         local mds1dev=$(mdsdevname 1)
3522         local mds1mnt=$(facet_mntpt mds1)
3523         local mds1opts=$MDS_MOUNT_OPTS
3524
3525         if [ "$mds1_FSTYPE" == ldiskfs ] &&
3526            ! do_facet mds1 test -b $mds1dev; then
3527                 mds1opts=$(csa_add "$mds1opts" -o loop)
3528         fi
3529         if [[ "$mds1_FSTYPE" == zfs ]]; then
3530                 import_zpool mds1 || return ${PIPESTATUS[0]}
3531         fi
3532
3533         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
3534         do_facet mds1 "$LCTL set_param fail_loc=0x80000716"
3535
3536         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts &
3537         local pid=$!
3538
3539         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts
3540         local rc2=$?
3541         wait $pid
3542         local rc=$?
3543
3544         do_facet mds1 "$LCTL set_param fail_loc=0x0"
3545         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
3546                 echo "1st MDT start succeed"
3547                 echo "2nd MDT start failed with $rc2"
3548         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
3549                 echo "1st MDT start failed with $rc"
3550                 echo "2nd MDT start succeed"
3551         else
3552                 stop mds1 -f
3553                 error "unexpected concurrent MDT mounts result, rc=$rc rc2=$rc2"
3554         fi
3555
3556         if [ $MDSCOUNT -ge 2 ]; then
3557                 for num in $(seq 2 $MDSCOUNT); do
3558                         start_mdt $num || return
3559                 done
3560         fi
3561
3562         # OST concurrent start
3563
3564         do_rpc_nodes $oss_list "lsmod | grep -q libcfs" ||
3565                 error "OST concurrent start: libcfs module not loaded"
3566
3567         local ost1dev=$(ostdevname 1)
3568         local ost1mnt=$(facet_mntpt ost1)
3569         local ost1opts=$OST_MOUNT_OPTS
3570
3571         if [ "$ost1_FSTYPE" == ldiskfs ] &&
3572            ! do_facet ost1 test -b $ost1dev; then
3573                 ost1opts=$(csa_add "$ost1opts" -o loop)
3574         fi
3575         if [[ "$ost1_FSTYPE" == zfs ]]; then
3576                 import_zpool ost1 || return ${PIPESTATUS[0]}
3577         fi
3578
3579         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
3580         do_facet ost1 "$LCTL set_param fail_loc=0x80000716"
3581
3582         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts &
3583         pid=$!
3584
3585         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts
3586         rc2=$?
3587         wait $pid
3588         rc=$?
3589         do_facet ost1 "$LCTL set_param fail_loc=0x0"
3590         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
3591                 echo "1st OST start succeed"
3592                 echo "2nd OST start failed with $rc2"
3593         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
3594                 echo "1st OST start failed with $rc"
3595                 echo "2nd OST start succeed"
3596         else
3597                 stop_mds -f
3598                 stop ost1 -f
3599                 error "unexpected concurrent OST mounts result, rc=$rc rc2=$rc2"
3600         fi
3601         # cleanup
3602         stop_mds
3603         stop ost1 -f
3604
3605         # verify everything ok
3606         start_mds
3607         if [ $? != 0 ]
3608         then
3609                 stop_mds
3610                 error "MDT(s) start failed"
3611         fi
3612
3613         start_ost
3614         if [ $? != 0 ]
3615         then
3616                 stop_mds
3617                 stop ost1 -f
3618                 error "OST(s) start failed"
3619         fi
3620
3621         mount_client $MOUNT
3622         if [ $? != 0 ]
3623         then
3624                 stop_mds
3625                 stop ost1 -f
3626                 error "client start failed"
3627         fi
3628         check_mount
3629         if [ $? != 0 ]
3630         then
3631                 stop_mds
3632                 stop ost1 -f
3633                 error "client mount failed"
3634         fi
3635         cleanup
3636 }
3637 run_test 41c "concurrent mounts of MDT/OST should all fail but one"
3638
3639 test_42() { #bug 14693
3640         local PARAM
3641
3642         setup
3643         check_mount || error "client was not mounted"
3644
3645         if [[ $PERM_CMD == *"set_param -P"* ]]; then
3646                 PARAM="llite.$FSNAME-*.some_wrong_param"
3647         else
3648                 PARAM="$FSNAME.llite.some_wrong_param"
3649         fi
3650
3651         do_facet mgs $PERM_CMD $PARAM=10
3652         umount_client $MOUNT ||
3653                 error "unmounting client failed with invalid llite param"
3654         mount_client $MOUNT ||
3655                 error "mounting client failed with invalid llite param"
3656
3657         do_facet mgs $PERM_CMD $PARAM=20
3658         cleanup || error "stopping $FSNAME failed with invalid sys param"
3659         setup
3660         check_mount || error "client was not mounted with invalid sys param"
3661         cleanup || error "stopping $FSNAME failed with invalid sys param"
3662 }
3663 run_test 42 "allow client/server mount/unmount with invalid config param"
3664
3665 test_43a() {
3666         [[ "$MGS_VERSION" -ge $(version_code 2.5.58) ]] ||
3667                 skip "Need MDS version at least 2.5.58"
3668         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
3669
3670         ID1=${ID1:-501}
3671         USER1=$(getent passwd | grep :$ID1:$ID1: | cut -d: -f1)
3672         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1"
3673
3674         setup
3675         chmod ugo+x $DIR || error "chmod 0 failed"
3676         set_persistent_param_and_check mds1                             \
3677                 "mdt.$FSNAME-MDT0000.root_squash"                       \
3678                 "$FSNAME.mdt.root_squash"                               \
3679                 "0:0"
3680         wait_update $HOSTNAME                                           \
3681                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3682                 "0:0" ||
3683                 error "check llite root_squash failed!"
3684         set_persistent_param_and_check mds1                             \
3685                 "mdt.$FSNAME-MDT0000.nosquash_nids"                     \
3686                 "$FSNAME.mdt.nosquash_nids"                             \
3687                 "NONE"
3688         wait_update $HOSTNAME                                           \
3689                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3690                 "NONE" ||
3691                 error "check llite nosquash_nids failed!"
3692
3693         #
3694         # create set of test files
3695         #
3696         echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
3697         chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
3698         chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
3699
3700         echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
3701         chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
3702
3703         mkdir_on_mdt0 $DIR/$tdir-rootdir || error "mkdir failed"
3704         chmod go-rwx $DIR/$tdir-rootdir || error "chmod 3 failed"
3705         touch $DIR/$tdir-rootdir/tfile-1 || error "touch failed"
3706
3707         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
3708         chmod go-rw $DIR/$tfile-user1file || error "chmod 7 failed"
3709         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
3710
3711         #
3712         # check root_squash:
3713         #   set root squash UID:GID to RUNAS_ID
3714         #   root should be able to access only files owned by RUNAS_ID
3715         #
3716         set_persistent_param_and_check mds1                             \
3717                 "mdt.$FSNAME-MDT0000.root_squash"                       \
3718                 "$FSNAME.mdt.root_squash"                               \
3719                 "$RUNAS_ID:$RUNAS_ID"
3720         wait_update $HOSTNAME                                           \
3721                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3722                 "$RUNAS_ID:$RUNAS_ID" ||
3723                 error "check llite root_squash failed!"
3724
3725         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
3726         dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3727                 error "$ST: root read permission is denied"
3728         echo "$ST: root read permission is granted - ok"
3729
3730         echo "444" |
3731         dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3732                 error "$ST: root write permission is denied"
3733         echo "$ST: root write permission is granted - ok"
3734
3735         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3736         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3737                 error "$ST: root read permission is granted"
3738         echo "$ST: root read permission is denied - ok"
3739
3740         echo "555" |
3741         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3742                 error "$ST: root write permission is granted"
3743         echo "$ST: root write permission is denied - ok"
3744
3745         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3746                 rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null &&
3747                         error "$ST: root unlink permission is granted"
3748         echo "$ST: root unlink permission is denied - ok"
3749
3750         touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null &&
3751                 error "$ST: root create permission is granted"
3752         echo "$ST: root create permission is denied - ok"
3753
3754         # LU-1778
3755         # check root_squash is enforced independently
3756         # of client cache content
3757         #
3758         # access file by USER1, keep access open
3759         # root should be denied access to user file
3760
3761         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
3762         pid=$!
3763         sleep 1
3764
3765         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
3766         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3767             { kill $pid; error "$ST: root read permission is granted"; }
3768         echo "$ST: root read permission is denied - ok"
3769
3770         echo "777" |
3771         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3772             { kill $pid; error "$ST: root write permission is granted"; }
3773         echo "$ST: root write permission is denied - ok"
3774
3775         kill $pid
3776         wait $pid
3777
3778         #
3779         # check nosquash_nids:
3780         #   put client's NID into nosquash_nids list,
3781         #   root should be able to access root file after that
3782         #
3783         local NIDLIST=$($LCTL list_nids all | tr '\n' ' ')
3784         NIDLIST="2@gni $NIDLIST 192.168.0.[2,10]@tcp"
3785         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
3786         set_persistent_param_and_check mds1                             \
3787                 "mdt.$FSNAME-MDT0000.nosquash_nids"                     \
3788                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
3789                 "$NIDLIST"
3790         wait_update $HOSTNAME                                           \
3791                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3792                 "$NIDLIST" ||
3793                 error "check llite nosquash_nids failed!"
3794
3795         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3796         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3797                 error "$ST: root read permission is denied"
3798         echo "$ST: root read permission is granted - ok"
3799
3800         echo "666" |
3801         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3802                 error "$ST: root write permission is denied"
3803         echo "$ST: root write permission is granted - ok"
3804
3805         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3806         rm $DIR/$tdir-rootdir/tfile-1 ||
3807                 error "$ST: root unlink permission is denied"
3808         echo "$ST: root unlink permission is granted - ok"
3809         touch $DIR/$tdir-rootdir/tfile-2 ||
3810                 error "$ST: root create permission is denied"
3811         echo "$ST: root create permission is granted - ok"
3812         cleanup || error "cleanup failed with $?"
3813 }
3814 run_test 43a "check root_squash and nosquash_nids"
3815
3816 test_43b() { # LU-5690
3817         [[ "$MGS_VERSION" -ge $(version_code 2.7.62) ]] ||
3818                 skip "Need MGS version 2.7.62+"
3819
3820         if [[ -z "$fs2mds_DEV" ]]; then
3821                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
3822                 skip_env "mixed loopback and real device not working"
3823         fi
3824
3825         local fs2mdsdev=$(mdsdevname 1_2)
3826         local fs2mdsvdev=$(mdsvdevname 1_2)
3827
3828         # temporarily use fs2mds as fs2mgs
3829         local fs2mgs=fs2mds
3830         local fs2mgsdev=$fs2mdsdev
3831         local fs2mgsvdev=$fs2mdsvdev
3832
3833         local fsname=test1234
3834
3835         load_module llite/lustre
3836         local client_ip=$(host_nids_address $HOSTNAME $NETTYPE)
3837         local host=${client_ip//*./}
3838         local net=${client_ip/%$host/}
3839         local nosquash_nids=$(h2nettype $net[$host,$host,$host])
3840
3841         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
3842                 --param mdt.root_squash=$RUNAS_ID:$RUNAS_ID \
3843                 --param mdt.nosquash_nids=$nosquash_nids \
3844                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
3845         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS  || error "start fs2mgs failed"
3846         stop $fs2mgs -f || error "stop fs2mgs failed"
3847         cleanup || error "cleanup failed with $?"
3848 }
3849 run_test 43b "parse nosquash_nids with commas in expr_list"
3850
3851 test_44() { # 16317
3852         setup
3853         check_mount || error "check_mount"
3854         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
3855         STATS_FOUND=no
3856         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
3857         for VAL in $UUIDS; do
3858                 NID=$(echo $VAL | cut -d= -f1)
3859                 CLUUID=$(echo $VAL | cut -d= -f2)
3860                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
3861         done
3862         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
3863         cleanup || error "cleanup failed with $?"
3864 }
3865 run_test 44 "mounted client proc entry exists"
3866
3867 test_45() { #17310
3868         setup
3869         check_mount || error "check_mount"
3870         stop_mds || error "Unable to stop MDS"
3871         df -h $MOUNT &
3872         log "sleep 60 sec"
3873         sleep 60
3874         #define OBD_FAIL_PTLRPC_LONG_REPL_UNLINK        0x50f
3875         do_facet client "$LCTL set_param fail_loc=0x8000050f"
3876         log "sleep 10 sec"
3877         sleep 10
3878         manual_umount_client --force || error "manual_umount_client failed"
3879         do_facet client "$LCTL set_param fail_loc=0x0"
3880         start_mds || error "unable to start MDS"
3881         mount_client $MOUNT || error "mount_client $MOUNT failed"
3882         cleanup || error "cleanup failed with $?"
3883 }
3884 run_test 45 "long unlink handling in ptlrpcd"
3885
3886 cleanup_46a() {
3887         trap 0
3888         local rc=0
3889         local count=$1
3890
3891         umount_client $MOUNT2 || rc=$?
3892         umount_client $MOUNT || rc=$?
3893         while [ $count -gt 0 ]; do
3894                 stop ost${count} -f || rc=$?
3895                 let count=count-1
3896         done
3897         stop_mds || rc=$?
3898         cleanup_nocli || rc=$?
3899         #writeconf to remove all ost2 traces for subsequent tests
3900         writeconf_or_reformat
3901         return $rc
3902 }
3903
3904 test_46a() {
3905         echo "Testing with $OSTCOUNT OSTs"
3906         reformat_and_config
3907         start_mds || error "unable to start MDS"
3908         #first client should see only one ost
3909         start_ost || error "Unable to start OST1"
3910         wait_osc_import_state mds ost FULL
3911         #start_client
3912         mount_client $MOUNT || error "mount_client $MOUNT failed"
3913         trap "cleanup_46a $OSTCOUNT" EXIT ERR
3914
3915         local i
3916         for (( i=2; i<=$OSTCOUNT; i++ )); do
3917                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
3918                         error "start_ost$i $(ostdevname $i) failed"
3919         done
3920
3921         # wait until osts in sync
3922         for (( i=2; i<=$OSTCOUNT; i++ )); do
3923             wait_osc_import_state mds ost$i FULL
3924             wait_osc_import_ready client ost$i
3925         done
3926
3927         #second client see all ost's
3928
3929         mount_client $MOUNT2 || error "mount_client failed"
3930         $LFS setstripe -c -1 $MOUNT2 ||
3931                 error "$LFS setstripe -c -1 $MOUNT2 failed"
3932         $LFS getstripe $MOUNT2 || error "$LFS getstripe $MOUNT2 failed"
3933
3934         echo "ok" > $MOUNT2/widestripe
3935         $LFS getstripe $MOUNT2/widestripe ||
3936                 error "$LFS getstripe $MOUNT2/widestripe failed"
3937         # fill acl buffer for avoid expand lsm to them
3938         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd |
3939                 while read acl; do
3940             setfacl -m $acl $MOUNT2/widestripe
3941         done
3942
3943         # will be deadlock
3944         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3945
3946         cleanup_46a $OSTCOUNT || error "cleanup_46a failed"
3947 }
3948 run_test 46a "handle ost additional - wide striped file"
3949
3950 test_47() { #17674
3951         reformat
3952         setup_noconfig
3953         check_mount || error "check_mount failed"
3954         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
3955
3956         local lru_size=[]
3957         local count=0
3958         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3959                 if echo $ns | grep "MDT[[:digit:]]*"; then
3960                         continue
3961                 fi
3962                 lrs=$(echo $ns | sed 's/.*lru_size=//')
3963                 lru_size[count]=$lrs
3964                 let count=count+1
3965         done
3966
3967         facet_failover ost1
3968         facet_failover $SINGLEMDS
3969         client_up || error "client_up failed"
3970
3971         count=0
3972         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3973                 if echo $ns | grep "MDT[[:digit:]]*"; then
3974                         continue
3975                 fi
3976                 lrs=$(echo $ns | sed 's/.*lru_size=//')
3977                 if ! test "$lrs" -eq "${lru_size[count]}"; then
3978                         n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
3979                         error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
3980                 fi
3981                 let count=count+1
3982         done
3983
3984         cleanup || error "cleanup failed with $?"
3985 }
3986 run_test 47 "server restart does not make client loss lru_resize settings"
3987
3988 cleanup_48() {
3989         trap 0
3990
3991         # reformat after this test is needed - if the test fails,
3992         # we will have unkillable file at FS
3993         reformat_and_config
3994 }
3995
3996 test_48() { # bz-17636 LU-7473
3997         local count
3998
3999         setup_noconfig
4000         check_mount || error "check_mount failed"
4001
4002         $LFS setstripe -c -1 $MOUNT ||
4003                 error "$LFS setstripe -c -1 $MOUNT failed"
4004         $LFS getstripe $MOUNT || error "$LFS getstripe $MOUNT failed"
4005
4006         echo "ok" > $MOUNT/widestripe
4007         $LFS getstripe $MOUNT/widestripe ||
4008                 error "$LFS getstripe $MOUNT/widestripe failed"
4009
4010         # In the future, we may introduce more EAs, such as selinux, enlarged
4011         # LOV EA, and so on. These EA will use some EA space that is shared by
4012         # ACL entries. So here we only check some reasonable ACL entries count,
4013         # instead of the max number that is calculated from the max_ea_size.
4014         if [ "$MDS1_VERSION" -lt $(version_code 2.8.57) ]; then
4015                 count=28        # hard coded of RPC protocol
4016         elif large_xattr_enabled; then
4017                 count=4500      # max_num 8187 max_ea_size = 65452
4018                                 # not create too many (4500) to save test time
4019         else
4020                 count=450       # max_num 497 max_ea_size = 4012
4021         fi
4022
4023         echo "It is expected to hold at least $count ACL entries"
4024         trap cleanup_48 EXIT ERR
4025         for ((i = 0; i < $count; i++)) do
4026                 setfacl -m u:$((i + 100)):rw $MOUNT/widestripe ||
4027                         error "Fail to setfacl for $MOUNT/widestripe at $i"
4028         done
4029
4030         cancel_lru_locks mdc
4031         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
4032         local r_count=$(getfacl $MOUNT/widestripe | grep "user:" | wc -l)
4033
4034         count=$((count + 1)) # for the entry "user::rw-"
4035
4036         [ $count -eq $r_count ] ||
4037                 error "Expected ACL entries $count, but got $r_count"
4038
4039         cleanup_48
4040 }
4041 run_test 48 "too many acls on file"
4042
4043 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
4044 test_49a() { # bug 17710
4045         local timeout_orig=$TIMEOUT
4046         local ldlm_timeout_orig=$LDLM_TIMEOUT
4047         local LOCAL_TIMEOUT=20
4048
4049         LDLM_TIMEOUT=$LOCAL_TIMEOUT
4050         TIMEOUT=$LOCAL_TIMEOUT
4051
4052         reformat
4053         setup_noconfig
4054         check_mount || error "client mount failed"
4055
4056         echo "check ldlm_timout..."
4057         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
4058         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
4059         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
4060
4061         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
4062                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
4063         fi
4064
4065         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
4066                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
4067         fi
4068
4069         umount_client $MOUNT || error "umount_client $MOUNT failed"
4070         stop_ost || error "problem stopping OSS"
4071         stop_mds || error "problem stopping MDS"
4072
4073         LDLM_TIMEOUT=$ldlm_timeout_orig
4074         TIMEOUT=$timeout_orig
4075 }
4076 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
4077
4078 test_49b() { # bug 17710
4079         local timeout_orig=$TIMEOUT
4080         local ldlm_timeout_orig=$LDLM_TIMEOUT
4081         local LOCAL_TIMEOUT=20
4082
4083         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
4084         TIMEOUT=$LOCAL_TIMEOUT
4085
4086         reformat
4087         setup_noconfig
4088         check_mount || error "client mount failed"
4089
4090         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
4091         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
4092         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
4093
4094         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
4095                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
4096         fi
4097
4098         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
4099                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
4100         fi
4101
4102         cleanup || error "cleanup failed"
4103
4104         LDLM_TIMEOUT=$ldlm_timeout_orig
4105         TIMEOUT=$timeout_orig
4106 }
4107 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
4108
4109 lazystatfs() {
4110         # wait long enough to exceed OBD_STATFS_CACHE_SECONDS = 1
4111         sleep 2
4112         # Test both statfs and lfs df and fail if either one fails
4113         multiop_bg_pause $1 f_
4114         RC=$?
4115         PID=$!
4116         killall -USR1 multiop
4117         [ $RC -ne 0 ] && log "lazystatfs multiop failed"
4118         wait $PID || { RC=$?; log "multiop return error "; }
4119
4120         # wait long enough to exceed OBD_STATFS_CACHE_SECONDS = 1
4121         sleep 2
4122         $LFS df -l &
4123         PID=$!
4124         sleep 5
4125         if kill -s 0 $PID; then
4126                 RC=1
4127                 kill -s 9 $PID
4128                 log "lazystatfs lfs df failed to complete in 5s"
4129         fi
4130
4131         return $RC
4132 }
4133
4134 test_50a() {
4135         setup
4136         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4137         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4138
4139         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
4140
4141         cleanup || error "cleanup failed with rc $?"
4142 }
4143 run_test 50a "lazystatfs all servers available"
4144
4145 test_50b() {
4146         setup
4147         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4148         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4149
4150         # Wait for client to detect down OST
4151         stop_ost || error "Unable to stop OST1"
4152         wait_osc_import_state client ost DISCONN
4153         $LCTL dl
4154         log "OSCs should all be DISCONN"
4155
4156         lazystatfs $MOUNT || error "lazystatfs should not return EIO"
4157
4158         umount_client $MOUNT || error "Unable to unmount client"
4159         stop_mds || error "Unable to stop MDS"
4160 }
4161 run_test 50b "lazystatfs all servers down"
4162
4163 test_50c() {
4164         start_mds || error "Unable to start MDS"
4165         start_ost || error "Unable to start OST1"
4166         start_ost2 || error "Unable to start OST2"
4167         mount_client $MOUNT || error "Unable to mount client"
4168         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4169         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4170
4171         # Wait for client to detect down OST
4172         stop_ost || error "Unable to stop OST1"
4173         wait_osc_import_state mds ost DISCONN
4174         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
4175
4176         umount_client $MOUNT || error "Unable to unmount client"
4177         stop_ost2 || error "Unable to stop OST2"
4178         stop_mds || error "Unable to stop MDS"
4179         #writeconf to remove all ost2 traces for subsequent tests
4180         writeconf_or_reformat
4181 }
4182 run_test 50c "lazystatfs one server down"
4183
4184 test_50d() {
4185         start_mds || error "Unable to start MDS"
4186         start_ost || error "Unable to start OST1"
4187         start_ost2 || error "Unable to start OST2"
4188         mount_client $MOUNT || error "Unable to mount client"
4189         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
4190         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4191
4192         # Issue the statfs during the window where the client still
4193         # belives the OST to be available but it is in fact down.
4194         # No failure just a statfs which hangs for a timeout interval.
4195         stop_ost || error "Unable to stop OST1"
4196         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
4197
4198         umount_client $MOUNT || error "Unable to unmount client"
4199         stop_ost2 || error "Unable to stop OST2"
4200         stop_mds || error "Unable to stop MDS"
4201         #writeconf to remove all ost2 traces for subsequent tests
4202         writeconf_or_reformat
4203 }
4204 run_test 50d "lazystatfs client/server conn race"
4205
4206 test_50e() {
4207         local RC1
4208         local pid
4209
4210         reformat_and_config
4211         start_mds || error "Unable to start MDS"
4212         #first client should see only one ost
4213         start_ost || error "Unable to start OST1"
4214         wait_osc_import_state mds ost FULL
4215
4216         # Wait for client to detect down OST
4217         stop_ost || error "Unable to stop OST1"
4218         wait_osc_import_state mds ost DISCONN
4219
4220         mount_client $MOUNT || error "Unable to mount client"
4221         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
4222
4223         multiop_bg_pause $MOUNT _f
4224         RC1=$?
4225         pid=$!
4226
4227         if [ $RC1 -ne 0 ]; then
4228                 log "multiop failed $RC1"
4229         else
4230             kill -USR1 $pid
4231             sleep $(( $TIMEOUT+1 ))
4232             kill -0 $pid
4233             [ $? -ne 0 ] && error "process isn't sleep"
4234             start_ost || error "Unable to start OST1"
4235             wait $pid || error "statfs failed"
4236         fi
4237
4238         umount_client $MOUNT || error "Unable to unmount client"
4239         stop_ost || error "Unable to stop OST1"
4240         stop_mds || error "Unable to stop MDS"
4241 }
4242 run_test 50e "normal statfs all servers down"
4243
4244 test_50f() {
4245         local RC1
4246         local pid
4247         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
4248
4249         start_mds || error "Unable to start mds"
4250         #first client should see only one ost
4251         start_ost || error "Unable to start OST1"
4252         wait_osc_import_state mds ost FULL
4253
4254         start_ost2 || error "Unable to start OST2"
4255         wait_osc_import_state mds ost2 FULL
4256
4257         # Wait for client to detect down OST
4258         stop_ost2 || error "Unable to stop OST2"
4259
4260         wait_osc_import_state mds ost2 DISCONN
4261         mount_client $MOUNT || error "Unable to mount client"
4262         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
4263
4264         multiop_bg_pause $MOUNT _f
4265         RC1=$?
4266         pid=$!
4267
4268         if [ $RC1 -ne 0 ]; then
4269                 log "lazystatfs multiop failed $RC1"
4270         else
4271             kill -USR1 $pid
4272             sleep $(( $TIMEOUT+1 ))
4273             kill -0 $pid
4274             [ $? -ne 0 ] && error "process isn't sleep"
4275             start_ost2 || error "Unable to start OST2"
4276             wait $pid || error "statfs failed"
4277             stop_ost2 || error "Unable to stop OST2"
4278         fi
4279
4280         umount_client $MOUNT -f || error "Unable to unmount client"
4281         stop_ost || error "Unable to stop OST1"
4282         stop_mds || error "Unable to stop MDS"
4283         #writeconf to remove all ost2 traces for subsequent tests
4284         writeconf_or_reformat
4285 }
4286 run_test 50f "normal statfs one server in down"
4287
4288 test_50g() {
4289         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >=2 OSTs"
4290         setup
4291         start_ost2 || error "Unable to start OST2"
4292         wait_osc_import_state mds ost2 FULL
4293         wait_osc_import_ready client ost2
4294
4295         if [[ $PERM_CMD == *"set_param -P"* ]]; then
4296                 local PARAM="osc.${FSNAME}-OST0001*.active"
4297         else
4298                 local PARAM="${FSNAME}-OST0001.osc.active"
4299         fi
4300
4301         $LFS setstripe -c -1 $DIR/$tfile || error "$LFS setstripe failed"
4302         do_facet mgs $PERM_CMD $PARAM=0 || error "Unable to deactivate OST"
4303
4304         umount_client $MOUNT || error "Unable to unmount client"
4305         mount_client $MOUNT || error "Unable to mount client"
4306         # This df should not cause a panic
4307         df -k $MOUNT
4308
4309         do_facet mgs $PERM_CMD $PARAM=1 || error "Unable to activate OST"
4310         rm -f $DIR/$tfile || error "unable to remove file $DIR/$tfile"
4311         umount_client $MOUNT || error "Unable to unmount client"
4312         stop_ost2 || error "Unable to stop OST2"
4313         stop_ost || error "Unable to stop OST1"
4314         stop_mds || error "Unable to stop MDS"
4315         #writeconf to remove all ost2 traces for subsequent tests
4316         writeconf_or_reformat
4317 }
4318 run_test 50g "deactivated OST should not cause panic"
4319
4320 # LU-642
4321 test_50h() {
4322         # prepare MDT/OST, make OSC inactive for OST1
4323         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >=2 OSTs"
4324
4325         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
4326         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
4327                 error "tunefs OST1 failed"
4328         start_mds  || error "Unable to start MDT"
4329         start_ost  || error "Unable to start OST1"
4330         start_ost2 || error "Unable to start OST2"
4331         mount_client $MOUNT || error "client start failed"
4332
4333         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4334
4335         # activatate OSC for OST1
4336         set_persistent_param_and_check client            \
4337                 "osc.${FSNAME}-OST0000-osc-[!M]*.active" \
4338                 "${FSNAME}-OST0000.osc.active" 1
4339
4340         mkdir $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
4341         $LFS setstripe -c -1 -i 0 $DIR/$tdir/2 ||
4342                 error "$LFS setstripe $DIR/$tdir/2 failed"
4343         sleep 1 && echo "create a file after OST1 is activated"
4344         # doing some io, shouldn't crash
4345         dd if=/dev/zero of=$DIR/$tdir/2/$tfile-io bs=1M count=10
4346
4347         # check OSC import is working
4348         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
4349                 error "some OSC imports are still not connected"
4350
4351         # cleanup
4352         rm -rf $DIR/$tdir
4353         umount_client $MOUNT || error "Unable to umount client"
4354         stop_ost2 || error "Unable to stop OST2"
4355         cleanup_nocli || error "cleanup_nocli failed with $?"
4356 }
4357 run_test 50h "LU-642: activate deactivated OST"
4358
4359 test_50i() {
4360         # prepare MDT/OST, make OSC inactive for OST1
4361         [ "$MDSCOUNT" -lt "2" ] && skip "needs >= 2 MDTs"
4362
4363         load_modules
4364         [ $(facet_fstype mds2) == zfs ] && import_zpool mds2
4365         do_facet mds2 "$TUNEFS --param mdc.active=0 $(mdsdevname 2)" ||
4366                 error "tunefs MDT2 failed"
4367         start_mds  || error "Unable to start MDT"
4368         start_ost  || error "Unable to start OST1"
4369         start_ost2 || error "Unable to start OST2"
4370         mount_client $MOUNT || error "client start failed"
4371
4372         mkdir_on_mdt0 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4373
4374         if [[ $PERM_CMD == *"set_param -P"* ]]; then
4375                 $PERM_CMD mdc.${FSNAME}-MDT0001-mdc-*.active=0 &&
4376                         error "deactive MDC0 succeeds"
4377         else
4378                 $PERM_CMD ${FSNAME}-MDT0000.mdc.active=0 &&
4379                         error "deactive MDC0 succeeds"
4380         fi
4381
4382         # activate MDC for MDT2
4383         set_persistent_param_and_check client            \
4384                 "mdc.${FSNAME}-MDT0001-mdc-*.active" \
4385                 "${FSNAME}-MDT0001.mdc.active" 1
4386
4387         wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds2 FULL
4388         if [ "$MDS1_VERSION" -ge $(version_code 2.7.60) ]
4389         then
4390                 wait_dne_interconnect
4391         fi
4392         $LFS mkdir -i1 $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
4393         # create some file
4394         createmany -o $DIR/$tdir/2/$tfile-%d 1 || error "create files failed"
4395
4396         rm -rf $DIR/$tdir/2 || error "unlink dir failed"
4397
4398         # deactivate MDC for MDT2
4399         set_persistent_param_and_check client           \
4400                 "mdc.${FSNAME}-MDT0001-mdc-*.active"    \
4401                 "${FSNAME}-MDT0001.mdc.active" 0
4402
4403         wait_osp_active mds ${FSNAME}-MDT0001 1 0
4404
4405         $LFS mkdir -i1 $DIR/$tdir/2 &&
4406                 error "mkdir $DIR/$tdir/2 succeeds after deactive MDT"
4407
4408         $LFS mkdir -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
4409                 error "mkdir $DIR/$tdir/striped_dir fails after deactive MDT2"
4410
4411         local stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
4412         [ $stripe_count -eq $((MDSCOUNT - 1)) ] ||
4413                 error "wrong $stripe_count != $((MDSCOUNT -1)) for striped_dir"
4414
4415         # cleanup
4416         umount_client $MOUNT || error "Unable to umount client"
4417         stop_mds
4418         stop_ost
4419         stop_ost 2
4420 }
4421 run_test 50i "activate deactivated MDT"
4422
4423 test_51() {
4424         local LOCAL_TIMEOUT=20
4425
4426         reformat
4427         setup_noconfig
4428         check_mount || error "check_mount failed"
4429
4430         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
4431         $LFS setstripe -c -1 $MOUNT/$tdir ||
4432                 error "$LFS setstripe -c -1 $MOUNT/$tdir failed"
4433         #define OBD_FAIL_MDS_REINT_DELAY         0x142
4434         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
4435         touch $MOUNT/$tdir/$tfile &
4436         local pid=$!
4437         sleep 2
4438         start_ost2 || error "Unable to start OST1"
4439         wait $pid
4440         stop_ost2 || error "Unable to stop OST1"
4441         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4442         cleanup_nocli || error “stop server failed”
4443         #writeconf to remove all ost2 traces for subsequent tests
4444         writeconf_or_reformat
4445 }
4446 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
4447
4448 copy_files_xattrs()
4449 {
4450         local node=$1
4451         local dest=$2
4452         local xattrs=$3
4453         shift 3
4454
4455         do_node $node mkdir -p $dest
4456         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
4457
4458         do_node $node  'tar cf - '$*' | tar xf - -C '$dest';
4459                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
4460         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
4461
4462         do_node $node 'getfattr -d -m "[a-z]*\\." '$*' > '$xattrs
4463         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
4464 }
4465
4466 diff_files_xattrs()
4467 {
4468         local node=$1
4469         local backup=$2
4470         local xattrs=$3
4471         shift 3
4472
4473         local backup2=${TMP}/backup2
4474
4475         do_node $node mkdir -p $backup2
4476         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
4477
4478         do_node $node  'tar cf - '$*' | tar xf - -C '$backup2';
4479                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
4480         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
4481
4482         do_node $node "diff -rq $backup $backup2"
4483         [ $? -eq 0 ] || { error "contents differ"; return 3; }
4484
4485         local xattrs2=${TMP}/xattrs2
4486         do_node $node 'getfattr -d -m "[a-z]*\\." '$*' > '$xattrs2
4487         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
4488
4489         do_node $node "diff $xattrs $xattrs2"
4490         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
4491
4492         do_node $node "rm -rf $backup2 $xattrs2"
4493         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
4494 }
4495
4496 test_52() {
4497         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4498                 skip "ldiskfs only test"
4499         fi
4500
4501         start_mds || error "Unable to start MDS"
4502         start_ost || error "Unable to start OST1"
4503         mount_client $MOUNT || error "Unable to mount client"
4504
4505         local nrfiles=8
4506         local ost1mnt=$(facet_mntpt ost1)
4507         local ost1node=$(facet_active_host ost1)
4508         local ost1tmp=$TMP/conf52
4509         local loop
4510
4511         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
4512         touch $TMP/modified_first || error "Unable to create temporary file"
4513         local mtime=$(stat -c %Y $TMP/modified_first)
4514         do_node $ost1node "mkdir -p $ost1tmp &&
4515                            touch -m -d @$mtime $ost1tmp/modified_first" ||
4516                 error "Unable to create temporary file"
4517         sleep 1
4518
4519         $LFS setstripe -c -1 -S 1M $DIR/$tdir || error "$LFS setstripe failed"
4520
4521         for (( i=0; i < nrfiles; i++ )); do
4522                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
4523                         error "multiop failed"
4524                 echo -n .
4525         done
4526         echo
4527
4528         # sync all the data and make sure no pending data on the client,
4529         # thus the SOM xattr would not be changed any more.
4530         cancel_lru_locks osc
4531
4532         # backup files
4533         echo backup files to $TMP/$tdir
4534         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
4535         copy_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
4536                 error "Unable to copy files"
4537
4538         umount_client $MOUNT || error "Unable to umount client"
4539         stop_ost || error "Unable to stop ost1"
4540
4541         echo mount ost1 as ldiskfs
4542         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
4543         if ! do_node $ost1node test -b $ost1_dev; then
4544                 loop="-o loop"
4545         fi
4546         do_node $ost1node mount -t "$ost1_FSTYPE" $loop $ost1_dev \
4547                 $ost1mnt ||
4548                 error "Unable to mount ost1 as ldiskfs"
4549
4550         # backup objects
4551         echo backup objects to $ost1tmp/objects
4552         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
4553                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
4554         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
4555                         $objects ||
4556                 error "Unable to copy objects"
4557
4558         # move objects to lost+found
4559         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
4560         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
4561
4562         do_node $ost1node "umount $ost1mnt" ||
4563                 error "Unable to umount ost1 as ldiskfs"
4564
4565         start_ost || error "Unable to start OST1"
4566         mount_client $MOUNT || error "Unable to mount client"
4567
4568         local REPAIRED=$(do_node $ost1node "$LCTL get_param \
4569                          -n osd-ldiskfs.$FSNAME-OST0000.oi_scrub" |
4570                          awk '/^lf_repa[ri]*ed/ { print $2 }')
4571         [ $REPAIRED -gt 0 ] ||
4572                 error "Some entry under /lost+found should be repaired"
4573
4574         # compare files
4575         diff_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
4576                 error "Unable to diff files"
4577
4578         rm -rf $TMP/$tdir $TMP/file_xattrs ||
4579                 error "Unable to delete temporary files"
4580         do_node $ost1node "rm -rf $ost1tmp" ||
4581                 error "Unable to delete temporary files"
4582         cleanup || error "cleanup failed with $?"
4583 }
4584 run_test 52 "check recovering objects from lost+found"
4585
4586 # Checks threads_min/max/started for some service
4587 #
4588 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
4589 # parameter pattern prefix like 'ost.*.ost'.
4590 thread_sanity() {
4591         local modname=$1
4592         local facet=$2
4593         local parampat=$3
4594         local opts=$4
4595         local basethr=$5
4596         local tmin
4597         local tmin2
4598         local tmax
4599         local tmax2
4600         local tstarted
4601         local paramp
4602         local msg="Insane $modname thread counts"
4603         local ncpts=$(check_cpt_number $facet)
4604         local nthrs
4605         shift 4
4606
4607         check_mount || return 41
4608
4609         # We need to expand $parampat, but it may match multiple parameters, so
4610         # we'll pick the first one
4611         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
4612                 error "Couldn't expand ${parampat}.threads_min parameter name"
4613                 return 22
4614         fi
4615
4616         # Remove the .threads_min part
4617         paramp=${paramp%.threads_min}
4618
4619         # Check for sanity in defaults
4620         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4621                echo 0)
4622         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4623                echo 0)
4624         tstarted=$(do_facet $facet "$LCTL get_param \
4625                                     -n ${paramp}.threads_started" || echo 0)
4626         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
4627                 return $?
4628         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4629                 return $?
4630         nthrs=$(expr $tmax - $tmin)
4631         if [ $nthrs -lt $ncpts ]; then
4632                 nthrs=0
4633         else
4634                 nthrs=$ncpts
4635         fi
4636
4637         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
4638                 skip_env "module parameter forced $facet thread count"
4639
4640         # Check that we can change min/max
4641         do_facet $facet "$LCTL set_param \
4642                          ${paramp}.threads_min=$((tmin + nthrs))"
4643         do_facet $facet "$LCTL set_param \
4644                          ${paramp}.threads_max=$((tmax - nthrs))"
4645         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4646                 echo 0)
4647         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4648                 echo 0)
4649         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
4650                             $tmax2 == ($tmax - $nthrs)))' || return $?
4651
4652         # Check that we can set min/max to the same value
4653         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4654                echo 0)
4655         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
4656         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4657                 echo 0)
4658         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4659                 echo 0)
4660         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
4661
4662         # Check that we can't set max < min
4663         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
4664         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4665                 echo 0)
4666         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4667                 echo 0)
4668         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
4669
4670         # We need to ensure that we get the module options desired; to do this
4671         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
4672         LOAD_MODULES_REMOTE=true
4673         cleanup
4674         local oldvalue
4675         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
4676
4677         setmodopts -a $modname "$newvalue" oldvalue
4678
4679         setup
4680         check_mount || return 41
4681
4682         # Restore previous setting of MODOPTS_*
4683         setmodopts $modname "$oldvalue"
4684
4685         # Check that $opts took
4686         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4687                 echo 0)
4688         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4689                 echo 0)
4690         tstarted=$(do_facet $facet \
4691                    "$LCTL get_param -n ${paramp}.threads_started" || echo 0)
4692         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4693                 return $?
4694         cleanup
4695
4696         setup
4697 }
4698
4699 test_53a() {
4700         setup
4701         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
4702         cleanup || error "cleanup failed with rc $?"
4703 }
4704 run_test 53a "check OSS thread count params"
4705
4706 test_53b() {
4707         setup
4708         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
4709                                          -N mds.*.*.threads_max 2>/dev/null")
4710         if [ -z "$mds" ]; then
4711                 #running this on an old MDT
4712                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
4713         else
4714                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
4715         fi
4716         cleanup || error "cleanup failed with $?"
4717 }
4718 run_test 53b "check MDS thread count params"
4719
4720 test_54a() {
4721         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4722                 skip "ldiskfs only test"
4723         fi
4724
4725         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
4726                 error "llverdev failed with rc=$?"
4727         reformat_and_config
4728 }
4729 run_test 54a "test llverdev and partial verify of device"
4730
4731 test_54b() {
4732         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4733                 skip "ldiskfs only test"
4734         fi
4735
4736         setup
4737         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
4738         cleanup || error "cleanup failed with rc=$?"
4739 }
4740 run_test 54b "test llverfs and partial verify of filesystem"
4741
4742 lov_objid_size()
4743 {
4744         local max_ost_index=$1
4745
4746         echo -n $(((max_ost_index + 1) * 8))
4747 }
4748
4749 test_55() {
4750         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4751                 skip "ldiskfs only test"
4752         fi
4753
4754         local mdsdev=$(mdsdevname 1)
4755         local mdsvdev=$(mdsvdevname 1)
4756
4757         for i in 1023 2048
4758         do
4759                 if ! combined_mgs_mds; then
4760                         stop_mgs || error "stopping MGS service failed"
4761                         format_mgs || error "formatting MGT failed"
4762                 fi
4763                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
4764                         $mdsvdev || exit 10
4765                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
4766                         --reformat $(ostdevname 1) $(ostvdevname 1)
4767                 setup_noconfig
4768                 stopall
4769                 setup_noconfig
4770                 sync
4771
4772                 echo checking size of lov_objid for ost index $i
4773                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" |
4774                                  grep ^User | awk -F 'Size: ' '{print $2}')
4775                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
4776                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
4777                 else
4778                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
4779                 fi
4780                 stopall
4781         done
4782
4783         reformat_and_config
4784 }
4785 run_test 55 "check lov_objid size"
4786
4787 test_56a() {
4788         local mds_journal_size_orig=$MDSJOURNALSIZE
4789         local n
4790
4791         MDSJOURNALSIZE=16
4792
4793         formatall
4794         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
4795                 $(ostdevname 1) $(ostvdevname 1)
4796         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
4797                 $(ostdevname 2) $(ostvdevname 2)
4798
4799         start_mgsmds
4800         start_ost || error "Unable to start first ost (idx 10000)"
4801         start_ost2 || error "Unable to start second ost (idx 1000)"
4802         mount_client $MOUNT || error "Unable to mount client"
4803         echo ok
4804         $LFS osts
4805
4806         # test instantiating PFL components with sparse index LU-15513
4807         mkdir -p $MOUNT/$tdir
4808         $LFS setstripe -E 4M -c 1 -E 1G -c 4 -S4M -E eof -c -1 $MOUNT/$tdir
4809         dd if=/dev/zero of=$MOUNT/$tdir/$tfile bs=4K count=1 seek=10k ||
4810                 error "dd to second component failed"
4811
4812         if [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
4813            [[ "$MDS1_VERSION" -ge $(version_code 2.5.4) &&
4814               "$MDS1_VERSION" -lt $(version_code 2.5.11) ]]; then
4815                 wait_osc_import_state mds ost1 FULL
4816                 wait_osc_import_state mds ost2 FULL
4817                 $LFS setstripe --stripe-count=-1 $DIR/$tfile ||
4818                         error "Unable to setstripe $DIR/$tfile"
4819                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
4820                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
4821                 rm $DIR/$tfile
4822         fi
4823
4824         stopall
4825         MDSJOURNALSIZE=$mds_journal_size_orig
4826         reformat_and_config
4827 }
4828 run_test 56a "check big OST indexes and out-of-index-order start"
4829
4830 cleanup_56b() {
4831         trap 0
4832
4833         umount_client $MOUNT -f || error "unmount client failed"
4834         stop mds1
4835         stop mds2
4836         stop mds3
4837         stopall
4838         reformat_and_config
4839 }
4840
4841 test_56b() {
4842         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs"
4843
4844         trap cleanup_56b EXIT RETURN ERR
4845         stopall
4846
4847         if ! combined_mgs_mds ; then
4848                 format_mgs
4849                 start_mgs
4850         fi
4851
4852         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) --index=0 --reformat \
4853                 $(mdsdevname 1) $(mdsvdevname 1)
4854         add mds2 $(mkfs_opts mds2 $(mdsdevname 2)) --index=1 --reformat \
4855                 $(mdsdevname 2) $(mdsvdevname 2)
4856         add mds3 $(mkfs_opts mds3 $(mdsdevname 3)) --index=1000 --reformat \
4857                 $(mdsdevname 3) $(mdsvdevname 3)
4858         format_ost 1
4859         format_ost 2
4860
4861         start_mdt 1 || error "MDT 1 (idx 0) start failed"
4862         start_mdt 2 || error "MDT 2 (idx 1) start failed"
4863         start_mdt 3 || error "MDT 3 (idx 1000) start failed"
4864         start_ost || error "Unable to start first ost"
4865         start_ost2 || error "Unable to start second ost"
4866
4867         do_nodes $(comma_list $(mdts_nodes)) \
4868                 "$LCTL set_param mdt.*.enable_remote_dir=1 \
4869                 mdt.*.enable_remote_dir_gid=-1"
4870
4871         mount_client $MOUNT || error "Unable to mount client"
4872
4873         $LFS mkdir -c3 $MOUNT/$tdir || error "failed to make testdir"
4874
4875         echo "This is test file 1!" > $MOUNT/$tdir/$tfile.1 ||
4876                 error "failed to make test file 1"
4877         echo "This is test file 2!" > $MOUNT/$tdir/$tfile.2 ||
4878                 error "failed to make test file 2"
4879         echo "This is test file 1000!" > $MOUNT/$tdir/$tfile.1000 ||
4880                 error "failed to make test file 1000"
4881
4882         rm -rf $MOUNT/$tdir || error "failed to remove testdir"
4883
4884         $LFS mkdir -i1000 $MOUNT/$tdir.1000 ||
4885                 error "create remote dir at idx 1000 failed"
4886
4887         output=$($LFS df)
4888         echo "=== START lfs df OUTPUT ==="
4889         echo -e "$output"
4890         echo "==== END lfs df OUTPUT ===="
4891
4892         mdtcnt=$(echo -e "$output" | grep $FSNAME-MDT | wc -l)
4893         ostcnt=$(echo -e "$output" | grep $FSNAME-OST | wc -l)
4894
4895         echo "lfs df returned mdt count $mdtcnt and ost count $ostcnt"
4896         [ $mdtcnt -eq 3 ] || error "lfs df returned wrong mdt count"
4897         [ $ostcnt -eq 2 ] || error "lfs df returned wrong ost count"
4898
4899         echo "This is test file 1!" > $MOUNT/$tdir.1000/$tfile.1 ||
4900                 error "failed to make test file 1"
4901         echo "This is test file 2!" > $MOUNT/$tdir.1000/$tfile.2 ||
4902                 error "failed to make test file 2"
4903         echo "This is test file 1000!" > $MOUNT/$tdir.1000/$tfile.1000 ||
4904                 error "failed to make test file 1000"
4905         rm -rf $MOUNT/$tdir.1000 || error "failed to remove remote_dir"
4906
4907         output=$($LFS mdts)
4908         echo "=== START lfs mdts OUTPUT ==="
4909         echo -e "$output"
4910         echo "==== END lfs mdts OUTPUT ===="
4911
4912         echo -e "$output" | grep -v "MDTS:" | awk '{print $1}' |
4913                 sed 's/://g' > $TMP/mdts-actual.txt
4914         sort $TMP/mdts-actual.txt -o $TMP/mdts-actual.txt
4915
4916         echo -e "0\n1\n1000" > $TMP/mdts-expected.txt
4917
4918         diff $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4919         result=$?
4920
4921         rm $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4922
4923         [ $result -eq 0 ] || error "target_obd proc file is incorrect!"
4924 }
4925 run_test 56b "test target_obd correctness with nonconsecutive MDTs"
4926
4927 test_57a() { # bug 22656
4928         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4929         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4930                     tail -1 | awk '{print $1}')
4931         writeconf_or_reformat
4932         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
4933         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
4934                 error "tunefs failed"
4935         start_mgsmds
4936         start_ost && error "OST registration from failnode should fail"
4937         cleanup
4938 }
4939 run_test 57a "initial registration from failnode should fail (should return errs)"
4940
4941 test_57b() {
4942         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4943         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4944                     tail -1 | awk '{print $1}')
4945         writeconf_or_reformat
4946         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
4947         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
4948                 error "tunefs failed"
4949         start_mgsmds
4950         start_ost || error "OST registration from servicenode should not fail"
4951         cleanup
4952 }
4953 run_test 57b "initial registration from servicenode should not fail"
4954
4955 count_osts() {
4956         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
4957 }
4958
4959 test_58() { # bug 22658
4960         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4961         setup_noconfig
4962         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4963         createmany -o $DIR/$tdir/$tfile-%d 100
4964         unlinkmany $DIR/$tdir/$tfile-%d 100
4965         stop_mds || error "Unable to stop MDS"
4966
4967         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4968         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4969
4970         # remove all files from the OBJECTS dir
4971         mount_fstype $SINGLEMDS
4972
4973         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4974
4975         unmount_fstype $SINGLEMDS
4976         # restart MDS with missing llog files
4977         start_mds || error "unable to start MDS"
4978         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
4979         cleanup
4980 }
4981 run_test 58 "missing llog files must not prevent MDT from mounting"
4982
4983 test_59() {
4984         start_mgsmds >> /dev/null
4985         local C1=$(count_osts)
4986         if [ $C1 -eq 0 ]; then
4987                 start_ost >> /dev/null
4988                 C1=$(count_osts)
4989         fi
4990         stopall
4991         echo "original ost count: $C1 (expect > 0)"
4992         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
4993         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
4994         local C2=$(count_osts)
4995         echo "after mdt writeconf count: $C2 (expect 0)"
4996         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
4997         echo "OST start without writeconf should fail:"
4998         start_ost >> /dev/null &&
4999                 error "OST start without writeconf didn't fail"
5000         echo "OST start with writeconf should succeed:"
5001         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
5002         local C3=$(count_osts)
5003         echo "after ost writeconf count: $C3 (expect 1)"
5004         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
5005         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
5006         local C4=$(count_osts)
5007         echo "after ost2 writeconf count: $C4 (expect 2)"
5008         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
5009         stop_ost2 >> /dev/null
5010         cleanup_nocli >> /dev/null
5011         #writeconf to remove all ost2 traces for subsequent tests
5012         writeconf_or_reformat
5013 }
5014 run_test 59 "writeconf mount option"
5015
5016 test_60a() { # LU-471
5017         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5018                 skip "ldiskfs only test"
5019         fi
5020
5021         local num
5022
5023         for num in $(seq $MDSCOUNT); do
5024                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
5025                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
5026                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
5027                         exit 10
5028         done
5029
5030         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
5031         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
5032
5033         # MDT default has dirdata feature
5034         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
5035         # we disable uninit_bg feature
5036         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
5037         # we set stride extended options
5038         echo $dump | grep stride > /dev/null || error "stride is not set"
5039         stop_mds
5040         reformat_and_config
5041 }
5042 run_test 60a "check mkfs.lustre --mkfsoptions -E -O options setting"
5043
5044 test_60b() {
5045         [[ "$mds1_FSTYPE" == ldiskfs ]] || skip "ldiskfs only test"
5046
5047         local features=$(do_facet $SINGLEMDS $DUMPE2FS $(mdsdevname 1) |
5048                          grep features)
5049         [ ${PIPESTATUS[0]} -eq 0 ] || error "$DUMPE2FS $(mdsdevname 1) failed"
5050
5051         echo $features
5052         # ea_inode feature should be enabled by default for MDTs
5053         [[ "$features" =~ "ea_inode" ]] || error "ea_inode is not set"
5054         # large_dir feature should be enabled by default for MDTs
5055         [[ "$features" =~ "large_dir" ]] || error "large_dir is not set"
5056 }
5057 run_test 60b "check mkfs.lustre MDT default features"
5058
5059 test_61a() { # LU-80
5060         local lxattr=$(large_xattr_enabled)
5061
5062         [ "$MDS1_VERSION" -ge $(version_code 2.1.53) ] ||
5063                 skip "Need MDS version at least 2.1.53"
5064
5065         if [ "$mds1_FSTYPE" == ldiskfs ] &&
5066              ! large_xattr_enabled; then
5067                 lxattr=true
5068
5069                 for num in $(seq $MDSCOUNT); do
5070                         do_facet mds${num} $TUNE2FS -O ea_inode \
5071                                 $(mdsdevname $num) ||
5072                                 error "tune2fs on mds $num failed"
5073                 done
5074         fi
5075
5076         setup || error "setting up the filesystem failed"
5077         client_up || error "starting client failed"
5078
5079         local file=$DIR/$tfile
5080         touch $file || error "touch $file failed"
5081
5082         local large_value="$(generate_string $(max_xattr_size))"
5083         local small_value="bar"
5084
5085         local name="trusted.big"
5086         log "save large xattr of $(max_xattr_size) bytes on $name on $file"
5087         setfattr -n $name -v $large_value $file ||
5088                 error "saving $name on $file failed"
5089
5090         local new_value=$(get_xattr_value $name $file)
5091         [[ "$new_value" != "$large_value" ]] &&
5092                 error "$name different after saving"
5093
5094         log "shrink value of $name on $file"
5095         setfattr -n $name -v $small_value $file ||
5096                 error "shrinking value of $name on $file failed"
5097
5098         new_value=$(get_xattr_value $name $file)
5099         [[ "$new_value" != "$small_value" ]] &&
5100                 error "$name different after shrinking"
5101
5102         log "grow value of $name on $file"
5103         setfattr -n $name -v $large_value $file ||
5104                 error "growing value of $name on $file failed"
5105
5106         new_value=$(get_xattr_value $name $file)
5107         [[ "$new_value" != "$large_value" ]] &&
5108                 error "$name different after growing"
5109
5110         log "check value of $name on $file after remounting MDS"
5111         fail $SINGLEMDS
5112         new_value=$(get_xattr_value $name $file)
5113         [[ "$new_value" != "$large_value" ]] &&
5114                 error "$name different after remounting MDS"
5115
5116         log "remove large xattr $name from $file"
5117         setfattr -x $name $file || error "removing $name from $file failed"
5118
5119         if $lxattr && [ "$mds1_FSTYPE" == ldiskfs ]; then
5120                 stopall || error "stopping for e2fsck run"
5121                 for num in $(seq $MDSCOUNT); do
5122                         run_e2fsck $(facet_active_host mds$num) \
5123                                 $(mdsdevname $num) "-y" ||
5124                                 error "e2fsck MDT$num failed"
5125                 done
5126                 setup_noconfig || error "remounting the filesystem failed"
5127         fi
5128
5129         # need to delete this file to avoid problems in other tests
5130         rm -f $file
5131         cleanup || error "stopping systems failed"
5132 }
5133 run_test 61a "large xattr"
5134
5135 test_61b() { # LU-80
5136         local lxattr=$(large_xattr_enabled)
5137
5138         [ "$MDS1_VERSION" -ge $(version_code 2.1.53) ] ||
5139                 skip "Need MDS version at least 2.1.53"
5140
5141         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5142                 skip "ldiskfs specific bug"
5143         fi
5144
5145         if ! large_xattr_enabled; then
5146                 lxattr=true
5147
5148                 for num in $(seq $MDSCOUNT); do
5149                         do_facet mds${num} $TUNE2FS -O ea_inode \
5150                                 $(mdsdevname $num) ||
5151                                 error "tune2fs on mds $num failed"
5152                 done
5153         fi
5154
5155         setup || error "setting up the filesystem failed"
5156         client_up || error "starting client failed"
5157
5158         local _file=$MOUNT/panda
5159         local large_value="$(generate_string $(max_xattr_size))"
5160         local name="trusted.big"
5161
5162         touch ${_file} || error "touch ${_file} failed"
5163         setfattr -n $name -v $large_value ${_file} ||
5164                 error "saving $name on $file failed"
5165
5166         MDT_DEV="${FSNAME}-MDT0000"
5167         MDT_DEVNAME=$(mdsdevname ${SINGLEMDS//mds/})
5168
5169         stopall || error "stopping for e2fsck run"
5170
5171
5172         ino=$(do_facet $SINGLEMDS "$DEBUGFS -R 'stat /ROOT/panda' \
5173                 ${MDT_DEVNAME} | grep trusted.big")
5174         ino=$(echo "${ino}" | awk '{print $2;}')
5175         echo "large ea "${ino}
5176
5177         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"ln $ino /lost+found\\\" \
5178                  ${MDT_DEVNAME}"
5179
5180         setup_noconfig || error "remounting the filesystem failed"
5181
5182         do_facet $SINGLEMDS $LCTL lfsck_start -M ${MDT_DEV} -t namespace || {
5183                 error "can't start lfsck namespace"
5184         }
5185
5186         sleep 5
5187         wait_update_facet $SINGLEMDS "$LCTL get_param -n \
5188                 mdd.${MDT_DEV}.lfsck_namespace |
5189                 awk '/^status/ { print \\\$2 }'" "completed" 32 || {
5190                 error "(2) unexpected status"
5191         }
5192
5193         stopall || error "stopping for e2fsck run"
5194         for num in $(seq $MDSCOUNT); do
5195                 run_e2fsck $(facet_active_host mds$num) \
5196                         $(mdsdevname $num) "-y" ||
5197                         error "e2fsck MDT$num failed"
5198         done
5199         setup_noconfig || error "remounting the filesystem failed"
5200
5201         # need to delete this file to avoid problems in other tests
5202         rm -f $file
5203         cleanup || error "stopping systems failed"
5204 }
5205 run_test 61b "large xattr"
5206
5207 test_62() {
5208         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5209                 skip "ldiskfs only test"
5210         fi
5211         [[ "$MDS1_VERSION" -ge $(version_code 2.2.51) ]] ||
5212                 skip "Need MDS version at least 2.2.51"
5213
5214         # MRP-118
5215         local mdsdev=$(mdsdevname 1)
5216         local ostdev=$(ostdevname 1)
5217
5218         echo "disable journal for mds"
5219         do_facet mds1 $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
5220         start_mds && error "MDT start should fail"
5221         echo "disable journal for ost"
5222         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
5223         start_ost && error "OST start should fail"
5224         cleanup || error "cleanup failed with rc $?"
5225         reformat_and_config
5226 }
5227 run_test 62 "start with disabled journal"
5228
5229 test_63() {
5230         if [ "$mds1_FSTYPE" != ldiskfs ]; then
5231                 skip "ldiskfs only test"
5232         fi
5233
5234         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ldiskfs
5235         local inode_slab=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
5236                            awk '/ldiskfs_inode_cache/ { print $5 / $6 }')
5237         if [ -z "$inode_slab" ]; then
5238                 skip "ldiskfs module has not been loaded"
5239         fi
5240
5241         if grep -q "CONFIG_DEBUG_LOCK_ALLOC=y" /boot/config-$(uname -r); then
5242                 skip "test is not compatible with CONFIG_DEBUG_LOCK_ALLOC=y"
5243         fi
5244
5245         echo "$inode_slab ldiskfs inodes per page"
5246         [ "${inode_slab%.*}" -ge "3" ] && return 0
5247
5248         # If kmalloc-128 is also 1 per page - this is a debug kernel
5249         # and so this is not an error.
5250         local kmalloc128=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
5251                            awk '/^(dma-kmalloc|size)-128 / { print $5 / $6 }')
5252         # 32 128-byte chunks in 4k
5253         [ "${kmalloc128%.*}" -lt "32" ] ||
5254                 error "ldiskfs inode too big, only $inode_slab objs/page, " \
5255                       "kmalloc128 = $kmalloc128 objs/page"
5256 }
5257 run_test 63 "Verify each page can at least hold 3 ldiskfs inodes"
5258
5259 test_64() {
5260         start_mds || error "unable to start MDS"
5261         start_ost || error "Unable to start OST1"
5262         start_ost2 || error "Unable to start second ost"
5263         mount_client $MOUNT || error "Unable to mount client"
5264         stop_ost2 || error "Unable to stop second ost"
5265         echo "$LFS df"
5266         $LFS df --lazy
5267         umount_client $MOUNT -f || error “unmount $MOUNT failed”
5268         cleanup_nocli || error "cleanup_nocli failed with $?"
5269         #writeconf to remove all ost2 traces for subsequent tests
5270         writeconf_or_reformat
5271 }
5272 run_test 64 "check lfs df --lazy "
5273
5274 test_65() { # LU-2237
5275         # Currently, the test is only valid for ldiskfs backend
5276         [ "$mds1_FSTYPE" != ldiskfs ] &&
5277                 skip "ldiskfs only test"
5278
5279         local devname=$(mdsdevname ${SINGLEMDS//mds/})
5280         local brpt=$(facet_mntpt brpt)
5281         local opts=""
5282
5283         if ! do_facet $SINGLEMDS "test -b $devname"; then
5284                 opts="-o loop"
5285         fi
5286
5287         stop_mds || error "Unable to stop MDS"
5288         local obj=$(do_facet $SINGLEMDS \
5289                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
5290                     grep Inode)
5291         if [ -z "$obj" ]; then
5292                 # The MDT may be just re-formatted, mount the MDT for the
5293                 # first time to guarantee the "last_rcvd" file is there.
5294                 start_mds || error "fail to mount the MDS for the first time"
5295                 stop_mds || error "Unable to stop MDS"
5296         fi
5297
5298         # remove the "last_rcvd" file
5299         do_facet $SINGLEMDS "mkdir -p $brpt"
5300         do_facet $SINGLEMDS \
5301                 "mount -t $mds1_FSTYPE $opts $devname $brpt"
5302         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
5303         do_facet $SINGLEMDS "$UMOUNT $brpt"
5304
5305         # restart MDS, the "last_rcvd" file should be recreated.
5306         start_mds || error "fail to restart the MDS"
5307         stop_mds || error "Unable to stop MDS"
5308         obj=$(do_facet $SINGLEMDS \
5309               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
5310         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
5311 }
5312 run_test 65 "re-create the lost last_rcvd file when server mount"
5313
5314 test_66() {
5315         [[ "$MGS_VERSION" -ge $(version_code 2.3.59) ]] ||
5316                 skip "Need MGS version at least 2.3.59"
5317
5318         setup
5319         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
5320         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
5321
5322         # add EXCLUDE records to config log, they are not to be
5323         # removed by lctl replace_nids
5324         set_conf_param_and_check mds                                    \
5325             "$LCTL get_param -n osc.$FSNAME-OST0000-osc-MDT0000.active" \
5326             "$FSNAME-OST0000.osc.active"                                \
5327             "0"
5328
5329         echo "replace_nids should fail if MDS, OSTs and clients are UP"
5330         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
5331                 error "replace_nids fail"
5332
5333         umount_client $MOUNT || error "unmounting client failed"
5334         echo "replace_nids should fail if MDS and OSTs are UP"
5335         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
5336                 error "replace_nids fail"
5337
5338         stop_ost || error "Unable to stop OST1"
5339         echo "replace_nids should fail if MDS is UP"
5340         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
5341                 error "replace_nids fail"
5342
5343         stop_mds || error "stopping mds failed"
5344
5345         if combined_mgs_mds; then
5346                 start_mdt 1 "-o nosvc" ||
5347                         error "starting mds with nosvc option failed"
5348         fi
5349
5350         echo "command should accept two parameters"
5351         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
5352                 error "command should accept two params"
5353
5354         echo "correct device name should be passed"
5355         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
5356                 error "wrong devname"
5357
5358         echo "wrong nids list should not destroy the system"
5359         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
5360                 error "wrong parse"
5361         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "asdfasdf, asdfadf" &&
5362                 error "wrong parse"
5363
5364         echo "replace OST nid"
5365         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
5366                 error "replace nids failed"
5367
5368         echo "command should accept two parameters"
5369         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
5370                 error "command should accept two params"
5371
5372         echo "wrong nids list should not destroy the system"
5373         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
5374                 error "wrong parse"
5375
5376         local FAKE_NIDS="192.168.0.112@tcp1,192.168.0.112@tcp2"
5377         local FAKE_FAILOVER="192.168.0.113@tcp1,192.168.0.113@tcp2"
5378         local NIDS_AND_FAILOVER="$MDS_NID,$FAKE_NIDS:$FAKE_FAILOVER"
5379         echo "set NIDs with failover"
5380         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $NIDS_AND_FAILOVER ||
5381                 error "replace nids failed"
5382
5383
5384         echo "replace MDS nid"
5385         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
5386                 error "replace nids failed"
5387
5388         if ! combined_mgs_mds ; then
5389                 stop_mgs
5390         else
5391                 stop_mds || error "Unable to stop MDS"
5392         fi
5393
5394         start_mgsmds || error "start mgsmds failed"
5395         set_conf_param_and_check mds                                    \
5396             "$LCTL get_param -n osc.$FSNAME-OST0000-osc-MDT0000.active" \
5397             "$FSNAME-OST0000.osc.active"                                \
5398             "1"
5399         start_ost || error "unable to start OST"
5400         mount_client $MOUNT || error "mount client failed"
5401
5402         check_mount || error "error after nid replace"
5403         cleanup || error "cleanup failed"
5404         reformat_and_config
5405 }
5406 run_test 66 "replace nids"
5407
5408 test_67() { #LU-2950
5409         local legacy="$TMP/legacy_lnet_config"
5410         local new="$TMP/new_routes_test"
5411         local out="$TMP/config_out_file"
5412         local verify="$TMP/conv_verify"
5413         local verify_conf="$TMP/conf_verify"
5414
5415         # Create the legacy file that will be run through the
5416         # lustre_routes_conversion script
5417         cat <<- LEGACY_LNET_CONFIG > $legacy
5418                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
5419                 tcp2 54 10.1.3.2@tcp;
5420                 tcp3 10.3.4.3@tcp:3;
5421                 tcp4 10.3.3.4@tcp;
5422         LEGACY_LNET_CONFIG
5423
5424         # Create the verification file to verify the output of
5425         # lustre_routes_conversion script against.
5426         cat <<- VERIFY_LNET_CONFIG > $verify
5427                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
5428                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
5429                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
5430                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
5431                 tcp4: { gateway: 10.3.3.4@tcp }
5432         VERIFY_LNET_CONFIG
5433
5434         # Create the verification file to verify the output of
5435         # lustre_routes_config script against
5436         cat <<- VERIFY_LNET_CONFIG > $verify_conf
5437                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
5438                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
5439                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
5440                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
5441                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
5442         VERIFY_LNET_CONFIG
5443
5444         $LUSTRE_ROUTES_CONVERSION $legacy $new > /dev/null
5445         if [ -f $new ]; then
5446                 # verify the conversion output
5447                 cmp -s $new $verify > /dev/null
5448                 if [ $? -eq 1 ]; then
5449                         error "routes conversion failed"
5450                 fi
5451
5452                 lustre_routes_config --dry-run --verbose $new > $out
5453                 # check that the script succeeded
5454                 cmp -s $out $verify_conf > /dev/null
5455                 if [ $? -eq 1 ]; then
5456                         error "routes config failed"
5457                 fi
5458         else
5459                 error "routes conversion test failed"
5460         fi
5461         # remove generated files
5462         rm -f $new $legacy $verify $verify_conf $out
5463 }
5464 run_test 67 "test routes conversion and configuration"
5465
5466 test_68() {
5467         local fid
5468         local seq
5469         local START
5470         local END
5471
5472         [ "$MDS1_VERSION" -ge $(version_code 2.4.53) ] ||
5473                 skip "Need MDS version at least 2.4.53"
5474
5475         umount_client $MOUNT || error "umount client failed"
5476
5477         start_mgsmds
5478         start_ost
5479
5480         # START-END - the sequences we'll be reserving
5481         START=$(do_facet $SINGLEMDS \
5482                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
5483         END=$((START + (1 << 30)))
5484         do_facet $SINGLEMDS \
5485                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
5486
5487         # reset the sequences MDT0000 has already assigned
5488         do_facet $SINGLEMDS \
5489                 $LCTL set_param seq.srv*MDT0000.space=clear
5490
5491         # remount to let the client allocate new sequence
5492         mount_client $MOUNT || error "mount client failed"
5493
5494         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
5495         do_facet $SINGLEMDS \
5496                 $LCTL get_param seq.srv*MDT0000.space
5497         $LFS path2fid $DIR/$tfile
5498
5499         local old_ifs="$IFS"
5500         IFS='[:]'
5501         fid=($($LFS path2fid $DIR/$tfile))
5502         IFS="$old_ifs"
5503         let seq=${fid[1]}
5504
5505         if [[ $seq < $END ]]; then
5506                 error "used reserved sequence $seq?"
5507         fi
5508         cleanup || error "cleanup failed with $?"
5509 }
5510 run_test 68 "be able to reserve specific sequences in FLDB"
5511
5512 # Test 69: is about the total number of objects ever created on an OST.
5513 # so that when it is reformatted the normal MDS->OST orphan recovery won't
5514 # just "precreate" the missing objects. In the past it might try to recreate
5515 # millions of objects after an OST was reformatted
5516 test_69() {
5517         [[ "$MDS1_VERSION" -lt $(version_code 2.4.2) ]] &&
5518                 skip "Need MDS version at least 2.4.2"
5519
5520         [[ "$MDS1_VERSION" -ge $(version_code 2.4.50) ]] &&
5521         [[ "$MDS1_VERSION" -lt $(version_code 2.5.0) ]] &&
5522                 skip "Need MDS version at least 2.5.0"
5523
5524         setup
5525         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5526
5527         # use OST0000 since it probably has the most creations
5528         local OSTNAME=$(ostname_from_index 0)
5529         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
5530         local last_id=$(do_facet mds1 $LCTL get_param -n \
5531                         osp.$mdtosc_proc1.prealloc_last_id)
5532
5533         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
5534         # verify that the LAST_ID recovery is working properly. If
5535         # not, then the OST will refuse to allow the MDS connect
5536         # because the LAST_ID value is too different from the MDS
5537         #define OST_MAX_PRECREATE=20000
5538         local ost_max_pre=20000
5539         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
5540
5541         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
5542         # need to create any files. So, skip this section.
5543         if [ $num_create -gt 0 ]; then
5544                 # Check the number of inodes available on OST0
5545                 local files=0
5546                 local ifree=$($LFS df -i $MOUNT |
5547                         awk '/OST0000/ { print $4 }'; exit ${PIPESTATUS[0]})
5548                 log "On OST0, $ifree inodes available. Want $num_create. rc=$?"
5549
5550                 $LFS setstripe -i 0 $DIR/$tdir ||
5551                         error "$LFS setstripe -i 0 $DIR/$tdir failed"
5552                 if [ $ifree -lt 10000 ]; then
5553                         files=$(( ifree - 50 ))
5554                 else
5555                         files=10000
5556                 fi
5557
5558                 local j=$((num_create / files + 1))
5559                 for i in $(seq 1 $j); do
5560                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
5561                                 error "createmany fail create $files files: $?"
5562                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
5563                                 error "unlinkmany failed unlink $files files"
5564                 done
5565         fi
5566
5567         # delete all of the files with objects on OST0 so the
5568         # filesystem is not inconsistent later on
5569         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
5570
5571         umount_client $MOUNT || error "umount client failed"
5572         stop_ost || error "OST0 stop failure"
5573         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
5574                 $(ostdevname 1) $(ostvdevname 1) ||
5575                 error "reformat and replace $ostdev failed"
5576         start_ost || error "OST0 restart failure"
5577         wait_osc_import_state mds ost FULL
5578
5579         mount_client $MOUNT || error "mount client failed"
5580         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
5581         local idx=$($LFS getstripe -i $DIR/$tdir/$tfile-last)
5582         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
5583
5584         local iused=$($LFS df -i $MOUNT |
5585                 awk '/OST0000/ { print $3 }'; exit ${PIPESTATUS[0]})
5586         log "On OST0, $iused used inodes rc=$?"
5587         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
5588                 error "OST replacement created too many inodes; $iused"
5589         cleanup || error "cleanup failed with $?"
5590 }
5591 run_test 69 "replace an OST with the same index"
5592
5593 test_70a() {
5594         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5595         local MDTIDX=1
5596
5597         cleanup || error "cleanup failed with $?"
5598
5599         start_mdt 1 || error "MDT0 start fail"
5600
5601         start_ost || error "OST0 start fail"
5602         for num in $(seq 2 $MDSCOUNT); do
5603                 start_mdt $num || return
5604         done
5605
5606         mount_client $MOUNT || error "mount client fails"
5607
5608         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
5609
5610         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5611                 error "create remote dir fail"
5612
5613         rm -rf $DIR/$tdir || error "delete dir fail"
5614         cleanup || error "cleanup failed with $?"
5615 }
5616 run_test 70a "start MDT0, then OST, then MDT1"
5617
5618 test_70b() {
5619         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5620         local MDTIDX=1
5621
5622         start_ost || error "OST0 start fail"
5623
5624         start_mds || error "MDS start fail"
5625
5626         mount_client $MOUNT || error "mount client fails"
5627
5628         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
5629
5630         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5631                 error "create remote dir fail"
5632
5633         rm -rf $DIR/$tdir || error "delete dir fail"
5634
5635         cleanup || error "cleanup failed with $?"
5636 }
5637 run_test 70b "start OST, MDT1, MDT0"
5638
5639 test_70c() {
5640         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5641         local MDTIDX=1
5642
5643         start_mds || error "MDS start fail"
5644         start_ost || error "OST0 start fail"
5645
5646         mount_client $MOUNT || error "mount client fails"
5647         stop_mdt 1 || error "MDT1 start fail"
5648
5649         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
5650         echo "deactivate $mdc_for_mdt1"
5651         $LCTL --device $mdc_for_mdt1 deactivate ||
5652                 error "set $mdc_for_mdt1 deactivate failed"
5653
5654         mkdir $DIR/$tdir && error "mkdir succeed"
5655
5656         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
5657                 error "create remote dir succeed"
5658
5659         cleanup || error "cleanup failed with $?"
5660 }
5661 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
5662
5663 test_70d() {
5664         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5665         local MDTIDX=1
5666
5667         start_mds || error "MDS start fail"
5668         start_ost || error "OST0 start fail"
5669
5670         mount_client $MOUNT || error "mount client fails"
5671
5672         stop_mdt 2 || error "MDT1 start fail"
5673
5674         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
5675                              awk '{print $4}')
5676         echo "deactivate $mdc_for_mdt2"
5677         $LCTL --device $mdc_for_mdt2 deactivate ||
5678                 error "set $mdc_for_mdt2 deactivate failed"
5679
5680         mkdir $DIR/$tdir || error "mkdir fail"
5681         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
5682                 error "create remote dir succeed"
5683
5684         rm -rf $DIR/$tdir || error "delete dir fail"
5685
5686         cleanup || error "cleanup failed with $?"
5687 }
5688 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
5689
5690 test_70e() {
5691         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5692
5693         [ "$MDS1_VERSION" -ge $(version_code 2.7.62) ] ||
5694                 skip "Need MDS version at least 2.7.62"
5695
5696         reformat || error "reformat failed with $?"
5697
5698         load_modules
5699
5700         local mdsdev=$(mdsdevname 1)
5701         local ostdev=$(ostdevname 1)
5702         local mdsvdev=$(mdsvdevname 1)
5703         local ostvdev=$(ostvdevname 1)
5704         local opts_mds="$(mkfs_opts mds1 $mdsdev) --reformat $mdsdev $mdsvdev"
5705         local opts_ost="$(mkfs_opts ost1 $ostdev) --reformat $ostdev $ostvdev"
5706
5707         if ! combined_mgs_mds ; then
5708                 start_mgs
5709         fi
5710
5711         add mds1 $opts_mds || error "add mds1 failed"
5712         start_mdt 1 || error "start mdt1 failed"
5713         add ost1 $opts_ost || error "add ost1 failed"
5714         start_ost || error "start ost failed"
5715         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5716
5717         local soc=$(do_facet mds1 "$LCTL get_param -n \
5718                     mdt.*MDT0000.sync_lock_cancel")
5719         [ $soc == "never" ] || error "SoC enabled on single MDS"
5720
5721         for i in $(seq 2 $MDSCOUNT); do
5722                 mdsdev=$(mdsdevname $i)
5723                 mdsvdev=$(mdsvdevname $i)
5724                 opts_mds="$(mkfs_opts mds$i $mdsdev) --reformat $mdsdev \
5725                           $mdsvdev"
5726                 add mds$i $opts_mds || error "add mds$i failed"
5727                 start_mdt $i || error "start mdt$i fail"
5728         done
5729
5730         wait_dne_interconnect
5731
5732         for i in $(seq $MDSCOUNT); do
5733                 soc=$(do_facet mds$i "$LCTL get_param -n \
5734                         mdt.*MDT000$((i - 1)).sync_lock_cancel")
5735                 [ $soc == "blocking" ] || error "SoC not enabled on DNE"
5736         done
5737
5738         for i in $(seq 2 $MDSCOUNT); do
5739                 stop_mdt $i || error "stop mdt$i fail"
5740         done
5741         soc=$(do_facet mds1 "$LCTL get_param -n \
5742                 mdt.*MDT0000.sync_lock_cancel")
5743         [ $soc == "never" ] || error "SoC enabled on single MDS"
5744         umount_client $MOUNT -f > /dev/null
5745
5746         cleanup || error "cleanup failed with $?"
5747 }
5748 run_test 70e "Sync-on-Cancel will be enabled by default on DNE"
5749
5750 test_71a() {
5751         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5752         if combined_mgs_mds; then
5753                 skip "needs separate MGS/MDT"
5754         fi
5755         local MDTIDX=1
5756
5757         start_mdt 1 || error "MDT0 start fail"
5758         start_ost || error "OST0 start fail"
5759         for num in $(seq 2 $MDSCOUNT); do
5760                 start_mdt $num || return
5761         done
5762
5763         start_ost2 || error "OST1 start fail"
5764
5765         mount_client $MOUNT || error "mount client fails"
5766
5767         mkdir $DIR/$tdir || error "mkdir fail"
5768         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5769                 error "create remote dir succeed"
5770
5771         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5772         rm -rf $DIR/$tdir || error "delete dir fail"
5773
5774         umount_client $MOUNT || error "umount_client failed"
5775         stop_mds || error "MDS stop fail"
5776         stop_ost || error "OST0 stop fail"
5777         stop_ost2 || error "OST1 stop fail"
5778 }
5779 run_test 71a "start MDT0 OST0, MDT1, OST1"
5780
5781 test_71b() {
5782         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5783         if combined_mgs_mds; then
5784                 skip "needs separate MGS/MDT"
5785         fi
5786         local MDTIDX=1
5787
5788         for num in $(seq 2 $MDSCOUNT); do
5789                 start_mdt $num || return
5790         done
5791         start_ost || error "OST0 start fail"
5792         start_mdt 1 || error "MDT0 start fail"
5793         start_ost2 || error "OST1 start fail"
5794
5795         mount_client $MOUNT || error "mount client fails"
5796
5797         mkdir $DIR/$tdir || error "mkdir fail"
5798         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5799                 error "create remote dir succeed"
5800
5801         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5802         rm -rf $DIR/$tdir || error "delete dir fail"
5803
5804         umount_client $MOUNT || error "umount_client failed"
5805         stop_mds || error "MDT0 stop fail"
5806         stop_ost || error "OST0 stop fail"
5807         stop_ost2 || error "OST1 stop fail"
5808 }
5809 run_test 71b "start MDT1, OST0, MDT0, OST1"
5810
5811 test_71c() {
5812         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5813         combined_mgs_mds && skip "needs separate MGS/MDT"
5814
5815         local MDTIDX=1
5816
5817         start_ost || error "OST0 start fail"
5818         start_ost2 || error "OST1 start fail"
5819         for num in $(seq 2 $MDSCOUNT); do
5820                 start_mdt $num || return
5821         done
5822         start_mdt 1 || error "MDT0 start fail"
5823
5824         mount_client $MOUNT || error "mount client fails"
5825
5826         mkdir $DIR/$tdir || error "mkdir fail"
5827         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5828                 error "create remote dir succeed"
5829
5830         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5831         rm -rf $DIR/$tdir || error "delete dir fail"
5832
5833         umount_client $MOUNT || error "umount_client failed"
5834         stop_mds || error "MDS stop fail"
5835         stop_ost || error "OST0 stop fail"
5836         stop_ost2 || error "OST1 stop fail"
5837
5838 }
5839 run_test 71c "start OST0, OST1, MDT1, MDT0"
5840
5841 test_71d() {
5842         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5843         combined_mgs_mds && skip "needs separate MGS/MDT"
5844
5845         local MDTIDX=1
5846
5847         start_ost || error "OST0 start fail"
5848         for num in $(seq 2 $MDSCOUNT); do
5849                 start_mdt $num || return
5850         done
5851         start_mdt 1 || error "MDT0 start fail"
5852         start_ost2 || error "OST1 start fail"
5853
5854         mount_client $MOUNT || error "mount client fails"
5855
5856         mkdir $DIR/$tdir || error "mkdir fail"
5857         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5858                         error "create remote dir succeed"
5859
5860         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5861         rm -rf $DIR/$tdir || error "delete dir fail"
5862
5863         umount_client $MOUNT || error "umount_client failed"
5864         stop_mds || error "MDS stop fail"
5865         stop_ost || error "OST0 stop fail"
5866         stop_ost2 || error "OST1 stop fail"
5867
5868 }
5869 run_test 71d "start OST0, MDT1, MDT0, OST1"
5870
5871 test_71e() {
5872         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
5873         combined_mgs_mds && skip "needs separate MGS/MDT"
5874
5875         local MDTIDX=1
5876
5877         start_ost || error "OST0 start fail"
5878         for num in $(seq 2 $MDSCOUNT); do
5879                 start_mdt $num || return
5880         done
5881         start_ost2 || error "OST1 start fail"
5882         start_mdt 1 || error "MDT0 start fail"
5883
5884         mount_client $MOUNT || error "mount client fails"
5885
5886         mkdir $DIR/$tdir || error "mkdir fail"
5887         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5888                 error "create remote dir succeed"
5889
5890         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5891         rm -rf $DIR/$tdir || error "delete dir fail"
5892
5893         umount_client $MOUNT || error "umount_client failed"
5894         stop_mds || error "MDS stop fail"
5895         stop_ost || error "OST0 stop fail"
5896         stop_ost2 || error "OST1 stop fail"
5897
5898 }
5899 run_test 71e "start OST0, MDT1, OST1, MDT0"
5900
5901 test_72() { #LU-2634
5902         [ "$mds1_FSTYPE" != ldiskfs ] &&
5903                 skip "ldiskfs only test"
5904
5905         local mdsdev=$(mdsdevname 1)
5906         local ostdev=$(ostdevname 1)
5907         local cmd="$E2FSCK -fnvd $mdsdev"
5908         local fn=3
5909         local add_options
5910
5911         cleanup
5912         load_modules
5913
5914         if combined_mgs_mds; then
5915                 add_options='--reformat'
5916         else
5917                 add_options='--reformat --replace'
5918         fi
5919
5920         #tune MDT with "-O extents"
5921
5922         for num in $(seq $MDSCOUNT); do
5923                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
5924                         $add_options $(mdsdevname $num) $(mdsvdevname $num) ||
5925                         error "add mds $num failed"
5926                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
5927                         error "$TUNE2FS failed on mds${num}"
5928         done
5929
5930         add ost1 $(mkfs_opts ost1 $ostdev) $add_options $ostdev ||
5931                 error "add $ostdev failed"
5932         start_mds || error "start mds failed"
5933         start_ost || error "start ost failed"
5934         mount_client $MOUNT || error "mount client failed"
5935
5936         #create some short symlinks
5937         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5938         createmany -o $DIR/$tdir/$tfile-%d $fn
5939         echo "create $fn short symlinks"
5940         for i in $(seq -w 1 $fn); do
5941                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
5942         done
5943         ls -al $MOUNT
5944
5945         #umount
5946         umount_client $MOUNT || error "umount client failed"
5947         stop_mds || error "stop mds failed"
5948         stop_ost || error "stop ost failed"
5949
5950         #run e2fsck
5951         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
5952 }
5953 run_test 72 "test fast symlink with extents flag enabled"
5954
5955 test_73() { #LU-3006
5956         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
5957         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
5958                 error "1st tunefs failed"
5959         start_mgsmds || error "start mds failed"
5960         start_ost || error "start ost failed"
5961         mount_client $MOUNT || error "mount client failed"
5962         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
5963                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
5964         umount_client $MOUNT || error "umount client failed"
5965         stop_ost
5966         stop_mds
5967 }
5968 run_test 73 "failnode to update from mountdata properly"
5969
5970 test_75() { # LU-2374
5971         [[ "$MDS1_VERSION" -lt $(version_code 2.4.1) ]] &&
5972                 skip "Need MDS version at least 2.4.1"
5973
5974         local index=0
5975         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
5976                 --replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
5977         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
5978                 --replace --reformat $(ostdevname 1) $(ostvdevname 1)"
5979
5980         #check with default parameters
5981         add mds1 $opts_mds || error "add mds1 failed for default params"
5982         add ost1 $opts_ost || error "add ost1 failed for default params"
5983
5984         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
5985         opts_mds=$(echo $opts_mds |
5986                    sed -e "s/--index=$index/--index=$index --mdt/")
5987         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
5988         opts_ost=$(echo $opts_ost |
5989                    sed -e "s/--index=$index/--index=$index --ost/")
5990
5991         add mds1 $opts_mds || error "add mds1 failed for new params"
5992         add ost1 $opts_ost || error "add ost1 failed for new params"
5993
5994         reformat_and_config
5995         return 0
5996 }
5997 run_test 75 "The order of --index should be irrelevant"
5998
5999 test_76a() {
6000         [[ "$MGS_VERSION" -ge $(version_code 2.4.52) ]] ||
6001                 skip "Need MDS version at least 2.4.52"
6002
6003         setup
6004         local MDMB_PARAM="osc.*.max_dirty_mb"
6005         echo "Change MGS params"
6006         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
6007                 head -1)
6008         echo "max_dirty_mb: $MAX_DIRTY_MB"
6009         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB - 10))
6010         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
6011         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
6012         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
6013                 head -1" $NEW_MAX_DIRTY_MB
6014         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
6015         echo "$MAX_DIRTY_MB"
6016         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
6017                 error "error while apply max_dirty_mb"
6018
6019         echo "Check the value is stored after remount"
6020         stopall
6021         setupall
6022         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
6023                 head -1" $NEW_MAX_DIRTY_MB
6024         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
6025         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
6026                 error "max_dirty_mb is not saved after remount"
6027
6028         echo "Change OST params"
6029         CLIENT_PARAM="obdfilter.*.client_cache_count"
6030         local CLIENT_CACHE_COUNT
6031         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6032                 head -1)
6033         echo "client_cache_count: $CLIENT_CACHE_COUNT"
6034         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
6035         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
6036         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
6037         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
6038                 head -1" $NEW_CLIENT_CACHE_COUNT
6039         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6040                 head -1)
6041         echo "$CLIENT_CACHE_COUNT"
6042         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
6043                 error "error while apply client_cache_count"
6044
6045         echo "Check the value is stored after remount"
6046         stopall
6047         setupall
6048         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
6049                 head -1" $NEW_CLIENT_CACHE_COUNT
6050         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
6051                 head -1)
6052         echo "$CLIENT_CACHE_COUNT"
6053         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
6054                 error "client_cache_count is not saved after remount"
6055         stopall
6056 }
6057 run_test 76a "set permanent params with lctl across mounts"
6058
6059 test_76b() { # LU-4783
6060         [[ "$MGS_VERSION" -ge $(version_code 2.5.57) ]] ||
6061                 skip "Need MGS version at least 2.5.57"
6062         stopall
6063         setupall
6064         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
6065                 error "start params log failed"
6066         stopall
6067 }
6068 run_test 76b "verify params log setup correctly"
6069
6070 test_76c() {
6071         [[ "$MGS_VERSION" -ge $(version_code 2.8.54) ]] ||
6072                 skip "Need MDS version at least 2.4.52"
6073         setupall
6074         local MASK_PARAM="mdd.*.changelog_mask"
6075         echo "Change changelog_mask"
6076         do_facet mgs $LCTL set_param -P $MASK_PARAM=-CLOSE ||
6077                 error "Can't change changlog_mask"
6078         wait_update $(facet_host mds) "$LCTL get_param -n $MASK_PARAM |
6079                 grep 'CLOSE'" ""
6080
6081         echo "Check the value is stored after mds remount"
6082         stop_mds || error "Failed to stop MDS"
6083         start_mds || error "Failed to start MDS"
6084         local CHANGELOG_MASK=$(do_facet mgs $LCTL get_param -n $MASK_PARAM)
6085         echo $CHANGELOG_MASK | grep CLOSE > /dev/null &&
6086                 error "changelog_mask is not changed"
6087
6088         stopall
6089 }
6090 run_test 76c "verify changelog_mask is applied with lctl set_param -P"
6091
6092 test_76d() { #LU-9399
6093         setupall
6094
6095         local xattr_cache="llite.*.xattr_cache"
6096         local cmd="$LCTL get_param -n $xattr_cache | head -1"
6097         local new=$((($(eval $cmd) + 1) % 2))
6098
6099         echo "lctl set_param -P llite.*.xattr_cache=$new"
6100         do_facet mgs $LCTL set_param -P $xattr_cache=$new ||
6101                 error "Can't change xattr_cache"
6102         wait_update $HOSTNAME "$cmd" "$new"
6103
6104         echo "Check $xattr_cache on client $MOUNT"
6105         umount_client $MOUNT || error "umount $MOUNT failed"
6106         mount_client $MOUNT || error "mount $MOUNT failed"
6107         [ $(eval $cmd) -eq $new ] ||
6108                 error "$xattr_cache != $new on client $MOUNT"
6109
6110         echo "Check $xattr_cache on the new client $MOUNT2"
6111         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6112         [ $(eval $cmd) -eq $new ] ||
6113                 error "$xattr_cache != $new on client $MOUNT2"
6114         umount_client $MOUNT2 || error "umount $MOUNT2 failed"
6115
6116         stopall
6117 }
6118 run_test 76d "verify llite.*.xattr_cache can be set by 'lctl set_param -P' correctly"
6119
6120 test_77() { # LU-3445
6121         [[ "$MDS1_VERSION" -ge $(version_code 2.8.55) ]] ||
6122                 skip "Need MDS version 2.8.55+ "
6123
6124         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
6125                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
6126                 skip_env "mixed loopback and real device not working"
6127         fi
6128
6129         local fs2mdsdev=$(mdsdevname 1_2)
6130         local fs2ostdev=$(ostdevname 1_2)
6131         local fs2mdsvdev=$(mdsvdevname 1_2)
6132         local fs2ostvdev=$(ostvdevname 1_2)
6133         local fsname=test1234
6134         local mgsnid
6135         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
6136
6137         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
6138
6139         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
6140                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
6141         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
6142                 error "start fs2mds failed"
6143
6144         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
6145         mgsnid="0.0.0.0@tcp,$mgsnid,$mgsnid:$mgsnid"
6146
6147         add fs2ost --mgsnode=$mgsnid $(mkfs_opts ost1 $fs2ostdev) \
6148                 --failnode=$failnid --fsname=$fsname \
6149                 --reformat $fs2ostdev $fs2ostvdev ||
6150                         error "add fs2ost failed"
6151         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
6152
6153         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
6154         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
6155         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
6156         cleanup_fs2
6157 }
6158 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
6159
6160 test_78() {
6161         [[ "$mds1_FSTYPE" != ldiskfs ||
6162            "$ost1_FSTYPE" != ldiskfs ]] &&
6163                 skip "ldiskfs only test"
6164
6165         # reformat the Lustre filesystem with a smaller size
6166         local saved_MDSCOUNT=$MDSCOUNT
6167         local saved_MDSSIZE=$MDSSIZE
6168         local saved_OSTCOUNT=$OSTCOUNT
6169         local saved_OSTSIZE=$OSTSIZE
6170         MDSCOUNT=1
6171         OSTCOUNT=1
6172         MDSSIZE=$((MDSSIZE - 20000))
6173         OSTSIZE=$((OSTSIZE - 20000))
6174         reformat || error "(1) reformat Lustre filesystem failed"
6175         MDSSIZE=$saved_MDSSIZE
6176         OSTSIZE=$saved_OSTSIZE
6177
6178         # mount the Lustre filesystem
6179         setup_noconfig || error "(2) setup Lustre filesystem failed"
6180
6181         # create some files
6182         log "create test files"
6183         local i
6184         local file
6185         local num_files=100
6186
6187         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
6188         $LFS df; $LFS df -i
6189         for i in $(seq $num_files); do
6190                 file=$MOUNT/$tdir/$tfile-$i
6191                 dd if=/dev/urandom of=$file count=1 bs=1M || {
6192                         $LCTL get_param osc.*.cur*grant*
6193                         $LFS df; $LFS df -i;
6194                         # stop creating files if there is no more space
6195                         if [ ! -e $file ]; then
6196                                 num_files=$((i - 1))
6197                                 break
6198                         fi
6199
6200                         $LFS getstripe -v $file
6201                         local ost_idx=$(LFS getstripe -i $file)
6202                         do_facet ost$((ost_idx + 1)) \
6203                                 $LCTL get_param obdfilter.*.*grant*
6204                         error "(4) create $file failed"
6205                 }
6206         done
6207
6208         # unmount the Lustre filesystem
6209         cleanup || error "(5) cleanup Lustre filesystem failed"
6210
6211         # run e2fsck on the MDT and OST devices
6212         local mds_host=$(facet_active_host $SINGLEMDS)
6213         local ost_host=$(facet_active_host ost1)
6214         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
6215         local ost_dev=$(ostdevname 1)
6216
6217         run_e2fsck $mds_host $mds_dev "-y"
6218         run_e2fsck $ost_host $ost_dev "-y"
6219
6220         # get the original block count of the MDT and OST filesystems
6221         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
6222         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
6223
6224         # expand the MDT and OST filesystems to the device size
6225         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
6226         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
6227
6228         # run e2fsck on the MDT and OST devices again
6229         run_e2fsck $mds_host $mds_dev "-y"
6230         run_e2fsck $ost_host $ost_dev "-y"
6231
6232         # mount the Lustre filesystem
6233         setup
6234
6235         # check the files
6236         log "check files after expanding the MDT and OST filesystems"
6237         for i in $(seq $num_files); do
6238                 file=$MOUNT/$tdir/$tfile-$i
6239                 $CHECKSTAT -t file -s 1048576 $file ||
6240                         error "(6) checkstat $file failed"
6241         done
6242
6243         # create more files
6244         log "create more files after expanding the MDT and OST filesystems"
6245         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
6246                 file=$MOUNT/$tdir/$tfile-$i
6247                 dd if=/dev/urandom of=$file count=1 bs=1M ||
6248                         error "(7) create $file failed"
6249         done
6250
6251         # unmount the Lustre filesystem
6252         cleanup || error "(8) cleanup Lustre filesystem failed"
6253
6254         # run e2fsck on the MDT and OST devices
6255         run_e2fsck $mds_host $mds_dev "-y"
6256         run_e2fsck $ost_host $ost_dev "-y"
6257
6258         # get the maximum block count of the MDT and OST filesystems
6259         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
6260         local ost_max_blks=$(get_block_count ost1 $ost_dev)
6261
6262         # get the minimum block count of the MDT and OST filesystems
6263         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
6264                                 grep minimum | sed -e 's/^.*filesystem: //g')
6265         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
6266                                 grep minimum | sed -e 's/^.*filesystem: //g')
6267
6268         # shrink the MDT and OST filesystems to a smaller size
6269         local shrunk=false
6270         local new_blks
6271         local base_blks
6272         if [[ $mds_max_blks -gt $mds_min_blks &&
6273               $mds_max_blks -gt $mds_orig_blks ]]; then
6274                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
6275                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
6276                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
6277                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
6278                         error "shrink $SINGLEMDS to $new_blks failed"
6279                 shrunk=true
6280         fi
6281
6282         if [[ $ost_max_blks -gt $ost_min_blks &&
6283               $ost_max_blks -gt $ost_orig_blks ]]; then
6284                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
6285                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
6286                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
6287                 run_resize2fs ost1 $ost_dev $new_blks ||
6288                         error "shrink ost1 to $new_blks failed"
6289                 shrunk=true
6290         fi
6291
6292         # check whether the MDT or OST filesystem was shrunk or not
6293         if ! $shrunk; then
6294                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
6295                 reformat_and_config ||
6296                         error "(10) reformat Lustre filesystem failed"
6297                 return 0
6298         fi
6299
6300         # run e2fsck on the MDT and OST devices again
6301         run_e2fsck $mds_host $mds_dev "-y"
6302         run_e2fsck $ost_host $ost_dev "-y"
6303
6304         # mount the Lustre filesystem again
6305         setup
6306
6307         # check the files
6308         log "check files after shrinking the MDT and OST filesystems"
6309         for i in $(seq $((num_files + 10))); do
6310                 file=$MOUNT/$tdir/$tfile-$i
6311                 $CHECKSTAT -t file -s 1048576 $file ||
6312                         error "(11) checkstat $file failed"
6313         done
6314
6315         # unmount and reformat the Lustre filesystem
6316         cleanup || error "(12) cleanup Lustre filesystem failed"
6317         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
6318
6319         MDSCOUNT=$saved_MDSCOUNT
6320         OSTCOUNT=$saved_OSTCOUNT
6321         reformat_and_config || error "(14) reformat Lustre filesystem failed"
6322 }
6323 run_test 78 "run resize2fs on MDT and OST filesystems"
6324
6325 test_79() { # LU-4227
6326         [[ "$MDS1_VERSION" -ge $(version_code 2.5.59) ]] ||
6327                 skip "Need MDS version at least 2.5.59"
6328
6329         local mdsdev1=$(mdsdevname 1)
6330         local mdsvdev1=$(mdsvdevname 1)
6331         local mdsdev2=$(mdsdevname 2)
6332         local mdsvdev2=$(mdsvdevname 2)
6333         local ostdev1=$(ostdevname 1)
6334         local ostvdev1=$(ostvdevname 1)
6335         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
6336         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
6337         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
6338         local mgsnode_opt
6339
6340         # remove --mgs/--mgsnode from mkfs.lustre options
6341         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
6342
6343         mgsnode_opt=$(echo $opts_mds2 |
6344                 awk '{ for ( i = 1; i < NF; i++ )
6345                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
6346         [ -n "$mgsnode_opt" ] &&
6347                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
6348
6349         mgsnode_opt=$(echo $opts_ost1 |
6350                 awk '{ for ( i = 1; i < NF; i++ )
6351                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
6352         [ -n "$mgsnode_opt" ] &&
6353                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
6354         load_modules
6355         # -MGS, format a mdt without --mgs option
6356         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
6357                 error "Must specify --mgs when formatting mdt combined with mgs"
6358
6359         # +MGS, format a mdt/ost without --mgsnode option
6360         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
6361                 > /dev/null || error "start mds1 failed"
6362         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
6363                 error "Must specify --mgsnode when formatting a mdt"
6364         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
6365                 error "Must specify --mgsnode when formatting an ost"
6366
6367         reformat_and_config
6368 }
6369 run_test 79 "format MDT/OST without mgs option (should return errors)"
6370
6371 test_80() {
6372         start_mds || error "Failed to start MDT"
6373         start_ost || error "Failed to start OST1"
6374         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
6375 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
6376         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
6377         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
6378         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
6379         sleep 30
6380         start_ost2 || error "Failed to start OST2"
6381
6382         do_facet ost1 "$LCTL set_param fail_loc=0"
6383         stop_ost2
6384         stop_ost
6385         stop_mds
6386 }
6387 run_test 80 "mgc import reconnect race"
6388
6389 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
6390 save_ostindex() {
6391         local new_ostcount=$1
6392         saved_ostcount=$OSTCOUNT
6393         OSTCOUNT=$new_ostcount
6394
6395         local i
6396         local index
6397         for i in $(seq $OSTCOUNT); do
6398                 index=OSTINDEX$i
6399                 eval saved_ostindex$i=${!index}
6400                 eval OSTINDEX$i=""
6401         done
6402 }
6403
6404 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
6405 restore_ostindex() {
6406         trap 0
6407
6408         local i
6409         local index
6410         for i in $(seq $OSTCOUNT); do
6411                 index=saved_ostindex$i
6412                 eval OSTINDEX$i=${!index}
6413         done
6414         OSTCOUNT=$saved_ostcount
6415
6416         reformat
6417         if ! combined_mgs_mds ; then
6418                 start_mgs
6419         fi
6420 }
6421
6422 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
6423 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
6424 # assigned index and ensures we can mount such a formatted file system
6425 test_81() { # LU-4665
6426         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6427                 skip "Need MDS version at least 2.6.54"
6428         [[ $OSTCOUNT -ge 3 ]] || skip_env "needs >= 3 OSTs"
6429
6430         stopall
6431
6432         # Each time RANDOM is referenced, a random integer between 0 and 32767
6433         # is generated.
6434         local i
6435         local saved_ostindex1=$OSTINDEX1
6436         for i in 65535 $((RANDOM + 65536)); do
6437                 echo -e "\nFormat ost1 with --index=$i, should fail"
6438                 OSTINDEX1=$i
6439                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
6440                    $(ostdevname 1) $(ostvdevname 1); then
6441                         OSTINDEX1=$saved_ostindex1
6442                         error "format ost1 with --index=$i should fail"
6443                 fi
6444         done
6445         OSTINDEX1=$saved_ostindex1
6446
6447         save_ostindex 3
6448
6449         # Format OSTs with random sparse indices.
6450         trap "restore_ostindex" EXIT
6451         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
6452         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
6453
6454         # Setup and check Lustre filesystem.
6455         start_mgsmds || error "start_mgsmds failed"
6456         for i in $(seq $OSTCOUNT); do
6457                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6458                         error "start ost$i failed"
6459         done
6460
6461         mount_client $MOUNT || error "mount client $MOUNT failed"
6462         check_mount || error "check client $MOUNT failed"
6463
6464         # Check max_easize.
6465         local max_easize=$($LCTL get_param -n llite.*.max_easize)
6466         # 65452 is XATTR_SIZE_MAX less ldiskfs ea overhead
6467         if large_xattr_enabled; then
6468                 [[ $max_easize -ge 65452 ]] ||
6469                         error "max_easize is $max_easize, should be at least 65452 bytes"
6470         else
6471                 # LU-11868
6472                 # 4012 is 4096 less ldiskfs ea overhead
6473                 [[ $max_easize -ge 4012 ]] ||
6474                         error "max_easize is $max_easize, should be at least 4012 bytes"
6475         fi
6476
6477         restore_ostindex
6478 }
6479 run_test 81 "sparse OST indexing"
6480
6481 # Here we exercise the stripe placement functionality on a file system that
6482 # has formatted the OST with a random index. With the file system the following
6483 # functionality is tested:
6484 #
6485 # 1. Creating a new file with a specific stripe layout.
6486 #
6487 # 2. Modifiy a existing empty file with a specific stripe layout.
6488 #
6489 # 3. Ensure we fail to set the stripe layout of a file that already has one.
6490 #
6491 # 4. If ost-index is defined we need to ensure it is the first entry in the
6492 #    ost index list returned by lfs getstripe.
6493 #
6494 # 5. Lastly ensure this functionality fails with directories.
6495 test_82a() { # LU-4665
6496         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6497                 skip "Need MDS version at least 2.6.54"
6498         [[ $OSTCOUNT -ge 3 ]] || skip_env "needs >= 3 OSTs"
6499
6500         stopall
6501
6502         save_ostindex 3
6503
6504         # Format OSTs with random sparse indices.
6505         local i
6506         local index
6507         local ost_indices
6508         local LOV_V1_INSANE_STRIPE_COUNT=65532
6509         for i in $(seq $OSTCOUNT); do
6510                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
6511                 ost_indices+=" $index"
6512         done
6513         ost_indices=$(comma_list $ost_indices)
6514
6515         stack_trap "restore_ostindex" EXIT
6516         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
6517         OST_INDEX_LIST=[$ost_indices] formatall
6518
6519         # Setup Lustre filesystem.
6520         start_mgsmds || error "start_mgsmds failed"
6521         for i in $(seq $OSTCOUNT); do
6522                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6523                         error "start ost$i failed"
6524         done
6525
6526         # Collect debug information - start of test
6527         do_nodes $(comma_list $(mdts_nodes)) \
6528                    $LCTL get_param osp.*.prealloc_*_id
6529
6530         mount_client $MOUNT || error "mount client $MOUNT failed"
6531         wait_osts_up
6532
6533         $LFS df $MOUNT
6534         check_lfs_df_ret_val $? || error "$LFS df $MOUNT failed"
6535         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6536
6537         stack_trap "do_nodes $(comma_list $(mdts_nodes)) \
6538                    $LCTL get_param osp.*.prealloc_*_id" EXIT
6539
6540         # 1. If the file does not exist, new file will be created
6541         #    with specified OSTs.
6542         local file=$DIR/$tdir/$tfile-1
6543         local cmd="$LFS setstripe -o $ost_indices $file"
6544         echo -e "\n$cmd"
6545         eval $cmd || error "$cmd failed"
6546         check_stripe_count $file $OSTCOUNT
6547         check_obdidx $file $ost_indices
6548         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6549                 error "write $file failed"
6550
6551         # 2. If the file already exists and is an empty file, the file
6552         #    will be attached with specified layout.
6553         file=$DIR/$tdir/$tfile-2
6554         mcreate $file || error "mcreate $file failed"
6555         cmd="$LFS setstripe -o $ost_indices $file"
6556         echo -e "\n$cmd"
6557         eval $cmd || error "$cmd failed"
6558         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6559                 error "write $file failed"
6560         check_stripe_count $file $OSTCOUNT
6561         check_obdidx $file $ost_indices
6562
6563         # 3. If the file already has a valid layout attached, the command
6564         #    should fail with EBUSY.
6565         echo -e "\n$cmd"
6566         eval $cmd && error "stripe is already set on $file, $cmd should fail"
6567
6568         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
6569         #    be in the OST indices list.
6570         local start_ost_idx=${ost_indices##*,}
6571         file=$DIR/$tdir/$tfile-3
6572         cmd="$LFS setstripe -o $ost_indices -i $start_ost_idx $file"
6573         echo -e "\n$cmd"
6574         eval $cmd || error "$cmd failed"
6575         check_stripe_count $file $OSTCOUNT
6576         check_obdidx $file $ost_indices
6577         check_start_ost_idx $file $start_ost_idx
6578
6579         file=$DIR/$tdir/$tfile-4
6580         cmd="$LFS setstripe"
6581         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
6582         cmd+=" -i $start_ost_idx $file"
6583         echo -e "\n$cmd"
6584         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
6585
6586         # 5. Specifying OST indices for directory should succeed.
6587         local dir=$DIR/$tdir/$tdir
6588         mkdir $dir || error "mkdir $dir failed"
6589         cmd="$LFS setstripe -o $ost_indices $dir"
6590         if [ "$MDS1_VERSION" -gt $(version_code 2.11.53) ] &&
6591                 [ "$CLIENT_VERSION" -gt $(version_code 2.11.53) ]; then
6592                 echo -e "\n$cmd"
6593                 eval $cmd || error "unable to specify OST indices on directory"
6594         else
6595                 echo "need MDS+client version at least 2.11.53"
6596         fi
6597
6598         restore_ostindex
6599 }
6600 run_test 82a "specify OSTs for file (succeed) or directory (succeed)"
6601
6602 cleanup_82b() {
6603         trap 0
6604
6605         # Remove OSTs from a pool and destroy the pool.
6606         destroy_pool $ost_pool || true
6607
6608         restore_ostindex
6609 }
6610
6611 # Test 82b is run to ensure that if the user supplies a pool with a specific
6612 # stripe layout that it behaves proprerly. It should fail in the case that
6613 # the supplied OST index list points to OSTs not contained in the user
6614 # supplied pool.
6615 test_82b() { # LU-4665
6616         [[ "$MDS1_VERSION" -ge $(version_code 2.6.54) ]] ||
6617                 skip "Need MDS version at least 2.6.54"
6618         [[ $OSTCOUNT -ge 4 ]] || skip_env "needs >= 4 OSTs"
6619
6620         stopall
6621
6622         save_ostindex 4
6623
6624         # Format OSTs with random sparse indices.
6625         local i
6626         local index
6627         local ost_indices
6628         local LOV_V1_INSANE_STRIPE_COUNT=65532
6629         for i in $(seq $OSTCOUNT); do
6630                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
6631                 ost_indices+=" $index"
6632         done
6633         ost_indices=$(comma_list $ost_indices)
6634
6635         trap "restore_ostindex" EXIT
6636         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
6637         OST_INDEX_LIST=[$ost_indices] formatall
6638
6639         # Setup Lustre filesystem.
6640         start_mgsmds || error "start_mgsmds failed"
6641         for i in $(seq $OSTCOUNT); do
6642                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
6643                         error "start ost$i failed"
6644         done
6645
6646         mount_client $MOUNT || error "mount client $MOUNT failed"
6647
6648         wait_osts_up
6649         $LFS df $MOUNT
6650         check_lfs_df_ret_val $? || error "$LFS df $MOUNT failed"
6651         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6652
6653         # Create a new pool and add OSTs into it.
6654         local ost_pool=$FSNAME.$TESTNAME
6655         create_pool $ost_pool || error "create OST pool $ost_pool failed"
6656
6657         trap - EXIT
6658         trap "cleanup_82b" EXIT
6659
6660         local ost_idx_in_list=${ost_indices##*,}
6661         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
6662                                 $ost_idx_in_list)
6663
6664         local ost_targets="$FSNAME-OST["
6665         for i in ${ost_idx_in_pool//,/ }; do
6666                 ost_targets=$ost_targets$(printf "%04x," $i)
6667         done
6668         ost_targets="${ost_targets%,}]"
6669
6670         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
6671                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
6672                                  sort -u | tr '\n' ' ')
6673
6674         local cmd="$LCTL pool_add $ost_pool $ost_targets"
6675         do_facet mgs $cmd || error "$cmd failed"
6676         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
6677                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
6678                                         error "wait_update $ost_pool failed"
6679         wait_update_facet $SINGLEMDS "$LCTL pool_list $ost_pool | wc -l" 4 ||
6680                                 error "wait_update pool_list $ost_pool failed"
6681
6682         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
6683         # then the OSTs must be the members of the pool.
6684         local file=$DIR/$tdir/$tfile
6685         cmd="$LFS setstripe -p $ost_pool -o $ost_idx_in_list $file"
6686         echo -e "\n$cmd"
6687         eval $cmd && error "OST with index $ost_idx_in_list should be" \
6688                            "in OST pool $ost_pool"
6689
6690         # Only select OST $ost_idx_in_list from $ost_pool for file.
6691         ost_idx_in_list=${ost_idx_in_pool#*,}
6692         cmd="$LFS setstripe -p $ost_pool -o $ost_idx_in_list $file"
6693         echo -e "\n$cmd"
6694         eval $cmd || error "$cmd failed"
6695         cmd="$LFS getstripe $file"
6696         echo -e "\n$cmd"
6697         eval $cmd || error "$cmd failed"
6698         check_stripe_count $file 2
6699         check_obdidx $file $ost_idx_in_list
6700         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6701                 error "write $file failed"
6702
6703         cleanup_82b
6704 }
6705 run_test 82b "specify OSTs for file with --pool and --ost-list options"
6706
6707 test_83() {
6708         [[ "$OST1_VERSION" -ge $(version_code 2.6.91) ]] ||
6709                 skip "Need OST version at least 2.6.91"
6710         if [ "$ost1_FSTYPE" != ldiskfs ]; then
6711                 skip "ldiskfs only test"
6712         fi
6713
6714         local dev
6715         local ostmnt
6716         local fstype
6717         local mnt_opts
6718
6719         dev=$(ostdevname 1)
6720         ostmnt=$(facet_mntpt ost1)
6721
6722         # Mount the OST as an ldiskfs filesystem.
6723         log "mount the OST $dev as a $ost1_FSTYPE filesystem"
6724         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
6725                 --reformat $dev > /dev/null ||
6726                 error "format ost1 error"
6727
6728         if ! test -b $dev; then
6729                 mnt_opts=$(csa_add "$OST_MOUNT_FS_OPTS" -o loop)
6730         fi
6731         echo "mnt_opts $mnt_opts"
6732         do_facet ost1 mount -t "$ost1_FSTYPE" $dev \
6733                 $ostmnt $mnt_opts
6734         # Run llverfs on the mounted ldiskfs filesystem.
6735         # It is needed to get ENOSPACE.
6736         log "run llverfs in partial mode on the OST $ost1_FSTYPE $ostmnt"
6737         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
6738                 "no" || error "run_llverfs error on $ost1_FSTYPE"
6739
6740         # Unmount the OST.
6741         log "unmount the OST $dev"
6742         stop ost1
6743
6744         # Delete file IO_scrub. Later osd_scrub_setup will try to
6745         # create "IO_scrub" but will get ENOSPACE.
6746         writeconf_all
6747         echo "start ost1 service on `facet_active_host ost1`"
6748         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
6749
6750         local err
6751         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
6752         echo "string err $err"
6753         [ -z "$err" ] || error $err
6754         reformat_and_config
6755 }
6756 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
6757 Busy inodes after unmount ..."
6758
6759 test_84() {
6760         local facet=$SINGLEMDS
6761         local num=$(echo $facet | tr -d "mds")
6762         local dev=$(mdsdevname $num)
6763         local time_min=$(recovery_time_min)
6764         local recovery_duration
6765         local completed_clients
6766         local correct_clients
6767         local wrap_up=5
6768
6769         echo "start mds service on $(facet_active_host $facet)"
6770         start_mds \
6771         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
6772                 error "start MDS failed"
6773
6774         start_ost || error "start OST0000 failed"
6775         start_ost2 || error "start OST0001 failed"
6776
6777         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
6778
6779         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
6780         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6781         # make sure new superblock labels are sync'd before disabling writes
6782         sync_all_data
6783         sleep 5
6784
6785         replay_barrier $SINGLEMDS
6786         createmany -o $DIR1/$tfile-%d 1000
6787
6788         # We need to catch the end of recovery window to extend it.
6789         # Skip 5 requests and add delay to request handling.
6790         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
6791         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
6792
6793         facet_failover --fsck $SINGLEMDS || error "failover: $?"
6794         client_up
6795
6796         echo "recovery status"
6797         do_facet $SINGLEMDS \
6798                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
6799
6800         recovery_duration=$(do_facet $SINGLEMDS \
6801                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6802                 awk '/recovery_duration/ { print $2 }')
6803         (( $recovery_duration > $time_min + $wrap_up )) &&
6804                 error "recovery_duration > recovery_time_hard + wrap up"
6805         completed_clients=$(do_facet $SINGLEMDS \
6806                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6807                 awk '/completed_clients/ { print $2 }')
6808
6809         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
6810         [ "$completed_clients" = "${correct_clients}" ] ||
6811                 error "$completed_clients != $correct_clients"
6812
6813         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
6814         umount_client $MOUNT1
6815         umount_client $MOUNT2
6816
6817         stop_ost
6818         stop_ost2
6819         stop_mds
6820 }
6821 run_test 84 "check recovery_hard_time"
6822
6823 test_85() {
6824         [[ "$OST1_VERSION" -ge $(version_code 2.7.55) ]] ||
6825                 skip "Need OST version at least 2.7.55"
6826 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
6827         do_facet ost1 "lctl set_param fail_loc=0x197"
6828         start_ost
6829         stop_ost
6830 }
6831 run_test 85 "osd_ost init: fail ea_fid_set"
6832
6833 cleanup_86() {
6834         trap 0
6835
6836         # ost1 has already registered to the MGS before the reformat.
6837         # So after reformatting it with option "-G", it could not be
6838         # mounted to the MGS. Cleanup the system for subsequent tests.
6839         reformat_and_config
6840 }
6841
6842 test_86() {
6843         [ "$ost1_FSTYPE" = zfs ] &&
6844                 skip "LU-6442: no such mkfs params for ZFS OSTs"
6845         [[ "$MDS1_VERSION" -ge $(version_code 2.7.56) ]] ||
6846                 skip "Need server version newer than 2.7.55"
6847
6848         local NEWSIZE=1024
6849         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6850                 awk '/Flex block group size: / { print $NF; exit; }')
6851
6852         [ "$OLDSIZE" == "$NEWSIZE" ] && skip "$NEWSIZE groups already"
6853
6854         local opts=" -O flex_bg -G $NEWSIZE"
6855         opts=$(OST_FS_MKFS_OPTS+="$opts" mkfs_opts ost1 $(ostdevname 1))
6856         opts+=" --reformat $(ostdevname 1) $(ostvdevname 1)"
6857         echo "params: $opts"
6858
6859         trap cleanup_86 EXIT ERR
6860
6861         stopall
6862         add ost1 $opts || error "add ost1 failed with new params"
6863
6864         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6865                 awk '/Flex block group size: / { print $NF; exit; }')
6866
6867         [[ $FOUNDSIZE == $NEWSIZE ]] ||
6868                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
6869
6870         cleanup_86
6871 }
6872 run_test 86 "Replacing mkfs.lustre -G option"
6873
6874 test_87() { #LU-6544
6875         [[ "$MDS1_VERSION" -ge $(version_code 2.9.51) ]] ||
6876                 skip "Need MDS version at least 2.9.51"
6877         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
6878                 skip "ldiskfs only test"
6879         [[ $OSTCOUNT -gt 59 ]] &&
6880                 skip "Ignore wide striping situation"
6881         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
6882
6883         local mdsdev=$(mdsdevname 1)
6884         local mdsvdev=$(mdsvdevname 1)
6885         local file=$DIR/$tfile
6886         local mntpt=$(facet_mntpt $SINGLEMDS)
6887         local used_xattr_blk=0
6888         local inode_size=${1:-1024}
6889         local left_size=0
6890         local xtest="trusted.test"
6891         local value
6892         local orig
6893         local i
6894         local stripe_cnt=$(($OSTCOUNT + 2))
6895
6896         #Please see ldiskfs_make_lustre() for MDT inode size calculation
6897         if [ $stripe_cnt -gt 16 ]; then
6898                 inode_size=2048
6899         fi
6900         left_size=$(expr $inode_size - \
6901                         156 - \
6902                         32 - \
6903                         32 - 40 \* 3 - 32 \* 3 - $stripe_cnt \* 24 - 16 - 3 -  \
6904                         24 - 16 - 3 - \
6905                         24 - 18 - $(expr length $tfile) - 16 - 4)
6906         if [ $left_size -le 0 ]; then
6907                 echo "No space($left_size) is expected in inode."
6908                 echo "Try 1-byte xattr instead to verify this."
6909                 left_size=1
6910         else
6911                 echo "Estimate: at most $left_size-byte space left in inode."
6912         fi
6913
6914         unload_modules
6915         reformat
6916
6917         if ! combined_mgs_mds ; then
6918                 start_mgs
6919         fi
6920
6921         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$stripe_cnt \
6922                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
6923         start_mdt 1 > /dev/null || error "start mdt1 failed"
6924         for i in $(seq $OSTCOUNT); do
6925                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
6926                         error "start ost$i failed"
6927         done
6928         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
6929         check_mount || error "check client $MOUNT failed"
6930
6931         #set xattr
6932         $LFS setstripe -E 1M -S 1M -c 1 -E 64M -c 1 -E -1 -c -1 $file ||
6933                 error "Create file with 3 components failed"
6934         $TRUNCATE $file $((1024*1024*64+1)) || error "truncate file failed"
6935         i=$($LFS getstripe -I3 -c $file) || error "get 3rd stripe count failed"
6936         if [ $i -ne $OSTCOUNT ]; then
6937                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
6938                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
6939                 echo -n "the expected left space is changed to "
6940                 echo "$left_size bytes at most."
6941         fi
6942         value=$(generate_string $left_size)
6943         setfattr -n $xtest -v $value $file
6944         orig=$(get_xattr_value $xtest $file)
6945         [[ "$orig" != "$value" ]] && error "$xtest changed"
6946
6947         #Verify if inode has some expected space left
6948         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
6949         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
6950         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
6951
6952         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
6953         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
6954                         awk '{ print $1 }')
6955         [[ $used_xattr_blk -eq 0 ]] &&
6956                 error "Please check MDS inode size calculation: \
6957                        more than $left_size-byte space left in inode."
6958         echo "Verified: at most $left_size-byte space left in inode."
6959
6960         unmount_ldiskfs $SINGLEMDS
6961
6962         for i in $(seq $OSTCOUNT); do
6963                 stop ost$i -f || error "stop ost$i failed"
6964         done
6965 }
6966 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
6967
6968 test_88() {
6969         [ "$mds1_FSTYPE" == zfs ] &&
6970                 skip "LU-6662: no implementation for ZFS"
6971
6972         load_modules
6973
6974         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6975                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6976
6977         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6978                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
6979                 error "default mount options is missing"
6980
6981         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6982                 --mountfsoptions="user_xattr,errors=panic" \
6983                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6984
6985         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6986                 grep -e \".*opts:.*errors=panic.*\"" ||
6987                 error "user can't override default mount options"
6988 }
6989 run_test 88 "check the default mount options can be overridden"
6990
6991 test_89() { # LU-7131
6992         [[ "$MDS1_VERSION" -ge $(version_code 2.9.54) ]] ||
6993                 skip "Need MDT version at least 2.9.54"
6994
6995         local key=failover.node
6996         local val1=192.0.2.254@tcp0 # Reserved IPs, see RFC 5735
6997         local val2=192.0.2.255@tcp0
6998         local mdsdev=$(mdsdevname 1)
6999         local params
7000
7001         stopall
7002
7003         if [[ "$mds1_FSTYPE" == zfs ]]; then
7004                 import_zpool mds1 || return ${PIPESTATUS[0]}
7005         fi
7006
7007         # Check that parameters are added correctly
7008         echo "tunefs --param $key=$val1"
7009         do_facet mds1 "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
7010                 error "tunefs --param $key=$val1 failed"
7011         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7012                 error "tunefs --dryrun failed"
7013         params=${params##*Parameters:}
7014         params=${params%%exiting*}
7015         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val1) = "1" ] ||
7016                 error "on-disk parameter not added correctly via tunefs"
7017
7018         # Check that parameters replace existing instances when added
7019         echo "tunefs --param $key=$val2"
7020         do_facet mds1 "$TUNEFS --param $key=$val2 $mdsdev >/dev/null" ||
7021                 error "tunefs --param $key=$val2 failed"
7022         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7023                 error "tunefs --dryrun failed"
7024         params=${params##*Parameters:}
7025         params=${params%%exiting*}
7026         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "1" ] ||
7027                 error "on-disk parameter not replaced via tunefs"
7028         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val2) = "1" ] ||
7029                 error "on-disk parameter not replaced correctly via tunefs"
7030
7031         # Check that a parameter is erased properly
7032         echo "tunefs --erase-param $key"
7033         do_facet mds1 "$TUNEFS --erase-param $key $mdsdev >/dev/null" ||
7034                 error "tunefs --erase-param $key failed"
7035         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7036                 error "tunefs --dryrun failed"
7037         params=${params##*Parameters:}
7038         params=${params%%exiting*}
7039         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "0" ] ||
7040                 error "on-disk parameter not erased correctly via tunefs"
7041
7042         # Check that all the parameters are erased
7043         do_facet mds1 "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
7044                 error "tunefs --param $key=$val1 failed"
7045         echo "tunefs --erase-params"
7046         do_facet mds1 "$TUNEFS --erase-params $mdsdev >/dev/null" ||
7047                 error "tunefs --erase-params failed"
7048         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7049                 error "tunefs --dryrun failed"
7050         params=${params##*Parameters:}
7051         params=${params%%exiting*}
7052         params=$(echo $params | tr ' ' '\n')
7053         [ -z "$params" ] ||
7054                 error "all on-disk parameters not erased correctly via tunefs $params"
7055
7056         # Check the order of options --erase-params and --param
7057         echo "tunefs --param $key=$val1 --erase-params"
7058         do_facet mds1 \
7059                 "$TUNEFS --param $key=$val1 --erase-params $mdsdev >/dev/null"||
7060                 error "tunefs --param $key=$val1 --erase-params failed"
7061         params=$(do_facet mds1 $TUNEFS --dryrun $mdsdev) ||
7062                 error "tunefs --dryrun failed"
7063         params=${params##*Parameters:}
7064         params=${params%%exiting*}
7065         [ $(echo $params | tr ' ' '\n') == "$key=$val1" ] ||
7066                 error "on-disk param not added correctly with --erase-params"
7067
7068         reformat_and_config
7069 }
7070 run_test 89 "check tunefs --param and --erase-param{s} options"
7071
7072 # $1 test directory
7073 # $2 (optional) value of max_mod_rpcs_in_flight to set
7074 check_max_mod_rpcs_in_flight() {
7075         local dir="$1"
7076         local mmr="$2"
7077         local idx
7078         local facet
7079         local tmp
7080         local i
7081
7082         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
7083         facet="mds$((0x$idx + 1))"
7084
7085         if [ -z "$mmr" ]; then
7086                 # get value of max_mod_rcps_in_flight
7087                 mmr=$($LCTL get_param -n \
7088                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
7089                         error "Unable to get max_mod_rpcs_in_flight"
7090                 echo "max_mod_rcps_in_flight is $mmr"
7091         else
7092                 # set value of max_mod_rpcs_in_flight
7093                 $LCTL set_param \
7094                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
7095                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
7096                 echo "max_mod_rpcs_in_flight set to $mmr"
7097         fi
7098
7099         # create mmr+1 files
7100         echo "creating $((mmr + 1)) files ..."
7101         umask 0022
7102         for i in $(seq $((mmr + 1))); do
7103                 touch $dir/file-$i
7104         done
7105
7106         ### part 1 ###
7107
7108         # consumes mmr-1 modify RPC slots
7109         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7110         # drop requests on MDT so that RPC slots are consumed
7111         # during all the request resend interval
7112         do_facet $facet "$LCTL set_param fail_loc=0x159"
7113         echo "launch $((mmr - 1)) chmod in parallel ..."
7114         for i in $(seq $((mmr - 1))); do
7115                 chmod 0600 $dir/file-$i &
7116         done
7117         sleep 1
7118
7119         # send one additional modify RPC
7120         do_facet $facet "$LCTL set_param fail_loc=0"
7121         echo "launch 1 additional chmod in parallel ..."
7122         chmod 0600 $dir/file-$mmr &
7123         sleep 1
7124
7125         # check this additional modify RPC get a modify RPC slot
7126         # and succeed its operation
7127         checkstat -vp 0600 $dir/file-$mmr ||
7128                 error "Unable to send $mmr modify RPCs in parallel"
7129         wait
7130
7131         ### part 2 ###
7132
7133         # consumes mmr modify RPC slots
7134         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7135         # drop requests on MDT so that RPC slots are consumed
7136         # during all the request resend interval
7137         do_facet $facet "$LCTL set_param fail_loc=0x159"
7138         echo "launch $mmr chmod in parallel ..."
7139         for i in $(seq $mmr); do
7140                 chmod 0666 $dir/file-$i &
7141         done
7142         sleep 1
7143
7144         # send one additional modify RPC
7145         do_facet $facet "$LCTL set_param fail_loc=0"
7146         echo "launch 1 additional chmod in parallel ..."
7147         chmod 0666 $dir/file-$((mmr + 1)) &
7148         sleep 1
7149
7150         # check this additional modify RPC blocked getting a modify RPC slot
7151         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
7152                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
7153         wait
7154 }
7155
7156 test_90a() {
7157         setup
7158
7159         [[ $($LCTL get_param mdc.*.import |
7160              grep "connect_flags:.*multi_mod_rpc") ]] ||
7161                 skip "Need MDC with 'multi_mod_rpcs' feature"
7162
7163         # check default value
7164         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
7165         check_max_mod_rpcs_in_flight $DIR/$tdir
7166
7167         cleanup
7168 }
7169 run_test 90a "check max_mod_rpcs_in_flight is enforced"
7170
7171 test_90b() {
7172         local idx
7173         local facet
7174         local tmp
7175         local mmrpc
7176
7177         setup
7178
7179         [[ $($LCTL get_param mdc.*.import |
7180              grep "connect_flags:.*multi_mod_rpc") ]] ||
7181                 skip "Need MDC with 'multi_mod_rpcs' feature"
7182
7183         ### test 1.
7184         # update max_mod_rpcs_in_flight
7185         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
7186         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
7187
7188         ### test 2.
7189         # check client is able to send multiple modify RPCs in paralell
7190         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
7191                 grep -c "multi_mod_rpcs")
7192         if [ "$tmp" -ne $MDSCOUNT ]; then
7193                 cleanup
7194                 skip "Client not able to send multiple modify RPCs in parallel"
7195         fi
7196
7197         # update max_mod_rpcs_in_flight
7198         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
7199         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
7200
7201         ### test 3.
7202         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
7203         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
7204         facet="mds$((0x$idx + 1))"
7205
7206         # save MDT max_mod_rpcs_per_client
7207         mmrpc=$(do_facet $facet \
7208                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
7209
7210         # update max_mod_rpcs_in_flight
7211         umount_client $MOUNT
7212         do_facet $facet \
7213                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7214         mount_client $MOUNT
7215         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
7216         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
7217
7218         # restore MDT max_mod_rpcs_per_client initial value
7219         do_facet $facet \
7220                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7221
7222         rm -rf $DIR/${tdir}?
7223         cleanup
7224 }
7225 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
7226
7227 save_params_90c() {
7228         # get max_rpcs_in_flight value
7229         mrif_90c=$($LCTL get_param -n \
7230                    mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
7231         echo "max_rpcs_in_flight is $mrif_90c"
7232
7233         # get max_mod_rpcs_in_flight value
7234         mmrif_90c=$($LCTL get_param -n \
7235                     mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight)
7236         echo "max_mod_rpcs_in_flight is $mmrif_90c"
7237
7238         # get MDT max_mod_rpcs_per_client value
7239         mmrpc_90c=$(do_facet mds1 \
7240                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
7241         echo "max_mod_rpcs_per_client is $mmrpc_90c"
7242 }
7243
7244 restore_params_90c() {
7245         trap 0
7246
7247         # restore max_rpcs_in_flight value
7248         do_facet mgs $LCTL set_param -P \
7249                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$mrif_90c
7250
7251         # restore max_mod_rpcs_in_flight value
7252         do_facet mgs $LCTL set_param -P \
7253                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mmrif_90c
7254
7255         # restore MDT max_mod_rpcs_per_client value
7256         do_facet mds1 "echo $mmrpc_90c > \
7257                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7258 }
7259
7260 test_90c() {
7261         local tmp
7262
7263         setup
7264
7265         [[ $($LCTL get_param mdc.*.import |
7266              grep "connect_flags:.*multi_mod_rpc") ]] ||
7267                 skip "Need MDC with 'multi_mod_rpcs' feature"
7268
7269         # check client is able to send multiple modify RPCs in paralell
7270         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
7271                 grep -c "multi_mod_rpcs")
7272         if [ "$tmp" -ne $MDSCOUNT ]; then
7273                 cleanup
7274                 skip "Client not able to send multiple modify RPCs in parallel"
7275         fi
7276
7277         save_params_90c
7278         stack_trap restore_params_90c
7279
7280         # testcase 1
7281         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
7282         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
7283         do_facet mds1 "echo $mrif_90c > \
7284                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7285
7286         # if max_mod_rpcs_in_flight is set to be equal to or larger than
7287         # max_rpcs_in_flight, then max_rpcs_in_flight will be increased
7288         if [[ "$CLIENT_VERSION" -ge $(version_code 2.13.53) ]]; then
7289                 $LCTL set_param \
7290                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif_90c ||
7291                         error "set max_mod_rpcs_in_flight to $mrif_90c failed"
7292
7293                 local new_mrif=$($LCTL get_param -n \
7294                                  mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
7295                 ((new_mrif == mrif_90c + 1)) ||
7296                         error "max_rpcs_in_flight was not increased"
7297         fi
7298
7299         umount_client $MOUNT
7300         do_facet mds1 "echo $mmrpc_90c > \
7301                        /sys/module/mdt/parameters/max_mod_rpcs_per_client"
7302         mount_client $MOUNT
7303
7304         # testcase 2
7305         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
7306         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
7307         $LCTL set_param \
7308                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc_90c + 2))
7309
7310         $LCTL set_param \
7311         mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc_90c + 1)) &&
7312         error "set max_mod_rpcs_in_flight to $((mmrpc_90c + 1)) should fail"
7313
7314         # testcase 3
7315         # attempt to set max_mod_rpcs_in_flight permanently
7316         do_facet mgs $LCTL set_param -P \
7317                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$mrif_90c
7318
7319         do_facet mgs $LCTL set_param -P \
7320                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif_90c
7321
7322         remount_client $MOUNT
7323
7324         wait_update_facet --verbose client "$LCTL get_param -n \
7325                 mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight" \
7326                 "$((mrif_90c + 1))" ||
7327                 error "expected '$((mrif_90c + 1))' for max_rpcs_in_flight"
7328
7329         wait_update_facet --verbose client "$LCTL get_param -n \
7330                 mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight" \
7331                 "$mrif_90c" ||
7332                 error "expected '$mrif_90c' for max_mod_rpcs_in_flight"
7333
7334         restore_params_90c
7335         cleanup
7336 }
7337 run_test 90c "check max_mod_rpcs_in_flight update limits"
7338
7339 test_90d() {
7340         local idx
7341         local facet
7342         local mmr
7343         local i
7344         local pid
7345
7346         setup
7347
7348         [[ $($LCTL get_param mdc.*.import |
7349              grep "connect_flags:.*multi_mod_rpc") ]] ||
7350                 skip "Need MDC with 'multi_mod_rpcs' feature"
7351
7352         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
7353         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
7354         facet="mds$((0x$idx + 1))"
7355
7356         # check client version supports multislots
7357         tmp=$($LCTL get_param -N \
7358                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
7359         if [ -z "$tmp" ]; then
7360                 cleanup
7361                 skip "Client does not support multiple modify RPCs in flight"
7362         fi
7363
7364         # get current value of max_mod_rcps_in_flight
7365         mmr=$($LCTL get_param -n \
7366                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
7367         echo "max_mod_rcps_in_flight is $mmr"
7368
7369         # create mmr files
7370         echo "creating $mmr files ..."
7371         umask 0022
7372         for i in $(seq $mmr); do
7373                 touch $DIR/$tdir/file-$i
7374         done
7375
7376         # prepare for close RPC
7377         multiop_bg_pause $DIR/$tdir/file-close O_c
7378         pid=$!
7379
7380         # consumes mmr modify RPC slots
7381         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
7382         # drop requests on MDT so that RPC slots are consumed
7383         # during all the request resend interval
7384         do_facet $facet "$LCTL set_param fail_loc=0x159"
7385         echo "launch $mmr chmod in parallel ..."
7386         for i in $(seq $mmr); do
7387                 chmod 0600 $DIR/$tdir/file-$i &
7388         done
7389
7390         # send one additional close RPC
7391         do_facet $facet "$LCTL set_param fail_loc=0"
7392         echo "launch 1 additional close in parallel ..."
7393         kill -USR1 $pid
7394         cancel_lru_locks mdc
7395         sleep 1
7396
7397         # check this additional close RPC get a modify RPC slot
7398         # and multiop process completed
7399         [ -d /proc/$pid ] &&
7400                 error "Unable to send the additional close RPC in parallel"
7401         wait
7402         rm -rf $DIR/$tdir
7403         cleanup
7404 }
7405 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
7406
7407 check_uuid_on_ost() {
7408         local nid=$1
7409         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
7410 }
7411
7412 check_uuid_on_mdt() {
7413         local nid=$1
7414         do_facet $SINGLEMDS "$LCTL get_param mdt.${mds1_svc}*.exports.'$nid'.uuid"
7415 }
7416
7417 test_91() {
7418         local uuid
7419         local nid
7420         local found
7421
7422         [[ "$OST1_VERSION" -ge $(version_code 2.7.63) ]] ||
7423                 skip "Need OST version at least 2.7.63"
7424         [[ "$MDS1_VERSION" -ge $(version_code 2.7.63) ]] ||
7425                 skip "Need MDT version at least 2.7.63"
7426
7427         start_mds || error "MDS start failed"
7428         start_ost || error "unable to start OST"
7429         mount_client $MOUNT || error "client start failed"
7430         check_mount || error "check_mount failed"
7431
7432         if remote_mds; then
7433                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
7434         else
7435                 nid="0@lo"
7436         fi
7437         uuid=$(get_client_uuid $MOUNT)
7438
7439         echo "list nids on mdt:"
7440         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
7441         echo "uuid from $nid:"
7442         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
7443
7444         found=$(check_uuid_on_mdt $nid | grep $uuid)
7445         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
7446         found=$(check_uuid_on_ost $nid | grep $uuid)
7447         [ -z "$found" ] && error "can't find $uuid $nid on OST"
7448
7449         # umount the client so it won't reconnect
7450         manual_umount_client --force || error "failed to umount $?"
7451         # shouldn't disappear on MDS after forced umount
7452         found=$(check_uuid_on_mdt $nid | grep $uuid)
7453         [ -z "$found" ] && error "can't find $uuid $nid"
7454
7455         echo "evict $nid"
7456         do_facet $SINGLEMDS \
7457                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
7458         sleep 1 # eviction above is async, give it some time to proceed
7459
7460         found=$(check_uuid_on_mdt $nid | grep $uuid)
7461         [ -n "$found" ] && error "found $uuid $nid on MDT"
7462         found=$(check_uuid_on_ost $nid | grep $uuid)
7463         [ -n "$found" ] && error "found $uuid $nid on OST"
7464
7465         # check it didn't reconnect (being umounted)
7466         sleep $((TIMEOUT+1))
7467         found=$(check_uuid_on_mdt $nid | grep $uuid)
7468         [ -n "$found" ] && error "found $uuid $nid on MDT"
7469         found=$(check_uuid_on_ost $nid | grep $uuid)
7470         [ -n "$found" ] && error "found $uuid $nid on OST"
7471
7472         cleanup
7473 }
7474 run_test 91 "evict-by-nid support"
7475
7476 generate_ldev_conf() {
7477         # generate an ldev.conf file
7478         local ldevconfpath=$1
7479         local fstype=
7480         local fsldevformat=""
7481         rm -f $ldevconfpath
7482
7483         local facets="mgs,$(get_facets OST),$(get_facets MDS)"
7484         for facet in ${facets//,/ }; do
7485                 fsldevformat=""
7486                 fstype=$(facet_fstype $facet)
7487                 [ "$fstype" = zfs ] && fsldevformat="$fstype:"
7488                 local host=$(facet_host $facet)
7489                 local fo="-"
7490                 local varfo=${facet}failover_HOST
7491                 if [ $facet == mgs ] && combined_mgs_mds; then
7492                         varfo=mds1failover_HOST
7493                 fi
7494                 [ -n "${!varfo}" ] && fo=${!varfo}
7495                 local type=$(echo $facet | tr -d "[:digit:]" | \
7496                         tr "[:lower:]" "[:upper:]" | sed s/MDS/MDT/ )
7497                 local num=1
7498                 [ ${facet} == mgs ] ||
7499                         num=$(facet_number $facet)
7500                 printf "%s\t%s\t%s-%s%04x\t%s%s\n" \
7501                         ${host} \
7502                         ${fo} \
7503                         $FSNAME \
7504                         $type \
7505                         $(( num - 1 )) \
7506                         $fsldevformat \
7507                         $(facet_device $facet) >> $ldevconfpath
7508         done
7509
7510         echo "----- $ldevconfpath -----"
7511         cat $ldevconfpath
7512         echo "--- END $ldevconfpath ---"
7513
7514 }
7515
7516 generate_nids() {
7517         # generate a nids file (mapping between hostname to nid)
7518         # looks like we only have the MGS nid available to us
7519         # so just echo that to a file
7520         local nidspath=$1
7521         echo -e "${mgs_HOST}\t${MGSNID}" > $nidspath
7522
7523         echo "----- $nidspath -----"
7524         cat $nidspath
7525         echo "--- END $nidspath ---"
7526 }
7527
7528 compare_ldev_output() {
7529         local ldev_output=$1
7530         local expected_output=$2
7531
7532         sort $expected_output -o $expected_output
7533         sort $ldev_output -o $ldev_output
7534
7535         echo "-- START OF LDEV OUTPUT --"
7536         cat $ldev_output
7537         echo "--- END OF LDEV OUTPUT ---"
7538
7539         echo "-- START OF EXPECTED OUTPUT --"
7540         cat $expected_output
7541         echo "--- END OF EXPECTED OUTPUT ---"
7542
7543         diff $expected_output $ldev_output
7544         return $?
7545 }
7546
7547 test_92() {
7548         if [ -z "$LDEV" ]; then
7549                 error "ldev is missing!"
7550         fi
7551
7552         local LDEVCONFPATH=$TMP/ldev.conf
7553         local NIDSPATH=$TMP/nids
7554
7555         echo "Host is $(hostname)"
7556
7557         generate_ldev_conf $LDEVCONFPATH
7558         generate_nids $NIDSPATH
7559
7560         # echo the mgs nid and compare it to environment variable MGSNID
7561         local facets="$(get_facets OST),$(get_facets MDS),mgs"
7562         for facet in ${facets//,/ }; do
7563                 local host=$(facet_host $facet)
7564                 local output=$($LDEV -c $LDEVCONFPATH -H $host -n $NIDSPATH echo %m)
7565
7566                 echo "-- START OF LDEV OUTPUT --"
7567                 echo -e "$output"
7568                 echo "--- END OF LDEV OUTPUT ---"
7569
7570                 [ -z "$output" ] &&
7571                         error "ldev failed to execute!"
7572
7573                 # need to process multiple lines because of
7574                 # several targets on host
7575                 echo -e $output | awk '{ print $2 }' | while read -r line ; do
7576                         [ "$line" = "$MGSNID" ] ||
7577                                 error "ldev failed mgs nid '$line', \
7578                                         expected '$MGSNID'"
7579                 done
7580         done
7581         rm -f $LDEVCONFPATH $NIDSPATH
7582 }
7583 run_test 92 "ldev returns MGS NID correctly in command substitution"
7584
7585 test_93() {
7586         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs"
7587
7588         reformat
7589         #start mgs or mgs/mdt0
7590         if ! combined_mgs_mds ; then
7591                 start_mgs
7592                 start_mdt 1
7593         else
7594                 start_mdt 1
7595         fi
7596
7597         start_ost || error "OST0 start fail"
7598
7599         #define OBD_FAIL_MGS_WRITE_TARGET_DELAY  0x90e
7600         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x8000090e"
7601         for num in $(seq 2 $MDSCOUNT); do
7602                 start_mdt $num &
7603         done
7604
7605         mount_client $MOUNT || error "mount client fails"
7606         wait_osc_import_state mds ost FULL
7607         wait_osc_import_ready client ost
7608         check_mount || error "check_mount failed"
7609
7610         cleanup || error "cleanup failed with $?"
7611 }
7612 run_test 93 "register mulitple MDT at the same time"
7613
7614 test_94() {
7615         if [ -z "$LDEV" ]; then
7616                 error "ldev is missing!"
7617         fi
7618
7619         local LDEVCONFPATH=$TMP/ldev.conf
7620         local NIDSPATH=$TMP/nids
7621
7622         generate_ldev_conf $LDEVCONFPATH
7623         generate_nids $NIDSPATH
7624
7625         local LDEV_OUTPUT=$TMP/ldev-output.txt
7626         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME > $LDEV_OUTPUT
7627
7628         # ldev failed, error
7629         if [ $? -ne 0 ]; then
7630                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7631                 error "ldev failed to execute!"
7632         fi
7633
7634         # expected output
7635         local EXPECTED_OUTPUT=$TMP/ldev-expected.txt
7636
7637         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7638
7639         for num in $(seq $MDSCOUNT); do
7640                 printf "%s-MDT%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7641         done
7642
7643         for num in $(seq $OSTCOUNT); do
7644                 printf "%s-OST%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7645         done
7646
7647         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7648
7649         if [ $? -ne 0 ]; then
7650                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7651                 error "ldev failed to produce the correct hostlist!"
7652         fi
7653
7654         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7655 }
7656 run_test 94 "ldev outputs correct labels for file system name query"
7657
7658 test_95() {
7659         if [ -z "$LDEV" ]; then
7660                 error "ldev is missing!"
7661         fi
7662
7663         local LDEVCONFPATH=$TMP/ldev.conf
7664         local NIDSPATH=$TMP/nids
7665
7666         generate_ldev_conf $LDEVCONFPATH
7667         generate_nids $NIDSPATH
7668
7669         # SUCCESS CASES
7670         # file sys filter
7671         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME &>/dev/null
7672         if [ $? -ne 0 ]; then
7673                 rm $LDEVCONFPATH $NIDSPATH
7674                 error "ldev label filtering w/ -F failed!"
7675         fi
7676
7677         # local filter
7678         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -l  &>/dev/null
7679         if [ $? -ne 0 ]; then
7680                 rm $LDEVCONFPATH $NIDSPATH
7681                 error "ldev label filtering w/ -l failed!"
7682         fi
7683
7684         # foreign filter
7685         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f &>/dev/null
7686         if [ $? -ne 0 ]; then
7687                 rm $LDEVCONFPATH $NIDSPATH
7688                 error "ldev label filtering w/ -f failed!"
7689         fi
7690
7691         # all filter
7692         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a &>/dev/null
7693         if [ $? -ne 0 ]; then
7694                 rm $LDEVCONFPATH $NIDSPATH
7695                 error "ldev label filtering w/ -a failed!"
7696         fi
7697
7698         # FAILURE CASES
7699         # all & file sys
7700         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -F $FSNAME &>/dev/null
7701         if [ $? -eq 0 ]; then
7702                 rm $LDEVCONFPATH $NIDSPATH
7703                 error "ldev label filtering w/ -a and -F incorrectly succeeded"
7704         fi
7705
7706         # all & foreign
7707         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -f &>/dev/null
7708         if [ $? -eq 0 ]; then
7709                 rm $LDEVCONFPATH $NIDSPATH
7710                 error "ldev label filtering w/ -a and -f incorrectly succeeded"
7711         fi
7712
7713         # all & local
7714         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -l &>/dev/null
7715         if [ $? -eq 0 ]; then
7716                 rm $LDEVCONFPATH $NIDSPATH
7717                 error "ldev label filtering w/ -a and -l incorrectly succeeded"
7718         fi
7719
7720         # foreign & local
7721         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f -l &>/dev/null
7722         if [ $? -eq 0 ]; then
7723                 rm $LDEVCONFPATH $NIDSPATH
7724                 error "ldev label filtering w/ -f and -l incorrectly succeeded"
7725         fi
7726
7727         # file sys & local
7728         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -l &>/dev/null
7729         if [ $? -eq 0 ]; then
7730                 rm $LDEVCONFPATH $NIDSPATH
7731                 error "ldev label filtering w/ -F and -l incorrectly succeeded"
7732         fi
7733
7734         # file sys & foreign
7735         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -f &>/dev/null
7736         if [ $? -eq 0 ]; then
7737                 rm $LDEVCONFPATH $NIDSPATH
7738                 error "ldev label filtering w/ -F and -f incorrectly succeeded"
7739         fi
7740
7741         rm $LDEVCONFPATH $NIDSPATH
7742 }
7743 run_test 95 "ldev should only allow one label filter"
7744
7745 test_96() {
7746         if [ -z "$LDEV" ]; then
7747                 error "ldev is missing!"
7748         fi
7749
7750         local LDEVCONFPATH=$TMP/ldev.conf
7751         local NIDSPATH=$TMP/nids
7752
7753         generate_ldev_conf $LDEVCONFPATH
7754         generate_nids $NIDSPATH
7755
7756         local LDEV_OUTPUT=$TMP/ldev-output.txt
7757         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -H $mgs_HOST \
7758                 echo %H-%b | \
7759                 awk '{print $2}' > $LDEV_OUTPUT
7760
7761         # ldev failed, error
7762         if [ $? -ne 0 ]; then
7763                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7764                 error "ldev failed to execute!"
7765         fi
7766
7767         # expected output
7768         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7769
7770         echo "$mgs_HOST-$(facet_fstype mgs)" > $EXPECTED_OUTPUT
7771
7772         local facets="$(get_facets OST),$(get_facets MDS)"
7773         for facet in ${facets//,/ }; do
7774                 local host=$(facet_host $facet)
7775                 [ "$mgs_HOST" == "$host" ] &&
7776                         echo "$host-$(facet_fstype $facet)" \
7777                         >> $EXPECTED_OUTPUT
7778         done
7779
7780         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7781
7782         if [ $? -ne 0 ]; then
7783                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7784                 error "ldev failed to produce the correct output!"
7785         fi
7786
7787         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7788 }
7789 run_test 96 "ldev returns hostname and backend fs correctly in command sub"
7790
7791 test_97() {
7792         if [ -z "$LDEV" ]; then
7793                 error "ldev is missing!"
7794         fi
7795
7796         local LDEVCONFPATH=$TMP/ldev.conf
7797         local NIDSPATH=$TMP/nids
7798
7799         generate_ldev_conf $LDEVCONFPATH
7800         generate_nids $NIDSPATH
7801
7802         local LDEV_OUTPUT=$TMP/ldev-output.txt
7803         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7804
7805         echo -e "\nMDT role"
7806         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mdt > $LDEV_OUTPUT
7807
7808         if [ $? -ne 0 ]; then
7809                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7810                 error "ldev failed to execute for mdt role!"
7811         fi
7812
7813         for num in $(seq $MDSCOUNT); do
7814                 printf "%s-MDT%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7815         done
7816
7817         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7818
7819         if [ $? -ne 0 ]; then
7820                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7821                 error "ldev failed to produce the correct output for mdt role!"
7822         fi
7823
7824         echo -e "\nOST role"
7825         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R ost > $LDEV_OUTPUT
7826
7827         if [ $? -ne 0 ]; then
7828                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7829                 error "ldev failed to execute for ost role!"
7830         fi
7831
7832         rm $EXPECTED_OUTPUT
7833         for num in $(seq $OSTCOUNT); do
7834                 printf "%s-OST%04x\n" $FSNAME $((num - 1)) >> $EXPECTED_OUTPUT
7835         done
7836
7837         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7838
7839         if [ $? -ne 0 ]; then
7840                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7841                 error "ldev failed to produce the correct output for ost role!"
7842         fi
7843
7844         echo -e "\nMGS role"
7845         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mgs > $LDEV_OUTPUT
7846
7847         if [ $? -ne 0 ]; then
7848                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7849                 error "ldev failed to execute for mgs role!"
7850         fi
7851
7852         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7853
7854         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7855
7856         if [ $? -ne 0 ]; then
7857                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7858                 error "ldev failed to produce the correct output for mgs role!"
7859         fi
7860
7861         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7862 }
7863 run_test 97 "ldev returns correct ouput when querying based on role"
7864
7865 test_98()
7866 {
7867         local mountopt
7868         local temp=$MDS_MOUNT_OPTS
7869
7870         setup
7871         check_mount || error "mount failed"
7872         mountopt="user_xattr"
7873         for ((x = 1; x <= 400; x++)); do
7874                 mountopt="$mountopt,user_xattr"
7875         done
7876         mount_client $MOUNT remount,$mountopt 2>&1 | grep "too long" ||
7877                 error "Buffer overflow check failed"
7878         cleanup || error "cleanup failed"
7879 }
7880 run_test 98 "Buffer-overflow check while parsing mount_opts"
7881
7882 test_99()
7883 {
7884         [[ "$ost1_FSTYPE" != ldiskfs ]] &&
7885                 skip "ldiskfs only test"
7886         [[ "$OST1_VERSION" -ge $(version_code 2.8.57) ]] ||
7887                 skip "Need OST version at least 2.8.57"
7888
7889         local ost_opts="$(mkfs_opts ost1 $(ostdevname 1)) \
7890                 --reformat $(ostdevname 1) $(ostvdevname 1)"
7891         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" &&
7892                 skip "meta_bg already set"
7893
7894         local opts=ost_opts
7895         if [[ ${!opts} != *mkfsoptions* ]]; then
7896                 eval opts=\"${!opts} \
7897                 --mkfsoptions='\\\"-O ^resize_inode,meta_bg\\\"'\"
7898         else
7899                 local val=${!opts//--mkfsoptions=\\\"/ \
7900                 --mkfsoptions=\\\"-O ^resize_inode,meta_bg }
7901                 eval opts='${val}'
7902         fi
7903
7904         echo "params: $opts"
7905
7906         load_modules
7907         add ost1 $opts || error "add ost1 failed with new params"
7908
7909         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" ||
7910                 error "meta_bg is not set"
7911 }
7912 run_test 99 "Adding meta_bg option"
7913
7914 test_100() {
7915         reformat
7916
7917         start_mgsmds || error "MDS start failed"
7918         start_ost || error "unable to start OST"
7919         mount_client $MOUNT || error "client start failed"
7920         check_mount || error "check_mount failed"
7921
7922         # Desired output
7923         # MGS:
7924         #     0@lo
7925         # $FSNAME-MDT0000:
7926         #     0@lo
7927         # $FSNAME-OST0000:
7928         #     0@lo
7929         do_facet mgs 'lshowmount -v' | awk 'BEGIN {NR == 0; rc=1} /MGS:/ {rc=0}
7930                 END {exit rc}' || error "lshowmount have no output MGS"
7931
7932         do_facet mds1 'lshowmount -v' | awk 'BEGIN {NR == 2; rc=1} /-MDT0000:/
7933                 {rc=0} END {exit rc}' || error "lshowmount have no output MDT0"
7934
7935         do_facet ost1 'lshowmount -v' | awk 'BEGIN {NR == 4; rc=1} /-OST0000:/
7936                 {rc=0} END {exit rc}' || error "lshowmount have no output OST0"
7937
7938         cleanup || error "cleanup failed with $?"
7939 }
7940 run_test 100 "check lshowmount lists MGS, MDT, OST and 0@lo"
7941
7942 test_101a() {
7943         local createmany_pid
7944         local dev=$FSNAME-OST0000-osc-MDT0000
7945         setup
7946
7947         mkdir $DIR1/$tdir
7948         createmany -o $DIR1/$tdir/$tfile-%d 50000 &
7949         createmany_pid=$!
7950         # MDT->OST reconnection causes MDT<->OST last_id synchornisation
7951         # via osp_precreate_cleanup_orphans.
7952         for ((i = 0; i < 100; i++)); do
7953                 for ((k = 0; k < 10; k++)); do
7954                         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;" \
7955                                             "$LCTL --device $dev activate"
7956                 done
7957
7958                 ls -asl $MOUNT | grep '???' &&
7959                         { kill -9 $createmany_pid &>/dev/null;
7960                           error "File has no object on OST"; }
7961
7962                 kill -s 0 $createmany_pid || break
7963         done
7964         wait $createmany_pid
7965
7966         unlinkmany $DIR1/$tdir/$tfile-%d 50000
7967         cleanup
7968 }
7969 run_test 101a "Race MDT->OST reconnection with create"
7970
7971 test_101b () {
7972         local dev=$FSNAME-OST0000-osc-MDT0000
7973         local dir=$DIR1/$tdir
7974         setup
7975
7976         mkdir $dir
7977         $LFS setstripe -c 1 -i 0 $dir
7978         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;"
7979 #define OBD_FAIL_OSP_CON_EVENT_DELAY 0x2107
7980         do_facet mds1 "$LCTL set_param fail_loc=0x80002107 fail_val=20"
7981         do_facet $SINGLEMDS "$LCTL --device $dev activate;"
7982         stop_ost
7983         sleep 25
7984         start_ost
7985
7986         wait_osc_import_state client ost1 FULL
7987         touch $dir/$tfile || error "Can't create file"
7988
7989         cleanup
7990 }
7991 run_test 101b "Race events DISCONNECT and ACTIVE in osp"
7992
7993 test_102() {
7994         [[ "$MDS1_VERSION" -gt $(version_code 2.9.53) ]] ||
7995                 skip "Need server version greater than 2.9.53"
7996         [[ “$(mdsdevname 1)” != “$(mgsdevname)” ]] &&
7997                 [[ “$(facet_host mds1)” = “$(facet_host mgs)” ]] &&
7998                 skip "MGS must be on different node or combined"
7999
8000         cleanup || error "cleanup failed with $?"
8001
8002         local mds1dev=$(mdsdevname 1)
8003         local mds1mnt=$(facet_mntpt mds1)
8004         local mds1opts=$MDS_MOUNT_OPTS
8005
8006         if [ "$mds1_FSTYPE" == ldiskfs ] &&
8007            ! do_facet mds1 test -b $mds1dev; then
8008                 mds1opts=$(csa_add "$mds1opts" -o loop)
8009         fi
8010         if [[ "$mds1_FSTYPE" == zfs ]]; then
8011                 import_zpool mds1 || return ${PIPESTATUS[0]}
8012         fi
8013
8014         # unload all and only load libcfs to allow fail_loc setting
8015         do_facet mds1 $LUSTRE_RMMOD || error "unable to unload modules"
8016         do_facet mds1 modprobe libcfs || error "libcfs not loaded"
8017         do_facet mds1 lsmod \| grep libcfs || error "libcfs not loaded"
8018
8019         #define OBD_FAIL_OBDCLASS_MODULE_LOAD    0x60a
8020         do_facet mds1 "$LCTL set_param fail_loc=0x8000060a"
8021
8022         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts &&
8023                 error "mdt start must fail"
8024         do_facet mds1 lsmod \| grep  obdclass && error "obdclass must not load"
8025
8026         do_facet mds1 "$LCTL set_param fail_loc=0x0"
8027
8028         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts ||
8029                 error "mdt start must not fail"
8030
8031         cleanup || error "cleanup failed with $?"
8032 }
8033 run_test 102 "obdclass module cleanup upon error"
8034
8035 test_renamefs() {
8036         local newname=$1
8037
8038         echo "rename $FSNAME to $newname"
8039
8040         if ! combined_mgs_mds ; then
8041                 local dev=$(mgsdevname)
8042
8043                 do_facet mgs \
8044                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8045                                 error "(7) Fail to rename MGS"
8046                 if [ "$(facet_fstype mgs)" = "zfs" ]; then
8047                         reimport_zpool mgs $newname-mgs
8048                 fi
8049         fi
8050
8051         for num in $(seq $MDSCOUNT); do
8052                 local dev=$(mdsdevname $num)
8053
8054                 do_facet mds${num} \
8055                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8056                                 error "(8) Fail to rename MDT $num"
8057                 if [ "$(facet_fstype mds${num})" = "zfs" ]; then
8058                         reimport_zpool mds${num} $newname-mdt${num}
8059                 fi
8060         done
8061
8062         for num in $(seq $OSTCOUNT); do
8063                 local dev=$(ostdevname $num)
8064
8065                 do_facet ost${num} \
8066                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $dev" ||
8067                                 error "(9) Fail to rename OST $num"
8068                 if [ "$(facet_fstype ost${num})" = "zfs" ]; then
8069                         reimport_zpool ost${num} $newname-ost${num}
8070                 fi
8071         done
8072 }
8073
8074 test_103_set_pool() {
8075         local pname=$1
8076         local ost_x=$2
8077
8078         do_facet mgs $LCTL pool_add $FSNAME.$pname ${FSNAME}-$ost_x ||
8079                 error "Fail to add $ost_x to $FSNAME.$pname"
8080         wait_update $HOSTNAME \
8081                 "lctl get_param -n lov.$FSNAME-clilov-*.pools.$pname |
8082                  grep $ost_x" "$FSNAME-${ost_x}_UUID" ||
8083                 error "$ost_x is NOT in pool $FSNAME.$pname"
8084 }
8085
8086 test_103_check_pool() {
8087         local save_fsname=$1
8088         local errno=$2
8089
8090         stat $DIR/$tdir/test-framework.sh ||
8091                 error "($errno) Fail to stat"
8092         do_facet mgs $LCTL pool_list $FSNAME.pool1 ||
8093                 error "($errno) Fail to list $FSNAME.pool1"
8094         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname ||
8095                 error "($errno) Fail to list $FSNAME.$save_fsname"
8096         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname |
8097                 grep ${FSNAME}-OST0000 ||
8098                 error "($errno) List $FSNAME.$save_fsname is invalid"
8099
8100         local pname=$($LFS getstripe --pool $DIR/$tdir/d0)
8101         [ "$pname" = "$save_fsname" ] ||
8102                 error "($errno) Unexpected pool name $pname"
8103 }
8104
8105 test_103() {
8106         check_mount_and_prep
8107         rm -rf $DIR/$tdir
8108         mkdir $DIR/$tdir || error "(1) Fail to mkdir $DIR/$tdir"
8109         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir ||
8110                 error "(2) Fail to copy test-framework.sh"
8111
8112         do_facet mgs $LCTL pool_new $FSNAME.pool1 ||
8113                 error "(3) Fail to create $FSNAME.pool1"
8114         # name the pool name as the fsname
8115         do_facet mgs $LCTL pool_new $FSNAME.$FSNAME ||
8116                 error "(4) Fail to create $FSNAME.$FSNAME"
8117
8118         test_103_set_pool $FSNAME OST0000
8119
8120         $LFS setstripe -p $FSNAME $DIR/$tdir/d0 ||
8121                 error "(6) Fail to setstripe on $DIR/$tdir/d0"
8122
8123         KEEP_ZPOOL=true
8124         stopall
8125
8126         test_renamefs mylustre
8127
8128         local save_fsname=$FSNAME
8129         FSNAME="mylustre"
8130         setupall
8131
8132         test_103_check_pool $save_fsname 7
8133
8134         if [ $OSTCOUNT -ge 2 ]; then
8135                 test_103_set_pool $save_fsname OST0001
8136         fi
8137
8138         $LFS setstripe -p $save_fsname $DIR/$tdir/f0 ||
8139                 error "(16) Fail to setstripe on $DIR/$tdir/f0"
8140
8141         stopall
8142
8143         test_renamefs tfs
8144
8145         FSNAME="tfs"
8146         setupall
8147
8148         test_103_check_pool $save_fsname 17
8149
8150         stopall
8151
8152         test_renamefs $save_fsname
8153
8154         FSNAME=$save_fsname
8155         setupall
8156         KEEP_ZPOOL=false
8157 }
8158 run_test 103 "rename filesystem name"
8159
8160 test_104a() { # LU-6952
8161         local mds_mountopts=$MDS_MOUNT_OPTS
8162         local ost_mountopts=$OST_MOUNT_OPTS
8163         local mds_mountfsopts=$MDS_MOUNT_FS_OPTS
8164         local lctl_ver=$(do_facet $SINGLEMDS $LCTL --version |
8165                         awk '{ print $2 }')
8166
8167         [[ $(version_code $lctl_ver) -lt $(version_code 2.9.55) ]] &&
8168                 skip "this test needs utils above 2.9.55"
8169
8170         # specify "acl" in mount options used by mkfs.lustre
8171         if [ -z "$MDS_MOUNT_FS_OPTS" ]; then
8172                 MDS_MOUNT_FS_OPTS="acl,user_xattr"
8173         else
8174
8175                 MDS_MOUNT_FS_OPTS="${MDS_MOUNT_FS_OPTS},acl,user_xattr"
8176         fi
8177
8178         echo "mountfsopt: $MDS_MOUNT_FS_OPTS"
8179
8180         #reformat/remount the MDT to apply the MDT_MOUNT_FS_OPT options
8181         formatall
8182         if ! combined_mgs_mds ; then
8183                 start_mgs
8184         fi
8185
8186         if [ -z "$MDS_MOUNT_OPTS" ]; then
8187                 MDS_MOUNT_OPTS="-o noacl"
8188         else
8189                 MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
8190         fi
8191
8192         for num in $(seq $MDSCOUNT); do
8193                 start mds$num $(mdsdevname $num) $MDS_MOUNT_OPTS ||
8194                         error "Failed to start MDS"
8195         done
8196
8197         for num in $(seq $OSTCOUNT); do
8198                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
8199                         error "Failed to start OST"
8200         done
8201
8202         mount_client $MOUNT
8203         setfacl -m "d:$RUNAS_ID:rwx" $MOUNT &&
8204                 error "ACL is applied when FS is mounted with noacl."
8205
8206         MDS_MOUNT_OPTS=$mds_mountopts
8207         OST_MOUNT_OPTS=$ost_mountopts
8208         MDS_MOUNT_FS_OPTS=$mds_mountfsopts
8209 }
8210 run_test 104a "Make sure user defined options are reflected in mount"
8211
8212 test_104b() { # LU-12859
8213         mount_client $MOUNT3 flock,localflock
8214         stack_trap "umount_client $MOUNT3" EXIT
8215         mount | grep "$MOUNT3 .*,flock" && error "flock is still set"
8216         mount | grep "$MOUNT3 .*,localflock" || error "localflock is not set"
8217         umount_client $MOUNT3
8218         mount_client $MOUNT3 localflock,flock
8219         mount | grep "$MOUNT3 .*,localflock" && error "localflock is still set"
8220         mount | grep "$MOUNT3 .*,flock" || error "flock is not set"
8221         umount_client $MOUNT3
8222         mount_client $MOUNT3 localflock,flock,noflock
8223         flock_is_enabled $MOUNT3 && error "some flock is still enabled" || true
8224 }
8225 run_test 104b "Mount uses last flock argument"
8226
8227 error_and_umount() {
8228         umount $TMP/$tdir
8229         rmdir $TMP/$tdir
8230         error $*
8231 }
8232
8233 test_105() {
8234         cleanup -f
8235         reformat
8236         setup_noconfig
8237         mkdir -p $TMP/$tdir
8238         mount --bind $DIR $TMP/$tdir || error "mount bind mnt pt failed"
8239         rm -f $TMP/$tdir/$tfile
8240         rm -f $TMP/$tdir/${tfile}1
8241
8242         # Files should not be created in ro bind mount point
8243         # remounting from rw to ro
8244         mount -o remount,ro $TMP/$tdir ||
8245                 error_and_umount "readonly remount of bind mnt pt failed"
8246         touch $TMP/$tdir/$tfile &&
8247                 error_and_umount "touch succeeds on ro bind mnt pt"
8248         [ -e $TMP/$tdir/$tfile ] &&
8249                 error_and_umount "file created on ro bind mnt pt"
8250
8251         # Files should be created in rw bind mount point
8252         # remounting from ro to rw
8253         mount -o remount,rw $TMP/$tdir ||
8254                 error_and_umount "read-write remount of bind mnt pt failed"
8255         touch $TMP/$tdir/${tfile}1 ||
8256                 error_and_umount "touch fails on rw bind mnt pt"
8257         [ -e $TMP/$tdir/${tfile}1 ] ||
8258                 error_and_umount "file not created on rw bind mnt pt"
8259         umount $TMP/$tdir || error "umount of bind mnt pt failed"
8260         rmdir $TMP/$tdir
8261         cleanup || error "cleanup failed with $?"
8262 }
8263 run_test 105 "check file creation for ro and rw bind mnt pt"
8264
8265 test_106() {
8266         local repeat=5
8267
8268         reformat
8269         setup_noconfig
8270         mkdir -p $DIR/$tdir || error "create $tdir failed"
8271         lfs setstripe -c 1 -i 0 $DIR/$tdir
8272 #define OBD_FAIL_CAT_RECORDS                        0x1312
8273         do_facet mds1 $LCTL set_param fail_loc=0x1312 fail_val=$repeat
8274
8275         for ((i = 1; i <= $repeat; i++)); do
8276
8277                 #one full plain llog
8278                 createmany -o $DIR/$tdir/f- 64768
8279
8280                 createmany -u $DIR/$tdir/f- 64768
8281         done
8282         wait_delete_completed $((TIMEOUT * 7))
8283 #ASSERTION osp_sync_thread() ( thread->t_flags != SVC_RUNNING ) failed
8284 #shows that osp code is buggy
8285         do_facet mds1 $LCTL set_param fail_loc=0 fail_val=0
8286
8287         cleanup
8288 }
8289 run_test 106 "check osp llog processing when catalog is wrapped"
8290
8291 test_107() {
8292         [[ "$MDS1_VERSION" -ge $(version_code 2.10.50) ]] ||
8293                 skip "Need MDS version > 2.10.50"
8294         local cmd
8295
8296         start_mgsmds || error "start_mgsmds failed"
8297         start_ost || error "unable to start OST"
8298
8299         # add unknown configuration parameter.
8300         if [[ $PERM_CMD == *"set_param -P"* ]]; then
8301                 cmd="$PERM_CMD ost.$FSNAME-OST0000*.unknown_param"
8302         else
8303                 cmd="$PERM_CMD $FSNAME-OST0000*.ost.unknown_param"
8304         fi
8305         do_facet mgs "$cmd=50"
8306         cleanup_nocli || error "cleanup_nocli failed with $?"
8307         load_modules
8308
8309         # unknown param should be ignored while mounting.
8310         start_ost || error "unable to start OST after unknown param set"
8311
8312         cleanup || error "cleanup failed with $?"
8313 }
8314 run_test 107 "Unknown config param should not fail target mounting"
8315
8316 t_108_prep() {
8317         local facet
8318
8319         $rcmd rm -rf $tmp > /dev/null 2>&1
8320         $rcmd mkdir -p $tmp/{mnt,images} || error "failed to mkdir remotely"
8321
8322         for facet in $facets; do
8323                 [ "$mds1_FSTYPE" = zfs ] &&
8324                         $rcmd $ZPOOL -f export lustre-$facet > /dev/null 2>&1
8325                 $rcmd mkdir $tmp/mnt/$facet ||
8326                         error "failed to mkdir $tmp/mnt/$facet"
8327                 $rcmd dd if=/dev/zero of=$tmp/images/$facet \
8328                         seek=199 bs=1M count=1 ||
8329                         error "failed to create $tmp/images/$facet"
8330         done
8331 }
8332
8333 t_108_mkfs() {
8334         local role=$1
8335         local idx=$2
8336         local bkfs=$3
8337         local mgs=$4
8338         local facet=${role}$((idx + 1))
8339         local pool=""
8340         [ $# -eq 5 ] && pool=$5
8341
8342         do_facet $SINGLEMDS $MKFS --fsname=lustre --$mgs \
8343                 --$role --index=$idx --replace --backfstype=$bkfs \
8344                 --device-size=200000 --reformat $pool $tmp/images/$facet ||
8345                 error "failed to mkfs for $facet"
8346 }
8347
8348 t_108_check() {
8349         echo "mounting client..."
8350         mount -t lustre ${nid}:/lustre $MOUNT ||
8351                 error "failed to mount lustre"
8352
8353         echo "check list"
8354         ls -l $MOUNT/local_dir || error "failed to list"
8355
8356         echo "check truncate && write"
8357         echo "dummmmmmmmmmmmm" > $MOUNT/remote_dir/fsx.c ||
8358                 error "failed to tuncate & write"
8359
8360         echo "check create"
8361         touch $MOUNT/foooo ||
8362                 error "failed to create"
8363
8364         echo "check read && write && append"
8365         sha1sum $MOUNT/conf-sanity.sh |
8366                 awk '{ print $1 }' > $MOUNT/checksum.new ||
8367                 error "failed to read(1)"
8368         sha1sum $MOUNT/remote_dir/unlinkmany.c |
8369                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
8370                 error "failed to read(2)"
8371         sha1sum $MOUNT/striped_dir/lockahead_test.o |
8372                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
8373                 error "failed to read(3)"
8374
8375         echo "verify data"
8376         diff $MOUNT/checksum.new $MOUNT/checksum.src ||
8377                 error "failed to verify data"
8378
8379         echo "done."
8380 }
8381
8382 t_108_cleanup() {
8383         trap 0
8384         local facet
8385
8386         echo "cleanup..."
8387         umount -f $MOUNT || error "failed to umount client"
8388         for facet in $facets; do
8389                 $rcmd umount -f $tmp/mnt/$facet ||
8390                         error "failed to umount $facet"
8391                 if [ "$mds1_FSTYPE" = zfs ]; then
8392                         $rcmd $ZPOOL export -f lustre-$facet ||
8393                                 error "failed to export lustre-$facet"
8394                 fi
8395         done
8396
8397         $rcmd rm -rf $tmp || error "failed to rm the dir $tmp"
8398 }
8399
8400 test_108a() {
8401         [ "$CLIENTONLY" ] && skip "Client-only testing"
8402         [ "$mds1_FSTYPE" != zfs ] && skip "zfs only test"
8403         [ "$MDS1_VERSION" -lt $(version_code 2.10.58) ] &&
8404                 skip "Need server version at least 2.10.58"
8405
8406         stopall
8407         load_modules
8408
8409         local tmp=$TMP/$tdir
8410         local rcmd="do_facet $SINGLEMDS"
8411         local facets="mdt1 mdt2 ost1 ost2"
8412         local nid=$($rcmd $LCTL list_nids | head -1)
8413         local facet
8414
8415         trap t_108_cleanup EXIT ERR
8416         t_108_prep
8417
8418         t_108_mkfs mdt 0 zfs mgs lustre-mdt1/mdt1
8419         t_108_mkfs mdt 1 zfs mgsnode=$nid lustre-mdt2/mdt2
8420         t_108_mkfs ost 0 zfs mgsnode=$nid lustre-ost1/ost1
8421         t_108_mkfs ost 1 zfs mgsnode=$nid lustre-ost2/ost2
8422
8423         for facet in $facets; do
8424                 $rcmd zfs set mountpoint=$tmp/mnt/$facet canmount=on \
8425                         lustre-$facet/$facet ||
8426                         error "failed to zfs set for $facet (1)"
8427                 $rcmd zfs mount lustre-$facet/$facet ||
8428                         error "failed to local mount $facet"
8429                 $rcmd tar jxf $LUSTRE/tests/ldiskfs_${facet}_2_11.tar.bz2 \
8430                         --xattrs --xattrs-include="trusted.*" \
8431                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
8432                         error "failed to untar image for $facet"
8433                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
8434                         error "failed to cleanup for $facet"
8435                 $rcmd zfs umount lustre-$facet/$facet ||
8436                         error "failed to local umount $facet"
8437                 $rcmd zfs set canmount=off lustre-$facet/$facet ||
8438                         error "failed to zfs set $facet (2)"
8439         done
8440
8441         echo "changing server nid..."
8442         $rcmd mount -t lustre -o nosvc lustre-mdt1/mdt1 $tmp/mnt/mdt1
8443         $rcmd lctl replace_nids $FSNAME-MDT0000 $nid
8444         $rcmd lctl replace_nids $FSNAME-MDT0001 $nid
8445         $rcmd lctl replace_nids $FSNAME-OST0000 $nid
8446         $rcmd lctl replace_nids $FSNAME-OST0001 $nid
8447         $rcmd umount $tmp/mnt/mdt1
8448
8449         for facet in $facets; do
8450                 echo "mounting $facet from backup..."
8451                 $rcmd mount -t lustre -o abort_recov lustre-$facet/$facet \
8452                         $tmp/mnt/$facet || error "failed to mount $facet"
8453         done
8454
8455         # ZFS backend can detect migration and trigger OI scrub automatically
8456         # sleep 3 seconds for scrub done
8457         sleep 3
8458
8459         t_108_check
8460         t_108_cleanup
8461 }
8462 run_test 108a "migrate from ldiskfs to ZFS"
8463
8464 test_108b() {
8465         [ "$CLIENTONLY" ] && skip "Client-only testing"
8466         [ "$mds1_FSTYPE" != ldiskfs ] && skip "ldiskfs only test"
8467         [ "$MDS1_VERSION" -lt $(version_code 2.10.58) ] &&
8468                 skip "Need server version at least 2.10.58"
8469
8470         stopall
8471         load_modules
8472
8473         local tmp=$TMP/$tdir
8474         local rcmd="do_facet $SINGLEMDS"
8475         local facets="mdt1 mdt2 ost1 ost2"
8476         local scrub_list="MDT0000 MDT0001 OST0000 OST0001"
8477         local nid=$($rcmd $LCTL list_nids | head -1)
8478         local facet
8479
8480         trap t_108_cleanup EXIT ERR
8481         t_108_prep
8482
8483         t_108_mkfs mdt 0 ldiskfs mgs
8484         t_108_mkfs mdt 1 ldiskfs mgsnode=$nid
8485         t_108_mkfs ost 0 ldiskfs mgsnode=$nid
8486         t_108_mkfs ost 1 ldiskfs mgsnode=$nid
8487
8488         for facet in $facets; do
8489                 $rcmd mount -t ldiskfs -o loop $tmp/images/$facet \
8490                         $tmp/mnt/$facet ||
8491                         error "failed to local mount $facet"
8492
8493                 $rcmd tar jxf $LUSTRE/tests/zfs_${facet}_2_11.tar.bz2 \
8494                         --xattrs --xattrs-include="*.*" \
8495                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
8496                         error "failed to untar image for $facet"
8497                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
8498                         error "failed to cleanup for $facet"
8499                 $rcmd umount $tmp/mnt/$facet ||
8500                         error "failed to local umount $facet"
8501         done
8502
8503         echo "changing server nid..."
8504         $rcmd mount -t lustre -o nosvc,loop $tmp/images/mdt1 $tmp/mnt/mdt1
8505         $rcmd lctl replace_nids $FSNAME-MDT0000 $nid
8506         $rcmd lctl replace_nids $FSNAME-MDT0001 $nid
8507         $rcmd lctl replace_nids $FSNAME-OST0000 $nid
8508         $rcmd lctl replace_nids $FSNAME-OST0001 $nid
8509         $rcmd umount $tmp/mnt/mdt1
8510
8511         for facet in $facets; do
8512                 echo "mounting $facet from backup..."
8513                 $rcmd mount -t lustre -o loop,abort_recov $tmp/images/$facet \
8514                         $tmp/mnt/$facet || error "failed to mount $facet"
8515         done
8516
8517         for facet in $scrub_list; do
8518                 $rcmd $LCTL lfsck_start -M $FSNAME-$facet -t scrub ||
8519                         error "failed to start OI scrub on $facet"
8520         done
8521
8522         # sleep 3 seconds for scrub done
8523         sleep 3
8524
8525         t_108_check
8526         t_108_cleanup
8527 }
8528 run_test 108b "migrate from ZFS to ldiskfs"
8529
8530 #
8531 # set number of permanent parameters
8532 #
8533 test_109_set_params() {
8534         local fsname=$1
8535
8536         set_persistent_param_and_check mds                          \
8537             "mdd.$fsname-MDT0000.atime_diff"                        \
8538             "$fsname-MDT0000.mdd.atime_diff"                        \
8539             "62"
8540         set_persistent_param_and_check mds                          \
8541             "mdd.$fsname-MDT0000.atime_diff"                        \
8542             "$fsname-MDT0000.mdd.atime_diff"                        \
8543             "63"
8544         set_persistent_param_and_check client                       \
8545             "llite.$fsname*.max_read_ahead_mb"                      \
8546             "$fsname.llite.max_read_ahead_mb"                       \
8547             "32"
8548         set_persistent_param_and_check client                       \
8549             "llite.$fsname*.max_read_ahead_mb"                      \
8550             "$fsname.llite.max_read_ahead_mb"                       \
8551             "64"
8552         create_pool $fsname.pool1 || error "create pool failed"
8553         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
8554                 error "pool_add failed"
8555         do_facet mgs $LCTL pool_remove $fsname.pool1 OST0000 ||
8556                 error "pool_remove failed"
8557         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
8558                 error "pool_add failed"
8559 }
8560
8561 #
8562 # check permanent parameters
8563 #
8564 test_109_test_params() {
8565         local fsname=$1
8566
8567         local atime_diff=$(do_facet mds $LCTL \
8568                 get_param -n mdd.$fsname-MDT0000.atime_diff)
8569         [ $atime_diff == 63 ] || error "wrong mdd parameter after clear_conf"
8570         local max_read_ahead_mb=$(do_facet client $LCTL \
8571                 get_param -n llite.$fsname*.max_read_ahead_mb)
8572         [ $max_read_ahead_mb == 64 ] ||
8573                 error "wrong llite parameter after clear_conf"
8574         local ost_in_pool=$(do_facet mds $LCTL pool_list $fsname.pool1 |
8575                 grep -v "^Pool:" | sed 's/_UUID//')
8576         [ $ost_in_pool = "$fsname-OST0000" ] ||
8577                 error "wrong pool after clear_conf"
8578 }
8579
8580 #
8581 # run lctl clear_conf, store CONFIGS before and after that
8582 #
8583 test_109_clear_conf()
8584 {
8585         local clear_conf_arg=$1
8586
8587         local mgsdev
8588         if ! combined_mgs_mds ; then
8589                 mgsdev=$(mgsdevname)
8590                 stop_mgs || error "stop_mgs failed"
8591                 start_mgs "-o nosvc" || error "start_mgs nosvc failed"
8592         else
8593                 mgsdev=$(mdsdevname 1)
8594                 start_mdt 1 "-o nosvc" || error "start_mdt 1 nosvc failed"
8595         fi
8596
8597         do_facet mgs "rm -rf $TMP/${tdir}/conf1; mkdir -p $TMP/${tdir}/conf1;" \
8598                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf1\\\" \
8599                 $mgsdev"
8600
8601         #
8602         # the command being tested
8603         #
8604         do_facet mgs $LCTL clear_conf $clear_conf_arg ||
8605                 error "clear_conf failed"
8606         if ! combined_mgs_mds ; then
8607                 stop_mgs || error "stop_mgs failed"
8608         else
8609                 stop_mdt 1 || error "stop_mdt 1 failed"
8610         fi
8611
8612         do_facet mgs "rm -rf $TMP/${tdir}/conf2; mkdir -p $TMP/${tdir}/conf2;" \
8613                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf2\\\" \
8614                 $mgsdev"
8615 }
8616
8617 test_109_file_shortened() {
8618         local file=$1
8619         local sizes=($(do_facet mgs "stat -c %s " \
8620                 "$TMP/${tdir}/conf1/CONFIGS/$file" \
8621                 "$TMP/${tdir}/conf2/CONFIGS/$file"))
8622         [ ${sizes[1]} -lt ${sizes[0]} ] && return 0
8623         return 1
8624 }
8625
8626 test_109a()
8627 {
8628         [ $MDS1_VERSION -lt $(version_code 2.10.59) ] &&
8629                 skip "Needs MDS version 2.10.59 or later."
8630         [ "$(facet_fstype mgs)" == zfs ] &&
8631                 skip "LU-8727: no implementation for ZFS"
8632
8633         stopall
8634         reformat
8635         setup_noconfig
8636         client_up || error "client_up failed"
8637
8638         #
8639         # set number of permanent parameters
8640         #
8641         test_109_set_params $FSNAME
8642
8643         umount_client $MOUNT || error "umount_client failed"
8644         stop_ost || error "stop_ost failed"
8645         stop_mds || error "stop_mds failed"
8646
8647         test_109_clear_conf $FSNAME
8648         #
8649         # make sure that all configs are cleared
8650         #
8651         test_109_file_shortened $FSNAME-MDT0000 ||
8652                 error "failed to clear MDT0000 config"
8653         test_109_file_shortened $FSNAME-client ||
8654                 error "failed to clear client config"
8655
8656         setup_noconfig
8657
8658         #
8659         # check that configurations are intact
8660         #
8661         test_109_test_params $FSNAME
8662
8663         #
8664         # Destroy pool.
8665         #
8666         destroy_test_pools || error "destroy test pools failed"
8667
8668         cleanup
8669 }
8670 run_test 109a "test lctl clear_conf fsname"
8671
8672 test_109b()
8673 {
8674         [ $MDS1_VERSION -lt $(version_code 2.10.59) ] &&
8675                 skip "Needs MDS version 2.10.59 or later."
8676         [ "$(facet_fstype mgs)" == zfs ] &&
8677                 skip "LU-8727: no implementation for ZFS"
8678
8679         stopall
8680         reformat
8681         setup_noconfig
8682         client_up || error "client_up failed"
8683
8684         #
8685         # set number of permanent parameters
8686         #
8687         test_109_set_params $FSNAME
8688
8689         umount_client $MOUNT || error "umount_client failed"
8690         stop_ost || error "stop_ost failed"
8691         stop_mds || error "stop_mds failed"
8692
8693         test_109_clear_conf $FSNAME-MDT0000
8694         #
8695         # make sure that only one config is cleared
8696         #
8697         test_109_file_shortened $FSNAME-MDT0000 ||
8698                 error "failed to clear MDT0000 config"
8699         test_109_file_shortened $FSNAME-client &&
8700                 error "failed to clear client config"
8701
8702         setup_noconfig
8703         #
8704         # check that configurations are intact
8705         #
8706         test_109_test_params $FSNAME
8707
8708         #
8709         # Destroy pool.
8710         #
8711         destroy_test_pools || error "destroy test pools failed"
8712
8713         cleanup
8714 }
8715 run_test 109b "test lctl clear_conf one config"
8716
8717 test_110()
8718 {
8719         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
8720                 skip "Only applicable to ldiskfs-based MDTs"
8721
8722         do_facet $SINGLEMDS $DEBUGFS -w -R supported_features |grep large_dir ||
8723                 skip "large_dir option is not supported on MDS"
8724         do_facet ost1 $DEBUGFS -w -R supported_features | grep large_dir ||
8725                 skip "large_dir option is not supported on OSS"
8726
8727         stopall # stop all targets before modifying the target counts
8728         local old_mdscount=$MDSCOUNT
8729         local old_ostcount=$OSTCOUNT
8730         local replace=""
8731         stack_trap "MDSCOUNT=$old_mdscount OSTCOUNT=$old_ostcount" EXIT
8732         MDSCOUNT=1
8733         OSTCOUNT=1
8734
8735         # ext4_dir_entry_2 struct size:264
8736         # dx_root struct size:8
8737         # dx_node struct size:8
8738         # dx_entry struct size:8
8739         # For 1024 bytes block size.
8740         # First level directory entries: 126
8741         # Second level directory entries: 127
8742         # Entries in leaf: 3
8743         # For 2 levels limit: 48006
8744         # For 3 levels limit : 6096762
8745         # Create 80000 files to safely exceed 2-level htree limit.
8746         CONF_SANITY_110_LINKS=${CONF_SANITY_110_LINKS:-80000}
8747
8748         # can fit at most 3 filenames per 1KB leaf block, but each
8749         # leaf/index block will only be 3/4 full before split at each level
8750         (( MDSSIZE < CONF_SANITY_110_LINKS / 3 * 4/3 * 4/3 )) &&
8751                 CONF_SANITY_110_LINKS=$((MDSSIZE * 3 * 3/4 * 3/4))
8752
8753         combined_mgs_mds || replace=" --replace "
8754         local opts="$(mkfs_opts mds1 $(mdsdevname 1)) \
8755                     $replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
8756         if [[ $opts != *large_dir* ]]; then
8757                 if [[ $opts != *mkfsoptions* ]]; then
8758                         opts+=" --mkfsoptions=\\\"-O large_dir -b 1024 -i 65536\\\""
8759                 else
8760                         opts="${opts//--mkfsoptions=\\\"/ \
8761                                 --mkfsoptions=\\\"-O large_dir -b 1024 -i 65536 }"
8762                 fi
8763         fi
8764         echo "MDT params: $opts"
8765         load_modules
8766         combined_mgs_mds || start_mgs
8767         add mds1 $opts || error "add mds1 failed with new params"
8768         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
8769
8770         opts="$(mkfs_opts ost1 $(ostdevname 1)) \
8771                 $replace --reformat $(ostdevname 1) $(ostvdevname 1)"
8772
8773         if [[ $opts != *large_dir* ]]; then
8774                 if [[ $opts != *mkfsoptions* ]]; then
8775                         opts+=" --mkfsoptions=\\\"-O large_dir\\\" "
8776                 else
8777                         opts="${opts//--mkfsoptions=\\\"/ \
8778                                 --mkfsoptions=\\\"-O large_dir }"
8779                 fi
8780         fi
8781         echo "OST params: $opts"
8782         add ost1 $opts || error "add ost1 failed with new params"
8783         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
8784
8785         MOUNT_2=yes mountcli || error "mount clients failed"
8786
8787         mkdir -v $DIR/$tdir || error "cannot create $DIR/$tdir"
8788         local pids count=0 group=0
8789
8790         echo "creating $CONF_SANITY_110_LINKS in total"
8791         while (( count < CONF_SANITY_110_LINKS )); do
8792                 local len=$((253 - $(wc -c <<<"$tfile-$group-40000-")))
8793                 local dir=DIR$((group % 2 + 1))
8794                 local target=${!dir}/$tdir/$tfile-$group
8795                 local long=$target-$(generate_name $len)-
8796                 local create=$((CONF_SANITY_110_LINKS - count))
8797
8798                 (( create > 40000 )) && create=40000
8799                 touch $target || error "creating $target failed"
8800                 echo "creating $create hard links to $target"
8801                 createmany -l $target $long $create &
8802                 pids+=" $!"
8803
8804                 count=$((count + create))
8805                 group=$((group + 1))
8806         done
8807         echo "waiting for PIDs$pids to complete"
8808         wait $pids || error "createmany failed after $group groups"
8809
8810         umount_client $MOUNT2 -f
8811         cleanup
8812
8813         run_e2fsck $(facet_active_host mds1) $(mdsdevname 1) -n
8814         MDSCOUNT=$old_mdscount
8815         OSTCOUNT=$old_ostcount
8816 }
8817 run_test 110 "Adding large_dir with 3-level htree"
8818
8819 test_111() {
8820         [[ "$mds1_FSTYPE" != ldiskfs ]] &&
8821                 skip "Only applicable to ldiskfs-based MDTs"
8822
8823         is_dm_flakey_dev $SINGLEMDS $(mdsdevname 1) &&
8824                 skip "This test can not be executed on flakey dev"
8825
8826         do_facet $SINGLEMDS $DEBUGFS -w -R supported_features |grep large_dir ||
8827                 skip "large_dir option is not supported on MDS"
8828
8829         do_facet ost1 $DEBUGFS -w -R supported_features | grep large_dir ||
8830                 skip "large_dir option is not supported on OSS"
8831
8832         # cleanup before changing target counts
8833         cleanup
8834         local old_mdscount=$MDSCOUNT
8835         local old_ostcount=$OSTCOUNT
8836         local old_mdssize=$MDSSIZE
8837         local replace=""
8838         stack_trap "MDSSIZE=$MDSSIZE MDSCOUNT=$MDSCOUNT OSTCOUNT=$OSTCOUNT" EXIT
8839         MDSCOUNT=1
8840         OSTCOUNT=1
8841         (( MDSSIZE < 2400000 )) && MDSSIZE=2400000 # need at least 2.4GB
8842
8843         local mdsdev=$(mdsdevname 1)
8844         combined_mgs_mds || replace=" --replace "
8845         local opts="$(mkfs_opts mds1 $(mdsdevname 1)) \
8846                     $replace --reformat $(mdsdevname 1) $(mdsvdevname 1)"
8847         if [[ $opts != *large_dir* ]]; then
8848                 if [[ $opts != *mkfsoptions* ]]; then
8849                         opts+=" --mkfsoptions=\\\"-O large_dir -i 1048576 \\\" "
8850                 else
8851                         opts="${opts//--mkfsoptions=\\\"/ \
8852                                 --mkfsoptions=\\\"-O large_dir -i 1048576 }"
8853                 fi
8854         fi
8855         echo "MDT params: $opts"
8856         load_modules
8857         combined_mgs_mds || start_mgs
8858         __touch_device mds 1
8859         add mds1 $opts || error "add mds1 failed with new params"
8860         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
8861
8862         opts="$(mkfs_opts ost1 $(ostdevname 1)) \
8863                 $replace --reformat $(ostdevname 1) $(ostvdevname 1)"
8864         if [[ $opts != *large_dir* ]]; then
8865                 if [[ $opts != *mkfsoptions* ]]; then
8866                         opts+=" --mkfsoptions=\\\"-O large_dir \\\""
8867                 else
8868                         opts="${opts//--mkfsoptions=\\\"/ --mkfsoptions=\\\"-O large_dir }"
8869                 fi
8870         fi
8871         echo "OST params: $opts"
8872         __touch_device ost 1
8873         add ost1 $opts || error "add ost1 failed with new params"
8874         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
8875
8876         MOUNT_2=yes mountcli
8877         mkdir $DIR/$tdir || error "cannot create $DIR/$tdir"
8878         lfs df $DIR/$tdir
8879         lfs df -i $DIR/$tdir
8880
8881         local group=0
8882
8883         local start=$SECONDS
8884         local dirsize=0
8885         local dirmax=$((2 << 30))
8886         local needskip=0
8887         local taken=0
8888         local rate=0
8889         local left=0
8890         local num=0
8891         while (( !needskip & dirsize < dirmax )); do
8892                 local pids=""
8893
8894                 for cli in ${CLIENTS//,/ }; do
8895                         local len=$((253 - $(wc -c <<<"$cli-$group-60000-")))
8896                         local target=$cli-$group
8897                         local long=$DIR/$tdir/$target-$(generate_name $len)-
8898
8899                         RPWD=$DIR/$tdir do_node $cli touch $target ||
8900                                 error "creating $target failed"
8901                         echo "creating 60000 hardlinks to $target"
8902                         RPWD=$DIR/$tdir do_node $cli createmany -l $target $long 60000 &
8903                         pids+=" $!"
8904
8905                         group=$((group + 1))
8906                         target=$cli-$group
8907                         long=$DIR2/$tdir/$target-$(generate_name $len)-
8908
8909                         RPWD=$DIR2/$tdir do_node $cli touch $target ||
8910                                 error "creating $target failed"
8911                         echo "creating 60000 hardlinks to $target"
8912                         RPWD=$DIR2/$tdir do_node $cli createmany -l $target $long 60000 &
8913                         pids+=" $!"
8914
8915                         group=$((group + 1))
8916                 done
8917                 echo "waiting for PIDs$pids to complete"
8918                 wait $pids || error "createmany failed after $group groups"
8919                 dirsize=$(stat -c %s $DIR/$tdir)
8920                 taken=$((SECONDS - start))
8921                 rate=$((dirsize / taken))
8922                 left=$(((dirmax - dirsize) / rate))
8923                 num=$((group * 60000))
8924                 echo "estimate ${left}s left after $num files / ${taken}s"
8925                 # if the estimated time remaining is too large (it may change
8926                 # over time as the create rate is not constant) then exit
8927                 # without declaring a failure.
8928                 (( left > 1200 )) && needskip=1
8929         done
8930
8931         umount_client $MOUNT2 -f
8932         cleanup
8933
8934         (( $needskip )) && skip "ETA ${left}s after $num files / ${taken}s is too long"
8935
8936         run_e2fsck $(facet_active_host mds1) $(mdsdevname 1) -n
8937         MDSCOUNT=$old_mdscount
8938         OSTCOUNT=$old_ostcount
8939         MDSSIZE=$old_mdssize
8940 }
8941 run_test 111 "Adding large_dir with over 2GB directory"
8942
8943 test_112() {
8944         start_mds || error "MDS start failed"
8945         start_ost || error "OSS start failed"
8946         echo "start ost2 service on $(facet_active_host ost2)"
8947         start ost2 $(ostdevname 2) $(csa_add "$OST_MOUNT_OPTS" -o no_precreate) ||
8948                 error "start ost2 facet failed"
8949         local val=$(do_facet ost2 \
8950                    "$LCTL get_param -n obdfilter.$FSNAME-OST0001*.no_precreate")
8951         (( $val == 1 )) || error "obdfilter.$FSNAME-OST0001*.no_precreate=$val"
8952
8953         mount_client $MOUNT || error "mount client failed"
8954         wait_osc_import_state mds1 ost1 FULL
8955         wait_osc_import_state client ost1 FULL
8956         wait_osc_import_state client ost2 FULL
8957
8958         $LFS setstripe -i 0 $DIR/$tfile.0 ||
8959                 error "problem creating $tfile.0 on OST0000"
8960         $LFS setstripe -i 1 $DIR/$tfile.1 && $LFS getstripe $DIR/$tfile.1 &&
8961                 (( $($LFS getstripe -i $DIR/$tfile.1) == 1 )) &&
8962                 error "allowed to create $tfile.1 on OST0001"
8963         do_facet ost2 $LCTL set_param obdfilter.*.no_precreate=0
8964         sleep_maxage
8965         $LFS setstripe -i 1 $DIR/$tfile.2 ||
8966                 error "failed to create $tfile.2 on ost1 facet"
8967         # files not cleaned with ONLY_REPEAT because of client unmount below
8968         rm -f $DIR/$tfile.[012]
8969         stop_ost2 || error "stop ost2 facet failed"
8970         cleanup
8971 }
8972 run_test 112 "mount OST with nocreate option"
8973
8974 cleanup_115()
8975 {
8976         trap 0
8977         stopall
8978         rm -f $TMP/$tdir/lustre-mdt
8979 }
8980
8981 test_115() {
8982         if [ "$mds1_FSTYPE" != ldiskfs ]; then
8983                 skip "Only applicable to ldiskfs-based MDTs"
8984         fi
8985         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
8986
8987         local dbfs_ver=$(do_facet $SINGLEMDS $DEBUGFS -V 2>&1)
8988
8989         echo "debugfs version: $dbfs_ver"
8990         echo "$dbfs_ver" | egrep -w "1.44.3.wc1|1.44.5.wc1|1.45.2.wc1" &&
8991                 skip_env "This version of debugfs doesn't show inode number"
8992
8993         IMAGESIZE=$((3072 << 30)) # 3072 GiB
8994
8995         stopall
8996
8997         local saved_flakey=${FLAKEY}
8998
8999         stack_trap "FLAKEY=$saved_flakey" EXIT
9000         FLAKEY=false
9001
9002         echo "client1: "
9003         lctl dl
9004         mount | grep lustre
9005         echo "mds1: "
9006         do_facet mds1 "hostname; lctl dl; mount"
9007         echo "ost1: "
9008         do_facet ost1 "hostname; lctl dl; mount"
9009         # We need MDT size 3072GB, because it is smallest
9010         # partition that can store 2B inodes
9011         do_facet $SINGLEMDS "mkdir -p $TMP/$tdir"
9012         local mdsimgname=$TMP/$tdir/lustre-mdt
9013
9014         do_facet $SINGLEMDS "rm -f $mdsimgname"
9015         do_facet $SINGLEMDS "touch $mdsimgname"
9016         trap cleanup_115 RETURN EXIT
9017         do_facet $SINGLEMDS "$TRUNCATE $mdsimgname $IMAGESIZE" ||
9018                 skip "Backend FS doesn't support sparse files"
9019         local mdsdev=$(do_facet $SINGLEMDS "losetup -f")
9020
9021         do_facet $SINGLEMDS "losetup $mdsdev $mdsimgname"
9022
9023         local mds_opts="$(mkfs_opts mds1 $(mdsdevname 1))        \
9024                 --mkfsoptions='-O ea_inode,^resize_inode,meta_bg \
9025                 -N 2247484000 -E lazy_itable_init' --device-size=$IMAGESIZE"
9026         add mds1 $mds_opts --mgs --reformat $mdsdev ||
9027                 skip_env "format large MDT failed"
9028         opts="$(mkfs_opts ost1 $(ostdevname 1)) \
9029                 $replace --reformat $(ostdevname 1) $(ostvdevname 1)"
9030         add ost1 $opts || error "add ost1 failed with new params"
9031         start $SINGLEMDS  $mdsdev $MDS_MOUNT_OPTS || error "start MDS failed"
9032         start_ost || error "start OSS failed"
9033         mount_client $MOUNT || error "mount client failed"
9034
9035         mkdir -p $DIR/$tdir || error "mkdir $DIR/$tdir fail"
9036         goal="/sys/fs/ldiskfs/$(basename $mdsdev)/inode_goal"
9037         echo goal: $goal
9038         # 2147483648 is 0x80000000
9039         do_facet $SINGLEMDS "echo 2147483648 >> $goal; grep . $goal"
9040         touch $DIR/$tdir/$tfile
9041
9042         # attrs from 1 to 16 go to block, 17th - to inode
9043         for i in {1..17}; do
9044                 local nm="trusted.ea$i"
9045
9046                 setfattr -n $nm -v $(printf "xattr%0250d" $i) $DIR/$tdir/$tfile
9047         done
9048
9049         do_facet $SINGLEMDS $DEBUGFS -c -R "stat ROOT/$tdir/$tfile" $mdsdev
9050
9051         # inode <2147483649> trusted.ea16 (255)
9052         local inode_num=$(do_facet $SINGLEMDS \
9053                         "$DEBUGFS -c -R 'stat ROOT/$tdir/$tfile' $mdsdev" |
9054                          awk '/ea17/ { print $2 }' |
9055                          sed -e 's/>//' -e 's/<//' -e 's/\"//')
9056         echo "inode num: $inode_num"
9057         [ $inode_num -ge 2147483648 ] || error "inode $inode_num too small"
9058         do_facet $SINGLEMDS "losetup -d $mdsdev"
9059         cleanup_115
9060 }
9061 run_test 115 "Access large xattr with inodes number over 2TB"
9062
9063 test_116() {
9064         [ "$mds1_FSTYPE" != ldiskfs ] && skip "ldiskfs only test"
9065         [ "$MDS1_VERSION" -lt $(version_code 2.10.59) ] &&
9066                 skip "Need server version at least 2.10.59"
9067         do_facet $SINGLEMDS which mkfs.xfs ||
9068                 skip_env "No mkfs.xfs installed"
9069
9070         stopall
9071         load_modules
9072
9073         local tmpmnt=$TMP/$tdir
9074         local mdtimg=$tfile-mdt0
9075
9076         do_facet $SINGLEMDS mkdir -p $tmpmnt
9077         stack_trap "do_facet $SINGLEMDS rmdir $tmpmnt" EXIT
9078
9079         do_facet $SINGLEMDS touch $TMP/$mdtimg
9080         stack_trap "do_facet $SINGLEMDS rm -f $TMP/$mdtimg" EXIT
9081         do_facet $SINGLEMDS mkfs -t xfs -d file,size=1t,name=$TMP/$mdtimg ||
9082                 error "mkfs temporary xfs image"
9083
9084         do_facet $SINGLEMDS mount $TMP/$mdtimg $tmpmnt ||
9085                 error "mount temporary xfs image"
9086         stack_trap "do_facet $SINGLEMDS umount $tmpmnt" EXIT
9087         local old_mdssize=$MDSSIZE
9088         local old_mdsisize=$MDSISIZE
9089
9090         MDSSIZE=$((17 * 1024 * 1024 * 1024)) # 17T MDT
9091         MDSISIZE=$((16 << 20))
9092         local opts17t="$(mkfs_opts $SINGLEMDS)"
9093
9094         MDSSIZE=$old_mdssize
9095         MDSISIZE=$old_mdsisize
9096
9097         do_facet $SINGLEMDS $MKFS \
9098                 ${opts17t/-E /-E lazy_itable_init,lazy_journal_init,} \
9099                 $tmpmnt/$mdtimg ||
9100                 error "failed to mkfs for $tmpmnt/$mdtimg"
9101
9102         do_facet $SINGLEMDS $TUNE2FS -l $tmpmnt/$mdtimg |
9103                 grep -qw 'features.*extent' || error "extent should be enabled"
9104         reformat_and_config
9105 }
9106 run_test 116 "big size MDT support"
9107
9108 test_117() {
9109         setup
9110         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.nrs_policies=fifo"
9111         do_facet ost1 "$LCTL get_param -n ost.OSS.ost_io.nrs_tbf_rule" &&
9112                 error "get_param should fail"
9113         cleanup || error "cleanup failed with rc $?"
9114 }
9115 run_test 117 "lctl get_param return errors properly"
9116
9117 test_119() {
9118         local had_config
9119         local size_mb
9120
9121         [[ "$MDSCOUNT" -ge 2 ]] || skip "Need more at least 2 MDTs"
9122
9123         had_config=$(do_facet mds1 "$LCTL get_param debug | grep config")
9124         do_facet mds1 "$LCTL set_param debug=+config"
9125         do_facet mds1 "$LCTL clear"
9126
9127         setup
9128         do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)" &>/dev/null
9129         # mount after writeconf will make "add osp" added to mdt0 config:
9130         # 53 (224)marker  60 (flags=0x01, v2.5.1.0) lustre-MDT0001  'add osp'
9131         # 54 (080)add_uuid  nid=...  0:  1:...
9132         # 55 (144)attach    0:lustre-MDT0001-osp-MDT0000  1:osp  2:...
9133         # 56 (144)setup     0:lustre-MDT0001-osp-MDT0000  1:...  2:...
9134         # 57 (136)modify_mdc_tgts add 0:lustre-MDT0000-mdtlov  1:...  2:1  3:1
9135         # duplicate modify_mdc_tgts caused crashes
9136
9137         debug_size_save
9138         # using larger debug_mb size to avoid lctl dk log truncation
9139         size_mb=$((DEBUG_SIZE_SAVED * 4))
9140         for i in {1..3}; do
9141                 stop_mdt 2
9142                 # though config processing stops after failed attach and setup
9143                 # it will proceed after the failed command after each writeconf
9144                 # this is the original scenario of the issue
9145                 do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)" &>/dev/null
9146                 do_facet mds1 "$LCTL set_param debug_mb=$size_mb"
9147                 start_mdt 2
9148
9149                 wait_update_facet_cond mds1 \
9150                         "$LCTL dk | grep -c Processed.log.$FSNAME-MDT0000" \
9151                         ">" 1 300
9152         done
9153         debug_size_restore
9154
9155         [[ -z "$had_config" ]] && do_facet mds1 lctl set_param debug=-config
9156
9157         reformat
9158 }
9159 run_test 119 "writeconf on slave mdt shouldn't duplicate mdc/osp and crash"
9160
9161 test_120() { # LU-11130
9162         [ "$MDSCOUNT" -lt 2 ] && skip "mdt count < 2"
9163         [ "$mds1_FSTYPE" != ldiskfs ] &&
9164                 skip "ldiskfs only test"
9165         [ "$MDS1_VERSION" -lt $(version_code 2.11.56) ] &&
9166                 skip "Need DNE2 capable MD target with LU-11130 fix"
9167
9168         setup
9169
9170         local mds1host=$(facet_active_host mds1)
9171         local mds1dev=$(mdsdevname 1)
9172
9173         $LFS mkdir -i 1 $DIR/$tdir
9174         $LFS mkdir -i 0 $DIR/$tdir/mds1dir
9175
9176         ln -s foo $DIR/$tdir/bar
9177         mv $DIR/$tdir/bar $DIR/$tdir/mds1dir/bar2 ||
9178                 error "cross-target rename failed"
9179
9180         stopall
9181
9182         run_e2fsck $mds1host $mds1dev "-n"
9183 }
9184 run_test 120 "cross-target rename should not create bad symlinks"
9185
9186 test_121(){
9187         stopall
9188         start_mgsmds || error "MGS MDS Start failed"
9189         fail mgs
9190         stop_mds || error "Stopping MDSes failed"
9191         #failback
9192         start_mds
9193         fail mgs
9194         stop_mds || error "Stopping MDSes failed"
9195 }
9196 run_test 121 "failover MGS"
9197
9198 test_122a() {
9199         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9200         [[ "$OST1_VERSION" -ge $(version_code 2.11.53) ]] ||
9201                 skip "Need OST version at least 2.11.53"
9202
9203         reformat
9204         LOAD_MODULES_REMOTE=true load_modules
9205 #define OBD_FAIL_OFD_SET_OID 0x1e0
9206         do_facet ost1 $LCTL set_param fail_loc=0x00001e0
9207
9208         setup_noconfig
9209         $LFS mkdir -i1 -c1 $DIR/$tdir
9210         $LFS setstripe -i0 -c1 $DIR/$tdir
9211         do_facet ost1 $LCTL set_param fail_loc=0
9212         createmany -o $DIR/$tdir/file_ 1000 ||
9213                 error "Fail to create a new sequence"
9214
9215         cleanup
9216 }
9217 run_test 122a "Check OST sequence update"
9218
9219 test_122b() {
9220         [[ "$OST1_VERSION" -ge $(version_code 2.11.53) ]] ||
9221                 skip "Need OST version at least 2.11.53"
9222         local err
9223
9224         reformat
9225         LOAD_MODULES_REMOTE=true load_modules
9226 #define OBD_FAIL_OFD_SET_OID 0x1e0
9227         do_facet ost1 $LCTL set_param fail_loc=0x00001e0
9228
9229         stack_trap cleanup EXIT
9230         setup_noconfig
9231         do_facet ost1 $LCTL set_param obdfilter.*.precreate_batch=256
9232         $LFS mkdir -i0 -c1 $DIR/$tdir || error "failed to create directory"
9233         $LFS setstripe -i0 -c1 $DIR/$tdir || error "failed to setstripe"
9234         do_facet ost1 $LCTL set_param fail_loc=0
9235         # overflow IDIF 32bit and create > OST_MAX_PRECREATE*5
9236         # so a new wrong sequence would differ from an original with error
9237         #define OST_MAX_PRECREATE 20000
9238         local ost_max_precreate=20100
9239         local num_create=$(( ost_max_precreate * 5 ))
9240
9241         # Check the number of inodes available on OST0
9242         local files=0
9243         local ifree=$($LFS df -i $MOUNT |
9244                 awk '/OST0000/ { print $4 }'; exit ${PIPESTATUS[0]})
9245
9246         log "On OST0, $ifree inodes available. Want $num_create. rc=$?"
9247
9248         if [ $ifree -lt 10000 ]; then
9249                 files=$(( ifree - 50 ))
9250         else
9251                 files=10000
9252         fi
9253
9254         local j=$((num_create / files + 1))
9255
9256         for i in $(seq 1 $j); do
9257                 createmany -o $DIR/$tdir/$tfile-$i- $files ||
9258                         error "createmany fail create $files files: $?"
9259                 unlinkmany $DIR/$tdir/$tfile-$i- $files ||
9260                         error "unlinkmany failed unlink $files files"
9261         done
9262         sync
9263         touch $DIR/$tdir/$tfile
9264         do_facet ost1 sync
9265         #we need a write req during recovery for ofd_seq_load
9266         replay_barrier ost1
9267         dd if=/dev/urandom of=$DIR/$tdir/$tfile bs=1024k count=1 oflag=sync ||
9268                  error "failed to write file"
9269
9270         # OBD_FAIL_OST_CREATE_NET 0x204
9271         do_facet ost1 $LCTL set_param fail_loc=0x80000204
9272         fail ost1
9273         createmany -o $DIR/$tdir/file_ 100
9274         sync
9275
9276         err=$(do_facet ost1 dmesg | tac | sed "/Recovery over/,$ d" |
9277               grep "OST replaced or reformatted")
9278         [ -z "$err" ] || error $err
9279 }
9280 run_test 122b "Check OST sequence wouldn't change when IDIF 32bit overflows"
9281
9282 test_123aa() {
9283         remote_mgs_nodsh && skip "remote MGS with nodsh"
9284         [ -d $MOUNT/.lustre ] || setup
9285
9286         # test old logid format until removal from llog_ioctl.c::str2logid()
9287         if [ $MGS_VERSION -lt $(version_code 3.1.53) ]; then
9288                 do_facet mgs $LCTL dl | grep MGS
9289                 do_facet mgs "$LCTL --device %MGS llog_print \
9290                               \\\\\\\$$FSNAME-client 1 10" ||
9291                         error "old llog_print failed"
9292         fi
9293
9294         # test new logid format
9295         if [ $MGS_VERSION -ge $(version_code 2.9.53) ]; then
9296                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
9297                         error "new llog_print failed"
9298         fi
9299 }
9300 run_test 123aa "llog_print works with FIDs and simple names"
9301
9302 test_123ab() {
9303         remote_mgs_nodsh && skip "remote MGS with nodsh"
9304         [[ $MGS_VERSION -gt $(version_code 2.11.51) ]] ||
9305                 skip "Need server with working llog_print support"
9306
9307         [ -d $MOUNT/.lustre ] || setup
9308
9309         local yaml
9310         local orig_val
9311         local mgs_arg=""
9312
9313         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9314                 mgs_arg="--device MGS"
9315
9316         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
9317         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME"
9318
9319         yaml=$(do_facet mgs $LCTL $mgs_arg llog_print params |
9320                grep jobid_name | tail -n 1)
9321
9322         local param=$(awk '{ print $10 }' <<< "$yaml")
9323         local val=$(awk '{ print $12 }' <<< "$yaml")
9324         #return to the default
9325         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
9326         [ $val = "TESTNAME" ] || error "bad value: $val"
9327         [ $param = "jobid_name," ] || error "Bad param: $param"
9328 }
9329 run_test 123ab "llog_print params output values from set_param -P"
9330
9331 test_123ac() { # LU-11566
9332         remote_mgs_nodsh && skip "remote MGS with nodsh"
9333         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
9334                 skip "Need 'lctl llog_print --start' on MGS"
9335
9336         local start=10
9337         local end=50
9338         local mgs_arg=""
9339
9340         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9341                 mgs_arg="--device MGS"
9342
9343         [ -d $MOUNT/.lustre ] || setup
9344
9345         # - { index: 10, event: add_uuid, nid: 192.168.20.1@tcp(0x20000c0a81401,
9346         #     node: 192.168.20.1@tcp }
9347         do_facet mgs $LCTL $mgs_arg \
9348                 llog_print --start $start --end $end $FSNAME-client | tr -d , |
9349                 while read DASH BRACE INDEX idx EVENT BLAH BLAH BLAH; do
9350                 (( idx >= start )) || error "llog_print index $idx < $start"
9351                 (( idx <= end )) || error "llog_print index $idx > $end"
9352         done
9353 }
9354 run_test 123ac "llog_print with --start and --end"
9355
9356 test_123ad() { # LU-11566
9357         remote_mgs_nodsh && skip "remote MGS with nodsh"
9358         # older versions of lctl may not print all records properly
9359         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
9360                 skip "Need 'lctl llog_print --start' on MGS"
9361
9362         [ -d $MOUNT/.lustre ] || setup
9363
9364         # append a new record, to avoid issues if last record was cancelled
9365         local old=$($LCTL get_param -n osc.*-OST0000-*.max_dirty_mb | head -1)
9366         do_facet mgs $LCTL conf_param $FSNAME-OST0000.osc.max_dirty_mb=$old
9367
9368         # logid:            [0x3:0xa:0x0]:0
9369         # flags:            4 (plain)
9370         # records_count:    72
9371         # last_index:       72
9372         local num=$(do_facet mgs $LCTL --device MGS llog_info $FSNAME-client |
9373                     awk '/last_index:/ { print $2 - 1 }')
9374
9375         # - { index: 71, event: set_timeout, num: 0x14, param: sys.timeout=20 }
9376         local last=$(do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9377                      tail -1 | awk '{ print $4 }' | tr -d , )
9378         (( last == num )) || error "llog_print only showed $last/$num records"
9379 }
9380 run_test 123ad "llog_print shows all records"
9381
9382 test_123ae() { # LU-11566
9383         local max
9384         local mgs_arg=""
9385         local log
9386         local id
9387         local orig
9388         local new
9389         local rpcs
9390
9391         remote_mgs_nodsh && skip "remote MGS with nodsh"
9392         [ -d $MOUNT/.lustre ] || setupall
9393
9394         max=$($LCTL get_param -n osc.*-OST0000-*.max_dirty_mb | head -1)
9395         pgs=$($LCTL get_param -n osc.*-OST0000-*.max_pages_per_rpc | head -1)
9396         [[ $MGS_VERSION -gt $(version_code 2.13.54) ]] ||
9397                 mgs_arg="--device MGS"
9398
9399         if do_facet mgs "$LCTL help llog_cancel" 2>&1| grep -q -- --log_id; then
9400                 # save one set_param -P record in case none exist
9401
9402                 do_facet mgs $LCTL set_param -P osc.*.max_pages_per_rpc=$pgs
9403                 stack_trap "do_facet mgs $LCTL set_param -P -d \
9404                                 osc.*.max_pages_per_rpc"
9405
9406                 log=params
9407                 orig=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9408                         tail -1 | awk '{ print $4 }' | tr -d , )
9409                 do_facet mgs $LCTL set_param -P osc.*.max_dirty_mb=$max
9410                 do_facet mgs $LCTL $mgs_arg llog_print $log | tail -1 |
9411                         grep "parameter: osc.*.max_dirty_mb" ||
9412                         error "new set_param -P wasn't stored in params log"
9413
9414                 # - { index: 71, event: set_param, device: general,
9415                 #     param: osc.*.max_dirty_mb, value: 256 }
9416                 id=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9417                      tail -1 | awk '{ print $4 }' | tr -d , )
9418                 do_facet mgs $LCTL $mgs_arg llog_cancel $log --log_idx=$id
9419                 local new=$(do_facet mgs $LCTL $mgs_arg llog_print $log |
9420                             tail -1 | awk '{ print $4 }' | tr -d , )
9421                 (( new == orig )) ||
9422                         error "new llog_cancel now $new, not at $orig records"
9423         fi
9424
9425         # test old positional parameters for a while still
9426         if [ "$MGS_VERSION" -le $(version_code 3.1.53) ]; then
9427                 log=$FSNAME-client
9428
9429                 do_facet mgs $LCTL conf_param \
9430                         $FSNAME-OST0000.osc.max_pages_per_rpc=$pgs
9431                 stack_trap "do_facet mgs $LCTL conf_param -d \
9432                                 $FSNAME-OST0000.osc.max_pages_per_rpc"
9433
9434                 orig=$(do_facet mgs $LCTL --device MGS llog_print $log |
9435                        tail -1 | awk '{ print $4 }' | tr -d , )
9436                 do_facet mgs $LCTL conf_param $FSNAME-OST0000.osc.max_dirty_mb=$max
9437                 do_facet mgs $LCTL --device MGS llog_print $log |
9438                         tail -1 | grep "parameter: osc.max_dirty_mb" ||
9439                         error "old conf_param wasn't stored in params log"
9440                 do_facet mgs $LCTL --device MGS llog_print $log
9441                 # - { index: 71, event: conf_param, device: testfs-OST0000-osc,
9442                 #     param: osc.max_dirty_mb=256 }
9443                 id=$(do_facet mgs $LCTL --device MGS llog_print $log |
9444                      tail -1 | awk '{ print $4 }' | tr -d , )
9445                 do_facet mgs $LCTL --device MGS llog_cancel $log $id
9446                 do_facet mgs $LCTL --device MGS llog_print $log
9447                 new=$(do_facet mgs $LCTL --device MGS llog_print $log |
9448                       tail -1 | awk '{ print $4 }' | tr -d , )
9449                 (( new == orig )) ||
9450                         error "old llog_cancel now $new, not at $orig records"
9451         fi
9452 }
9453 run_test 123ae "llog_cancel can cancel requested record"
9454
9455 test_123af() { #LU-13609
9456         [ "$MGS_VERSION" -ge $(version_code 2.13.54) -a \
9457            "$MDS1_VERSION" -ge $(version_code 2.13.54) ] ||
9458                 skip "Need both MGS and MDS version at least 2.13.54"
9459
9460         [ -d $MOUNT/.lustre ] || setupall
9461         stack_trap "do_facet mds1 $LCTL set_param fail_loc=0" EXIT
9462
9463         local device
9464         local facet
9465         local cmd
9466         local orig_clist
9467         local orig_count
9468         local new_clist
9469         local new_count
9470
9471         for device in "MGS" "$FSNAME-MDT0000"; do
9472                 cmd="--device $device llog_catlist"
9473                 echo "lctl $cmd ..."
9474                 if [ "$device" = "MGS" ]; then
9475                         facet="mgs"
9476                 else
9477                         facet="mds1"
9478                 fi
9479                 orig_clist=($(do_facet $facet $LCTL $cmd | awk '{ print $2 }'))
9480                 orig_count=${#orig_clist[@]}
9481                 echo "orig_clist: ${orig_clist[*]}"
9482
9483                 #define OBD_FAIL_CATLIST 0x131b
9484                 #fetch to llog records from the second one
9485                 do_facet $facet $LCTL set_param fail_loc=0x131b fail_val=2
9486
9487                 new_clist=($(do_facet $facet $LCTL $cmd | awk '{ print $2 }'))
9488                 new_count=${#new_clist[@]}
9489                 echo "new_clist: ${new_clist[*]}"
9490
9491                 [ $new_count -eq $((orig_count - 1)) ] ||
9492                         error "$new_count != $orig_count - 1"
9493                 for i in $(seq 0 $new_count); do
9494                         j=$((i + 1))
9495                         [ "${orig_clist[$j]}" = "${new_clist[$i]}" ] ||
9496                                 error "${orig_clist[$j]} != ${new_clist[$i]}"
9497                 done
9498                 do_facet mds1 $LCTL set_param fail_loc=0
9499                 echo "done"
9500         done
9501 }
9502 run_test 123af "llog_catlist can show all config files correctly"
9503
9504 test_123ag() { # LU-15142
9505         local rec
9506         local orig_val
9507
9508         remote_mgs_nodsh && skip "remote MGS with nodsh"
9509         (( $MGS_VERSION >= $(version_code 2.14.55) )) ||
9510                 skip "Need server version least 2.14.55"
9511
9512         [ -d $MOUNT/.lustre ] || setup
9513
9514         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
9515         stack_trap "do_facet mgs $LCTL set_param -P jobid_name=$orig_val"
9516
9517         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME1"
9518         do_facet mgs $LCTL set_param -P -d jobid_name
9519         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9520                 grep -c jobid_name)
9521         (( rec == 0 )) || error "parameter was not deleted, check #1"
9522         do_facet mgs $LCTL set_param -P jobid_name="TESTNAME1"
9523         rec=$(do_facet mgs $LCTL --device MGS llog_print params |
9524                 grep -c jobid_name)
9525         (( rec == 1)) || error "parameter is not set"
9526         # usage with ordinary set_param format works too
9527         do_facet mgs $LCTL set_param -P -d jobid_name="ANY"
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 #2"
9531 }
9532 run_test 123ag "llog_print skips values deleted by set_param -P -d"
9533
9534 test_123F() {
9535         remote_mgs_nodsh && skip "remote MGS with nodsh"
9536
9537         [ -d $MOUNT/.lustre ] || setup
9538         local yaml_file="$TMP/$tfile.yaml"
9539
9540         do_facet mgs rm "$yaml_file"
9541         local cfgfiles=$(do_facet mgs "lctl --device MGS llog_catlist" |
9542                          sed 's/config_log://')
9543
9544         # set jobid_var to a different value for test
9545         local orig_val=$(do_facet mgs $LCTL get_param jobid_var)
9546
9547         do_facet mgs $LCTL set_param -P jobid_var="TESTNAME"
9548
9549         for i in $cfgfiles params; do
9550                 do_facet mgs "lctl --device MGS llog_print ${i} >> $yaml_file"
9551         done
9552
9553         echo "Unmounting FS"
9554         stopall
9555         echo "Writeconf"
9556         writeconf_all
9557         echo "Remounting"
9558         setup_noconfig
9559
9560         # Reapply the config from before
9561         echo "Setting configuration parameters"
9562         do_facet mgs "lctl set_param -F $yaml_file"
9563
9564         local set_val=$(do_facet mgs $LCTL get_param jobid_var)
9565
9566         do_facet mgs $LCTL set_param -P $orig_val
9567
9568         [ $set_val == "jobid_var=TESTNAME" ] ||
9569                 error "$set_val is not TESTNAME"
9570
9571         do_facet mgs rm "$yaml_file"
9572         cleanup
9573 }
9574 run_test 123F "clear and reset all parameters using set_param -F"
9575
9576 test_124()
9577 {
9578         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9579         [ -z $mds2failover_HOST ] && skip "needs MDT failover setup"
9580
9581         setup
9582         do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9583                 grep 1.2.3.4@tcp && error "Should not be fake nid"
9584         do_facet mgs $LCTL conf_param $FSNAME-MDT0001.failover.node=1.2.3.4@tcp\
9585                 || error "Set params error"
9586         do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
9587                 grep 1.2.3.4@tcp || error "Fake nid should be added"
9588         cleanup
9589
9590         load_modules
9591         if combined_mgs_mds; then
9592                 start_mdt 1 "-o nosvc" ||
9593                         error "starting mds with nosvc option failed"
9594         fi
9595         local nid=$(do_facet mds2 $LCTL list_nids | head -1)
9596         local failover_nid=$(do_node $mds2failover_HOST $LCTL list_nids | head -1)
9597
9598         do_facet mgs $LCTL replace_nids $FSNAME-MDT0001 $nid:$failover_nid ||
9599                 error "replace_nids execution error"
9600
9601         if combined_mgs_mds; then
9602                 stop_mdt 1
9603         fi
9604
9605         setup
9606         fail mds2
9607         echo "lfs setdirstripe"
9608         $LFS setdirstripe -i 1 $MOUNT/$tdir || error "setdirstirpe error"
9609         echo ok
9610 }
9611 run_test 124 "check failover after replace_nids"
9612
9613 get_max_sectors_kb() {
9614         local facet="$1"
9615         local device="$2"
9616         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9617         local max_sectors_path="/sys/block/${dev_base}/queue/max_sectors_kb"
9618
9619         do_facet ${facet} "[[ -e ${max_sectors_path} ]] &&
9620                            cat ${max_sectors_path}"
9621 }
9622
9623 get_max_hw_sectors_kb() {
9624         local facet="$1"
9625         local device="$2"
9626         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9627         local max_hw_path="/sys/block/${dev_base}/queue/max_hw_sectors_kb"
9628
9629         do_facet ${facet} "[[ -e ${max_hw_path} ]] && cat ${max_hw_path}"
9630 }
9631
9632 set_max_sectors_kb() {
9633         local facet="$1"
9634         local device="$2"
9635         local value="$3"
9636         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9637         local max_sectors_path="/sys/block/${dev_base}/queue/max_sectors_kb"
9638
9639         do_facet ${facet} "[[ -e ${max_sectors_path} ]] &&
9640                            echo ${value} > ${max_sectors_path}"
9641         rc=$?
9642
9643         [[ $rc -ne 0 ]] && echo "Failed to set ${max_sectors_path} to ${value}"
9644
9645         return $rc
9646 }
9647
9648 # Return 0 if all slave devices have max_sectors_kb == max_hw_sectors_kb
9649 # Otherwise return > 0
9650 check_slaves_max_sectors_kb()
9651 {
9652         local facet="$1"
9653         local device="$2"
9654         local dev_base=$(basename $(do_facet ${facet} "readlink -f ${device}"))
9655         local slaves_dir=/sys/block/${dev_base}/slaves
9656         local slave_devices=$(do_facet ${facet} "ls ${slaves_dir} 2>/dev/null")
9657         [[ -z ${slave_devices} ]] && return 0
9658
9659         local slave max_sectors new_max_sectors max_hw_sectors path
9660         local rc=0
9661
9662         for slave in ${slave_devices}; do
9663                 path="/dev/${slave}"
9664                 ! is_blkdev ${facet} ${path} && continue
9665                 max_sectors=$(get_max_sectors_kb ${facet} ${path})
9666                 max_hw_sectors=$(get_max_hw_sectors_kb ${facet} ${path})
9667                 new_max_sectors=${max_hw_sectors}
9668                 [[ ${new_max_sectors} -gt ${RQ_SIZE_LIMIT} ]] &&
9669                         new_max_sectors=${RQ_SIZE_LIMIT}
9670
9671                 if [[ ${max_sectors} -ne ${new_max_sectors} ]]; then
9672                         echo "${path} ${max_sectors} ${new_max_sectors}"
9673                         ((rc++))
9674                 fi
9675                 check_slaves_max_sectors_kb ${facet} ${path}
9676                 ((rc + $?))
9677         done
9678
9679         return $rc
9680 }
9681
9682 test_125()
9683 {
9684         local facet_list="mgs mds1 ost1"
9685         combined_mgs_mds && facet_list="mgs ost1"
9686
9687         local facet
9688         for facet in ${facet_list}; do
9689                 [[ $(facet_fstype ${facet}) != ldiskfs ]] &&
9690                         skip "ldiskfs only test" &&
9691                         return 0
9692                 ! is_blkdev ${facet} $(facet_device ${facet}) &&
9693                         skip "requires all real devices" &&
9694                         return 0
9695         done
9696
9697         local rc=0
9698         # We don't increase IO request size limit past 16MB. See comments in
9699         # lustre/utils/libmount_utils_ldiskfs.c:tune_max_sectors_kb()
9700         RQ_SIZE_LIMIT=$((16 * 1024))
9701         local device old_max_sectors new_max_sectors max_hw_sectors
9702         for facet in ${facet_list}; do
9703                 device=$(facet_device ${facet})
9704                 old_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9705                 max_hw_sectors=$(get_max_hw_sectors_kb ${facet} ${device})
9706
9707                 # The expected value after l_tunedisk is executed
9708                 new_max_sectors=$old_max_sectors
9709                 [[ ${new_max_sectors_kb} -gt ${RQ_SIZE_LIMIT} ]] &&
9710                         new_max_sectors_kb=${RQ_SIZE_LIMIT}
9711
9712                 # Ensure the current value of max_sectors_kb does not equal
9713                 # max_hw_sectors_kb, so we can tell whether l_tunedisk did
9714                 # anything
9715                 set_max_sectors_kb ${facet} ${device} $((new_max_sectors - 1))
9716
9717                 # Value before l_tunedisk
9718                 local pre_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9719                 if [[ ${pre_max_sectors} -ne $((new_max_sectors - 1)) ]]; then
9720                         echo "unable to satsify test pre-condition:"
9721                         echo "${pre_max_sectors} != $((new_max_sectors - 1))"
9722                         ((rc++))
9723                         continue
9724                 fi
9725
9726                 echo "Before: ${facet} ${device} ${pre_max_sectors} ${max_hw_sectors}"
9727
9728                 do_facet ${facet} "l_tunedisk ${device}"
9729
9730                 # Value after l_tunedisk
9731                 local post_max_sectors=$(get_max_sectors_kb ${facet} ${device})
9732
9733                 echo "After: ${facet} ${device} ${post_max_sectors} ${max_hw_sectors}"
9734
9735                 if [[ ${facet} != ost1 ]]; then
9736                         if [[ ${post_max_sectors} -ne ${pre_max_sectors} ]]; then
9737                                 echo "l_tunedisk modified max_sectors_kb of ${facet}"
9738                                 ((rc++))
9739                         fi
9740
9741                         set_max_sectors_kb ${facet} ${device} ${old_max_sectors}
9742                 else
9743                         if [[ ${post_max_sectors} -eq ${pre_max_sectors} ]]; then
9744                                 echo "l_tunedisk failed to modify max_sectors_kb of ${facet}"
9745                                 ((rc++))
9746                         fi
9747
9748                         check_slaves_max_sectors_kb ${facet} ${device} ||
9749                                 ((rc++))
9750                 fi
9751         done
9752
9753         return $rc
9754 }
9755 run_test 125 "check l_tunedisk only tunes OSTs and their slave devices"
9756
9757 test_126() {
9758         [[ "$MDS1_VERSION" -ge $(version_code 2.13.52) ]] ||
9759                 skip "Need MDS version at least 2.13.52"
9760
9761         cleanup
9762         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ../libcfs/libcfs/libcfs
9763         #define OBD_FAIL_OBD_SETUP 0x60d
9764         do_facet mds1 $LCTL set_param fail_loc=0x60d
9765         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_modules &
9766         for i in {1..40}; do
9767                 do_facet mds1 lsmod | grep -q osd_$mds1_FSTYPE && break
9768                 sleep 1
9769         done
9770         clear_failloc $SINGLEMDS 20 &
9771         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
9772 }
9773 run_test 126 "mount in parallel shouldn't cause a crash"
9774
9775 test_127() {
9776         [[ "$ost1_FSTYPE" == ldiskfs ]] || skip "ldiskfs only test"
9777
9778         cleanup
9779         setup
9780         zconf_umount_clients $RCLIENTS $MOUNT
9781
9782         wait_osp_active ost ${FSNAME}-OST0000 0 1
9783         local osc_tgt="$FSNAME-OST0000-osc-$($LFS getname -i $DIR)"
9784         local avail1=($($LCTL get_param -n osc.${osc_tgt}.kbytesavail))
9785
9786         $LFS setstripe -i 0 $DIR/$tfile || error "failed creating $DIR/$tfile"
9787         dd if=/dev/zero of=$DIR/$tfile bs=1M oflag=direct || true
9788
9789         local avail2=($($LCTL get_param -n osc.${osc_tgt}.kbytesavail))
9790
9791         if ((avail2 * 100 / avail1 > 1)); then
9792                 lfs df $DIR
9793                 ls -l $DIR/$tfile
9794                 error "more than 1% space left: before=$avail1 after=$avail2"
9795         fi
9796
9797         local mbs=$(($(stat -c %s $DIR/$tfile) / (1024 * 1024)))
9798
9799         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$mbs conv=notrunc \
9800                 oflag=direct || error "overwrite failed"
9801 }
9802 run_test 127 "direct io overwrite on full ost"
9803
9804 test_128()
9805 {
9806         combined_mgs_mds && skip "need separate mgs device"
9807         [ "$ost2_FSTYPE" == zfs ] && import_zpool ost2
9808
9809         format_ost 2
9810         # Try to apply nolocallogs to the virgin OST. Should fail.
9811         do_facet ost2 "$TUNEFS --nolocallogs $(ostdevname 2)" &&
9812                 error "nolocallogs should not be allowed on the virgin target"
9813
9814         setupall
9815         stopall
9816
9817         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9818         # Start OST without MGS (local configs)
9819         do_facet ost1 "$TUNEFS --dryrun $(ostdevname 1)"
9820         start_ost || error "unable to start OST1"
9821         stop_ost || error "Unable to stop OST1"
9822
9823         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9824         # Do not allow reading local configs, should fail
9825         do_facet ost1 "$TUNEFS --nolocallogs $(ostdevname 1)" ||
9826                 error "Can not set nolocallogs"
9827         start_ost && error "OST1 started, but should fail"
9828
9829         # Connect to MGS successfully, reset nolocallogs flag
9830         [ "$ost1_FSTYPE" == zfs ] && import_zpool ost1
9831         start_mgs || error "unable to start MGS"
9832         start_ost || error "unable to start OST1"
9833
9834         do_facet ost1 "$TUNEFS --dryrun $(ostdevname 1)" | grep "nolocallogs" &&
9835                 error "nolocallogs expected to be reset"
9836
9837         stop_ost || error "Unable to stop OST1"
9838 }
9839 run_test 128 "Force using remote logs with --nolocallogs"
9840
9841 test_129()
9842 {
9843         stopall
9844         start_mds || error "MDS start failed"
9845         format_ost 1
9846         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &&
9847                 error "start ost1 should fail" || true
9848         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &&
9849                 error "second start ost1 should fail" || true
9850         do_facet ost1 "$TUNEFS --writeconf $(ostdevname 1)"
9851         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS ||
9852                 error "start ost1 failed"
9853         stop ost1
9854         stop_mds
9855 }
9856 run_test 129 "attempt to connect an OST with the same index should fail"
9857
9858 test_130()
9859 {
9860         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
9861         setupall
9862         stop_mdt 2 || error "mdt2 stop failed"
9863         do_facet mds2 "$TUNEFS --writeconf $(mdsdevname 2)"
9864         start_mdt 2 || error "mdt2 start failed"
9865         do_facet mds2 "$LCTL dl" | grep MDT0001-osp-MDT0001 &&
9866                 error "Illegal OSP device created" || true
9867 }
9868 run_test 130 "re-register an MDT after writeconf"
9869
9870 test_131() {
9871         [ "$mds1_FSTYPE" == "ldiskfs" ] || skip "ldiskfs only test"
9872         do_facet mds1 $DEBUGFS -R features $(mdsdevname 1) |
9873                 grep -q project || skip "skip project quota not supported"
9874
9875         local projid
9876
9877         setupall
9878         test_mkdir -c $MDSCOUNT -p $DIR/$tdir
9879         $LFS project -p 1000 $DIR/$tdir || error "set dir project id failed"
9880         createmany -o $DIR/$tdir/f 512
9881         for ((i = 0; i < 512; ++i)); do
9882                 $LFS project -p $i $DIR/$tdir/f${i} ||
9883                         error "set f${i} project id failed"
9884         done
9885
9886         test_mkdir -c $MDSCOUNT -p $DIR/$tdir.inherit
9887         $LFS project -p 1001 -s $DIR/$tdir.inherit
9888         createmany -o $DIR/$tdir.inherit/f 128
9889         (( $($LFS project $DIR/$tdir.inherit/f* |
9890                 awk '$1 == 1001 { print }' | wc -l) == 128 )) ||
9891                         error "files did not inherit projid 1001"
9892
9893         stopall
9894
9895         for i in $(seq $MDSCOUNT); do
9896                 mds_backup_restore mds$i ||
9897                         error "Backup/restore on mds$i failed"
9898         done
9899
9900         setupall
9901
9902         projid=($($LFS project -d $DIR/$tdir))
9903         [ ${projid[0]} == "1000" ] ||
9904                 error "projid expected 1000 not ${projid[0]}"
9905         for ((i = 0; i < 512; ++i)); do
9906                 projid=($($LFS project $DIR/$tdir/f${i}))
9907                 [ ${projid[0]} == "$i" ] ||
9908                         error "projid expected $i not ${projid[0]}"
9909         done
9910
9911         (( $($LFS project $DIR/$tdir.inherit/f* |
9912                 awk '$1 == 1001 { print }' | wc -l) == 128 )) ||
9913                         error "restore did not copy projid 1001"
9914 }
9915 run_test 131 "MDT backup restore with project ID"
9916
9917 test_132() {
9918         local err_cnt
9919         local err_cnt2
9920
9921         reformat
9922         combined_mgs_mds || start_mgs || error "unable to start MGS"
9923         start_mdt 1 || error "unable to start mdt1"
9924
9925         err_cnt=$(do_facet mds1 dmesg | grep -c "cannot take the layout locks")
9926         stop_mdt 1 || error "stop mdt1 failed"
9927
9928         [ "$mds1_FSTYPE" == zfs ] && import_zpool mds1
9929         do_facet mds1 $TUNEFS --param mdt.hsm_control=enabled $(mdsdevname 1) ||
9930                 error "tunefs failed"
9931         start_mdt 1 || error "cannot start mdt1"
9932
9933         err_cnt2=$(do_facet mds1 dmesg | grep -c "cannot take the layout locks")
9934         [ $err_cnt -eq $err_cnt2 ] || error "Can not take the layout lock"
9935         stop_mdt 1 || error "stop mdt1 failed"
9936 }
9937 run_test 132 "hsm_actions processed after failover"
9938
9939 # This test verifies we do RR allocation within a pool even if there is a
9940 # significant imbalance vs an OST outside the pool
9941 test_133() {
9942         [[ $OSTCOUNT -lt 4 ]] && skip_env "needs >= 4 OSTs"
9943         # This is the easiest way to ensure OSTs start out balanced
9944         reformat_and_config
9945         setupall
9946
9947         check_set_fallocate_or_skip
9948
9949         local testfile=$DIR/$tdir/$tfile
9950         local pool="testpool"
9951         local ostrange=$((OSTCOUNT - 1))
9952         # Select all but the last OST to add to the pool
9953         local poolostrange=$((OSTCOUNT - 2))
9954         local filenum=20
9955         local filecount
9956         local stripecount
9957
9958         declare -a AVAIL
9959         free_min_max
9960
9961         [ $MINV -eq 0 ] && error "no free space in OST$MINI"
9962         [ $MAXV -gt $((2 * $MINV)) ] &&
9963                 error "OSTs badly unbalanced after reformat"
9964
9965         create_pool $FSNAME.$pool || error "failed to create a pool"
9966         do_facet mgs $LCTL pool_add $FSNAME.$pool OST[0-$poolostrange] ||
9967                 error "failed to add OST[0-$poolostrange] to the pool"
9968
9969         test_mkdir -p $DIR/$tdir || error "failed to mkdir $DIR/$tdir"
9970         # Consume space on the OSTs in the pool so they are unbalanced with the
9971         # OST outside of the pool
9972         # fill each OST 90% with fallocate so they are widely
9973         # imbalanced
9974         local size=$(((MINV * 9 / 10) * 1024))
9975         for ((i = 0; i <= poolostrange; i++)); do
9976                 $LFS setstripe -c 1 -i $i $testfile$i ||
9977                         error "failed to setstripe $testfile$i"
9978                 fallocate -l $size $testfile$i || error "fallocate failed"
9979         done
9980         ls -la $DIR/$tdir
9981         sleep_maxage
9982         $LFS df
9983
9984         # Create files in the pool now that there is an imbalance
9985         filecount=$(((OSTCOUNT - 1) * filenum))
9986         for ((i = 0; i < filecount; i++)); do
9987                 $LFS setstripe -p $pool $testfile-$i ||
9988                         error "failed to setstripe -p $pool $testfile-$i"
9989         done
9990         $LFS getstripe -i $testfile-* > /tmp/$tfile.log
9991         # Count the number of files with a stripe on each OST to verify the
9992         # pool allocated with round-robin
9993         for ((i = 0; i <= poolostrange; i++)); do
9994                 stripecount=$(grep -c $i /tmp/$tfile.log)
9995                 # Allow a little leeway
9996                 if (( stripecount < filenum - 1 ||
9997                       stripecount > filenum + 1 )); then
9998                         cat /tmp/$tfile.log
9999                         error "$stripecount != $filenum files on OST$i"
10000                 fi
10001         done
10002
10003         # Create files across the system now that there is an imbalance
10004         filecount=$((OSTCOUNT * filenum))
10005         for ((i = 1; i < filecount; i++)); do
10006                 $LFS setstripe $testfile-$i.2 ||
10007                         error "failed to setstripe $testilfe-$i.2"
10008         done
10009         $LFS getstripe -i $testfile-*.2 > /tmp/$tfile.log
10010         local qos_used=""
10011         # Count the number of files with a stripe on each OST to verify the
10012         # files are *NOT* allocated with round-robin
10013         for ((i = 0; i <= ostrange; i++)); do
10014                 stripecount=$(grep -c $i /tmp/$tfile.log)
10015                 if [[ $stripecount -ne $filenum ]]; then
10016                         qos_used="true"
10017                         echo "QOS: $stripecount != $filenum files on OST$i"
10018                 fi
10019         done
10020         if [ -z "$qos_used" ]; then
10021                 error "QOS not used on imbalanced OSTs!"
10022         fi
10023
10024         rm -rf /tmp/$tfile.log $DIR/$tdir
10025         do_facet mgs $LCTL pool_remove $FSNAME.$pool OST[0-$poolostrange] ||
10026                 "failed to remove OST[0-$poolostrange] from the pool"
10027         do_facet mgs $LCTL pool_destroy $FSNAME.$pool ||
10028                 error "failed to destroy pool"
10029 }
10030 run_test 133 "stripe QOS: free space balance in a pool"
10031
10032 if ! combined_mgs_mds ; then
10033         stop mgs
10034 fi
10035
10036 cleanup_gss
10037
10038 # restore the values of MDSSIZE and OSTSIZE
10039 MDSSIZE=$STORED_MDSSIZE
10040 OSTSIZE=$STORED_OSTSIZE
10041 reformat
10042
10043 complete $SECONDS
10044 check_and_cleanup_lustre
10045 exit_status