From ed6fa379ef6e1f5d7ca3d5c42e4e97a2c7604683 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 13 May 2010 10:54:15 -0700 Subject: Treat an open of stream ::$DATA as an open of the base file. This fixes a class of SMB_ASSERT failures when doing stream tests. Jeremy. --- source3/modules/onefs_open.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'source3/modules') diff --git a/source3/modules/onefs_open.c b/source3/modules/onefs_open.c index dd4c24555f..f7d6e0700f 100644 --- a/source3/modules/onefs_open.c +++ b/source3/modules/onefs_open.c @@ -2106,6 +2106,33 @@ NTSTATUS onefs_create_file(vfs_handle_struct *handle, goto fail; } + if (is_ntfs_stream_smb_fname(smb_fname)) { + if (!(conn->fs_capabilities & FILE_NAMED_STREAMS)) { + status = NT_STATUS_OBJECT_NAME_NOT_FOUND; + goto fail; + } + + if (is_ntfs_default_stream_smb_fname(smb_fname)) { + int ret; + smb_fname->stream_name = NULL; + /* We have to handle this error here. */ + if (create_options & FILE_DIRECTORY_FILE) { + status = NT_STATUS_NOT_A_DIRECTORY; + goto fail; + } + if (lp_posix_pathnames()) { + ret = SMB_VFS_LSTAT(conn, smb_fname); + } else { + ret = SMB_VFS_STAT(conn, smb_fname); + } + + if (ret == 0 && VALID_STAT_OF_DIR(smb_fname->st)) { + status = NT_STATUS_FILE_IS_A_DIRECTORY; + goto fail; + } + } + } + status = onefs_create_file_unixpath( conn, /* conn */ req, /* req */ -- cgit