s3:torture:delete: fix a comment
[Samba/gebeck_regimport.git] / source4 / ntvfs / posix / pvfs_xattr.c
blob82ce579676a6f6a7c969ccb8e672029bd0841f8f
1 /*
2 Unix SMB/CIFS implementation.
4 POSIX NTVFS backend - xattr support
6 Copyright (C) Andrew Tridgell 2004
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "vfs_posix.h"
24 #include "../lib/util/unix_privs.h"
25 #include "librpc/gen_ndr/ndr_xattr.h"
26 #include "param/param.h"
27 #include "ntvfs/posix/posix_eadb_proto.h"
30 pull a xattr as a blob
32 static NTSTATUS pull_xattr_blob(struct pvfs_state *pvfs,
33 TALLOC_CTX *mem_ctx,
34 const char *attr_name,
35 const char *fname,
36 int fd,
37 size_t estimated_size,
38 DATA_BLOB *blob)
40 NTSTATUS status;
42 if (pvfs->ea_db) {
43 return pull_xattr_blob_tdb(pvfs, mem_ctx, attr_name, fname,
44 fd, estimated_size, blob);
47 status = pull_xattr_blob_system(pvfs, mem_ctx, attr_name, fname,
48 fd, estimated_size, blob);
50 /* if the filesystem doesn't support them, then tell pvfs not to try again */
51 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)||
52 NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)||
53 NT_STATUS_EQUAL(status, NT_STATUS_INVALID_SYSTEM_SERVICE)) {
54 DEBUG(2,("pvfs_xattr: xattr not supported in filesystem: %s\n", nt_errstr(status)));
55 pvfs->flags &= ~PVFS_FLAG_XATTR_ENABLE;
56 status = NT_STATUS_NOT_FOUND;
59 return status;
63 push a xattr as a blob
65 static NTSTATUS push_xattr_blob(struct pvfs_state *pvfs,
66 const char *attr_name,
67 const char *fname,
68 int fd,
69 const DATA_BLOB *blob)
71 if (pvfs->ea_db) {
72 return push_xattr_blob_tdb(pvfs, attr_name, fname, fd, blob);
74 return push_xattr_blob_system(pvfs, attr_name, fname, fd, blob);
79 delete a xattr
81 static NTSTATUS delete_xattr(struct pvfs_state *pvfs, const char *attr_name,
82 const char *fname, int fd)
84 if (pvfs->ea_db) {
85 return delete_posix_eadb(pvfs, attr_name, fname, fd);
87 return delete_xattr_system(pvfs, attr_name, fname, fd);
91 a hook called on unlink - allows the tdb xattr backend to cleanup
93 NTSTATUS pvfs_xattr_unlink_hook(struct pvfs_state *pvfs, const char *fname)
95 if (pvfs->ea_db) {
96 return unlink_posix_eadb(pvfs, fname);
98 return unlink_xattr_system(pvfs, fname);
103 load a NDR structure from a xattr
105 NTSTATUS pvfs_xattr_ndr_load(struct pvfs_state *pvfs,
106 TALLOC_CTX *mem_ctx,
107 const char *fname, int fd, const char *attr_name,
108 void *p, void *pull_fn)
110 NTSTATUS status;
111 DATA_BLOB blob;
112 enum ndr_err_code ndr_err;
114 status = pull_xattr_blob(pvfs, mem_ctx, attr_name, fname,
115 fd, XATTR_DOSATTRIB_ESTIMATED_SIZE, &blob);
116 if (!NT_STATUS_IS_OK(status)) {
117 return status;
120 /* pull the blob */
121 ndr_err = ndr_pull_struct_blob(&blob, mem_ctx, p,
122 (ndr_pull_flags_fn_t)pull_fn);
123 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
124 return ndr_map_error2ntstatus(ndr_err);
127 data_blob_free(&blob);
129 return NT_STATUS_OK;
133 save a NDR structure into a xattr
135 NTSTATUS pvfs_xattr_ndr_save(struct pvfs_state *pvfs,
136 const char *fname, int fd, const char *attr_name,
137 void *p, void *push_fn)
139 TALLOC_CTX *mem_ctx = talloc_new(NULL);
140 DATA_BLOB blob;
141 NTSTATUS status;
142 enum ndr_err_code ndr_err;
144 ndr_err = ndr_push_struct_blob(&blob, mem_ctx, p, (ndr_push_flags_fn_t)push_fn);
145 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
146 talloc_free(mem_ctx);
147 return ndr_map_error2ntstatus(ndr_err);
150 status = push_xattr_blob(pvfs, attr_name, fname, fd, &blob);
151 talloc_free(mem_ctx);
153 return status;
158 fill in file attributes from extended attributes
160 NTSTATUS pvfs_dosattrib_load(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd)
162 NTSTATUS status;
163 struct xattr_DosAttrib attrib;
164 TALLOC_CTX *mem_ctx = talloc_new(name);
165 struct xattr_DosInfo1 *info1;
166 struct xattr_DosInfo2Old *info2;
168 if (name->stream_name != NULL) {
169 name->stream_exists = false;
170 } else {
171 name->stream_exists = true;
174 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
175 return NT_STATUS_OK;
178 status = pvfs_xattr_ndr_load(pvfs, mem_ctx, name->full_name,
179 fd, XATTR_DOSATTRIB_NAME,
180 &attrib,
181 (void *) ndr_pull_xattr_DosAttrib);
183 /* not having a DosAttrib is not an error */
184 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
185 talloc_free(mem_ctx);
186 return pvfs_stream_info(pvfs, name, fd);
189 if (!NT_STATUS_IS_OK(status)) {
190 talloc_free(mem_ctx);
191 return status;
194 switch (attrib.version) {
195 case 1:
196 info1 = &attrib.info.info1;
197 name->dos.attrib = pvfs_attrib_normalise(info1->attrib,
198 name->st.st_mode);
199 name->dos.ea_size = info1->ea_size;
200 if (name->st.st_size == info1->size) {
201 name->dos.alloc_size =
202 pvfs_round_alloc_size(pvfs, info1->alloc_size);
204 if (!null_nttime(info1->create_time)) {
205 name->dos.create_time = info1->create_time;
207 if (!null_nttime(info1->change_time)) {
208 name->dos.change_time = info1->change_time;
210 name->dos.flags = 0;
211 break;
213 case 2:
215 * Note: This is only used to parse existing values from disk
216 * We use xattr_DosInfo1 again for storing new values
218 info2 = &attrib.info.oldinfo2;
219 name->dos.attrib = pvfs_attrib_normalise(info2->attrib,
220 name->st.st_mode);
221 name->dos.ea_size = info2->ea_size;
222 if (name->st.st_size == info2->size) {
223 name->dos.alloc_size =
224 pvfs_round_alloc_size(pvfs, info2->alloc_size);
226 if (!null_nttime(info2->create_time)) {
227 name->dos.create_time = info2->create_time;
229 if (!null_nttime(info2->change_time)) {
230 name->dos.change_time = info2->change_time;
232 name->dos.flags = info2->flags;
233 break;
235 default:
236 DEBUG(0,("ERROR: Unsupported xattr DosAttrib version %d on '%s'\n",
237 attrib.version, name->full_name));
238 talloc_free(mem_ctx);
239 return NT_STATUS_INVALID_LEVEL;
241 talloc_free(mem_ctx);
243 status = pvfs_stream_info(pvfs, name, fd);
245 return status;
250 save the file attribute into the xattr
252 NTSTATUS pvfs_dosattrib_save(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd)
254 struct xattr_DosAttrib attrib;
255 struct xattr_DosInfo1 *info1;
257 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
258 return NT_STATUS_OK;
261 attrib.version = 1;
262 info1 = &attrib.info.info1;
264 name->dos.attrib = pvfs_attrib_normalise(name->dos.attrib, name->st.st_mode);
266 info1->attrib = name->dos.attrib;
267 info1->ea_size = name->dos.ea_size;
268 info1->size = name->st.st_size;
269 info1->alloc_size = name->dos.alloc_size;
270 info1->create_time = name->dos.create_time;
271 info1->change_time = name->dos.change_time;
273 return pvfs_xattr_ndr_save(pvfs, name->full_name, fd,
274 XATTR_DOSATTRIB_NAME, &attrib,
275 (void *) ndr_push_xattr_DosAttrib);
280 load the set of DOS EAs
282 NTSTATUS pvfs_doseas_load(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
283 struct xattr_DosEAs *eas)
285 NTSTATUS status;
286 ZERO_STRUCTP(eas);
287 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
288 return NT_STATUS_OK;
290 status = pvfs_xattr_ndr_load(pvfs, eas, name->full_name, fd, XATTR_DOSEAS_NAME,
291 eas, (void *) ndr_pull_xattr_DosEAs);
292 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
293 return NT_STATUS_OK;
295 return status;
299 save the set of DOS EAs
301 NTSTATUS pvfs_doseas_save(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
302 struct xattr_DosEAs *eas)
304 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
305 return NT_STATUS_OK;
307 return pvfs_xattr_ndr_save(pvfs, name->full_name, fd, XATTR_DOSEAS_NAME, eas,
308 (void *) ndr_push_xattr_DosEAs);
313 load the set of streams from extended attributes
315 NTSTATUS pvfs_streams_load(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
316 struct xattr_DosStreams *streams)
318 NTSTATUS status;
319 ZERO_STRUCTP(streams);
320 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
321 return NT_STATUS_OK;
323 status = pvfs_xattr_ndr_load(pvfs, streams, name->full_name, fd,
324 XATTR_DOSSTREAMS_NAME,
325 streams,
326 (void *) ndr_pull_xattr_DosStreams);
327 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
328 return NT_STATUS_OK;
330 return status;
334 save the set of streams into filesystem xattr
336 NTSTATUS pvfs_streams_save(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
337 struct xattr_DosStreams *streams)
339 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
340 return NT_STATUS_OK;
342 return pvfs_xattr_ndr_save(pvfs, name->full_name, fd,
343 XATTR_DOSSTREAMS_NAME,
344 streams,
345 (void *) ndr_push_xattr_DosStreams);
350 load the current ACL from extended attributes
352 NTSTATUS pvfs_acl_load(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
353 struct xattr_NTACL *acl)
355 NTSTATUS status;
356 ZERO_STRUCTP(acl);
357 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
358 return NT_STATUS_NOT_FOUND;
360 status = pvfs_xattr_ndr_load(pvfs, acl, name->full_name, fd,
361 XATTR_NTACL_NAME,
362 acl,
363 (void *) ndr_pull_xattr_NTACL);
364 return status;
368 save the acl for a file into filesystem xattr
370 NTSTATUS pvfs_acl_save(struct pvfs_state *pvfs, struct pvfs_filename *name, int fd,
371 struct xattr_NTACL *acl)
373 NTSTATUS status;
374 void *privs;
376 if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) {
377 return NT_STATUS_OK;
380 /* this xattr is in the "system" namespace, so we need
381 admin privileges to set it */
382 privs = root_privileges();
383 status = pvfs_xattr_ndr_save(pvfs, name->full_name, fd,
384 XATTR_NTACL_NAME,
385 acl,
386 (void *) ndr_push_xattr_NTACL);
387 talloc_free(privs);
388 return status;
392 create a zero length xattr with the given name
394 NTSTATUS pvfs_xattr_create(struct pvfs_state *pvfs,
395 const char *fname, int fd,
396 const char *attr_prefix,
397 const char *attr_name)
399 NTSTATUS status;
400 DATA_BLOB blob = data_blob(NULL, 0);
401 char *aname = talloc_asprintf(NULL, "%s%s", attr_prefix, attr_name);
402 if (aname == NULL) {
403 return NT_STATUS_NO_MEMORY;
405 status = push_xattr_blob(pvfs, aname, fname, fd, &blob);
406 talloc_free(aname);
407 return status;
412 delete a xattr with the given name
414 NTSTATUS pvfs_xattr_delete(struct pvfs_state *pvfs,
415 const char *fname, int fd,
416 const char *attr_prefix,
417 const char *attr_name)
419 NTSTATUS status;
420 char *aname = talloc_asprintf(NULL, "%s%s", attr_prefix, attr_name);
421 if (aname == NULL) {
422 return NT_STATUS_NO_MEMORY;
424 status = delete_xattr(pvfs, aname, fname, fd);
425 talloc_free(aname);
426 return status;
430 load a xattr with the given name
432 NTSTATUS pvfs_xattr_load(struct pvfs_state *pvfs,
433 TALLOC_CTX *mem_ctx,
434 const char *fname, int fd,
435 const char *attr_prefix,
436 const char *attr_name,
437 size_t estimated_size,
438 DATA_BLOB *blob)
440 NTSTATUS status;
441 char *aname = talloc_asprintf(mem_ctx, "%s%s", attr_prefix, attr_name);
442 if (aname == NULL) {
443 return NT_STATUS_NO_MEMORY;
445 status = pull_xattr_blob(pvfs, mem_ctx, aname, fname, fd, estimated_size, blob);
446 talloc_free(aname);
447 return status;
451 save a xattr with the given name
453 NTSTATUS pvfs_xattr_save(struct pvfs_state *pvfs,
454 const char *fname, int fd,
455 const char *attr_prefix,
456 const char *attr_name,
457 const DATA_BLOB *blob)
459 NTSTATUS status;
460 char *aname = talloc_asprintf(NULL, "%s%s", attr_prefix, attr_name);
461 if (aname == NULL) {
462 return NT_STATUS_NO_MEMORY;
464 status = push_xattr_blob(pvfs, aname, fname, fd, blob);
465 talloc_free(aname);
466 return status;
471 probe for system support for xattrs
473 void pvfs_xattr_probe(struct pvfs_state *pvfs)
475 TALLOC_CTX *tmp_ctx = talloc_new(pvfs);
476 DATA_BLOB blob;
477 pull_xattr_blob(pvfs, tmp_ctx, "user.XattrProbe", pvfs->base_directory,
478 -1, 1, &blob);
479 pull_xattr_blob(pvfs, tmp_ctx, "security.XattrProbe", pvfs->base_directory,
480 -1, 1, &blob);
481 talloc_free(tmp_ctx);