The branch, v3-6-test has been updated
       via  d984e76 xattr: fix listing EAs on *BSD for non-root users
      from  c228727 VERSION: Bump version up to 3.6.21.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit d984e764073df34729e5410026d6fa618699126f
Author: Jeremy Allison <[email protected]>
Date:   Tue Nov 12 12:17:26 2013 -0800

    xattr: fix listing EAs on *BSD for non-root users
    
    Thanks to Stefan Rompf for reporting.
    
    This fixes bug #10247
    
    Back-ported to 3.6.next from master commit 
374b2cfde74e0c61f4b2da724b30d0e430596092
    
    Signed-off-by: Bjoern Jacke <[email protected]>
    Reviewed-by: Jeremy Allison <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 source3/lib/system.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/lib/system.c b/source3/lib/system.c
index 1ca2f5e..d0e34bc 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -1801,6 +1801,10 @@ static ssize_t bsd_attr_list (int type, extattr_arg arg, 
char *list, size_t size
        char *buf;
        /* Iterate through extattr(2) namespaces */
        for(t = 0; t < (sizeof(extattr)/sizeof(extattr[0])); t++) {
+               if (t != EXTATTR_NAMESPACE_USER && geteuid() != 0) {
+                       /* ignore all but user namespace when we are not root, 
see bug 10247 */
+                       continue;
+               }
                switch(type) {
 #if defined(HAVE_EXTATTR_LIST_FILE)
                        case 0:


-- 
Samba Shared Repository

Reply via email to