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