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