Commit e313ec51 authored by Scott Mayhew's avatar Scott Mayhew Committed by Greg Kroah-Hartman

nfs: reject changes to resvport and sharecache during remount

commit 71a6ec8a upstream.

Commit c8e47028 made it possible to change resvport/noresvport and
sharecache/nosharecache via a remount operation, neither of which should be
allowed.
Signed-off-by: default avatarScott Mayhew <smayhew@redhat.com>
Fixes: c8e47028 (nfs: Apply NFS_MOUNT_CMP_FLAGMASK to nfs_compare_remount_data)
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 66c0bfe3
...@@ -2180,7 +2180,7 @@ static int nfs_validate_text_mount_data(void *options, ...@@ -2180,7 +2180,7 @@ static int nfs_validate_text_mount_data(void *options,
return -EINVAL; return -EINVAL;
} }
#define NFS_MOUNT_CMP_FLAGMASK ~(NFS_MOUNT_INTR \ #define NFS_REMOUNT_CMP_FLAGMASK ~(NFS_MOUNT_INTR \
| NFS_MOUNT_SECURE \ | NFS_MOUNT_SECURE \
| NFS_MOUNT_TCP \ | NFS_MOUNT_TCP \
| NFS_MOUNT_VER3 \ | NFS_MOUNT_VER3 \
...@@ -2188,15 +2188,16 @@ static int nfs_validate_text_mount_data(void *options, ...@@ -2188,15 +2188,16 @@ static int nfs_validate_text_mount_data(void *options,
| NFS_MOUNT_NONLM \ | NFS_MOUNT_NONLM \
| NFS_MOUNT_BROKEN_SUID \ | NFS_MOUNT_BROKEN_SUID \
| NFS_MOUNT_STRICTLOCK \ | NFS_MOUNT_STRICTLOCK \
| NFS_MOUNT_UNSHARED \
| NFS_MOUNT_NORESVPORT \
| NFS_MOUNT_LEGACY_INTERFACE) | NFS_MOUNT_LEGACY_INTERFACE)
#define NFS_MOUNT_CMP_FLAGMASK (NFS_REMOUNT_CMP_FLAGMASK & \
~(NFS_MOUNT_UNSHARED | NFS_MOUNT_NORESVPORT))
static int static int
nfs_compare_remount_data(struct nfs_server *nfss, nfs_compare_remount_data(struct nfs_server *nfss,
struct nfs_parsed_mount_data *data) struct nfs_parsed_mount_data *data)
{ {
if ((data->flags ^ nfss->flags) & NFS_MOUNT_CMP_FLAGMASK || if ((data->flags ^ nfss->flags) & NFS_REMOUNT_CMP_FLAGMASK ||
data->rsize != nfss->rsize || data->rsize != nfss->rsize ||
data->wsize != nfss->wsize || data->wsize != nfss->wsize ||
data->version != nfss->nfs_client->rpc_ops->version || data->version != nfss->nfs_client->rpc_ops->version ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment