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