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