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/>.
25 #include "smbd/smbd.h"
26 #include "system/filesys.h"
27 #include "../lib/crypto/md5.h"
30 #define DBGC_CLASS DBGC_VFS
32 struct streams_xattr_config
{
35 bool store_stream_type
;
43 vfs_handle_struct
*handle
;
46 static SMB_INO_T
stream_inode(const SMB_STRUCT_STAT
*sbuf
, const char *sname
)
49 unsigned char hash
[16];
53 DEBUG(10, ("stream_inode called for %lu/%lu [%s]\n",
54 (unsigned long)sbuf
->st_ex_dev
,
55 (unsigned long)sbuf
->st_ex_ino
, sname
));
57 upper_sname
= talloc_strdup_upper(talloc_tos(), sname
);
58 SMB_ASSERT(upper_sname
!= NULL
);
61 MD5Update(&ctx
, (const unsigned char *)&(sbuf
->st_ex_dev
),
62 sizeof(sbuf
->st_ex_dev
));
63 MD5Update(&ctx
, (const unsigned char *)&(sbuf
->st_ex_ino
),
64 sizeof(sbuf
->st_ex_ino
));
65 MD5Update(&ctx
, (unsigned char *)upper_sname
,
66 talloc_get_size(upper_sname
)-1);
69 TALLOC_FREE(upper_sname
);
71 /* Hopefully all the variation is in the lower 4 (or 8) bytes! */
72 memcpy(&result
, hash
, sizeof(result
));
74 DEBUG(10, ("stream_inode returns %lu\n", (unsigned long)result
));
79 static ssize_t
get_xattr_size(connection_struct
*conn
,
82 const char *xattr_name
)
88 status
= get_ea_value(talloc_tos(), conn
, fsp
, fname
,
91 if (!NT_STATUS_IS_OK(status
)) {
95 result
= ea
.value
.length
-1;
96 TALLOC_FREE(ea
.value
.data
);
101 * Given a stream name, populate xattr_name with the xattr name to use for
102 * accessing the stream.
104 static NTSTATUS
streams_xattr_get_name(vfs_handle_struct
*handle
,
106 const char *stream_name
,
111 struct streams_xattr_config
*config
;
113 SMB_VFS_HANDLE_GET_DATA(handle
, config
, struct streams_xattr_config
,
114 return NT_STATUS_UNSUCCESSFUL
);
116 sname
= talloc_strdup(ctx
, stream_name
+ 1);
118 return NT_STATUS_NO_MEMORY
;
122 * With vfs_fruit option "fruit:encoding = native" we're
123 * already converting stream names that contain illegal NTFS
124 * characters from their on-the-wire Unicode Private Range
125 * encoding to their native ASCII representation.
127 * As as result the name of xattrs storing the streams (via
128 * vfs_streams_xattr) may contain a colon, so we have to use
129 * strrchr_m() instead of strchr_m() for matching the stream
132 * In check_path_syntax() we've already ensured the streamname
133 * we got from the client is valid.
135 stype
= strrchr_m(sname
, ':');
139 * We only support one stream type: "$DATA"
141 if (strcasecmp_m(stype
, ":$DATA") != 0) {
143 return NT_STATUS_INVALID_PARAMETER
;
146 /* Split name and type */
150 *xattr_name
= talloc_asprintf(ctx
, "%s%s%s",
153 config
->store_stream_type
? ":$DATA" : "");
154 if (*xattr_name
== NULL
) {
156 return NT_STATUS_NO_MEMORY
;
159 DEBUG(10, ("xattr_name: %s, stream_name: %s\n", *xattr_name
,
166 static bool streams_xattr_recheck(struct stream_io
*sio
)
169 char *xattr_name
= NULL
;
171 if (sio
->fsp
->fsp_name
== sio
->fsp_name_ptr
) {
175 if (sio
->fsp
->fsp_name
->stream_name
== NULL
) {
176 /* how can this happen */
181 status
= streams_xattr_get_name(sio
->handle
, talloc_tos(),
182 sio
->fsp
->fsp_name
->stream_name
,
184 if (!NT_STATUS_IS_OK(status
)) {
188 TALLOC_FREE(sio
->xattr_name
);
189 TALLOC_FREE(sio
->base
);
190 sio
->xattr_name
= talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(sio
->handle
, sio
->fsp
),
192 sio
->base
= talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(sio
->handle
, sio
->fsp
),
193 sio
->fsp
->fsp_name
->base_name
);
194 sio
->fsp_name_ptr
= sio
->fsp
->fsp_name
;
196 TALLOC_FREE(xattr_name
);
198 if ((sio
->xattr_name
== NULL
) || (sio
->base
== NULL
)) {
206 * Helper to stat/lstat the base file of an smb_fname.
208 static int streams_xattr_stat_base(vfs_handle_struct
*handle
,
209 struct smb_filename
*smb_fname
,
212 char *tmp_stream_name
;
215 tmp_stream_name
= smb_fname
->stream_name
;
216 smb_fname
->stream_name
= NULL
;
218 result
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
220 result
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
222 smb_fname
->stream_name
= tmp_stream_name
;
226 static int streams_xattr_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
,
227 SMB_STRUCT_STAT
*sbuf
)
229 struct smb_filename
*smb_fname_base
= NULL
;
231 struct stream_io
*io
= (struct stream_io
*)
232 VFS_FETCH_FSP_EXTENSION(handle
, fsp
);
234 DEBUG(10, ("streams_xattr_fstat called for %d\n", fsp
->fh
->fd
));
236 if (io
== NULL
|| fsp
->base_fsp
== NULL
) {
237 return SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
240 if (!streams_xattr_recheck(io
)) {
244 /* Create an smb_filename with stream_name == NULL. */
245 smb_fname_base
= synthetic_smb_fname(talloc_tos(),
249 fsp
->fsp_name
->flags
);
250 if (smb_fname_base
== NULL
) {
255 if (smb_fname_base
->flags
& SMB_FILENAME_POSIX_PATH
) {
256 ret
= SMB_VFS_LSTAT(handle
->conn
, smb_fname_base
);
258 ret
= SMB_VFS_STAT(handle
->conn
, smb_fname_base
);
260 *sbuf
= smb_fname_base
->st
;
261 TALLOC_FREE(smb_fname_base
);
267 sbuf
->st_ex_size
= get_xattr_size(handle
->conn
, fsp
->base_fsp
,
268 io
->base
, io
->xattr_name
);
269 if (sbuf
->st_ex_size
== -1) {
273 DEBUG(10, ("sbuf->st_ex_size = %d\n", (int)sbuf
->st_ex_size
));
275 sbuf
->st_ex_ino
= stream_inode(sbuf
, io
->xattr_name
);
276 sbuf
->st_ex_mode
&= ~S_IFMT
;
277 sbuf
->st_ex_mode
|= S_IFREG
;
278 sbuf
->st_ex_blocks
= sbuf
->st_ex_size
/ STAT_ST_BLOCKSIZE
+ 1;
283 static int streams_xattr_stat(vfs_handle_struct
*handle
,
284 struct smb_filename
*smb_fname
)
288 char *xattr_name
= NULL
;
290 if (!is_ntfs_stream_smb_fname(smb_fname
)) {
291 return SMB_VFS_NEXT_STAT(handle
, smb_fname
);
294 /* Note if lp_posix_paths() is true, we can never
295 * get here as is_ntfs_stream_smb_fname() is
296 * always false. So we never need worry about
297 * not following links here. */
299 /* If the default stream is requested, just stat the base file. */
300 if (is_ntfs_default_stream_smb_fname(smb_fname
)) {
301 return streams_xattr_stat_base(handle
, smb_fname
, true);
304 /* Populate the stat struct with info from the base file. */
305 if (streams_xattr_stat_base(handle
, smb_fname
, true) == -1) {
309 /* Derive the xattr name to lookup. */
310 status
= streams_xattr_get_name(handle
, talloc_tos(),
311 smb_fname
->stream_name
, &xattr_name
);
312 if (!NT_STATUS_IS_OK(status
)) {
313 errno
= map_errno_from_nt_status(status
);
317 /* Augment the base file's stat information before returning. */
318 smb_fname
->st
.st_ex_size
= get_xattr_size(handle
->conn
, NULL
,
319 smb_fname
->base_name
,
321 if (smb_fname
->st
.st_ex_size
== -1) {
327 smb_fname
->st
.st_ex_ino
= stream_inode(&smb_fname
->st
, xattr_name
);
328 smb_fname
->st
.st_ex_mode
&= ~S_IFMT
;
329 smb_fname
->st
.st_ex_mode
|= S_IFREG
;
330 smb_fname
->st
.st_ex_blocks
=
331 smb_fname
->st
.st_ex_size
/ STAT_ST_BLOCKSIZE
+ 1;
335 TALLOC_FREE(xattr_name
);
339 static int streams_xattr_lstat(vfs_handle_struct
*handle
,
340 struct smb_filename
*smb_fname
)
344 char *xattr_name
= NULL
;
346 if (!is_ntfs_stream_smb_fname(smb_fname
)) {
347 return SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
350 /* If the default stream is requested, just stat the base file. */
351 if (is_ntfs_default_stream_smb_fname(smb_fname
)) {
352 return streams_xattr_stat_base(handle
, smb_fname
, false);
355 /* Populate the stat struct with info from the base file. */
356 if (streams_xattr_stat_base(handle
, smb_fname
, false) == -1) {
360 /* Derive the xattr name to lookup. */
361 status
= streams_xattr_get_name(handle
, talloc_tos(),
362 smb_fname
->stream_name
, &xattr_name
);
363 if (!NT_STATUS_IS_OK(status
)) {
364 errno
= map_errno_from_nt_status(status
);
368 /* Augment the base file's stat information before returning. */
369 smb_fname
->st
.st_ex_size
= get_xattr_size(handle
->conn
, NULL
,
370 smb_fname
->base_name
,
372 if (smb_fname
->st
.st_ex_size
== -1) {
378 smb_fname
->st
.st_ex_ino
= stream_inode(&smb_fname
->st
, xattr_name
);
379 smb_fname
->st
.st_ex_mode
&= ~S_IFMT
;
380 smb_fname
->st
.st_ex_mode
|= S_IFREG
;
381 smb_fname
->st
.st_ex_blocks
=
382 smb_fname
->st
.st_ex_size
/ STAT_ST_BLOCKSIZE
+ 1;
387 TALLOC_FREE(xattr_name
);
391 static int streams_xattr_open(vfs_handle_struct
*handle
,
392 struct smb_filename
*smb_fname
,
393 files_struct
*fsp
, int flags
, mode_t mode
)
396 struct smb_filename
*smb_fname_base
= NULL
;
397 struct stream_io
*sio
;
399 char *xattr_name
= NULL
;
403 DEBUG(10, ("streams_xattr_open called for %s with flags 0x%x\n",
404 smb_fname_str_dbg(smb_fname
), flags
));
406 if (!is_ntfs_stream_smb_fname(smb_fname
)) {
407 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
410 /* If the default stream is requested, just open the base file. */
411 if (is_ntfs_default_stream_smb_fname(smb_fname
)) {
412 char *tmp_stream_name
;
415 tmp_stream_name
= smb_fname
->stream_name
;
416 smb_fname
->stream_name
= NULL
;
418 ret
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
420 smb_fname
->stream_name
= tmp_stream_name
;
425 status
= streams_xattr_get_name(handle
, talloc_tos(),
426 smb_fname
->stream_name
, &xattr_name
);
427 if (!NT_STATUS_IS_OK(status
)) {
428 errno
= map_errno_from_nt_status(status
);
432 /* Create an smb_filename with stream_name == NULL. */
433 smb_fname_base
= synthetic_smb_fname(talloc_tos(),
434 smb_fname
->base_name
,
438 if (smb_fname_base
== NULL
) {
444 * We use baseflags to turn off nasty side-effects when opening the
448 baseflags
&= ~O_TRUNC
;
449 baseflags
&= ~O_EXCL
;
450 baseflags
&= ~O_CREAT
;
452 hostfd
= SMB_VFS_OPEN(handle
->conn
, smb_fname_base
, fsp
,
455 TALLOC_FREE(smb_fname_base
);
457 /* It is legit to open a stream on a directory, but the base
458 * fd has to be read-only.
460 if ((hostfd
== -1) && (errno
== EISDIR
)) {
461 baseflags
&= ~O_ACCMODE
;
462 baseflags
|= O_RDONLY
;
463 hostfd
= SMB_VFS_OPEN(handle
->conn
, smb_fname
, fsp
, baseflags
,
471 status
= get_ea_value(talloc_tos(), handle
->conn
, NULL
,
472 smb_fname
->base_name
, xattr_name
, &ea
);
474 DEBUG(10, ("get_ea_value returned %s\n", nt_errstr(status
)));
476 if (!NT_STATUS_IS_OK(status
)
477 && !NT_STATUS_EQUAL(status
, NT_STATUS_NOT_FOUND
)) {
479 * The base file is not there. This is an error even if we got
480 * O_CREAT, the higher levels should have created the base
483 DEBUG(10, ("streams_xattr_open: base file %s not around, "
484 "returning ENOENT\n", smb_fname
->base_name
));
489 if ((!NT_STATUS_IS_OK(status
) && (flags
& O_CREAT
)) ||
492 * The attribute does not exist or needs to be truncated
496 * Darn, xattrs need at least 1 byte
500 DEBUG(10, ("creating or truncating attribute %s on file %s\n",
501 xattr_name
, smb_fname
->base_name
));
503 if (fsp
->base_fsp
->fh
->fd
!= -1) {
504 if (SMB_VFS_FSETXATTR(
505 fsp
->base_fsp
, xattr_name
,
507 flags
& O_EXCL
? XATTR_CREATE
: 0) == -1) {
511 if (SMB_VFS_SETXATTR(
512 handle
->conn
, smb_fname
->base_name
,
513 xattr_name
, &null
, sizeof(null
),
514 flags
& O_EXCL
? XATTR_CREATE
: 0) == -1) {
520 sio
= (struct stream_io
*)VFS_ADD_FSP_EXTENSION(handle
, fsp
,
528 sio
->xattr_name
= talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(handle
, fsp
),
530 sio
->base
= talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(handle
, fsp
),
531 smb_fname
->base_name
);
532 sio
->fsp_name_ptr
= fsp
->fsp_name
;
533 sio
->handle
= handle
;
536 if ((sio
->xattr_name
== NULL
) || (sio
->base
== NULL
)) {
546 * BUGBUGBUG -- we would need to call fd_close_posix here, but
547 * we don't have a full fsp yet
549 fsp
->fh
->fd
= hostfd
;
556 static int streams_xattr_unlink(vfs_handle_struct
*handle
,
557 const struct smb_filename
*smb_fname
)
561 char *xattr_name
= NULL
;
563 if (!is_ntfs_stream_smb_fname(smb_fname
)) {
564 return SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
567 /* If the default stream is requested, just open the base file. */
568 if (is_ntfs_default_stream_smb_fname(smb_fname
)) {
569 struct smb_filename
*smb_fname_base
= NULL
;
571 smb_fname_base
= cp_smb_filename(talloc_tos(), smb_fname
);
572 if (smb_fname_base
== NULL
) {
577 ret
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname_base
);
579 TALLOC_FREE(smb_fname_base
);
583 status
= streams_xattr_get_name(handle
, talloc_tos(),
584 smb_fname
->stream_name
, &xattr_name
);
585 if (!NT_STATUS_IS_OK(status
)) {
586 errno
= map_errno_from_nt_status(status
);
590 ret
= SMB_VFS_REMOVEXATTR(handle
->conn
, smb_fname
->base_name
, xattr_name
);
592 if ((ret
== -1) && (errno
== ENOATTR
)) {
600 TALLOC_FREE(xattr_name
);
604 static int streams_xattr_rename(vfs_handle_struct
*handle
,
605 const struct smb_filename
*smb_fname_src
,
606 const struct smb_filename
*smb_fname_dst
)
610 char *src_xattr_name
= NULL
;
611 char *dst_xattr_name
= NULL
;
612 bool src_is_stream
, dst_is_stream
;
617 src_is_stream
= is_ntfs_stream_smb_fname(smb_fname_src
);
618 dst_is_stream
= is_ntfs_stream_smb_fname(smb_fname_dst
);
620 if (!src_is_stream
&& !dst_is_stream
) {
621 return SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
,
625 /* For now don't allow renames from or to the default stream. */
626 if (is_ntfs_default_stream_smb_fname(smb_fname_src
) ||
627 is_ntfs_default_stream_smb_fname(smb_fname_dst
)) {
632 /* Don't rename if the streams are identical. */
633 if (strcasecmp_m(smb_fname_src
->stream_name
,
634 smb_fname_dst
->stream_name
) == 0) {
638 /* Get the xattr names. */
639 status
= streams_xattr_get_name(handle
, talloc_tos(),
640 smb_fname_src
->stream_name
,
642 if (!NT_STATUS_IS_OK(status
)) {
643 errno
= map_errno_from_nt_status(status
);
646 status
= streams_xattr_get_name(handle
, talloc_tos(),
647 smb_fname_dst
->stream_name
,
649 if (!NT_STATUS_IS_OK(status
)) {
650 errno
= map_errno_from_nt_status(status
);
654 /* read the old stream */
655 status
= get_ea_value(talloc_tos(), handle
->conn
, NULL
,
656 smb_fname_src
->base_name
, src_xattr_name
, &ea
);
657 if (!NT_STATUS_IS_OK(status
)) {
662 /* (over)write the new stream */
663 nret
= SMB_VFS_SETXATTR(handle
->conn
, smb_fname_src
->base_name
,
664 dst_xattr_name
, ea
.value
.data
, ea
.value
.length
,
667 if (errno
== ENOATTR
) {
673 /* remove the old stream */
674 oret
= SMB_VFS_REMOVEXATTR(handle
->conn
, smb_fname_src
->base_name
,
677 if (errno
== ENOATTR
) {
687 TALLOC_FREE(src_xattr_name
);
688 TALLOC_FREE(dst_xattr_name
);
692 static NTSTATUS
walk_xattr_streams(vfs_handle_struct
*handle
,
694 const struct smb_filename
*smb_fname
,
695 bool (*fn
)(struct ea_struct
*ea
,
702 struct streams_xattr_config
*config
;
704 SMB_VFS_HANDLE_GET_DATA(handle
, config
, struct streams_xattr_config
,
705 return NT_STATUS_UNSUCCESSFUL
);
707 status
= get_ea_names_from_file(talloc_tos(),
713 if (!NT_STATUS_IS_OK(status
)) {
717 for (i
=0; i
<num_names
; i
++) {
721 * We want to check with samba_private_attr_name()
722 * whether the xattr name is a private one,
723 * unfortunately it flags xattrs that begin with the
724 * default streams prefix as private.
726 * By only calling samba_private_attr_name() in case
727 * the xattr does NOT begin with the default prefix,
728 * we know that if it returns 'true' it definitely one
729 * of our internal xattr like "user.DOSATTRIB".
731 if (strncasecmp_m(names
[i
], SAMBA_XATTR_DOSSTREAM_PREFIX
,
732 strlen(SAMBA_XATTR_DOSSTREAM_PREFIX
)) != 0) {
733 if (samba_private_attr_name(names
[i
])) {
738 if (strncmp(names
[i
], config
->prefix
,
739 config
->prefix_len
) != 0) {
743 status
= get_ea_value(names
,
746 smb_fname
->base_name
,
749 if (!NT_STATUS_IS_OK(status
)) {
750 DEBUG(10, ("Could not get ea %s for file %s: %s\n",
752 smb_fname
->base_name
,
757 ea
.name
= talloc_asprintf(
758 ea
.value
.data
, ":%s%s",
759 names
[i
] + config
->prefix_len
,
760 config
->store_stream_type
? "" : ":$DATA");
761 if (ea
.name
== NULL
) {
762 DEBUG(0, ("talloc failed\n"));
766 if (!fn(&ea
, private_data
)) {
767 TALLOC_FREE(ea
.value
.data
);
771 TALLOC_FREE(ea
.value
.data
);
778 static bool add_one_stream(TALLOC_CTX
*mem_ctx
, unsigned int *num_streams
,
779 struct stream_struct
**streams
,
780 const char *name
, off_t size
,
783 struct stream_struct
*tmp
;
785 tmp
= talloc_realloc(mem_ctx
, *streams
, struct stream_struct
,
791 tmp
[*num_streams
].name
= talloc_strdup(tmp
, name
);
792 if (tmp
[*num_streams
].name
== NULL
) {
796 tmp
[*num_streams
].size
= size
;
797 tmp
[*num_streams
].alloc_size
= alloc_size
;
804 struct streaminfo_state
{
806 vfs_handle_struct
*handle
;
807 unsigned int num_streams
;
808 struct stream_struct
*streams
;
812 static bool collect_one_stream(struct ea_struct
*ea
, void *private_data
)
814 struct streaminfo_state
*state
=
815 (struct streaminfo_state
*)private_data
;
817 if (!add_one_stream(state
->mem_ctx
,
818 &state
->num_streams
, &state
->streams
,
819 ea
->name
, ea
->value
.length
-1,
820 smb_roundup(state
->handle
->conn
,
821 ea
->value
.length
-1))) {
822 state
->status
= NT_STATUS_NO_MEMORY
;
829 static NTSTATUS
streams_xattr_streaminfo(vfs_handle_struct
*handle
,
830 struct files_struct
*fsp
,
831 const struct smb_filename
*smb_fname
,
833 unsigned int *pnum_streams
,
834 struct stream_struct
**pstreams
)
836 SMB_STRUCT_STAT sbuf
;
839 struct streaminfo_state state
;
841 if ((fsp
!= NULL
) && (fsp
->fh
->fd
!= -1)) {
842 ret
= SMB_VFS_FSTAT(fsp
, &sbuf
);
844 ret
= vfs_stat_smb_basename(handle
->conn
,
850 return map_nt_error_from_unix(errno
);
853 state
.streams
= *pstreams
;
854 state
.num_streams
= *pnum_streams
;
855 state
.mem_ctx
= mem_ctx
;
856 state
.handle
= handle
;
857 state
.status
= NT_STATUS_OK
;
859 if (S_ISLNK(sbuf
.st_ex_mode
)) {
861 * Currently we do't have SMB_VFS_LLISTXATTR
862 * inside the VFS which means there's no way
863 * to cope with a symlink when lp_posix_pathnames().
864 * returns true. For now ignore links.
865 * FIXME - by adding SMB_VFS_LLISTXATTR. JRA.
867 status
= NT_STATUS_OK
;
869 status
= walk_xattr_streams(handle
, fsp
, smb_fname
,
870 collect_one_stream
, &state
);
873 if (!NT_STATUS_IS_OK(status
)) {
874 TALLOC_FREE(state
.streams
);
878 if (!NT_STATUS_IS_OK(state
.status
)) {
879 TALLOC_FREE(state
.streams
);
883 *pnum_streams
= state
.num_streams
;
884 *pstreams
= state
.streams
;
886 return SMB_VFS_NEXT_STREAMINFO(handle
,
894 static uint32_t streams_xattr_fs_capabilities(struct vfs_handle_struct
*handle
,
895 enum timestamp_set_resolution
*p_ts_res
)
897 return SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
) | FILE_NAMED_STREAMS
;
900 static int streams_xattr_connect(vfs_handle_struct
*handle
,
901 const char *service
, const char *user
)
903 struct streams_xattr_config
*config
;
904 const char *default_prefix
= SAMBA_XATTR_DOSSTREAM_PREFIX
;
908 rc
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
913 config
= talloc_zero(handle
->conn
, struct streams_xattr_config
);
914 if (config
== NULL
) {
915 DEBUG(1, ("talloc_zero() failed\n"));
920 prefix
= lp_parm_const_string(SNUM(handle
->conn
),
921 "streams_xattr", "prefix",
923 config
->prefix
= talloc_strdup(config
, prefix
);
924 if (config
->prefix
== NULL
) {
925 DEBUG(1, ("talloc_strdup() failed\n"));
929 config
->prefix_len
= strlen(config
->prefix
);
930 DEBUG(10, ("streams_xattr using stream prefix: %s\n", config
->prefix
));
932 config
->store_stream_type
= lp_parm_bool(SNUM(handle
->conn
),
937 SMB_VFS_HANDLE_SET_DATA(handle
, config
,
938 NULL
, struct stream_xattr_config
,
944 static ssize_t
streams_xattr_pwrite(vfs_handle_struct
*handle
,
945 files_struct
*fsp
, const void *data
,
946 size_t n
, off_t offset
)
948 struct stream_io
*sio
=
949 (struct stream_io
*)VFS_FETCH_FSP_EXTENSION(handle
, fsp
);
954 DEBUG(10, ("streams_xattr_pwrite called for %d bytes\n", (int)n
));
957 return SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
960 if (!streams_xattr_recheck(sio
)) {
964 status
= get_ea_value(talloc_tos(), handle
->conn
, fsp
->base_fsp
,
965 sio
->base
, sio
->xattr_name
, &ea
);
966 if (!NT_STATUS_IS_OK(status
)) {
970 if ((offset
+ n
) > ea
.value
.length
-1) {
973 tmp
= talloc_realloc(talloc_tos(), ea
.value
.data
, uint8_t,
977 TALLOC_FREE(ea
.value
.data
);
982 ea
.value
.length
= offset
+ n
+ 1;
983 ea
.value
.data
[offset
+n
] = 0;
986 memcpy(ea
.value
.data
+ offset
, data
, n
);
988 if (fsp
->base_fsp
->fh
->fd
!= -1) {
989 ret
= SMB_VFS_FSETXATTR(fsp
->base_fsp
,
991 ea
.value
.data
, ea
.value
.length
, 0);
993 ret
= SMB_VFS_SETXATTR(fsp
->conn
,
994 fsp
->base_fsp
->fsp_name
->base_name
,
996 ea
.value
.data
, ea
.value
.length
, 0);
998 TALLOC_FREE(ea
.value
.data
);
1007 static ssize_t
streams_xattr_pread(vfs_handle_struct
*handle
,
1008 files_struct
*fsp
, void *data
,
1009 size_t n
, off_t offset
)
1011 struct stream_io
*sio
=
1012 (struct stream_io
*)VFS_FETCH_FSP_EXTENSION(handle
, fsp
);
1013 struct ea_struct ea
;
1015 size_t length
, overlap
;
1017 DEBUG(10, ("streams_xattr_pread: offset=%d, size=%d\n",
1018 (int)offset
, (int)n
));
1021 return SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
1024 if (!streams_xattr_recheck(sio
)) {
1028 status
= get_ea_value(talloc_tos(), handle
->conn
, fsp
->base_fsp
,
1029 sio
->base
, sio
->xattr_name
, &ea
);
1030 if (!NT_STATUS_IS_OK(status
)) {
1034 length
= ea
.value
.length
-1;
1036 DEBUG(10, ("streams_xattr_pread: get_ea_value returned %d bytes\n",
1039 /* Attempt to read past EOF. */
1040 if (length
<= offset
) {
1044 overlap
= (offset
+ n
) > length
? (length
- offset
) : n
;
1045 memcpy(data
, ea
.value
.data
+ offset
, overlap
);
1047 TALLOC_FREE(ea
.value
.data
);
1051 static int streams_xattr_ftruncate(struct vfs_handle_struct
*handle
,
1052 struct files_struct
*fsp
,
1057 struct ea_struct ea
;
1059 struct stream_io
*sio
=
1060 (struct stream_io
*)VFS_FETCH_FSP_EXTENSION(handle
, fsp
);
1062 DEBUG(10, ("streams_xattr_ftruncate called for file %s offset %.0f\n",
1063 fsp_str_dbg(fsp
), (double)offset
));
1066 return SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, offset
);
1069 if (!streams_xattr_recheck(sio
)) {
1073 status
= get_ea_value(talloc_tos(), handle
->conn
, fsp
->base_fsp
,
1074 sio
->base
, sio
->xattr_name
, &ea
);
1075 if (!NT_STATUS_IS_OK(status
)) {
1079 tmp
= talloc_realloc(talloc_tos(), ea
.value
.data
, uint8_t,
1083 TALLOC_FREE(ea
.value
.data
);
1088 /* Did we expand ? */
1089 if (ea
.value
.length
< offset
+ 1) {
1090 memset(&tmp
[ea
.value
.length
], '\0',
1091 offset
+ 1 - ea
.value
.length
);
1094 ea
.value
.data
= tmp
;
1095 ea
.value
.length
= offset
+ 1;
1096 ea
.value
.data
[offset
] = 0;
1098 if (fsp
->base_fsp
->fh
->fd
!= -1) {
1099 ret
= SMB_VFS_FSETXATTR(fsp
->base_fsp
,
1101 ea
.value
.data
, ea
.value
.length
, 0);
1103 ret
= SMB_VFS_SETXATTR(fsp
->conn
,
1104 fsp
->base_fsp
->fsp_name
->base_name
,
1106 ea
.value
.data
, ea
.value
.length
, 0);
1109 TALLOC_FREE(ea
.value
.data
);
1118 static int streams_xattr_fallocate(struct vfs_handle_struct
*handle
,
1119 struct files_struct
*fsp
,
1124 struct stream_io
*sio
=
1125 (struct stream_io
*)VFS_FETCH_FSP_EXTENSION(handle
, fsp
);
1127 DEBUG(10, ("streams_xattr_fallocate called for file %s offset %.0f"
1129 fsp_str_dbg(fsp
), (double)offset
, (double)len
));
1132 return SMB_VFS_NEXT_FALLOCATE(handle
, fsp
, mode
, offset
, len
);
1135 if (!streams_xattr_recheck(sio
)) {
1139 /* Let the pwrite code path handle it. */
1145 static struct vfs_fn_pointers vfs_streams_xattr_fns
= {
1146 .fs_capabilities_fn
= streams_xattr_fs_capabilities
,
1147 .connect_fn
= streams_xattr_connect
,
1148 .open_fn
= streams_xattr_open
,
1149 .stat_fn
= streams_xattr_stat
,
1150 .fstat_fn
= streams_xattr_fstat
,
1151 .lstat_fn
= streams_xattr_lstat
,
1152 .pread_fn
= streams_xattr_pread
,
1153 .pwrite_fn
= streams_xattr_pwrite
,
1154 .unlink_fn
= streams_xattr_unlink
,
1155 .rename_fn
= streams_xattr_rename
,
1156 .ftruncate_fn
= streams_xattr_ftruncate
,
1157 .fallocate_fn
= streams_xattr_fallocate
,
1158 .streaminfo_fn
= streams_xattr_streaminfo
,
1161 NTSTATUS
vfs_streams_xattr_init(void);
1162 NTSTATUS
vfs_streams_xattr_init(void)
1164 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "streams_xattr",
1165 &vfs_streams_xattr_fns
);