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