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