mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* A share can be mounted multiple times on the same mountpoint when using the option 'noac'
       [not found] <21099631.1471272040654142.JavaMail.sprabhu@sprabhu.fab.redhat.com>
@ 2010-04-23 16:38 ` Sachin Prabhu
  2010-04-23 17:25   ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Sachin Prabhu @ 2010-04-23 16:38 UTC (permalink / raw)
  To: linux-kernel

When you normally attempt to mount a share twice on the same mountpoint, a check in do_add_mount causes it to return an error

# mount localhost:/nfsv3 /mnt
# mount localhost:/nfsv3 /mnt
mount.nfs: /mnt is already mounted or busy

However when using the option 'noac', the user is able to mount the same share on the same mountpoint multiple times. This happens because a share mounted with the noac option is automatically assigned the 'sync' flag MS_SYNCHRONOUS in nfs_initialise_sb(). This flag is set after the check for already existing superblocks is done in sget(). The check for the mount flags in nfs_compare_mount_options() does not take into account the 'sync' flag applied later on in the code path. This means that when using 'noac', a new superblock structure is assigned for every new mount of the same share and multiple shares on the same mountpoint are allowed.

ie. 
# mount -onoac localhost:/nfsv3 /mnt
can be run multiple times.

Could the existing behavior be considered to be a bug? If yes, one possible fix for this issue is to move the 'sync' flag assignment before the sget() is called to obtain an already existing superblock structure.

Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>

diff -up linux-2.6/fs/nfs/super.c.noac_multiple_mount linux-2.6/fs/nfs/super.c
--- linux-2.6/fs/nfs/super.c.noac_multiple_mount	2010-04-22 17:08:25.000000000 +0100
+++ linux-2.6/fs/nfs/super.c	2010-04-22 17:27:48.000000000 +0100
@@ -1992,9 +1992,6 @@ static inline void nfs_initialise_sb(str
 		sb->s_blocksize = nfs_block_bits(server->wsize,
 						 &sb->s_blocksize_bits);
 
-	if (server->flags & NFS_MOUNT_NOAC)
-		sb->s_flags |= MS_SYNCHRONOUS;
-
 	sb->s_bdi = &server->backing_dev_info;
 
 	nfs_super_set_maxbytes(sb, server->maxfilesize);
@@ -2202,6 +2199,9 @@ static int nfs_get_sb(struct file_system
 	if (server->flags & NFS_MOUNT_UNSHARED)
 		compare_super = NULL;
 
+	if (server->flags & NFS_MOUNT_NOAC)
+		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
+
 	/* Get a superblock - note that we may end up sharing one that already exists */
 	s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
 	if (IS_ERR(s)) {
@@ -2317,6 +2317,9 @@ static int nfs_xdev_get_sb(struct file_s
 	if (server->flags & NFS_MOUNT_UNSHARED)
 		compare_super = NULL;
 
+	if (server->flags & NFS_MOUNT_NOAC)
+		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
+
 	/* Get a superblock - note that we may end up sharing one that already exists */
 	s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
 	if (IS_ERR(s)) {
@@ -2572,6 +2575,9 @@ static int nfs4_remote_get_sb(struct fil
 	if (server->flags & NFS4_MOUNT_UNSHARED)
 		compare_super = NULL;
 
+	if (server->flags & NFS_MOUNT_NOAC)
+		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
+
 	/* Get a superblock - note that we may end up sharing one that already exists */
 	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
 	if (IS_ERR(s)) {
@@ -2808,6 +2814,9 @@ static int nfs4_xdev_get_sb(struct file_
 	if (server->flags & NFS4_MOUNT_UNSHARED)
 		compare_super = NULL;
 
+	if (server->flags & NFS_MOUNT_NOAC)
+		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
+
 	/* Get a superblock - note that we may end up sharing one that already exists */
 	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
 	if (IS_ERR(s)) {
@@ -2893,6 +2902,9 @@ static int nfs4_remote_referral_get_sb(s
 	if (server->flags & NFS4_MOUNT_UNSHARED)
 		compare_super = NULL;
 
+	if (server->flags & NFS_MOUNT_NOAC)
+		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
+
 	/* Get a superblock - note that we may end up sharing one that already exists */
 	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
 	if (IS_ERR(s)) {

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: A share can be mounted multiple times on the same mountpoint when using the option 'noac'
  2010-04-23 16:38 ` A share can be mounted multiple times on the same mountpoint when using the option 'noac' Sachin Prabhu
@ 2010-04-23 17:25   ` Andrew Morton
  0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2010-04-23 17:25 UTC (permalink / raw)
  To: Sachin Prabhu; +Cc: linux-kernel, linux-nfs

(cc linux-nfs)

On Fri, 23 Apr 2010 12:38:38 -0400 (EDT) Sachin Prabhu <sprabhu@redhat.com> wrote:

> When you normally attempt to mount a share twice on the same mountpoint, a check in do_add_mount causes it to return an error
> 
> # mount localhost:/nfsv3 /mnt
> # mount localhost:/nfsv3 /mnt
> mount.nfs: /mnt is already mounted or busy
> 
> However when using the option 'noac', the user is able to mount the same share on the same mountpoint multiple times. This happens because a share mounted with the noac option is automatically assigned the 'sync' flag MS_SYNCHRONOUS in nfs_initialise_sb(). This flag is set after the check for already existing superblocks is done in sget(). The check for the mount flags in nfs_compare_mount_options() does not take into account the 'sync' flag applied later on in the code path. This means that when using 'noac', a new superblock structure is assigned for every new mount of the same share and multiple shares on the same mountpoint are allowed.
> 
> ie. 
> # mount -onoac localhost:/nfsv3 /mnt
> can be run multiple times.
> 
> Could the existing behavior be considered to be a bug? If yes, one possible fix for this issue is to move the 'sync' flag assignment before the sget() is called to obtain an already existing superblock structure.
> 
> Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
> 
> diff -up linux-2.6/fs/nfs/super.c.noac_multiple_mount linux-2.6/fs/nfs/super.c
> --- linux-2.6/fs/nfs/super.c.noac_multiple_mount	2010-04-22 17:08:25.000000000 +0100
> +++ linux-2.6/fs/nfs/super.c	2010-04-22 17:27:48.000000000 +0100
> @@ -1992,9 +1992,6 @@ static inline void nfs_initialise_sb(str
>  		sb->s_blocksize = nfs_block_bits(server->wsize,
>  						 &sb->s_blocksize_bits);
>  
> -	if (server->flags & NFS_MOUNT_NOAC)
> -		sb->s_flags |= MS_SYNCHRONOUS;
> -
>  	sb->s_bdi = &server->backing_dev_info;
>  
>  	nfs_super_set_maxbytes(sb, server->maxfilesize);
> @@ -2202,6 +2199,9 @@ static int nfs_get_sb(struct file_system
>  	if (server->flags & NFS_MOUNT_UNSHARED)
>  		compare_super = NULL;
>  
> +	if (server->flags & NFS_MOUNT_NOAC)
> +		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
> +
>  	/* Get a superblock - note that we may end up sharing one that already exists */
>  	s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
>  	if (IS_ERR(s)) {
> @@ -2317,6 +2317,9 @@ static int nfs_xdev_get_sb(struct file_s
>  	if (server->flags & NFS_MOUNT_UNSHARED)
>  		compare_super = NULL;
>  
> +	if (server->flags & NFS_MOUNT_NOAC)
> +		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
> +
>  	/* Get a superblock - note that we may end up sharing one that already exists */
>  	s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
>  	if (IS_ERR(s)) {
> @@ -2572,6 +2575,9 @@ static int nfs4_remote_get_sb(struct fil
>  	if (server->flags & NFS4_MOUNT_UNSHARED)
>  		compare_super = NULL;
>  
> +	if (server->flags & NFS_MOUNT_NOAC)
> +		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
> +
>  	/* Get a superblock - note that we may end up sharing one that already exists */
>  	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
>  	if (IS_ERR(s)) {
> @@ -2808,6 +2814,9 @@ static int nfs4_xdev_get_sb(struct file_
>  	if (server->flags & NFS4_MOUNT_UNSHARED)
>  		compare_super = NULL;
>  
> +	if (server->flags & NFS_MOUNT_NOAC)
> +		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
> +
>  	/* Get a superblock - note that we may end up sharing one that already exists */
>  	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
>  	if (IS_ERR(s)) {
> @@ -2893,6 +2902,9 @@ static int nfs4_remote_referral_get_sb(s
>  	if (server->flags & NFS4_MOUNT_UNSHARED)
>  		compare_super = NULL;
>  
> +	if (server->flags & NFS_MOUNT_NOAC)
> +		sb_mntdata.mntflags |= MS_SYNCHRONOUS;
> +
>  	/* Get a superblock - note that we may end up sharing one that already exists */
>  	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
>  	if (IS_ERR(s)) {
> --

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-04-23 20:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <21099631.1471272040654142.JavaMail.sprabhu@sprabhu.fab.redhat.com>
2010-04-23 16:38 ` A share can be mounted multiple times on the same mountpoint when using the option 'noac' Sachin Prabhu
2010-04-23 17:25   ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome