diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-09-08 23:50:07 (GMT) |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-09-08 23:50:07 (GMT) |
commit | 2ecda72b49a0849ce41e7fa1fa974a245b9119f8 (patch) | |
tree | d0c4eb474536581d79ae41ab72cb24c10571c83a /fs/nfs | |
parent | 764302ccb88dd0df062eccd507b6c6de24f1c560 (diff) | |
download | linux-fsl-qoriq-2ecda72b49a0849ce41e7fa1fa974a245b9119f8.tar.xz |
NFSv4: Disallow 'mount -t nfs4 -overs=2' and 'mount -t nfs4 -overs=3'
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/super.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c index 34b1ccf..867f705 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c @@ -2321,6 +2321,12 @@ static int nfs4_validate_text_mount_data(void *options, nfs4_validate_mount_flags(args); + if (args->version != 4) { + dfprintk(MOUNT, + "NFS4: Illegal mount version\n"); + return -EINVAL; + } + if (args->auth_flavor_len > 1) { dfprintk(MOUNT, "NFS4: Too many RPC auth flavours specified\n"); |