From: Poornima G Date: Thu, 30 Oct 2014 11:44:51 +0000 (+0530) Subject: vfs_glusterfs: In vfs_gluster_sys_acl_get_file/fd, reduce the number of getxattr... X-Git-Tag: tdb-1.3.4~76 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=a4fa9ca5a7a4c0b770079ab126f8172ff6d6851c;p=samba.git vfs_glusterfs: In vfs_gluster_sys_acl_get_file/fd, reduce the number of getxattr calls. Signed-off-by: Poornima G Reviewed-by: Ira Cooper Reviewed-by: Guenther Deschner --- diff --git a/source3/modules/vfs_glusterfs.c b/source3/modules/vfs_glusterfs.c index ba2d8e8b57d..c47013bdf8d 100644 --- a/source3/modules/vfs_glusterfs.c +++ b/source3/modules/vfs_glusterfs.c @@ -1006,6 +1006,8 @@ static int vfs_gluster_set_offline(struct vfs_handle_struct *handle, #define GLUSTER_ACL_HEADER_SIZE 4 #define GLUSTER_ACL_ENTRY_SIZE 8 +#define GLUSTER_ACL_SIZE(n) (GLUSTER_ACL_HEADER_SIZE + (n * GLUSTER_ACL_ENTRY_SIZE)) + static SMB_ACL_T gluster_to_smb_acl(const char *buf, size_t xattr_size, TALLOC_CTX *mem_ctx) { @@ -1275,7 +1277,7 @@ static SMB_ACL_T vfs_gluster_sys_acl_get_file(struct vfs_handle_struct *handle, struct smb_acl_t *result; char *buf; const char *key; - ssize_t ret; + ssize_t ret, size = GLUSTER_ACL_SIZE(20); switch (type) { case SMB_ACL_TYPE_ACCESS: @@ -1289,13 +1291,22 @@ static SMB_ACL_T vfs_gluster_sys_acl_get_file(struct vfs_handle_struct *handle, return NULL; } - ret = glfs_getxattr(handle->data, path_p, key, 0, 0); - if (ret <= 0) { + buf = alloca(size); + if (!buf) { return NULL; } - buf = alloca(ret); - ret = glfs_getxattr(handle->data, path_p, key, buf, ret); + ret = glfs_getxattr(handle->data, path_p, key, buf, size); + if (ret == -1 && errno == ERANGE) { + ret = glfs_getxattr(handle->data, path_p, key, 0, 0); + if (ret > 0) { + buf = alloca(ret); + if (!buf) { + return NULL; + } + ret = glfs_getxattr(handle->data, path_p, key, buf, ret); + } + } if (ret <= 0) { return NULL; } @@ -1310,18 +1321,29 @@ static SMB_ACL_T vfs_gluster_sys_acl_get_fd(struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx) { struct smb_acl_t *result; - int ret; + ssize_t ret, size = GLUSTER_ACL_SIZE(20); char *buf; glfs_fd_t *glfd; glfd = *(glfs_fd_t **)VFS_FETCH_FSP_EXTENSION(handle, fsp); - ret = glfs_fgetxattr(glfd, "system.posix_acl_access", 0, 0); - if (ret <= 0) { + + buf = alloca(size); + if (!buf) { return NULL; } - buf = alloca(ret); - ret = glfs_fgetxattr(glfd, "system.posix_acl_access", buf, ret); + ret = glfs_fgetxattr(glfd, "system.posix_acl_access", buf, size); + if (ret == -1 && errno == ERANGE) { + ret = glfs_fgetxattr(glfd, "system.posix_acl_access", 0, 0); + if (ret > 0) { + buf = alloca(ret); + if (!buf) { + return NULL; + } + ret = glfs_fgetxattr(glfd, "system.posix_acl_access", + buf, ret); + } + } if (ret <= 0) { return NULL; }