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