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