summaryrefslogtreecommitdiff
path: root/source3/utils/net_vfs.c
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2020-04-30 11:48:32 +0200
committerJeremy Allison <jra@samba.org>2020-05-05 19:18:40 +0000
commitb74653f2cdc6e6b60df8c78db9dfd50a9723cb19 (patch)
tree67020642b4f56fd39cfd4d2eb8b51d282118aa2d /source3/utils/net_vfs.c
parentab3152bf2273af2cc2aa12322c059ea1b4fb5686 (diff)
downloadsamba-b74653f2cdc6e6b60df8c78db9dfd50a9723cb19.tar.gz
smbd: add twrp arg to synthetic_smb_fname()
Most places take twrp from a local struct smb_filename variable that the function is working on. Some don't for various reasons: o synthetic_smb_fname_split() is only called in very few places where we don't expect twrp paths o implementations of SMB_VFS_GETWD(), SMB_VFS_FS_CAPABILITIES() and SMB_VFS_REALPATH() return the systems view of cwd and realpath without twrp info o VFS modules implementing previous-versions support (vfs_ceph_snapshots, vfs_shadow_copy2, vfs_snapper) synthesize raw paths that are passed to VFS NEXT functions and therefor do not use twrp o vfs_fruit: macOS doesn't support VSS o vfs_recycle: in recycle_create_dir() we need a raw OS path to create a directory o vfs_virusfilter: a few places where we need raw OS paths o vfs_xattr_tdb: needs a raw OS path for SMB_VFS_NEXT_STAT() o printing and rpc server: don't support VSS o vfs_default_durable_reconnect: no Durable Handles on VSS handles, this might be enhances in the future. No idea if Windows supports this. o get_real_filename_full_scan: hm.... FIXME?? o get_original_lcomp: working on a raw path o msdfs: doesn't support VSS o vfs_get_ntquota: synthesizes an smb_filename from ".", so doesn't support VSS even though VFS modules implement it o fd_open: conn_rootdir_fname is a raw path o msg_file_was_renamed: obvious o open_np_file: pipes don't support VSS o Python bindings: get's a raw path from the caller o set_conn_connectpath: raw path o set_conn_connectpath: raw path o torture: gets raw paths from the caller Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/utils/net_vfs.c')
-rw-r--r--source3/utils/net_vfs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/utils/net_vfs.c b/source3/utils/net_vfs.c
index a448b9e490f..0585a8d989b 100644
--- a/source3/utils/net_vfs.c
+++ b/source3/utils/net_vfs.c
@@ -228,6 +228,7 @@ static int net_vfs_get_ntacl(struct net_context *net,
path,
NULL,
NULL,
+ 0,
0);
if (smb_fname == NULL) {
goto done;
@@ -319,6 +320,7 @@ static bool do_unfruit(const char *path)
path,
NULL,
NULL,
+ 0,
0);
if (smb_fname == NULL) {
return false;