From 04ed499a8eef1c77c491227941d187778fb5c2e4 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Fri, 1 Jul 2011 17:18:10 +0000 Subject: posix-acl: implementation of POSIX ACL as a translator Signed-off-by: Anand Avati BUG: 2815 (Server-enforced ACLs) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2815 --- xlators/storage/posix/src/posix.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'xlators/storage/posix/src/posix.c') diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 7357331f992..1dcaba3dc57 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -4598,6 +4598,12 @@ init (xlator_t *this) } } + op_ret = sys_lgetxattr (dir_data->data, "system.posix_acl_access", + NULL, 0); + if ((op_ret < 0) && (errno == ENOTSUP)) + gf_log (this->name, GF_LOG_WARNING, + "Posix access control list is not supported."); + _private = GF_CALLOC (1, sizeof (*_private), gf_posix_mt_posix_private); if (!_private) { -- cgit