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