r3833: NTACL is a better xattr name than DosAcl (tpot suggested this)
authorAndrew Tridgell <tridge@samba.org>
Thu, 18 Nov 2004 03:41:50 +0000 (03:41 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:05:58 +0000 (13:05 -0500)
(This used to be commit 17911eea5995c12a2300dd3928612c77f8f0883e)

source4/include/structs.h
source4/librpc/idl/xattr.idl
source4/ntvfs/posix/pvfs_acl.c
source4/ntvfs/posix/pvfs_xattr.c

index d2f86e2e8a1b86532c73c1fb174300ef0ea8e29a..ae3713eefdef97cbd3415b50fcfe60b901db3014 100644 (file)
@@ -112,7 +112,7 @@ struct file_info;
 
 struct xattr_DosEAs;
 struct xattr_DosStreams;
-struct xattr_DosAcl;
+struct xattr_NTACL;
 
 struct test_join;
 
index 153561ac1a9b52bdb84bce926d848f53fb1bf7b2..f292e1fc8ff3747fd541c331a97749e94d23548e 100644 (file)
@@ -77,22 +77,21 @@ interface xattr
        } xattr_DosStreams;
 
 
-       /* we store the NT ACL a DosAcl xattr. It is versioned so we
-          can later add other acl attribs (such as posix acl
-          mapping) 
+       /* we store the NT ACL a NTAcl xattr. It is versioned so we
+          can later add other acl attribs (such as posix acl mapping)
           
           we put this xattr in the security namespace to ensure that
           only trusted users can write to the ACL
        */
-       const string XATTR_DOSACL_NAME = "security.DosAcl";
+       const string XATTR_NTACL_NAME = "security.NTAcl";
 
        typedef union {
                [case(1)] security_descriptor *sd;
-       } xattr_DosAclInfo;
+       } xattr_NTACL_Info;
 
        typedef [public] struct {
                uint16 version;
-               [switch_is(version)] xattr_DosAclInfo info;
-       } xattr_DosAcl;
+               [switch_is(version)] xattr_NTACL_Info info;
+       } xattr_NTACL;
 
 }
index 2885604311bc07ac1d7799818639f4ee309fa4c9..ba92cdc31c0f3997b7bdad0c2f970ed410a18a00 100644 (file)
@@ -33,7 +33,7 @@
 static NTSTATUS pvfs_default_acl(struct pvfs_state *pvfs,
                                 struct smbsrv_request *req,
                                 struct pvfs_filename *name, int fd, 
-                                struct xattr_DosAcl *acl)
+                                struct xattr_NTACL *acl)
 {
        struct security_descriptor *sd;
        struct nt_user_token *token = req->session->session_info->nt_user_token;
@@ -103,12 +103,12 @@ NTSTATUS pvfs_acl_set(struct pvfs_state *pvfs,
                      struct pvfs_filename *name, int fd, 
                      union smb_setfileinfo *info)
 {
-       struct xattr_DosAcl *acl;
+       struct xattr_NTACL *acl;
        uint32_t secinfo_flags = info->set_secdesc.in.secinfo_flags;
        struct security_descriptor *new_sd, *sd;
        NTSTATUS status;
 
-       acl = talloc_p(req, struct xattr_DosAcl);
+       acl = talloc_p(req, struct xattr_NTACL);
        if (acl == NULL) {
                return NT_STATUS_NO_MEMORY;
        }
@@ -159,11 +159,11 @@ NTSTATUS pvfs_acl_query(struct pvfs_state *pvfs,
                        struct pvfs_filename *name, int fd, 
                        union smb_fileinfo *info)
 {
-       struct xattr_DosAcl *acl;
+       struct xattr_NTACL *acl;
        NTSTATUS status;
        struct security_descriptor *sd;
 
-       acl = talloc_p(req, struct xattr_DosAcl);
+       acl = talloc_p(req, struct xattr_NTACL);
        if (acl == NULL) {
                return NT_STATUS_NO_MEMORY;
        }
index a50348ef0492ba95cae6705d569a029eeb92bb8c..35d06e3fb6cdea7c70ef90af9d24c7f0d50f199f 100644 (file)
@@ -353,7 +353,7 @@ NTSTATUS pvfs_streams_save(struct pvfs_state *pvfs, struct pvfs_filename *name,
   load the current ACL from extended attributes
 */
 NTSTATUS pvfs_acl_load(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
-                      struct xattr_DosAcl *acl)
+                      struct xattr_NTACL *acl)
 {
        NTSTATUS status;
        ZERO_STRUCTP(acl);
@@ -363,7 +363,7 @@ NTSTATUS pvfs_acl_load(struct pvfs_state *pvfs, struct pvfs_filename *name, int
        status = pvfs_xattr_ndr_load(pvfs, acl, name->full_name, fd, 
                                     XATTR_DOSACL_NAME,
                                     acl, 
-                                    (ndr_pull_flags_fn_t)ndr_pull_xattr_DosAcl);
+                                    (ndr_pull_flags_fn_t)ndr_pull_xattr_NTACL);
        return status;
 }
 
@@ -371,7 +371,7 @@ NTSTATUS pvfs_acl_load(struct pvfs_state *pvfs, struct pvfs_filename *name, int
   save the acl for a file into filesystem xattr
 */
 NTSTATUS pvfs_acl_save(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
-                      struct xattr_DosAcl *acl)
+                      struct xattr_NTACL *acl)
 {
        NTSTATUS status;
        void *privs;
@@ -386,7 +386,7 @@ NTSTATUS pvfs_acl_save(struct pvfs_state *pvfs, struct pvfs_filename *name, int
        status = pvfs_xattr_ndr_save(pvfs, name->full_name, fd, 
                                     XATTR_DOSACL_NAME, 
                                     acl, 
-                                    (ndr_push_flags_fn_t)ndr_push_xattr_DosAcl);
+                                    (ndr_push_flags_fn_t)ndr_push_xattr_NTACL);
        talloc_free(privs);
        return status;
 }