-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's not enough to preserve/restore MS_RDONLY on the superblock flags to avoid remounting a snapshot read-write: be explicit about our intentions to the VFS layer so the readonly bit is updated correctly in do_remount_sb(). Reviewed-by: Chunwei Chen <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: loli10K <[email protected]> Closes #6510 Closes #6515
- Loading branch information
1 parent
a1f3a1c
commit 08de8c1
Showing
4 changed files
with
156 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
144 changes: 144 additions & 0 deletions
144
tests/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_remount.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
#!/bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or http://www.opensolaris.org/os/licensing. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright 2017, loli10K <[email protected]>. All rights reserved. | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
. $STF_SUITE/tests/functional/cli_root/zfs_mount/zfs_mount.kshlib | ||
|
||
# | ||
# DESCRIPTION: | ||
# Verify remount functionality, expecially on readonly objects. | ||
# | ||
# STRATEGY: | ||
# 1. Prepare a filesystem and a snapshot | ||
# 2. Verify we can (re)mount the dataset readonly/read-write | ||
# 3. Verify we can mount the snapshot and it's mounted readonly | ||
# 4. Verify we can't remount it read-write | ||
# 5. Re-import the pool readonly | ||
# 6. Verify we can't remount its filesystem read-write | ||
# | ||
|
||
verify_runnable "both" | ||
|
||
function cleanup | ||
{ | ||
log_must zpool export $TESTPOOL | ||
log_must zpool import $TESTPOOL | ||
snapexists $TESTSNAP && log_must zfs destroy $TESTSNAP | ||
[[ -d $MNTPSNAP ]] && log_must rmdir $MNTPSNAP | ||
return 0 | ||
} | ||
|
||
# | ||
# Verify the $filesystem is mounted readonly | ||
# This is preferred over "log_mustnot touch $fs" because we actually want to | ||
# verify the error returned is EROFS | ||
# | ||
function readonlyfs # filesystem | ||
{ | ||
typeset filesystem="$1" | ||
|
||
file_write -o create -f $filesystem/file.dat | ||
ret=$? | ||
if [[ $ret != 30 ]]; then | ||
log_fail "Writing to $filesystem did not return EROFS ($ret)." | ||
fi | ||
} | ||
|
||
# | ||
# Verify $dataset is mounted with $option | ||
# | ||
function checkmount # dataset option | ||
{ | ||
typeset dataset="$1" | ||
typeset option="$2" | ||
|
||
options="$(awk -v ds="$dataset" '$1 == ds { print $4 }' /proc/mounts)" | ||
if [[ "$options" == '' ]]; then | ||
log_fail "Dataset $dataset is not mounted" | ||
elif [[ ! -z "${options##*$option*}" ]]; then | ||
log_fail "Dataset $dataset is not mounted with expected "\ | ||
"option $option ($options)" | ||
else | ||
log_note "Dataset $dataset is mounted with option $option" | ||
fi | ||
} | ||
|
||
log_assert "Verify remount functionality on both filesystem and snapshots" | ||
|
||
log_onexit cleanup | ||
|
||
# 1. Prepare a filesystem and a snapshot | ||
TESTFS=$TESTPOOL/$TESTFS | ||
TESTSNAP="$TESTFS@snap" | ||
datasetexists $TESTFS || log_must zfs create $TESTFS | ||
snapexists $TESTSNAP || log_must zfs snapshot $TESTSNAP | ||
log_must zfs set readonly=off $TESTFS | ||
MNTPFS="$(get_prop mountpoint $TESTFS)" | ||
MNTPSNAP="$TESTDIR/zfs_snap_mount" | ||
log_must mkdir -p $MNTPSNAP | ||
|
||
# 2. Verify we can (re)mount the dataset readonly/read-write | ||
log_must touch $MNTPFS/file.dat | ||
checkmount $TESTFS 'rw' | ||
log_must mount -o remount,ro $TESTFS $MNTPFS | ||
readonlyfs $MNTPFS | ||
checkmount $TESTFS 'ro' | ||
log_must mount -o remount,rw $TESTFS $MNTPFS | ||
log_must touch $MNTPFS/file.dat | ||
checkmount $TESTFS 'rw' | ||
|
||
# 3. Verify we can (re)mount the snapshot readonly | ||
log_must mount -t zfs $TESTSNAP $MNTPSNAP | ||
readonlyfs $MNTPSNAP | ||
checkmount $TESTSNAP 'ro' | ||
log_must mount -o remount,ro $TESTSNAP $MNTPSNAP | ||
readonlyfs $MNTPSNAP | ||
checkmount $TESTSNAP 'ro' | ||
log_must umount $MNTPSNAP | ||
|
||
# 4. Verify we can't remount a snapshot read-write | ||
# The "mount -o rw" command will succeed but the snapshot is mounted readonly. | ||
# The "mount -o remount,rw" command must fail with an explicit error. | ||
log_must mount -t zfs -o rw $TESTSNAP $MNTPSNAP | ||
readonlyfs $MNTPSNAP | ||
checkmount $TESTSNAP 'ro' | ||
log_mustnot mount -o remount,rw $TESTSNAP $MNTPSNAP | ||
readonlyfs $MNTPSNAP | ||
checkmount $TESTSNAP 'ro' | ||
log_must umount $MNTPSNAP | ||
|
||
# 5. Re-import the pool readonly | ||
log_must zpool export $TESTPOOL | ||
log_must zpool import -o readonly=on $TESTPOOL | ||
|
||
# 6. Verify we can't remount its filesystem read-write | ||
readonlyfs $MNTPFS | ||
checkmount $TESTFS 'ro' | ||
log_mustnot mount -o remount,rw $MNTPFS | ||
readonlyfs $MNTPFS | ||
checkmount $TESTFS 'ro' | ||
|
||
log_pass "Both filesystem and snapshots can be remounted correctly." |