diff options
author | Vijaykumar M <vmallika@redhat.com> | 2013-11-26 18:01:17 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-11-26 11:00:18 -0800 |
commit | 21f7ad207bdb8ddf549aa65cafc1ad95e261ec3d (patch) | |
tree | 1c65c603ffd579aa3b6668e16984f150e5cdfc7b /xlators/mount | |
parent | 2f218e1335d5fdab0b41716cc5c8976b20c367f6 (diff) |
posix: do not allow to set/get "trusted.glusterfs.volume-id" xattr
Change-Id: I2e9a2264b1fd5ebc1ed0aff30225e89acbd0bcb4
BUG: 1034716
Signed-off-by: Vijaykumar M <vmallika@redhat.com>
Reviewed-on: http://review.gluster.org/6361
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/mount')
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 71e8baabdfd..987cc6e03fc 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -3048,7 +3048,7 @@ fuse_setxattr (xlator_t *this, fuse_in_header_t *finh, void *msg) return; } - if (!strcmp (GFID_XATTR_KEY, name)) { + if (!strcmp (GFID_XATTR_KEY, name) || !strcmp (GF_XATTR_VOL_ID_KEY, name)) { send_fuse_err (this, finh, EPERM); GF_FREE (finh); return; @@ -3488,7 +3488,7 @@ fuse_removexattr (xlator_t *this, fuse_in_header_t *finh, void *msg) int32_t ret = -1; char *newkey = NULL; - if (!strcmp (GFID_XATTR_KEY, name)) { + if (!strcmp (GFID_XATTR_KEY, name) || !strcmp (GF_XATTR_VOL_ID_KEY, name)) { send_fuse_err (this, finh, EPERM); GF_FREE (finh); return; |