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/>.
27 #define DBGC_CLASS DBGC_VFS
34 vfs_handle_struct *handle;
37 static SMB_INO_T stream_inode(const SMB_STRUCT_STAT *sbuf, const char *sname)
39 struct MD5Context ctx;
40 unsigned char hash[16];
44 DEBUG(10, ("stream_inode called for %lu/%lu [%s]\n",
45 (unsigned long)sbuf->st_ex_dev,
46 (unsigned long)sbuf->st_ex_ino, sname));
48 upper_sname = talloc_strdup_upper(talloc_tos(), sname);
49 SMB_ASSERT(upper_sname != NULL);
52 MD5Update(&ctx, (unsigned char *)&(sbuf->st_ex_dev),
53 sizeof(sbuf->st_ex_dev));
54 MD5Update(&ctx, (unsigned char *)&(sbuf->st_ex_ino),
55 sizeof(sbuf->st_ex_ino));
56 MD5Update(&ctx, (unsigned char *)upper_sname,
57 talloc_get_size(upper_sname)-1);
60 TALLOC_FREE(upper_sname);
62 /* Hopefully all the variation is in the lower 4 (or 8) bytes! */
63 memcpy(&result, hash, sizeof(result));
65 DEBUG(10, ("stream_inode returns %lu\n", (unsigned long)result));
70 static ssize_t get_xattr_size(connection_struct *conn,
73 const char *xattr_name)
79 status = get_ea_value(talloc_tos(), conn, fsp, fname,
82 if (!NT_STATUS_IS_OK(status)) {
86 result = ea.value.length-1;
87 TALLOC_FREE(ea.value.data);
92 * Given a stream name, populate xattr_name with the xattr name to use for
93 * accessing the stream.
95 static NTSTATUS streams_xattr_get_name(TALLOC_CTX *ctx,
96 const char *stream_name,
101 stype = strchr_m(stream_name + 1, ':');
103 *xattr_name = talloc_asprintf(ctx, "%s%s",
104 SAMBA_XATTR_DOSSTREAM_PREFIX,
106 if (*xattr_name == NULL) {
107 return NT_STATUS_NO_MEMORY;
111 /* Append an explicit stream type if one wasn't specified. */
112 *xattr_name = talloc_asprintf(ctx, "%s:$DATA",
114 if (*xattr_name == NULL) {
115 return NT_STATUS_NO_MEMORY;
118 /* Normalize the stream type to upercase. */
119 strupper_m(strrchr_m(*xattr_name, ':') + 1);
122 DEBUG(10, ("xattr_name: %s, stream_name: %s\n", *xattr_name,
128 static bool streams_xattr_recheck(struct stream_io *sio)
131 char *xattr_name = NULL;
133 if (sio->fsp->fsp_name == sio->fsp_name_ptr) {
137 if (sio->fsp->fsp_name->stream_name == NULL) {
138 /* how can this happen */
143 status = streams_xattr_get_name(talloc_tos(),
144 sio->fsp->fsp_name->stream_name,
146 if (!NT_STATUS_IS_OK(status)) {
150 TALLOC_FREE(sio->xattr_name);
151 TALLOC_FREE(sio->base);
152 sio->xattr_name = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(sio->handle, sio->fsp),
154 sio->base = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(sio->handle, sio->fsp),
155 sio->fsp->fsp_name->base_name);
156 sio->fsp_name_ptr = sio->fsp->fsp_name;
158 TALLOC_FREE(xattr_name);
160 if ((sio->xattr_name == NULL) || (sio->base == NULL)) {
168 * Helper to stat/lstat the base file of an smb_fname.
170 static int streams_xattr_stat_base(vfs_handle_struct *handle,
171 struct smb_filename *smb_fname,
174 char *tmp_stream_name;
177 tmp_stream_name = smb_fname->stream_name;
178 smb_fname->stream_name = NULL;
180 result = SMB_VFS_NEXT_STAT(handle, smb_fname);
182 result = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
184 smb_fname->stream_name = tmp_stream_name;
188 static int streams_xattr_fstat(vfs_handle_struct *handle, files_struct *fsp,
189 SMB_STRUCT_STAT *sbuf)
191 struct smb_filename *smb_fname_base = NULL;
194 struct stream_io *io = (struct stream_io *)
195 VFS_FETCH_FSP_EXTENSION(handle, fsp);
197 DEBUG(10, ("streams_xattr_fstat called for %d\n", fsp->fh->fd));
199 if (io == NULL || fsp->base_fsp == NULL) {
200 return SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
203 if (!streams_xattr_recheck(io)) {
207 /* Create an smb_filename with stream_name == NULL. */
208 status = create_synthetic_smb_fname(talloc_tos(),
212 if (!NT_STATUS_IS_OK(status)) {
213 errno = map_errno_from_nt_status(status);
217 if (lp_posix_pathnames()) {
218 ret = SMB_VFS_LSTAT(handle->conn, smb_fname_base);
220 ret = SMB_VFS_STAT(handle->conn, smb_fname_base);
222 *sbuf = smb_fname_base->st;
223 TALLOC_FREE(smb_fname_base);
229 sbuf->st_ex_size = get_xattr_size(handle->conn, fsp->base_fsp,
230 io->base, io->xattr_name);
231 if (sbuf->st_ex_size == -1) {
235 DEBUG(10, ("sbuf->st_ex_size = %d\n", (int)sbuf->st_ex_size));
237 sbuf->st_ex_ino = stream_inode(sbuf, io->xattr_name);
238 sbuf->st_ex_mode &= ~S_IFMT;
239 sbuf->st_ex_mode |= S_IFREG;
240 sbuf->st_ex_blocks = sbuf->st_ex_size % STAT_ST_BLOCKSIZE + 1;
245 static int streams_xattr_stat(vfs_handle_struct *handle,
246 struct smb_filename *smb_fname)
250 char *xattr_name = NULL;
252 if (!is_ntfs_stream_smb_fname(smb_fname)) {
253 return SMB_VFS_NEXT_STAT(handle, smb_fname);
256 /* If the default stream is requested, just stat the base file. */
257 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
258 return streams_xattr_stat_base(handle, smb_fname, true);
261 /* Populate the stat struct with info from the base file. */
262 if (streams_xattr_stat_base(handle, smb_fname, true) == -1) {
266 /* Derive the xattr name to lookup. */
267 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
269 if (!NT_STATUS_IS_OK(status)) {
270 errno = map_errno_from_nt_status(status);
274 /* Augment the base file's stat information before returning. */
275 smb_fname->st.st_ex_size = get_xattr_size(handle->conn, NULL,
276 smb_fname->base_name,
278 if (smb_fname->st.st_ex_size == -1) {
284 smb_fname->st.st_ex_ino = stream_inode(&smb_fname->st, xattr_name);
285 smb_fname->st.st_ex_mode &= ~S_IFMT;
286 smb_fname->st.st_ex_mode |= S_IFREG;
287 smb_fname->st.st_ex_blocks =
288 smb_fname->st.st_ex_size % STAT_ST_BLOCKSIZE + 1;
292 TALLOC_FREE(xattr_name);
296 static int streams_xattr_lstat(vfs_handle_struct *handle,
297 struct smb_filename *smb_fname)
301 char *xattr_name = NULL;
303 if (!is_ntfs_stream_smb_fname(smb_fname)) {
304 return SMB_VFS_NEXT_LSTAT(handle, smb_fname);
307 /* If the default stream is requested, just stat the base file. */
308 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
309 return streams_xattr_stat_base(handle, smb_fname, false);
312 /* Populate the stat struct with info from the base file. */
313 if (streams_xattr_stat_base(handle, smb_fname, false) == -1) {
317 /* Derive the xattr name to lookup. */
318 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
320 if (!NT_STATUS_IS_OK(status)) {
321 errno = map_errno_from_nt_status(status);
325 /* Augment the base file's stat information before returning. */
326 smb_fname->st.st_ex_size = get_xattr_size(handle->conn, NULL,
327 smb_fname->base_name,
329 if (smb_fname->st.st_ex_size == -1) {
335 smb_fname->st.st_ex_ino = stream_inode(&smb_fname->st, xattr_name);
336 smb_fname->st.st_ex_mode &= ~S_IFMT;
337 smb_fname->st.st_ex_mode |= S_IFREG;
338 smb_fname->st.st_ex_blocks =
339 smb_fname->st.st_ex_size % STAT_ST_BLOCKSIZE + 1;
344 TALLOC_FREE(xattr_name);
348 static int streams_xattr_open(vfs_handle_struct *handle,
349 struct smb_filename *smb_fname,
350 files_struct *fsp, int flags, mode_t mode)
353 struct smb_filename *smb_fname_base = NULL;
354 struct stream_io *sio;
356 char *xattr_name = NULL;
360 DEBUG(10, ("streams_xattr_open called for %s\n",
361 smb_fname_str_dbg(smb_fname)));
363 if (!is_ntfs_stream_smb_fname(smb_fname)) {
364 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
367 /* If the default stream is requested, just open the base file. */
368 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
369 char *tmp_stream_name;
372 tmp_stream_name = smb_fname->stream_name;
373 smb_fname->stream_name = NULL;
375 ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
377 smb_fname->stream_name = tmp_stream_name;
382 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
384 if (!NT_STATUS_IS_OK(status)) {
385 errno = map_errno_from_nt_status(status);
389 /* Create an smb_filename with stream_name == NULL. */
390 status = create_synthetic_smb_fname(talloc_tos(),
391 smb_fname->base_name,
394 if (!NT_STATUS_IS_OK(status)) {
395 errno = map_errno_from_nt_status(status);
400 * We use baseflags to turn off nasty side-effects when opening the
404 baseflags &= ~O_TRUNC;
405 baseflags &= ~O_EXCL;
406 baseflags &= ~O_CREAT;
408 hostfd = SMB_VFS_OPEN(handle->conn, smb_fname_base, fsp,
411 TALLOC_FREE(smb_fname_base);
413 /* It is legit to open a stream on a directory, but the base
414 * fd has to be read-only.
416 if ((hostfd == -1) && (errno == EISDIR)) {
417 baseflags &= ~O_ACCMODE;
418 baseflags |= O_RDONLY;
419 hostfd = SMB_VFS_OPEN(handle->conn, smb_fname, fsp, baseflags,
427 status = get_ea_value(talloc_tos(), handle->conn, NULL,
428 smb_fname->base_name, xattr_name, &ea);
430 DEBUG(10, ("get_ea_value returned %s\n", nt_errstr(status)));
432 if (!NT_STATUS_IS_OK(status)
433 && !NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
435 * The base file is not there. This is an error even if we got
436 * O_CREAT, the higher levels should have created the base
439 DEBUG(10, ("streams_xattr_open: base file %s not around, "
440 "returning ENOENT\n", smb_fname->base_name));
445 if (!NT_STATUS_IS_OK(status)) {
447 * The attribute does not exist
450 if (flags & O_CREAT) {
452 * Darn, xattrs need at least 1 byte
456 DEBUG(10, ("creating attribute %s on file %s\n",
457 xattr_name, smb_fname->base_name));
459 if (fsp->base_fsp->fh->fd != -1) {
460 if (SMB_VFS_FSETXATTR(
461 fsp->base_fsp, xattr_name,
463 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
467 if (SMB_VFS_SETXATTR(
468 handle->conn, smb_fname->base_name,
469 xattr_name, &null, sizeof(null),
470 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
477 if (flags & O_TRUNC) {
479 if (fsp->base_fsp->fh->fd != -1) {
480 if (SMB_VFS_FSETXATTR(
481 fsp->base_fsp, xattr_name,
483 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
487 if (SMB_VFS_SETXATTR(
488 handle->conn, smb_fname->base_name,
489 xattr_name, &null, sizeof(null),
490 flags & O_EXCL ? XATTR_CREATE : 0) == -1) {
496 sio = (struct stream_io *)VFS_ADD_FSP_EXTENSION(handle, fsp,
504 sio->xattr_name = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
506 sio->base = talloc_strdup(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
507 smb_fname->base_name);
508 sio->fsp_name_ptr = fsp->fsp_name;
509 sio->handle = handle;
512 if ((sio->xattr_name == NULL) || (sio->base == NULL)) {
522 * BUGBUGBUG -- we would need to call fd_close_posix here, but
523 * we don't have a full fsp yet
531 static int streams_xattr_unlink(vfs_handle_struct *handle,
532 const struct smb_filename *smb_fname)
538 if (!is_ntfs_stream_smb_fname(smb_fname)) {
539 return SMB_VFS_NEXT_UNLINK(handle, smb_fname);
542 /* If the default stream is requested, just open the base file. */
543 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
544 struct smb_filename *smb_fname_base = NULL;
546 status = copy_smb_filename(talloc_tos(), smb_fname,
548 if (!NT_STATUS_IS_OK(status)) {
549 errno = map_errno_from_nt_status(status);
553 ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_base);
555 TALLOC_FREE(smb_fname_base);
559 status = streams_xattr_get_name(talloc_tos(), smb_fname->stream_name,
561 if (!NT_STATUS_IS_OK(status)) {
562 errno = map_errno_from_nt_status(status);
566 ret = SMB_VFS_REMOVEXATTR(handle->conn, smb_fname->base_name, xattr_name);
568 if ((ret == -1) && (errno == ENOATTR)) {
576 TALLOC_FREE(xattr_name);
580 static int streams_xattr_rename(vfs_handle_struct *handle,
581 const struct smb_filename *smb_fname_src,
582 const struct smb_filename *smb_fname_dst)
586 char *src_xattr_name = NULL;
587 char *dst_xattr_name = NULL;
588 bool src_is_stream, dst_is_stream;
593 src_is_stream = is_ntfs_stream_smb_fname(smb_fname_src);
594 dst_is_stream = is_ntfs_stream_smb_fname(smb_fname_dst);
596 if (!src_is_stream && !dst_is_stream) {
597 return SMB_VFS_NEXT_RENAME(handle, smb_fname_src,
601 /* For now don't allow renames from or to the default stream. */
602 if (is_ntfs_default_stream_smb_fname(smb_fname_src) ||
603 is_ntfs_default_stream_smb_fname(smb_fname_dst)) {
608 /* Don't rename if the streams are identical. */
609 if (StrCaseCmp(smb_fname_src->stream_name,
610 smb_fname_dst->stream_name) == 0) {
614 /* Get the xattr names. */
615 status = streams_xattr_get_name(talloc_tos(),
616 smb_fname_src->stream_name,
618 if (!NT_STATUS_IS_OK(status)) {
619 errno = map_errno_from_nt_status(status);
622 status = streams_xattr_get_name(talloc_tos(),
623 smb_fname_dst->stream_name,
625 if (!NT_STATUS_IS_OK(status)) {
626 errno = map_errno_from_nt_status(status);
630 /* read the old stream */
631 status = get_ea_value(talloc_tos(), handle->conn, NULL,
632 smb_fname_src->base_name, src_xattr_name, &ea);
633 if (!NT_STATUS_IS_OK(status)) {
638 /* (over)write the new stream */
639 nret = SMB_VFS_SETXATTR(handle->conn, smb_fname_src->base_name,
640 dst_xattr_name, ea.value.data, ea.value.length,
643 if (errno == ENOATTR) {
649 /* remove the old stream */
650 oret = SMB_VFS_REMOVEXATTR(handle->conn, smb_fname_src->base_name,
653 if (errno == ENOATTR) {
663 TALLOC_FREE(src_xattr_name);
664 TALLOC_FREE(dst_xattr_name);
668 static NTSTATUS walk_xattr_streams(connection_struct *conn, files_struct *fsp,
670 bool (*fn)(struct ea_struct *ea,
677 size_t prefix_len = strlen(SAMBA_XATTR_DOSSTREAM_PREFIX);
679 status = get_ea_names_from_file(talloc_tos(), conn, fsp, fname,
681 if (!NT_STATUS_IS_OK(status)) {
685 for (i=0; i<num_names; i++) {
688 if (strncmp(names[i], SAMBA_XATTR_DOSSTREAM_PREFIX,
693 status = get_ea_value(names, conn, fsp, fname, names[i], &ea);
694 if (!NT_STATUS_IS_OK(status)) {
695 DEBUG(10, ("Could not get ea %s for file %s: %s\n",
696 names[i], fname, nt_errstr(status)));
700 ea.name = talloc_asprintf(ea.value.data, ":%s",
701 names[i] + prefix_len);
702 if (ea.name == NULL) {
703 DEBUG(0, ("talloc failed\n"));
707 if (!fn(&ea, private_data)) {
708 TALLOC_FREE(ea.value.data);
712 TALLOC_FREE(ea.value.data);
719 static bool add_one_stream(TALLOC_CTX *mem_ctx, unsigned int *num_streams,
720 struct stream_struct **streams,
721 const char *name, SMB_OFF_T size,
722 SMB_OFF_T alloc_size)
724 struct stream_struct *tmp;
726 tmp = TALLOC_REALLOC_ARRAY(mem_ctx, *streams, struct stream_struct,
732 tmp[*num_streams].name = talloc_strdup(tmp, name);
733 if (tmp[*num_streams].name == NULL) {
737 tmp[*num_streams].size = size;
738 tmp[*num_streams].alloc_size = alloc_size;
745 struct streaminfo_state {
747 vfs_handle_struct *handle;
748 unsigned int num_streams;
749 struct stream_struct *streams;
753 static bool collect_one_stream(struct ea_struct *ea, void *private_data)
755 struct streaminfo_state *state =
756 (struct streaminfo_state *)private_data;
758 if (!add_one_stream(state->mem_ctx,
759 &state->num_streams, &state->streams,
760 ea->name, ea->value.length-1,
761 smb_roundup(state->handle->conn,
762 ea->value.length-1))) {
763 state->status = NT_STATUS_NO_MEMORY;
770 static NTSTATUS streams_xattr_streaminfo(vfs_handle_struct *handle,
771 struct files_struct *fsp,
774 unsigned int *pnum_streams,
775 struct stream_struct **pstreams)
777 SMB_STRUCT_STAT sbuf;
780 struct streaminfo_state state;
782 if ((fsp != NULL) && (fsp->fh->fd != -1)) {
783 ret = SMB_VFS_FSTAT(fsp, &sbuf);
786 struct smb_filename *smb_fname = NULL;
787 status = create_synthetic_smb_fname(talloc_tos(), fname, NULL,
789 if (!NT_STATUS_IS_OK(status)) {
792 if (lp_posix_pathnames()) {
793 ret = SMB_VFS_LSTAT(handle->conn, smb_fname);
795 ret = SMB_VFS_STAT(handle->conn, smb_fname);
797 sbuf = smb_fname->st;
798 TALLOC_FREE(smb_fname);
802 return map_nt_error_from_unix(errno);
805 state.streams = NULL;
806 state.num_streams = 0;
808 if (!S_ISDIR(sbuf.st_ex_mode)) {
809 if (!add_one_stream(mem_ctx,
810 &state.num_streams, &state.streams,
811 "::$DATA", sbuf.st_ex_size,
812 SMB_VFS_GET_ALLOC_SIZE(handle->conn, fsp,
814 return NT_STATUS_NO_MEMORY;
818 state.mem_ctx = mem_ctx;
819 state.handle = handle;
820 state.status = NT_STATUS_OK;
822 status = walk_xattr_streams(handle->conn, fsp, fname,
823 collect_one_stream, &state);
825 if (!NT_STATUS_IS_OK(status)) {
826 TALLOC_FREE(state.streams);
830 if (!NT_STATUS_IS_OK(state.status)) {
831 TALLOC_FREE(state.streams);
835 *pnum_streams = state.num_streams;
836 *pstreams = state.streams;
840 static uint32_t streams_xattr_fs_capabilities(struct vfs_handle_struct *handle,
841 enum timestamp_set_resolution *p_ts_res)
843 return SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res) | FILE_NAMED_STREAMS;
846 static ssize_t streams_xattr_pwrite(vfs_handle_struct *handle,
847 files_struct *fsp, const void *data,
848 size_t n, SMB_OFF_T offset)
850 struct stream_io *sio =
851 (struct stream_io *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
856 DEBUG(10, ("streams_xattr_pwrite called for %d bytes\n", (int)n));
859 return SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
862 if (!streams_xattr_recheck(sio)) {
866 status = get_ea_value(talloc_tos(), handle->conn, fsp->base_fsp,
867 sio->base, sio->xattr_name, &ea);
868 if (!NT_STATUS_IS_OK(status)) {
872 if ((offset + n) > ea.value.length-1) {
875 tmp = TALLOC_REALLOC_ARRAY(talloc_tos(), ea.value.data, uint8,
879 TALLOC_FREE(ea.value.data);
884 ea.value.length = offset + n + 1;
885 ea.value.data[offset+n] = 0;
888 memcpy(ea.value.data + offset, data, n);
890 if (fsp->base_fsp->fh->fd != -1) {
891 ret = SMB_VFS_FSETXATTR(fsp->base_fsp,
893 ea.value.data, ea.value.length, 0);
895 ret = SMB_VFS_SETXATTR(fsp->conn,
896 fsp->base_fsp->fsp_name->base_name,
898 ea.value.data, ea.value.length, 0);
900 TALLOC_FREE(ea.value.data);
909 static ssize_t streams_xattr_pread(vfs_handle_struct *handle,
910 files_struct *fsp, void *data,
911 size_t n, SMB_OFF_T offset)
913 struct stream_io *sio =
914 (struct stream_io *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
917 size_t length, overlap;
920 return SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
923 if (!streams_xattr_recheck(sio)) {
927 status = get_ea_value(talloc_tos(), handle->conn, fsp->base_fsp,
928 sio->base, sio->xattr_name, &ea);
929 if (!NT_STATUS_IS_OK(status)) {
933 length = ea.value.length-1;
935 /* Attempt to read past EOF. */
936 if (length <= offset) {
941 overlap = (offset + n) > length ? (length - offset) : n;
942 memcpy(data, ea.value.data + offset, overlap);
944 TALLOC_FREE(ea.value.data);
948 static int streams_xattr_ftruncate(struct vfs_handle_struct *handle,
949 struct files_struct *fsp,
956 struct stream_io *sio =
957 (struct stream_io *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
959 DEBUG(10, ("streams_xattr_ftruncate called for file %s offset %.0f\n",
960 fsp_str_dbg(fsp), (double)offset));
963 return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
966 if (!streams_xattr_recheck(sio)) {
970 status = get_ea_value(talloc_tos(), handle->conn, fsp->base_fsp,
971 sio->base, sio->xattr_name, &ea);
972 if (!NT_STATUS_IS_OK(status)) {
976 tmp = TALLOC_REALLOC_ARRAY(talloc_tos(), ea.value.data, uint8,
980 TALLOC_FREE(ea.value.data);
985 /* Did we expand ? */
986 if (ea.value.length < offset + 1) {
987 memset(&tmp[ea.value.length], '\0',
988 offset + 1 - ea.value.length);
992 ea.value.length = offset + 1;
993 ea.value.data[offset] = 0;
995 if (fsp->base_fsp->fh->fd != -1) {
996 ret = SMB_VFS_FSETXATTR(fsp->base_fsp,
998 ea.value.data, ea.value.length, 0);
1000 ret = SMB_VFS_SETXATTR(fsp->conn,
1001 fsp->base_fsp->fsp_name->base_name,
1003 ea.value.data, ea.value.length, 0);
1006 TALLOC_FREE(ea.value.data);
1015 static struct vfs_fn_pointers vfs_streams_xattr_fns = {
1016 .fs_capabilities = streams_xattr_fs_capabilities,
1017 .open = streams_xattr_open,
1018 .stat = streams_xattr_stat,
1019 .fstat = streams_xattr_fstat,
1020 .lstat = streams_xattr_lstat,
1021 .pread = streams_xattr_pread,
1022 .pwrite = streams_xattr_pwrite,
1023 .unlink = streams_xattr_unlink,
1024 .rename = streams_xattr_rename,
1025 .ftruncate = streams_xattr_ftruncate,
1026 .streaminfo = streams_xattr_streaminfo,
1029 NTSTATUS vfs_streams_xattr_init(void);
1030 NTSTATUS vfs_streams_xattr_init(void)
1032 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "streams_xattr",
1033 &vfs_streams_xattr_fns);