2 * Store streams in a separate subdirectory
4 * Copyright (C) Volker Lendecke, 2007
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "smbd/smbd.h"
22 #include "system/filesys.h"
25 #define DBGC_CLASS DBGC_VFS
28 * Excerpt from a mail from tridge:
30 * Volker, what I'm thinking of is this:
31 * /mount-point/.streams/XX/YY/aaaa.bbbb/namedstream1
32 * /mount-point/.streams/XX/YY/aaaa.bbbb/namedstream2
34 * where XX/YY is a 2 level hash based on the fsid/inode. "aaaa.bbbb"
35 * is the fsid/inode. "namedstreamX" is a file named after the stream
39 static uint32_t hash_fn(DATA_BLOB key
)
41 uint32_t value
; /* Used to compute the hash value. */
42 uint32_t i
; /* Used to cycle through random values. */
44 /* Set the initial value from the key size. */
45 for (value
= 0x238F13AF * key
.length
, i
=0; i
< key
.length
; i
++)
46 value
= (value
+ (key
.data
[i
] << (i
*5 % 24)));
48 return (1103515243 * value
+ 12345);
52 * With the hashing scheme based on the inode we need to protect against
53 * streams showing up on files with re-used inodes. This can happen if we
54 * create a stream directory from within Samba, and a local process or NFS
55 * client deletes the file without deleting the streams directory. When the
56 * inode is re-used and the stream directory is still around, the streams in
57 * there would be show up as belonging to the new file.
59 * There are several workarounds for this, probably the easiest one is on
60 * systems which have a true birthtime stat element: When the file has a later
61 * birthtime than the streams directory, then we have to recreate the
64 * The other workaround is to somehow mark the file as generated by Samba with
65 * something that a NFS client would not do. The closest one is a special
66 * xattr value being set. On systems which do not support xattrs, it might be
67 * an option to put in a special ACL entry for a non-existing group.
70 static bool file_is_valid(vfs_handle_struct
*handle
, const char *path
)
74 DEBUG(10, ("file_is_valid (%s) called\n", path
));
76 if (SMB_VFS_GETXATTR(handle
->conn
, path
, SAMBA_XATTR_MARKER
,
77 &buf
, sizeof(buf
)) != sizeof(buf
)) {
78 DEBUG(10, ("GETXATTR failed: %s\n", strerror(errno
)));
83 DEBUG(10, ("got wrong buffer content: '%c'\n", buf
));
90 static bool mark_file_valid(vfs_handle_struct
*handle
, const char *path
)
95 DEBUG(10, ("marking file %s as valid\n", path
));
97 ret
= SMB_VFS_SETXATTR(handle
->conn
, path
, SAMBA_XATTR_MARKER
,
98 &buf
, sizeof(buf
), 0);
101 DEBUG(10, ("SETXATTR failed: %s\n", strerror(errno
)));
109 * Given an smb_filename, determine the stream directory using the file's
112 static char *stream_dir(vfs_handle_struct
*handle
,
113 const struct smb_filename
*smb_fname
,
114 const SMB_STRUCT_STAT
*base_sbuf
, bool create_it
)
117 struct smb_filename
*smb_fname_hash
= NULL
;
119 SMB_STRUCT_STAT base_sbuf_tmp
;
120 uint8_t first
, second
;
129 check_valid
= lp_parm_bool(SNUM(handle
->conn
),
130 "streams_depot", "check_valid", true);
132 tmp
= talloc_asprintf(talloc_tos(), "%s/.streams", handle
->conn
->cwd
);
139 rootdir
= lp_parm_const_string(
140 SNUM(handle
->conn
), "streams_depot", "directory",
143 /* Stat the base file if it hasn't already been done. */
144 if (base_sbuf
== NULL
) {
145 struct smb_filename
*smb_fname_base
= NULL
;
147 status
= create_synthetic_smb_fname(talloc_tos(),
148 smb_fname
->base_name
,
151 if (!NT_STATUS_IS_OK(status
)) {
152 errno
= map_errno_from_nt_status(status
);
155 if (SMB_VFS_NEXT_STAT(handle
, smb_fname_base
) == -1) {
156 TALLOC_FREE(smb_fname_base
);
159 base_sbuf_tmp
= smb_fname_base
->st
;
160 TALLOC_FREE(smb_fname_base
);
162 base_sbuf_tmp
= *base_sbuf
;
165 id
= SMB_VFS_FILE_ID_CREATE(handle
->conn
, &base_sbuf_tmp
);
167 push_file_id_16((char *)id_buf
, &id
);
169 hash
= hash_fn(data_blob_const(id_buf
, sizeof(id_buf
)));
172 second
= (hash
>> 8) & 0xff;
174 id_hex
= hex_encode_talloc(talloc_tos(), id_buf
, sizeof(id_buf
));
176 if (id_hex
== NULL
) {
181 result
= talloc_asprintf(talloc_tos(), "%s/%2.2X/%2.2X/%s", rootdir
,
182 first
, second
, id_hex
);
186 if (result
== NULL
) {
191 status
= create_synthetic_smb_fname(talloc_tos(), result
, NULL
, NULL
,
193 if (!NT_STATUS_IS_OK(status
)) {
194 errno
= map_errno_from_nt_status(status
);
198 if (SMB_VFS_NEXT_STAT(handle
, smb_fname_hash
) == 0) {
199 struct smb_filename
*smb_fname_new
= NULL
;
203 if (!S_ISDIR(smb_fname_hash
->st
.st_ex_mode
)) {
209 file_is_valid(handle
, smb_fname
->base_name
)) {
214 * Someone has recreated a file under an existing inode
215 * without deleting the streams directory.
216 * Move it away or remove if streams_depot:delete_lost is set.
220 delete_lost
= lp_parm_bool(SNUM(handle
->conn
), "streams_depot",
221 "delete_lost", false);
224 DEBUG(3, ("Someone has recreated a file under an "
225 "existing inode. Removing: %s\n",
226 smb_fname_hash
->base_name
));
227 recursive_rmdir(talloc_tos(), handle
->conn
,
229 SMB_VFS_NEXT_RMDIR(handle
, smb_fname_hash
->base_name
);
231 newname
= talloc_asprintf(talloc_tos(), "lost-%lu",
233 DEBUG(3, ("Someone has recreated a file under an "
234 "existing inode. Renaming: %s to: %s\n",
235 smb_fname_hash
->base_name
,
237 if (newname
== NULL
) {
242 status
= create_synthetic_smb_fname(talloc_tos(),
246 TALLOC_FREE(newname
);
247 if (!NT_STATUS_IS_OK(status
)) {
248 errno
= map_errno_from_nt_status(status
);
252 if (SMB_VFS_NEXT_RENAME(handle
, smb_fname_hash
,
253 smb_fname_new
) == -1) {
254 TALLOC_FREE(smb_fname_new
);
255 if ((errno
== EEXIST
) || (errno
== ENOTEMPTY
)) {
261 TALLOC_FREE(smb_fname_new
);
270 if ((SMB_VFS_NEXT_MKDIR(handle
, rootdir
, 0755) != 0)
271 && (errno
!= EEXIST
)) {
275 tmp
= talloc_asprintf(result
, "%s/%2.2X", rootdir
, first
);
281 if ((SMB_VFS_NEXT_MKDIR(handle
, tmp
, 0755) != 0)
282 && (errno
!= EEXIST
)) {
288 tmp
= talloc_asprintf(result
, "%s/%2.2X/%2.2X", rootdir
, first
,
295 if ((SMB_VFS_NEXT_MKDIR(handle
, tmp
, 0755) != 0)
296 && (errno
!= EEXIST
)) {
302 if ((SMB_VFS_NEXT_MKDIR(handle
, result
, 0755) != 0)
303 && (errno
!= EEXIST
)) {
307 if (check_valid
&& !mark_file_valid(handle
, smb_fname
->base_name
)) {
311 TALLOC_FREE(smb_fname_hash
);
315 TALLOC_FREE(smb_fname_hash
);
320 * Given a stream name, populate smb_fname_out with the actual location of the
323 static NTSTATUS
stream_smb_fname(vfs_handle_struct
*handle
,
324 const struct smb_filename
*smb_fname
,
325 struct smb_filename
**smb_fname_out
,
328 char *dirname
, *stream_fname
;
332 *smb_fname_out
= NULL
;
334 stype
= strchr_m(smb_fname
->stream_name
+ 1, ':');
337 if (strcasecmp_m(stype
, ":$DATA") != 0) {
338 return NT_STATUS_INVALID_PARAMETER
;
342 dirname
= stream_dir(handle
, smb_fname
, NULL
, create_dir
);
344 if (dirname
== NULL
) {
345 status
= map_nt_error_from_unix(errno
);
349 stream_fname
= talloc_asprintf(talloc_tos(), "%s/%s", dirname
,
350 smb_fname
->stream_name
);
352 if (stream_fname
== NULL
) {
353 status
= NT_STATUS_NO_MEMORY
;
358 /* Append an explicit stream type if one wasn't specified. */
359 stream_fname
= talloc_asprintf(talloc_tos(), "%s:$DATA",
361 if (stream_fname
== NULL
) {
362 status
= NT_STATUS_NO_MEMORY
;
366 /* Normalize the stream type to upercase. */
367 if (!strupper_m(strrchr_m(stream_fname
, ':') + 1)) {
368 status
= NT_STATUS_INVALID_PARAMETER
;
373 DEBUG(10, ("stream filename = %s\n", stream_fname
));
375 /* Create an smb_filename with stream_name == NULL. */
376 status
= create_synthetic_smb_fname(talloc_tos(), stream_fname
, NULL
,
377 NULL
, smb_fname_out
);
378 if (!NT_STATUS_IS_OK(status
)) {
385 DEBUG(5, ("stream_name failed: %s\n", strerror(errno
)));
386 TALLOC_FREE(*smb_fname_out
);
390 static NTSTATUS
walk_streams(vfs_handle_struct
*handle
,
391 struct smb_filename
*smb_fname_base
,
393 bool (*fn
)(const char *dirname
,
399 DIR *dirhandle
= NULL
;
400 const char *dirent
= NULL
;
401 char *talloced
= NULL
;
403 dirname
= stream_dir(handle
, smb_fname_base
, &smb_fname_base
->st
,
406 if (dirname
== NULL
) {
407 if (errno
== ENOENT
) {
413 return map_nt_error_from_unix(errno
);
416 DEBUG(10, ("walk_streams: dirname=%s\n", dirname
));
418 dirhandle
= SMB_VFS_NEXT_OPENDIR(handle
, dirname
, NULL
, 0);
420 if (dirhandle
== NULL
) {
421 TALLOC_FREE(dirname
);
422 return map_nt_error_from_unix(errno
);
425 while ((dirent
= vfs_readdirname(handle
->conn
, dirhandle
, NULL
,
426 &talloced
)) != NULL
) {
428 if (ISDOT(dirent
) || ISDOTDOT(dirent
)) {
429 TALLOC_FREE(talloced
);
433 DEBUG(10, ("walk_streams: dirent=%s\n", dirent
));
435 if (!fn(dirname
, dirent
, private_data
)) {
436 TALLOC_FREE(talloced
);
439 TALLOC_FREE(talloced
);
442 SMB_VFS_NEXT_CLOSEDIR(handle
, dirhandle
);
444 if (pdirname
!= NULL
) {
448 TALLOC_FREE(dirname
);
455 * Helper to stat/lstat the base file of an smb_fname. This will actually
456 * fills in the stat struct in smb_filename.
458 static int streams_depot_stat_base(vfs_handle_struct
*handle
,
459 struct smb_filename
*smb_fname
,
462 char *tmp_stream_name
;
465 tmp_stream_name
= smb_fname
->stream_name
;
466 smb_fname
->stream_name
= NULL
;
468 result
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
470 result
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
472 smb_fname
->stream_name
= tmp_stream_name
;
476 static int streams_depot_stat(vfs_handle_struct
*handle
,
477 struct smb_filename
*smb_fname
)
479 struct smb_filename
*smb_fname_stream
= NULL
;
483 DEBUG(10, ("streams_depot_stat called for [%s]\n",
484 smb_fname_str_dbg(smb_fname
)));
486 if (!is_ntfs_stream_smb_fname(smb_fname
)) {
487 return SMB_VFS_NEXT_STAT(handle
, smb_fname
);
490 /* If the default stream is requested, just stat the base file. */
491 if (is_ntfs_default_stream_smb_fname(smb_fname
)) {
492 return streams_depot_stat_base(handle
, smb_fname
, true);
495 /* Stat the actual stream now. */
496 status
= stream_smb_fname(handle
, smb_fname
, &smb_fname_stream
,
498 if (!NT_STATUS_IS_OK(status
)) {
500 errno
= map_errno_from_nt_status(status
);
504 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname_stream
);
506 /* Update the original smb_fname with the stat info. */
507 smb_fname
->st
= smb_fname_stream
->st
;
509 TALLOC_FREE(smb_fname_stream
);
515 static int streams_depot_lstat(vfs_handle_struct
*handle
,
516 struct smb_filename
*smb_fname
)
518 struct smb_filename
*smb_fname_stream
= NULL
;
522 DEBUG(10, ("streams_depot_lstat called for [%s]\n",
523 smb_fname_str_dbg(smb_fname
)));
525 if (!is_ntfs_stream_smb_fname(smb_fname
)) {
526 return SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
529 /* If the default stream is requested, just stat the base file. */
530 if (is_ntfs_default_stream_smb_fname(smb_fname
)) {
531 return streams_depot_stat_base(handle
, smb_fname
, false);
534 /* Stat the actual stream now. */
535 status
= stream_smb_fname(handle
, smb_fname
, &smb_fname_stream
,
537 if (!NT_STATUS_IS_OK(status
)) {
539 errno
= map_errno_from_nt_status(status
);
543 ret
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname_stream
);
546 TALLOC_FREE(smb_fname_stream
);
550 static int streams_depot_open(vfs_handle_struct
*handle
,
551 struct smb_filename
*smb_fname
,
552 files_struct
*fsp
, int flags
, mode_t mode
)
554 struct smb_filename
*smb_fname_stream
= NULL
;
555 struct smb_filename
*smb_fname_base
= NULL
;
559 if (!is_ntfs_stream_smb_fname(smb_fname
)) {
560 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
563 /* If the default stream is requested, just open the base file. */
564 if (is_ntfs_default_stream_smb_fname(smb_fname
)) {
565 char *tmp_stream_name
;
567 tmp_stream_name
= smb_fname
->stream_name
;
568 smb_fname
->stream_name
= NULL
;
569 ret
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
570 smb_fname
->stream_name
= tmp_stream_name
;
575 /* Ensure the base file still exists. */
576 status
= create_synthetic_smb_fname(talloc_tos(),
577 smb_fname
->base_name
,
580 if (!NT_STATUS_IS_OK(status
)) {
582 errno
= map_errno_from_nt_status(status
);
586 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname_base
);
591 /* Determine the stream name, and then open it. */
592 status
= stream_smb_fname(handle
, smb_fname
, &smb_fname_stream
, true);
593 if (!NT_STATUS_IS_OK(status
)) {
595 errno
= map_errno_from_nt_status(status
);
599 ret
= SMB_VFS_NEXT_OPEN(handle
, smb_fname_stream
, fsp
, flags
, mode
);
602 TALLOC_FREE(smb_fname_stream
);
603 TALLOC_FREE(smb_fname_base
);
607 static int streams_depot_unlink(vfs_handle_struct
*handle
,
608 const struct smb_filename
*smb_fname
)
610 struct smb_filename
*smb_fname_base
= NULL
;
614 DEBUG(10, ("streams_depot_unlink called for %s\n",
615 smb_fname_str_dbg(smb_fname
)));
617 /* If there is a valid stream, just unlink the stream and return. */
618 if (is_ntfs_stream_smb_fname(smb_fname
) &&
619 !is_ntfs_default_stream_smb_fname(smb_fname
)) {
620 struct smb_filename
*smb_fname_stream
= NULL
;
622 status
= stream_smb_fname(handle
, smb_fname
, &smb_fname_stream
,
624 if (!NT_STATUS_IS_OK(status
)) {
625 errno
= map_errno_from_nt_status(status
);
629 ret
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname_stream
);
631 TALLOC_FREE(smb_fname_stream
);
636 * We potentially need to delete the per-inode streams directory
639 status
= create_synthetic_smb_fname(talloc_tos(), smb_fname
->base_name
,
640 NULL
, NULL
, &smb_fname_base
);
641 if (!NT_STATUS_IS_OK(status
)) {
642 errno
= map_errno_from_nt_status(status
);
646 if (lp_posix_pathnames()) {
647 ret
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname_base
);
649 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname_base
);
653 TALLOC_FREE(smb_fname_base
);
657 if (smb_fname_base
->st
.st_ex_nlink
== 1) {
658 char *dirname
= stream_dir(handle
, smb_fname_base
,
659 &smb_fname_base
->st
, false);
661 if (dirname
!= NULL
) {
662 SMB_VFS_NEXT_RMDIR(handle
, dirname
);
664 TALLOC_FREE(dirname
);
667 ret
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
669 TALLOC_FREE(smb_fname_base
);
673 static int streams_depot_rmdir(vfs_handle_struct
*handle
, const char *path
)
675 struct smb_filename
*smb_fname_base
= NULL
;
679 DEBUG(10, ("streams_depot_rmdir called for %s\n", path
));
682 * We potentially need to delete the per-inode streams directory
685 status
= create_synthetic_smb_fname(talloc_tos(), path
,
686 NULL
, NULL
, &smb_fname_base
);
687 if (!NT_STATUS_IS_OK(status
)) {
688 errno
= map_errno_from_nt_status(status
);
692 if (lp_posix_pathnames()) {
693 ret
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname_base
);
695 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname_base
);
699 TALLOC_FREE(smb_fname_base
);
703 if (smb_fname_base
->st
.st_ex_nlink
== 2) {
704 char *dirname
= stream_dir(handle
, smb_fname_base
,
705 &smb_fname_base
->st
, false);
707 if (dirname
!= NULL
) {
708 SMB_VFS_NEXT_RMDIR(handle
, dirname
);
710 TALLOC_FREE(dirname
);
713 ret
= SMB_VFS_NEXT_RMDIR(handle
, path
);
715 TALLOC_FREE(smb_fname_base
);
719 static int streams_depot_rename(vfs_handle_struct
*handle
,
720 const struct smb_filename
*smb_fname_src
,
721 const struct smb_filename
*smb_fname_dst
)
723 struct smb_filename
*smb_fname_src_stream
= NULL
;
724 struct smb_filename
*smb_fname_dst_stream
= NULL
;
725 bool src_is_stream
, dst_is_stream
;
729 DEBUG(10, ("streams_depot_rename called for %s => %s\n",
730 smb_fname_str_dbg(smb_fname_src
),
731 smb_fname_str_dbg(smb_fname_dst
)));
733 src_is_stream
= is_ntfs_stream_smb_fname(smb_fname_src
);
734 dst_is_stream
= is_ntfs_stream_smb_fname(smb_fname_dst
);
736 if (!src_is_stream
&& !dst_is_stream
) {
737 return SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
,
741 /* for now don't allow renames from or to the default stream */
742 if (is_ntfs_default_stream_smb_fname(smb_fname_src
) ||
743 is_ntfs_default_stream_smb_fname(smb_fname_dst
)) {
748 status
= stream_smb_fname(handle
, smb_fname_src
, &smb_fname_src_stream
,
750 if (!NT_STATUS_IS_OK(status
)) {
751 errno
= map_errno_from_nt_status(status
);
755 status
= stream_smb_fname(handle
, smb_fname_dst
,
756 &smb_fname_dst_stream
, false);
757 if (!NT_STATUS_IS_OK(status
)) {
758 errno
= map_errno_from_nt_status(status
);
762 ret
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src_stream
,
763 smb_fname_dst_stream
);
766 TALLOC_FREE(smb_fname_src_stream
);
767 TALLOC_FREE(smb_fname_dst_stream
);
771 static bool add_one_stream(TALLOC_CTX
*mem_ctx
, unsigned int *num_streams
,
772 struct stream_struct
**streams
,
773 const char *name
, off_t size
,
776 struct stream_struct
*tmp
;
778 tmp
= talloc_realloc(mem_ctx
, *streams
, struct stream_struct
,
784 tmp
[*num_streams
].name
= talloc_strdup(tmp
, name
);
785 if (tmp
[*num_streams
].name
== NULL
) {
789 tmp
[*num_streams
].size
= size
;
790 tmp
[*num_streams
].alloc_size
= alloc_size
;
797 struct streaminfo_state
{
799 vfs_handle_struct
*handle
;
800 unsigned int num_streams
;
801 struct stream_struct
*streams
;
805 static bool collect_one_stream(const char *dirname
,
809 struct streaminfo_state
*state
=
810 (struct streaminfo_state
*)private_data
;
811 struct smb_filename
*smb_fname
= NULL
;
816 sname
= talloc_asprintf(talloc_tos(), "%s/%s", dirname
, dirent
);
818 state
->status
= NT_STATUS_NO_MEMORY
;
823 status
= create_synthetic_smb_fname(talloc_tos(), sname
, NULL
,
825 if (!NT_STATUS_IS_OK(status
)) {
826 state
->status
= status
;
831 if (SMB_VFS_NEXT_STAT(state
->handle
, smb_fname
) == -1) {
832 DEBUG(10, ("Could not stat %s: %s\n", sname
,
838 if (!add_one_stream(state
->mem_ctx
,
839 &state
->num_streams
, &state
->streams
,
840 dirent
, smb_fname
->st
.st_ex_size
,
841 SMB_VFS_GET_ALLOC_SIZE(state
->handle
->conn
, NULL
,
843 state
->status
= NT_STATUS_NO_MEMORY
;
851 TALLOC_FREE(smb_fname
);
855 static NTSTATUS
streams_depot_streaminfo(vfs_handle_struct
*handle
,
856 struct files_struct
*fsp
,
859 unsigned int *pnum_streams
,
860 struct stream_struct
**pstreams
)
862 struct smb_filename
*smb_fname_base
= NULL
;
865 struct streaminfo_state state
;
867 status
= create_synthetic_smb_fname(talloc_tos(), fname
, NULL
, NULL
,
869 if (!NT_STATUS_IS_OK(status
)) {
873 if ((fsp
!= NULL
) && (fsp
->fh
->fd
!= -1)) {
874 ret
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, &smb_fname_base
->st
);
877 if (lp_posix_pathnames()) {
878 ret
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname_base
);
880 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname_base
);
885 status
= map_nt_error_from_unix(errno
);
889 state
.streams
= *pstreams
;
890 state
.num_streams
= *pnum_streams
;
891 state
.mem_ctx
= mem_ctx
;
892 state
.handle
= handle
;
893 state
.status
= NT_STATUS_OK
;
895 status
= walk_streams(handle
, smb_fname_base
, NULL
, collect_one_stream
,
898 if (!NT_STATUS_IS_OK(status
)) {
899 TALLOC_FREE(state
.streams
);
903 if (!NT_STATUS_IS_OK(state
.status
)) {
904 TALLOC_FREE(state
.streams
);
905 status
= state
.status
;
909 *pnum_streams
= state
.num_streams
;
910 *pstreams
= state
.streams
;
911 status
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, fname
, mem_ctx
, pnum_streams
, pstreams
);
914 TALLOC_FREE(smb_fname_base
);
918 static uint32_t streams_depot_fs_capabilities(struct vfs_handle_struct
*handle
,
919 enum timestamp_set_resolution
*p_ts_res
)
921 return SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
) | FILE_NAMED_STREAMS
;
924 static struct vfs_fn_pointers vfs_streams_depot_fns
= {
925 .fs_capabilities_fn
= streams_depot_fs_capabilities
,
926 .open_fn
= streams_depot_open
,
927 .stat_fn
= streams_depot_stat
,
928 .lstat_fn
= streams_depot_lstat
,
929 .unlink_fn
= streams_depot_unlink
,
930 .rmdir_fn
= streams_depot_rmdir
,
931 .rename_fn
= streams_depot_rename
,
932 .streaminfo_fn
= streams_depot_streaminfo
,
935 NTSTATUS
vfs_streams_depot_init(void);
936 NTSTATUS
vfs_streams_depot_init(void)
938 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "streams_depot",
939 &vfs_streams_depot_fns
);