]> git.proxmox.com Git - mirror_zfs.git/commit - config/kernel-fst-mount.m4
Allow mounting datasets more than once
authorSeth Forshee <seth.forshee@canonical.com>
Thu, 12 Apr 2018 19:24:38 +0000 (15:24 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 13 Apr 2018 17:44:05 +0000 (10:44 -0700)
commit93b43af10df815d3ebfe136d03cd2d7f35350470
treeaa80dbf3a5746922cf9b0e03e52b292384a210fa
parent1e37dee03f6ecc01362f8e18607737db693790d7
Allow mounting datasets more than once

Currently mounting an already mounted zfs dataset results in an
error, whereas it is typically allowed with other filesystems.
This causes some bad interactions with mount namespaces. Take
this sequence for example:

- Create a dataset
- Create a snapshot of the dataset
- Create a clone of the snapshot
- Create a new mount namespace
- Rename the original dataset

The rename results in unmounting and remounting the clone in the
original mount namespace, however the remount fails because the
dataset is still mounted in the new mount namespace. (Note that
this means the mount in the new mount namespace is never being
unmounted, so perhaps the unmount/remount of the clone isn't
actually necessary.)

The problem here is a result of the way mounting is implemented
in the kernel module. Since it is not mounting block devices it
uses mount_nodev() instead of the usual mount_bdev(). However,
mount_nodev() is written for filesystems for which each mount is
a new instance (i.e. a new super block), and zfs should be able
to detect when a mount request can be satisfied using an existing
super block.

Change zpl_mount() to call sget() directly with it's own test
callback. Passing the objset_t object as the fs data allows
checking if a superblock already exists for the dataset, and in
that case we just need to return a new reference for the sb's
root dentry.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Tom Caputi <tcaputi@datto.com>
Signed-off-by: Alek Pinchuk <apinchuk@datto.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
Closes #5796
Closes #7207
config/kernel-fst-mount.m4 [new file with mode: 0644]
config/kernel-mount-nodev.m4 [deleted file]
config/kernel.m4
include/linux/vfs_compat.h
module/zfs/zpl_super.c
tests/runfiles/linux.run
tests/zfs-tests/tests/functional/cli_root/zfs_mount/Makefile.am
tests/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_multi_mount.ksh [new file with mode: 0755]