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/>.
23 #define DBGC_CLASS DBGC_VFS
26 * Excerpt from a mail from tridge:
28 * Volker, what I'm thinking of is this:
29 * /mount-point/.streams/XX/YY/aaaa.bbbb/namedstream1
30 * /mount-point/.streams/XX/YY/aaaa.bbbb/namedstream2
32 * where XX/YY is a 2 level hash based on the fsid/inode. "aaaa.bbbb"
33 * is the fsid/inode. "namedstreamX" is a file named after the stream
37 static uint32_t hash_fn(DATA_BLOB key
)
39 uint32_t value
; /* Used to compute the hash value. */
40 uint32_t i
; /* Used to cycle through random values. */
42 /* Set the initial value from the key size. */
43 for (value
= 0x238F13AF * key
.length
, i
=0; i
< key
.length
; i
++)
44 value
= (value
+ (key
.data
[i
] << (i
*5 % 24)));
46 return (1103515243 * value
+ 12345);
50 * With the hashing scheme based on the inode we need to protect against
51 * streams showing up on files with re-used inodes. This can happen if we
52 * create a stream directory from within Samba, and a local process or NFS
53 * client deletes the file without deleting the streams directory. When the
54 * inode is re-used and the stream directory is still around, the streams in
55 * there would be show up as belonging to the new file.
57 * There are several workarounds for this, probably the easiest one is on
58 * systems which have a true birthtime stat element: When the file has a later
59 * birthtime than the streams directory, then we have to recreate the
62 * The other workaround is to somehow mark the file as generated by Samba with
63 * something that a NFS client would not do. The closest one is a special
64 * xattr value being set. On systems which do not support xattrs, it might be
65 * an option to put in a special ACL entry for a non-existing group.
68 #define SAMBA_XATTR_MARKER "user.SAMBA_STREAMS"
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_NEXT_GETXATTR(handle
, 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_NEXT_SETXATTR(handle
, path
, SAMBA_XATTR_MARKER
,
98 &buf
, sizeof(buf
), 0);
101 DEBUG(10, ("SETXATTR failed: %s\n", strerror(errno
)));
108 static char *stream_dir(vfs_handle_struct
*handle
, const char *base_path
,
109 const SMB_STRUCT_STAT
*base_sbuf
, bool create_it
)
113 SMB_STRUCT_STAT sbuf
;
114 uint8_t first
, second
;
120 const char *rootdir
= lp_parm_const_string(
121 SNUM(handle
->conn
), "streams", "directory",
122 handle
->conn
->connectpath
);
124 if (base_sbuf
== NULL
) {
125 if (SMB_VFS_NEXT_STAT(handle
, base_path
, &sbuf
) == -1) {
127 * base file is not there
134 id
= SMB_VFS_FILE_ID_CREATE(handle
->conn
, base_sbuf
->st_dev
,
137 push_file_id_16((char *)id_buf
, &id
);
139 hash
= hash_fn(data_blob_const(id_buf
, sizeof(id_buf
)));
142 second
= (hash
>> 8) & 0xff;
144 id_hex
= hex_encode(talloc_tos(), id_buf
, sizeof(id_buf
));
146 if (id_hex
== NULL
) {
151 result
= talloc_asprintf(talloc_tos(), "%s/%2.2X/%2.2X/%s", rootdir
,
152 first
, second
, id_hex
);
156 if (result
== NULL
) {
161 if (SMB_VFS_NEXT_STAT(handle
, result
, &sbuf
) == 0) {
164 if (!S_ISDIR(sbuf
.st_mode
)) {
169 if (file_is_valid(handle
, base_path
)) {
174 * Someone has recreated a file under an existing inode
175 * without deleting the streams directory. For now, just move
180 newname
= talloc_asprintf(talloc_tos(), "lost-%lu", random());
181 if (newname
== NULL
) {
186 if (SMB_VFS_NEXT_RENAME(handle
, result
, newname
) == -1) {
187 if ((errno
== EEXIST
) || (errno
== ENOTEMPTY
)) {
188 TALLOC_FREE(newname
);
194 TALLOC_FREE(newname
);
202 if ((SMB_VFS_NEXT_MKDIR(handle
, rootdir
, 0755) != 0)
203 && (errno
!= EEXIST
)) {
207 tmp
= talloc_asprintf(result
, "%s/%2.2X", rootdir
, first
);
213 if ((SMB_VFS_NEXT_MKDIR(handle
, tmp
, 0755) != 0)
214 && (errno
!= EEXIST
)) {
220 tmp
= talloc_asprintf(result
, "%s/%2.2X/%2.2X", rootdir
, first
,
227 if ((SMB_VFS_NEXT_MKDIR(handle
, tmp
, 0755) != 0)
228 && (errno
!= EEXIST
)) {
234 if ((SMB_VFS_NEXT_MKDIR(handle
, result
, 0755) != 0)
235 && (errno
!= EEXIST
)) {
239 if (!mark_file_valid(handle
, base_path
)) {
250 static char *stream_name(vfs_handle_struct
*handle
, const char *fname
,
256 char *dirname
, *stream_fname
;
258 if (!NT_STATUS_IS_OK(split_ntfs_stream_name(talloc_tos(), fname
,
260 DEBUG(10, ("split_ntfs_stream_name failed\n"));
265 dirname
= stream_dir(handle
, base
, NULL
, create_dir
);
267 if (dirname
== NULL
) {
271 stream_fname
= talloc_asprintf(talloc_tos(), "%s/:%s", dirname
, sname
);
273 if (stream_fname
== NULL
) {
278 DEBUG(10, ("stream filename = %s\n", stream_fname
));
287 DEBUG(5, ("stream_name failed: %s\n", strerror(errno
)));
294 static NTSTATUS
walk_streams(vfs_handle_struct
*handle
,
296 const SMB_STRUCT_STAT
*sbuf
,
298 bool (*fn
)(const char *dirname
,
304 SMB_STRUCT_DIR
*dirhandle
= NULL
;
307 dirname
= stream_dir(handle
, fname
, sbuf
, false);
309 if (dirname
== NULL
) {
310 if (errno
== ENOENT
) {
316 return map_nt_error_from_unix(errno
);
319 DEBUG(10, ("walk_streams: dirname=%s\n", dirname
));
321 dirhandle
= SMB_VFS_NEXT_OPENDIR(handle
, dirname
, NULL
, 0);
323 if (dirhandle
== NULL
) {
324 TALLOC_FREE(dirname
);
325 return map_nt_error_from_unix(errno
);
328 while ((dirent
= vfs_readdirname(handle
->conn
, dirhandle
)) != NULL
) {
330 if (ISDOT(dirent
) || ISDOTDOT(dirent
)) {
334 DEBUG(10, ("walk_streams: dirent=%s\n", dirent
));
336 if (!fn(dirname
, dirent
, private_data
)) {
341 SMB_VFS_NEXT_CLOSEDIR(handle
, dirhandle
);
343 if (pdirname
!= NULL
) {
347 TALLOC_FREE(dirname
);
353 static int streams_depot_stat(vfs_handle_struct
*handle
, const char *fname
,
354 SMB_STRUCT_STAT
*sbuf
)
359 DEBUG(10, ("streams_depot_stat called for [%s]\n", fname
));
361 if (!is_ntfs_stream_name(fname
)) {
362 return SMB_VFS_NEXT_STAT(handle
, fname
, sbuf
);
365 stream_fname
= stream_name(handle
, fname
, false);
366 if (stream_fname
== NULL
) {
370 ret
= SMB_VFS_NEXT_STAT(handle
, stream_fname
, sbuf
);
373 TALLOC_FREE(stream_fname
);
377 static int streams_depot_lstat(vfs_handle_struct
*handle
, const char *fname
,
378 SMB_STRUCT_STAT
*sbuf
)
383 if (!is_ntfs_stream_name(fname
)) {
384 return SMB_VFS_NEXT_LSTAT(handle
, fname
, sbuf
);
387 stream_fname
= stream_name(handle
, fname
, false);
388 if (stream_fname
== NULL
) {
392 ret
= SMB_VFS_NEXT_LSTAT(handle
, stream_fname
, sbuf
);
395 TALLOC_FREE(stream_fname
);
399 static int streams_depot_open(vfs_handle_struct
*handle
, const char *fname
,
400 files_struct
*fsp
, int flags
, mode_t mode
)
404 SMB_STRUCT_STAT base_sbuf
;
408 if (!is_ntfs_stream_name(fname
)) {
409 return SMB_VFS_NEXT_OPEN(handle
, fname
, fsp
, flags
, mode
);
412 frame
= talloc_stackframe();
414 if (!NT_STATUS_IS_OK(split_ntfs_stream_name(talloc_tos(), fname
,
420 ret
= SMB_VFS_NEXT_STAT(handle
, base
, &base_sbuf
);
428 stream_fname
= stream_name(handle
, fname
, true);
429 if (stream_fname
== NULL
) {
433 ret
= SMB_VFS_NEXT_OPEN(handle
, stream_fname
, fsp
, flags
, mode
);
440 static int streams_depot_unlink(vfs_handle_struct
*handle
, const char *fname
)
443 SMB_STRUCT_STAT sbuf
;
445 DEBUG(10, ("streams_depot_unlink called for %s\n", fname
));
447 if (is_ntfs_stream_name(fname
)) {
450 stream_fname
= stream_name(handle
, fname
, false);
451 if (stream_fname
== NULL
) {
455 ret
= SMB_VFS_NEXT_UNLINK(handle
, stream_fname
);
457 TALLOC_FREE(stream_fname
);
462 * We potentially need to delete the per-inode streams directory
465 if (SMB_VFS_NEXT_STAT(handle
, fname
, &sbuf
) == -1) {
469 if (sbuf
.st_nlink
== 1) {
470 char *dirname
= stream_dir(handle
, fname
, &sbuf
, false);
472 if (dirname
!= NULL
) {
473 SMB_VFS_NEXT_RMDIR(handle
, dirname
);
475 TALLOC_FREE(dirname
);
478 return SMB_VFS_NEXT_UNLINK(handle
, fname
);
481 static bool add_one_stream(TALLOC_CTX
*mem_ctx
, unsigned int *num_streams
,
482 struct stream_struct
**streams
,
483 const char *name
, SMB_OFF_T size
,
484 SMB_OFF_T alloc_size
)
486 struct stream_struct
*tmp
;
488 tmp
= TALLOC_REALLOC_ARRAY(mem_ctx
, *streams
, struct stream_struct
,
494 tmp
[*num_streams
].name
= talloc_strdup(tmp
, name
);
495 if (tmp
[*num_streams
].name
== NULL
) {
499 tmp
[*num_streams
].size
= size
;
500 tmp
[*num_streams
].alloc_size
= alloc_size
;
507 struct streaminfo_state
{
509 vfs_handle_struct
*handle
;
510 unsigned int num_streams
;
511 struct stream_struct
*streams
;
515 static bool collect_one_stream(const char *dirname
,
519 struct streaminfo_state
*state
=
520 (struct streaminfo_state
*)private_data
;
522 SMB_STRUCT_STAT sbuf
;
524 if (asprintf(&full_sname
, "%s/%s", dirname
, dirent
) == -1) {
525 state
->status
= NT_STATUS_NO_MEMORY
;
528 if (SMB_VFS_NEXT_STAT(state
->handle
, full_sname
, &sbuf
) == -1) {
529 DEBUG(10, ("Could not stat %s: %s\n", full_sname
,
531 SAFE_FREE(full_sname
);
535 SAFE_FREE(full_sname
);
537 if (!add_one_stream(state
->mem_ctx
,
538 &state
->num_streams
, &state
->streams
,
539 dirent
, sbuf
.st_size
,
541 state
->handle
->conn
, NULL
, &sbuf
))) {
542 state
->status
= NT_STATUS_NO_MEMORY
;
549 static NTSTATUS
streams_depot_streaminfo(vfs_handle_struct
*handle
,
550 struct files_struct
*fsp
,
553 unsigned int *pnum_streams
,
554 struct stream_struct
**pstreams
)
556 SMB_STRUCT_STAT sbuf
;
559 struct streaminfo_state state
;
561 if ((fsp
!= NULL
) && (fsp
->fh
->fd
!= -1)) {
562 if (is_ntfs_stream_name(fsp
->fsp_name
)) {
563 return NT_STATUS_INVALID_PARAMETER
;
565 ret
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, &sbuf
);
568 if (is_ntfs_stream_name(fname
)) {
569 return NT_STATUS_INVALID_PARAMETER
;
571 ret
= SMB_VFS_NEXT_STAT(handle
, fname
, &sbuf
);
575 return map_nt_error_from_unix(errno
);
578 state
.streams
= NULL
;
579 state
.num_streams
= 0;
581 if (!S_ISDIR(sbuf
.st_mode
)) {
582 if (!add_one_stream(mem_ctx
,
583 &state
.num_streams
, &state
.streams
,
584 "::$DATA", sbuf
.st_size
,
585 get_allocation_size(handle
->conn
, fsp
,
587 return NT_STATUS_NO_MEMORY
;
591 state
.mem_ctx
= mem_ctx
;
592 state
.handle
= handle
;
593 state
.status
= NT_STATUS_OK
;
595 status
= walk_streams(handle
, fname
, &sbuf
, NULL
, collect_one_stream
,
598 if (!NT_STATUS_IS_OK(status
)) {
599 TALLOC_FREE(state
.streams
);
603 if (!NT_STATUS_IS_OK(state
.status
)) {
604 TALLOC_FREE(state
.streams
);
608 *pnum_streams
= state
.num_streams
;
609 *pstreams
= state
.streams
;
613 static uint32_t streams_depot_fs_capabilities(struct vfs_handle_struct
*handle
)
615 return SMB_VFS_NEXT_FS_CAPABILITIES(handle
) | FILE_NAMED_STREAMS
;
618 /* VFS operations structure */
620 static vfs_op_tuple streams_depot_ops
[] = {
621 {SMB_VFS_OP(streams_depot_fs_capabilities
), SMB_VFS_OP_FS_CAPABILITIES
,
622 SMB_VFS_LAYER_TRANSPARENT
},
623 {SMB_VFS_OP(streams_depot_open
), SMB_VFS_OP_OPEN
,
624 SMB_VFS_LAYER_TRANSPARENT
},
625 {SMB_VFS_OP(streams_depot_stat
), SMB_VFS_OP_STAT
,
626 SMB_VFS_LAYER_TRANSPARENT
},
627 {SMB_VFS_OP(streams_depot_lstat
), SMB_VFS_OP_LSTAT
,
628 SMB_VFS_LAYER_TRANSPARENT
},
629 {SMB_VFS_OP(streams_depot_unlink
), SMB_VFS_OP_UNLINK
,
630 SMB_VFS_LAYER_TRANSPARENT
},
631 {SMB_VFS_OP(streams_depot_streaminfo
), SMB_VFS_OP_STREAMINFO
,
632 SMB_VFS_LAYER_OPAQUE
},
633 {SMB_VFS_OP(NULL
), SMB_VFS_OP_NOOP
, SMB_VFS_LAYER_NOOP
}
636 NTSTATUS
vfs_streams_depot_init(void);
637 NTSTATUS
vfs_streams_depot_init(void)
639 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "streams_depot",