vfs: Convert streams_depot_open to synthetic_smb_fname
[Samba/gebeck_regimport.git] / source3 / modules / vfs_streams_xattr.c
blobde67197c71ac0f206e09afd44669bc81332d7b1a
1 /*
2 * Store streams in xattrs
4 * Copyright (C) Volker Lendecke, 2008
6 * Partly based on James Peach's Darwin module, which is
8 * Copyright (C) James Peach 2006-2007
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
25 #include "smbd/smbd.h"
26 #include "system/filesys.h"
27 #include "../lib/crypto/md5.h"
29 #undef DBGC_CLASS
30 #define DBGC_CLASS DBGC_VFS
32 struct stream_io {
33 char *base;
34 char *xattr_name;
35 void *fsp_name_ptr;
36 files_struct *fsp;
37 vfs_handle_struct *handle;
40 static SMB_INO_T stream_inode(const SMB_STRUCT_STAT *sbuf, const char *sname)
42 struct MD5Context ctx;
43 unsigned char hash[16];
44 SMB_INO_T result;
45 char *upper_sname;
47 DEBUG(10, ("stream_inode called for %lu/%lu [%s]\n",
48 (unsigned long)sbuf->st_ex_dev,
49 (unsigned long)sbuf->st_ex_ino, sname));
51 upper_sname = talloc_strdup_upper(talloc_tos(), sname);
52 SMB_ASSERT(upper_sname != NULL);
54 MD5Init(&ctx);
55 MD5Update(&ctx, (const unsigned char *)&(sbuf->st_ex_dev),
56 sizeof(sbuf->st_ex_dev));
57 MD5Update(&ctx, (const unsigned char *)&(sbuf->st_ex_ino),
58 sizeof(sbuf->st_ex_ino));
59 MD5Update(&ctx, (unsigned char *)upper_sname,
60 talloc_get_size(upper_sname)-1);
61 MD5Final(hash, &ctx);
63 TALLOC_FREE(upper_sname);
65 /* Hopefully all the variation is in the lower 4 (or 8) bytes! */
66 memcpy(&result, hash, sizeof(result));
68 DEBUG(10, ("stream_inode returns %lu\n", (unsigned long)result));
70 return result;
73 static ssize_t get_xattr_size(connection_struct *conn,
74 files_struct *fsp,
75 const char *fname,
76 const char *xattr_name)
78 NTSTATUS status;
79 struct ea_struct ea;
80 ssize_t result;
82 status = get_ea_value(talloc_tos(), conn, fsp, fname,
83 xattr_name, &ea);
85 if (!NT_STATUS_IS_OK(status)) {
86 return -1;
89 result = ea.value.length-1;
90 TALLOC_FREE(ea.value.data);
91 return result;
94 /**
95 * Given a stream name, populate xattr_name with the xattr name to use for
96 * accessing the stream.
98 static NTSTATUS streams_xattr_get_name(TALLOC_CTX *ctx,
99 const char *stream_name,
100 char **xattr_name)
102 char *stype;
104 stype = strchr_m(stream_name + 1, ':');
106 *xattr_name = talloc_asprintf(ctx, "%s%s",
107 SAMBA_XATTR_DOSSTREAM_PREFIX,
108 stream_name + 1);
109 if (*xattr_name == NULL) {
110 return NT_STATUS_NO_MEMORY;
113 if (stype == NULL) {
114 /* Append an explicit stream type if one wasn't specified. */
115 *xattr_name = talloc_asprintf(ctx, "%s:$DATA",
116 *xattr_name);
117 if (*xattr_name == NULL) {
118 return NT_STATUS_NO_MEMORY;
120 } else {
121 /* Normalize the stream type to upercase. */
122 if (!strupper_m(strrchr_m(*xattr_name, ':') + 1)) {
123 return NT_STATUS_INVALID_PARAMETER;
127 DEBUG(10, ("xattr_name: %s, stream_name: %s\n", *xattr_name,
128 stream_name));
130 return NT_STATUS_OK;
133 static bool streams_xattr_recheck(struct stream_io *sio)
135 NTSTATUS status;
136 char *xattr_name = NULL;
138 if (sio->fsp->fsp_name == sio->fsp_name_ptr) {
139 return true;
142 if (sio->fsp->fsp_name->stream_name == NULL) {
143 /* how can this happen */
144 errno = EINVAL;
145 return false;
148 status = streams_xattr_get_name(talloc_tos(),
149 sio->fsp->fsp_name->stream_name,
150 &xattr_name);
151 if (!NT_STATUS_IS_OK(status)) {
152 return false;
155 TALLOC_FREE(sio->xattr_name);
156 TALLOC_FREE(sio->base);
157 sio->xattr_name = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(sio->handle, sio->fsp),
158 xattr_name);
159 sio->base = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(sio->handle, sio->fsp),
160 sio->fsp->fsp_name->base_name);
161 sio->fsp_name_ptr = sio->fsp->fsp_name;
163 TALLOC_FREE(xattr_name);
165 if ((sio->xattr_name == NULL) || (sio->base == NULL)) {
166 return false;
169 return true;
173 * Helper to stat/lstat the base file of an smb_fname.
175 static int streams_xattr_stat_base(vfs_handle_struct *handle,
176 struct smb_filename *smb_fname,
177 bool follow_links)
179 char *tmp_stream_name;
180 int result;
182 tmp_stream_name = smb_fname->stream_name;
183 smb_fname->stream_name = NULL;
184 if (follow_links) {
185 result = SMB_VFS_NEXT_STAT(handle, smb_fname);
186 } else {
187 result = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
189 smb_fname->stream_name = tmp_stream_name;
190 return result;
193 static int streams_xattr_fstat(vfs_handle_struct *handle, files_struct *fsp,
194 SMB_STRUCT_STAT *sbuf)
196 struct smb_filename *smb_fname_base = NULL;
197 int ret = -1;
198 struct stream_io *io = (struct stream_io *)
199 VFS_FETCH_FSP_EXTENSION(handle, fsp);
201 DEBUG(10, ("streams_xattr_fstat called for %d\n", fsp->fh->fd));
203 if (io == NULL || fsp->base_fsp == NULL) {
204 return SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
207 if (!streams_xattr_recheck(io)) {
208 return -1;
211 /* Create an smb_filename with stream_name == NULL. */
212 smb_fname_base = synthetic_smb_fname(talloc_tos(), io->base,
213 NULL, NULL);
214 if (smb_fname_base == NULL) {
215 errno = ENOMEM;
216 return -1;
219 if (lp_posix_pathnames()) {
220 ret = SMB_VFS_LSTAT(handle->conn, smb_fname_base);
221 } else {
222 ret = SMB_VFS_STAT(handle->conn, smb_fname_base);
224 *sbuf = smb_fname_base->st;
225 TALLOC_FREE(smb_fname_base);
227 if (ret == -1) {
228 return -1;
231 sbuf->st_ex_size = get_xattr_size(handle->conn, fsp->base_fsp,
232 io->base, io->xattr_name);
233 if (sbuf->st_ex_size == -1) {
234 return -1;
237 DEBUG(10, ("sbuf->st_ex_size = %d\n", (int)sbuf->st_ex_size));
239 sbuf->st_ex_ino = stream_inode(sbuf, io->xattr_name);
240 sbuf->st_ex_mode &= ~S_IFMT;
241 sbuf->st_ex_mode |= S_IFREG;
242 sbuf->st_ex_blocks = sbuf->st_ex_size / STAT_ST_BLOCKSIZE + 1;
244 return 0;
247 static int streams_xattr_stat(vfs_handle_struct *handle,
248 struct smb_filename *smb_fname)
250 NTSTATUS status;
251 int result = -1;
252 char *xattr_name = NULL;
254 if (!is_ntfs_stream_smb_fname(smb_fname)) {
255 return SMB_VFS_NEXT_STAT(handle, smb_fname);
258 /* Note if lp_posix_paths() is true, we can never
259 * get here as is_ntfs_stream_smb_fname() is
260 * always false. So we never need worry about
261 * not following links here. */
263 /* If the default stream is requested, just stat the base file. */
264 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
265 return streams_xattr_stat_base(handle, smb_fname, true);
268 /* Populate the stat struct with info from the base file. */
269 if (streams_xattr_stat_base(handle, smb_fname, true) == -1) {
270 return -1;
273 /* Derive the xattr name to lookup. */
274 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
275 &xattr_name);
276 if (!NT_STATUS_IS_OK(status)) {
277 errno = map_errno_from_nt_status(status);
278 return -1;
281 /* Augment the base file's stat information before returning. */
282 smb_fname->st.st_ex_size = get_xattr_size(handle->conn, NULL,
283 smb_fname->base_name,
284 xattr_name);
285 if (smb_fname->st.st_ex_size == -1) {
286 errno = ENOENT;
287 result = -1;
288 goto fail;
291 smb_fname->st.st_ex_ino = stream_inode(&smb_fname->st, xattr_name);
292 smb_fname->st.st_ex_mode &= ~S_IFMT;
293 smb_fname->st.st_ex_mode |= S_IFREG;
294 smb_fname->st.st_ex_blocks =
295 smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1;
297 result = 0;
298 fail:
299 TALLOC_FREE(xattr_name);
300 return result;
303 static int streams_xattr_lstat(vfs_handle_struct *handle,
304 struct smb_filename *smb_fname)
306 NTSTATUS status;
307 int result = -1;
308 char *xattr_name = NULL;
310 if (!is_ntfs_stream_smb_fname(smb_fname)) {
311 return SMB_VFS_NEXT_LSTAT(handle, smb_fname);
314 /* If the default stream is requested, just stat the base file. */
315 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
316 return streams_xattr_stat_base(handle, smb_fname, false);
319 /* Populate the stat struct with info from the base file. */
320 if (streams_xattr_stat_base(handle, smb_fname, false) == -1) {
321 return -1;
324 /* Derive the xattr name to lookup. */
325 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
326 &xattr_name);
327 if (!NT_STATUS_IS_OK(status)) {
328 errno = map_errno_from_nt_status(status);
329 return -1;
332 /* Augment the base file's stat information before returning. */
333 smb_fname->st.st_ex_size = get_xattr_size(handle->conn, NULL,
334 smb_fname->base_name,
335 xattr_name);
336 if (smb_fname->st.st_ex_size == -1) {
337 errno = ENOENT;
338 result = -1;
339 goto fail;
342 smb_fname->st.st_ex_ino = stream_inode(&smb_fname->st, xattr_name);
343 smb_fname->st.st_ex_mode &= ~S_IFMT;
344 smb_fname->st.st_ex_mode |= S_IFREG;
345 smb_fname->st.st_ex_blocks =
346 smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1;
348 result = 0;
350 fail:
351 TALLOC_FREE(xattr_name);
352 return result;
355 static int streams_xattr_open(vfs_handle_struct *handle,
356 struct smb_filename *smb_fname,
357 files_struct *fsp, int flags, mode_t mode)
359 NTSTATUS status;
360 struct smb_filename *smb_fname_base = NULL;
361 struct stream_io *sio;
362 struct ea_struct ea;
363 char *xattr_name = NULL;
364 int baseflags;
365 int hostfd = -1;
367 DEBUG(10, ("streams_xattr_open called for %s\n",
368 smb_fname_str_dbg(smb_fname)));
370 if (!is_ntfs_stream_smb_fname(smb_fname)) {
371 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
374 /* If the default stream is requested, just open the base file. */
375 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
376 char *tmp_stream_name;
377 int ret;
379 tmp_stream_name = smb_fname->stream_name;
380 smb_fname->stream_name = NULL;
382 ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
384 smb_fname->stream_name = tmp_stream_name;
386 return ret;
389 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
390 &xattr_name);
391 if (!NT_STATUS_IS_OK(status)) {
392 errno = map_errno_from_nt_status(status);
393 goto fail;
396 /* Create an smb_filename with stream_name == NULL. */
397 smb_fname_base = synthetic_smb_fname(
398 talloc_tos(), smb_fname->base_name, NULL, NULL);
399 if (smb_fname_base == NULL) {
400 errno = ENOMEM;
401 goto fail;
405 * We use baseflags to turn off nasty side-effects when opening the
406 * underlying file.
408 baseflags = flags;
409 baseflags &= ~O_TRUNC;
410 baseflags &= ~O_EXCL;
411 baseflags &= ~O_CREAT;
413 hostfd = SMB_VFS_OPEN(handle->conn, smb_fname_base, fsp,
414 baseflags, mode);
416 TALLOC_FREE(smb_fname_base);
418 /* It is legit to open a stream on a directory, but the base
419 * fd has to be read-only.
421 if ((hostfd == -1) && (errno == EISDIR)) {
422 baseflags &= ~O_ACCMODE;
423 baseflags |= O_RDONLY;
424 hostfd = SMB_VFS_OPEN(handle->conn, smb_fname, fsp, baseflags,
425 mode);
428 if (hostfd == -1) {
429 goto fail;
432 status = get_ea_value(talloc_tos(), handle->conn, NULL,
433 smb_fname->base_name, xattr_name, &ea);
435 DEBUG(10, ("get_ea_value returned %s\n", nt_errstr(status)));
437 if (!NT_STATUS_IS_OK(status)
438 && !NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
440 * The base file is not there. This is an error even if we got
441 * O_CREAT, the higher levels should have created the base
442 * file for us.
444 DEBUG(10, ("streams_xattr_open: base file %s not around, "
445 "returning ENOENT\n", smb_fname->base_name));
446 errno = ENOENT;
447 goto fail;
450 if (!NT_STATUS_IS_OK(status)) {
452 * The attribute does not exist
455 if (flags & O_CREAT) {
457 * Darn, xattrs need at least 1 byte
459 char null = '\0';
461 DEBUG(10, ("creating attribute %s on file %s\n",
462 xattr_name, smb_fname->base_name));
464 if (fsp->base_fsp->fh->fd != -1) {
465 if (SMB_VFS_FSETXATTR(
466 fsp->base_fsp, xattr_name,
467 &null, sizeof(null),
468 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
469 goto fail;
471 } else {
472 if (SMB_VFS_SETXATTR(
473 handle->conn, smb_fname->base_name,
474 xattr_name, &null, sizeof(null),
475 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
476 goto fail;
482 if (flags & O_TRUNC) {
483 char null = '\0';
484 if (fsp->base_fsp->fh->fd != -1) {
485 if (SMB_VFS_FSETXATTR(
486 fsp->base_fsp, xattr_name,
487 &null, sizeof(null),
488 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
489 goto fail;
491 } else {
492 if (SMB_VFS_SETXATTR(
493 handle->conn, smb_fname->base_name,
494 xattr_name, &null, sizeof(null),
495 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
496 goto fail;
501 sio = (struct stream_io *)VFS_ADD_FSP_EXTENSION(handle, fsp,
502 struct stream_io,
503 NULL);
504 if (sio == NULL) {
505 errno = ENOMEM;
506 goto fail;
509 sio->xattr_name = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
510 xattr_name);
511 sio->base = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
512 smb_fname->base_name);
513 sio->fsp_name_ptr = fsp->fsp_name;
514 sio->handle = handle;
515 sio->fsp = fsp;
517 if ((sio->xattr_name == NULL) || (sio->base == NULL)) {
518 errno = ENOMEM;
519 goto fail;
522 return hostfd;
524 fail:
525 if (hostfd >= 0) {
527 * BUGBUGBUG -- we would need to call fd_close_posix here, but
528 * we don't have a full fsp yet
530 SMB_VFS_CLOSE(fsp);
533 return -1;
536 static int streams_xattr_unlink(vfs_handle_struct *handle,
537 const struct smb_filename *smb_fname)
539 NTSTATUS status;
540 int ret = -1;
541 char *xattr_name;
543 if (!is_ntfs_stream_smb_fname(smb_fname)) {
544 return SMB_VFS_NEXT_UNLINK(handle, smb_fname);
547 /* If the default stream is requested, just open the base file. */
548 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
549 struct smb_filename *smb_fname_base = NULL;
551 smb_fname_base = cp_smb_filename(talloc_tos(), smb_fname);
552 if (smb_fname_base == NULL) {
553 errno = ENOMEM;
554 return -1;
557 ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_base);
559 TALLOC_FREE(smb_fname_base);
560 return ret;
563 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
564 &xattr_name);
565 if (!NT_STATUS_IS_OK(status)) {
566 errno = map_errno_from_nt_status(status);
567 goto fail;
570 ret = SMB_VFS_REMOVEXATTR(handle->conn, smb_fname->base_name, xattr_name);
572 if ((ret == -1) && (errno == ENOATTR)) {
573 errno = ENOENT;
574 goto fail;
577 ret = 0;
579 fail:
580 TALLOC_FREE(xattr_name);
581 return ret;
584 static int streams_xattr_rename(vfs_handle_struct *handle,
585 const struct smb_filename *smb_fname_src,
586 const struct smb_filename *smb_fname_dst)
588 NTSTATUS status;
589 int ret = -1;
590 char *src_xattr_name = NULL;
591 char *dst_xattr_name = NULL;
592 bool src_is_stream, dst_is_stream;
593 ssize_t oret;
594 ssize_t nret;
595 struct ea_struct ea;
597 src_is_stream = is_ntfs_stream_smb_fname(smb_fname_src);
598 dst_is_stream = is_ntfs_stream_smb_fname(smb_fname_dst);
600 if (!src_is_stream && !dst_is_stream) {
601 return SMB_VFS_NEXT_RENAME(handle, smb_fname_src,
602 smb_fname_dst);
605 /* For now don't allow renames from or to the default stream. */
606 if (is_ntfs_default_stream_smb_fname(smb_fname_src) ||
607 is_ntfs_default_stream_smb_fname(smb_fname_dst)) {
608 errno = ENOSYS;
609 goto done;
612 /* Don't rename if the streams are identical. */
613 if (strcasecmp_m(smb_fname_src->stream_name,
614 smb_fname_dst->stream_name) == 0) {
615 goto done;
618 /* Get the xattr names. */
619 status = streams_xattr_get_name(talloc_tos(),
620 smb_fname_src->stream_name,
621 &src_xattr_name);
622 if (!NT_STATUS_IS_OK(status)) {
623 errno = map_errno_from_nt_status(status);
624 goto fail;
626 status = streams_xattr_get_name(talloc_tos(),
627 smb_fname_dst->stream_name,
628 &dst_xattr_name);
629 if (!NT_STATUS_IS_OK(status)) {
630 errno = map_errno_from_nt_status(status);
631 goto fail;
634 /* read the old stream */
635 status = get_ea_value(talloc_tos(), handle->conn, NULL,
636 smb_fname_src->base_name, src_xattr_name, &ea);
637 if (!NT_STATUS_IS_OK(status)) {
638 errno = ENOENT;
639 goto fail;
642 /* (over)write the new stream */
643 nret = SMB_VFS_SETXATTR(handle->conn, smb_fname_src->base_name,
644 dst_xattr_name, ea.value.data, ea.value.length,
646 if (nret < 0) {
647 if (errno == ENOATTR) {
648 errno = ENOENT;
650 goto fail;
653 /* remove the old stream */
654 oret = SMB_VFS_REMOVEXATTR(handle->conn, smb_fname_src->base_name,
655 src_xattr_name);
656 if (oret < 0) {
657 if (errno == ENOATTR) {
658 errno = ENOENT;
660 goto fail;
663 done:
664 errno = 0;
665 ret = 0;
666 fail:
667 TALLOC_FREE(src_xattr_name);
668 TALLOC_FREE(dst_xattr_name);
669 return ret;
672 static NTSTATUS walk_xattr_streams(connection_struct *conn, files_struct *fsp,
673 const char *fname,
674 bool (*fn)(struct ea_struct *ea,
675 void *private_data),
676 void *private_data)
678 NTSTATUS status;
679 char **names;
680 size_t i, num_names;
681 size_t prefix_len = strlen(SAMBA_XATTR_DOSSTREAM_PREFIX);
683 status = get_ea_names_from_file(talloc_tos(), conn, fsp, fname,
684 &names, &num_names);
685 if (!NT_STATUS_IS_OK(status)) {
686 return status;
689 for (i=0; i<num_names; i++) {
690 struct ea_struct ea;
692 if (strncmp(names[i], SAMBA_XATTR_DOSSTREAM_PREFIX,
693 prefix_len) != 0) {
694 continue;
697 status = get_ea_value(names, conn, fsp, fname, names[i], &ea);
698 if (!NT_STATUS_IS_OK(status)) {
699 DEBUG(10, ("Could not get ea %s for file %s: %s\n",
700 names[i], fname, nt_errstr(status)));
701 continue;
704 ea.name = talloc_asprintf(ea.value.data, ":%s",
705 names[i] + prefix_len);
706 if (ea.name == NULL) {
707 DEBUG(0, ("talloc failed\n"));
708 continue;
711 if (!fn(&ea, private_data)) {
712 TALLOC_FREE(ea.value.data);
713 return NT_STATUS_OK;
716 TALLOC_FREE(ea.value.data);
719 TALLOC_FREE(names);
720 return NT_STATUS_OK;
723 static bool add_one_stream(TALLOC_CTX *mem_ctx, unsigned int *num_streams,
724 struct stream_struct **streams,
725 const char *name, off_t size,
726 off_t alloc_size)
728 struct stream_struct *tmp;
730 tmp = talloc_realloc(mem_ctx, *streams, struct stream_struct,
731 (*num_streams)+1);
732 if (tmp == NULL) {
733 return false;
736 tmp[*num_streams].name = talloc_strdup(tmp, name);
737 if (tmp[*num_streams].name == NULL) {
738 return false;
741 tmp[*num_streams].size = size;
742 tmp[*num_streams].alloc_size = alloc_size;
744 *streams = tmp;
745 *num_streams += 1;
746 return true;
749 struct streaminfo_state {
750 TALLOC_CTX *mem_ctx;
751 vfs_handle_struct *handle;
752 unsigned int num_streams;
753 struct stream_struct *streams;
754 NTSTATUS status;
757 static bool collect_one_stream(struct ea_struct *ea, void *private_data)
759 struct streaminfo_state *state =
760 (struct streaminfo_state *)private_data;
762 if (!add_one_stream(state->mem_ctx,
763 &state->num_streams, &state->streams,
764 ea->name, ea->value.length-1,
765 smb_roundup(state->handle->conn,
766 ea->value.length-1))) {
767 state->status = NT_STATUS_NO_MEMORY;
768 return false;
771 return true;
774 static NTSTATUS streams_xattr_streaminfo(vfs_handle_struct *handle,
775 struct files_struct *fsp,
776 const char *fname,
777 TALLOC_CTX *mem_ctx,
778 unsigned int *pnum_streams,
779 struct stream_struct **pstreams)
781 SMB_STRUCT_STAT sbuf;
782 int ret;
783 NTSTATUS status;
784 struct streaminfo_state state;
786 if ((fsp != NULL) && (fsp->fh->fd != -1)) {
787 ret = SMB_VFS_FSTAT(fsp, &sbuf);
789 else {
790 struct smb_filename *smb_fname = NULL;
791 smb_fname = synthetic_smb_fname(talloc_tos(), fname, NULL,
792 NULL);
793 if (smb_fname == NULL) {
794 return NT_STATUS_NO_MEMORY;
796 if (lp_posix_pathnames()) {
797 ret = SMB_VFS_LSTAT(handle->conn, smb_fname);
798 } else {
799 ret = SMB_VFS_STAT(handle->conn, smb_fname);
801 sbuf = smb_fname->st;
802 TALLOC_FREE(smb_fname);
805 if (ret == -1) {
806 return map_nt_error_from_unix(errno);
809 state.streams = *pstreams;
810 state.num_streams = *pnum_streams;
811 state.mem_ctx = mem_ctx;
812 state.handle = handle;
813 state.status = NT_STATUS_OK;
815 status = walk_xattr_streams(handle->conn, fsp, fname,
816 collect_one_stream, &state);
818 if (!NT_STATUS_IS_OK(status)) {
819 TALLOC_FREE(state.streams);
820 return status;
823 if (!NT_STATUS_IS_OK(state.status)) {
824 TALLOC_FREE(state.streams);
825 return state.status;
828 *pnum_streams = state.num_streams;
829 *pstreams = state.streams;
831 return SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx, pnum_streams, pstreams);
834 static uint32_t streams_xattr_fs_capabilities(struct vfs_handle_struct *handle,
835 enum timestamp_set_resolution *p_ts_res)
837 return SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res) | FILE_NAMED_STREAMS;
840 static ssize_t streams_xattr_pwrite(vfs_handle_struct *handle,
841 files_struct *fsp, const void *data,
842 size_t n, off_t offset)
844 struct stream_io *sio =
845 (struct stream_io *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
846 struct ea_struct ea;
847 NTSTATUS status;
848 int ret;
850 DEBUG(10, ("streams_xattr_pwrite called for %d bytes\n", (int)n));
852 if (sio == NULL) {
853 return SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
856 if (!streams_xattr_recheck(sio)) {
857 return -1;
860 status = get_ea_value(talloc_tos(), handle->conn, fsp->base_fsp,
861 sio->base, sio->xattr_name, &ea);
862 if (!NT_STATUS_IS_OK(status)) {
863 return -1;
866 if ((offset + n) > ea.value.length-1) {
867 uint8 *tmp;
869 tmp = talloc_realloc(talloc_tos(), ea.value.data, uint8,
870 offset + n + 1);
872 if (tmp == NULL) {
873 TALLOC_FREE(ea.value.data);
874 errno = ENOMEM;
875 return -1;
877 ea.value.data = tmp;
878 ea.value.length = offset + n + 1;
879 ea.value.data[offset+n] = 0;
882 memcpy(ea.value.data + offset, data, n);
884 if (fsp->base_fsp->fh->fd != -1) {
885 ret = SMB_VFS_FSETXATTR(fsp->base_fsp,
886 sio->xattr_name,
887 ea.value.data, ea.value.length, 0);
888 } else {
889 ret = SMB_VFS_SETXATTR(fsp->conn,
890 fsp->base_fsp->fsp_name->base_name,
891 sio->xattr_name,
892 ea.value.data, ea.value.length, 0);
894 TALLOC_FREE(ea.value.data);
896 if (ret == -1) {
897 return -1;
900 return n;
903 static ssize_t streams_xattr_pread(vfs_handle_struct *handle,
904 files_struct *fsp, void *data,
905 size_t n, off_t offset)
907 struct stream_io *sio =
908 (struct stream_io *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
909 struct ea_struct ea;
910 NTSTATUS status;
911 size_t length, overlap;
913 DEBUG(10, ("streams_xattr_pread: offset=%d, size=%d\n",
914 (int)offset, (int)n));
916 if (sio == NULL) {
917 return SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
920 if (!streams_xattr_recheck(sio)) {
921 return -1;
924 status = get_ea_value(talloc_tos(), handle->conn, fsp->base_fsp,
925 sio->base, sio->xattr_name, &ea);
926 if (!NT_STATUS_IS_OK(status)) {
927 return -1;
930 length = ea.value.length-1;
932 DEBUG(10, ("streams_xattr_pread: get_ea_value returned %d bytes\n",
933 (int)length));
935 /* Attempt to read past EOF. */
936 if (length <= offset) {
937 return 0;
940 overlap = (offset + n) > length ? (length - offset) : n;
941 memcpy(data, ea.value.data + offset, overlap);
943 TALLOC_FREE(ea.value.data);
944 return overlap;
947 static int streams_xattr_ftruncate(struct vfs_handle_struct *handle,
948 struct files_struct *fsp,
949 off_t offset)
951 int ret;
952 uint8 *tmp;
953 struct ea_struct ea;
954 NTSTATUS status;
955 struct stream_io *sio =
956 (struct stream_io *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
958 DEBUG(10, ("streams_xattr_ftruncate called for file %s offset %.0f\n",
959 fsp_str_dbg(fsp), (double)offset));
961 if (sio == NULL) {
962 return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
965 if (!streams_xattr_recheck(sio)) {
966 return -1;
969 status = get_ea_value(talloc_tos(), handle->conn, fsp->base_fsp,
970 sio->base, sio->xattr_name, &ea);
971 if (!NT_STATUS_IS_OK(status)) {
972 return -1;
975 tmp = talloc_realloc(talloc_tos(), ea.value.data, uint8,
976 offset + 1);
978 if (tmp == NULL) {
979 TALLOC_FREE(ea.value.data);
980 errno = ENOMEM;
981 return -1;
984 /* Did we expand ? */
985 if (ea.value.length < offset + 1) {
986 memset(&tmp[ea.value.length], '\0',
987 offset + 1 - ea.value.length);
990 ea.value.data = tmp;
991 ea.value.length = offset + 1;
992 ea.value.data[offset] = 0;
994 if (fsp->base_fsp->fh->fd != -1) {
995 ret = SMB_VFS_FSETXATTR(fsp->base_fsp,
996 sio->xattr_name,
997 ea.value.data, ea.value.length, 0);
998 } else {
999 ret = SMB_VFS_SETXATTR(fsp->conn,
1000 fsp->base_fsp->fsp_name->base_name,
1001 sio->xattr_name,
1002 ea.value.data, ea.value.length, 0);
1005 TALLOC_FREE(ea.value.data);
1007 if (ret == -1) {
1008 return -1;
1011 return 0;
1014 static int streams_xattr_fallocate(struct vfs_handle_struct *handle,
1015 struct files_struct *fsp,
1016 enum vfs_fallocate_mode mode,
1017 off_t offset,
1018 off_t len)
1020 struct stream_io *sio =
1021 (struct stream_io *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
1023 DEBUG(10, ("streams_xattr_fallocate called for file %s offset %.0f"
1024 "len = %.0f\n",
1025 fsp_str_dbg(fsp), (double)offset, (double)len));
1027 if (sio == NULL) {
1028 return SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
1031 if (!streams_xattr_recheck(sio)) {
1032 return errno;
1035 /* Let the pwrite code path handle it. */
1036 return ENOSYS;
1040 static struct vfs_fn_pointers vfs_streams_xattr_fns = {
1041 .fs_capabilities_fn = streams_xattr_fs_capabilities,
1042 .open_fn = streams_xattr_open,
1043 .stat_fn = streams_xattr_stat,
1044 .fstat_fn = streams_xattr_fstat,
1045 .lstat_fn = streams_xattr_lstat,
1046 .pread_fn = streams_xattr_pread,
1047 .pwrite_fn = streams_xattr_pwrite,
1048 .unlink_fn = streams_xattr_unlink,
1049 .rename_fn = streams_xattr_rename,
1050 .ftruncate_fn = streams_xattr_ftruncate,
1051 .fallocate_fn = streams_xattr_fallocate,
1052 .streaminfo_fn = streams_xattr_streaminfo,
1055 NTSTATUS vfs_streams_xattr_init(void);
1056 NTSTATUS vfs_streams_xattr_init(void)
1058 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "streams_xattr",
1059 &vfs_streams_xattr_fns);