4 IDL structures for xattr file attributes
6 this has nothing to do with RPC, we are just using our NDR/IDL
7 infrastructure as a convenient way to store linearised information
8 about a file in a architecture independent manner
11 import
"security.idl";
14 uuid("12345778-1234-abcd-0001-00000002"),
16 helper
("../librpc/ndr/ndr_xattr.h"),
17 pyhelper
("librpc/ndr/py_xattr.c"),
18 pointer_default(unique)
22 const char *XATTR_DOSATTRIB_NAME
= "user.DosAttrib";
23 const int XATTR_DOSATTRIB_ESTIMATED_SIZE
= 64;
25 /* we store basic dos attributes in a DosAttrib xattr. By
26 using a union we can cope with new version of this
27 structure more easily */
30 * the FFFF level is never really used,
31 * it's used to pass the information from
32 * the old hex string attrib information
33 * we have a handwritten parser which converts
34 * the hex string to the xattr_DosInfoFFFFCompat strucure
39 } xattr_DosInfoFFFFCompat
;
51 We use xattrDosInfo1 again when we store values.
52 Because the sticky write time is now stored in the opendb
53 and xattr_DosInfo2Old is only present to parse existing
56 const int XATTR_ATTRIB_FLAG_STICKY_WRITE_TIME = 0x1;
66 NTTIME write_time
; /* only used when sticky write time is set */
70 typedef [bitmap32bit
] bitmap
{
71 XATTR_DOSINFO_ATTRIB
= 0x00000001,
72 XATTR_DOSINFO_EA_SIZE
= 0x00000002,
73 XATTR_DOSINFO_SIZE
= 0x00000004,
74 XATTR_DOSINFO_ALLOC_SIZE
= 0x00000008,
75 XATTR_DOSINFO_CREATE_TIME
= 0x00000010,
76 XATTR_DOSINFO_CHANGE_TIME
= 0x00000020
77 } xattr_DosInfoValidFlags
;
80 xattr_DosInfoValidFlags valid_flags
;
89 typedef [public,switch_type(uint16
)] union {
90 [case(0xFFFF)] xattr_DosInfoFFFFCompat compatinfoFFFF
;
91 [case(1)] xattr_DosInfo1 info1
;
92 [case(2)] xattr_DosInfo2Old oldinfo2
;
93 [case(3)] xattr_DosInfo3 info3
;
96 typedef [public] struct {
98 [switch_is(version)] xattr_DosInfo info
;
101 typedef [public,nopush
,nopull
,noprint
] struct {
104 [switch_is(version)] xattr_DosInfo info
;
107 void xattr_parse_DOSATTRIB
(
108 [in] xattr_DOSATTRIB x
111 /* we store DOS style extended attributes in a DosEAs xattr */
112 const char *XATTR_DOSEAS_NAME
= "user.DosEAs";
119 typedef [public] struct {
121 [size_is(num_eas
)] xattr_EA
*eas
;
124 /* Slightly different version, used by the vfs_xattr_tdb module */
125 typedef [public] struct {
127 xattr_EA eas
[num_eas
];
130 /* we store stream information in this xattr structure. Then
131 the streams themselves are stored in
132 user.DosStream.STREAMNAME or in external files, according
134 const char *XATTR_DOSSTREAMS_NAME
= "user.DosStreams";
136 const int XATTR_STREAM_FLAG_INTERNAL
= 0x00000001;
138 /* stream data is stored in attributes with the given prefix */
139 const char *XATTR_DOSSTREAM_PREFIX
= "user.DosStream.";
141 const int XATTR_MAX_STREAM_SIZE
= 0x4000;
142 const int XATTR_MAX_STREAM_SIZE_TDB
= 0x100000;
151 typedef [public] struct {
153 [size_is(num_streams
)] xattr_DosStream
*streams
;
157 /* we store the NT ACL a NTACL xattr. It is versioned so we
158 can later add other acl attribs (such as posix acl mapping)
160 we put this xattr in the security namespace to ensure that
161 only trusted users can write to the ACL
163 stored in "security.NTACL"
165 Version 1. raw SD stored as Samba4 does it.
166 Version 2. raw SD + last changed hash so we
167 can discard if this doesn't match the underlying ACL hash.
170 const char *XATTR_NTACL_NAME
= "security.NTACL";
172 const int XATTR_SD_HASH_SIZE
= 64;
173 const int XATTR_SD_HASH_TYPE_NONE
= 0x0;
174 const int XATTR_SD_HASH_TYPE_SHA256
= 0x1;
176 typedef [public] struct {
177 security_descriptor
*sd
;
179 } security_descriptor_hash_v2
; /* Hash never used in this version. */
181 typedef [public] struct {
182 security_descriptor
*sd
;
184 uint8 hash
[64]; /* 64 bytes hash. */
185 } security_descriptor_hash_v3
;
187 typedef [public] struct {
188 security_descriptor
*sd
;
190 uint8 hash
[64]; /* 64 bytes hash. */
191 utf8string description
; /* description of what created
192 * this hash (to allow
193 * foresnics later, if we have
194 * a bug in one codepath */
196 uint8 sys_acl_hash
[64]; /* 64 bytes hash. */
197 } security_descriptor_hash_v4
;
199 typedef [switch_type(uint16
)] union {
200 [case(1)] security_descriptor
*sd
;
201 [case(2)] security_descriptor_hash_v2
*sd_hs2
;
202 [case(3)] security_descriptor_hash_v3
*sd_hs3
;
203 [case(4)] security_descriptor_hash_v4
*sd_hs4
;
206 typedef [public] struct {
208 [switch_is(version)] xattr_NTACL_Info info
;
212 * A wrapper of the common information required to be in the
213 * hash of the ACL, for the acl_xattr and acl_tdb modules.
215 [public] typedef struct {
216 DATA_BLOB acl_as_blob
;
220 } xattr_sys_acl_hash_wrapper
;