1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

VFS: media_harmony: Fixup mh_mknodat() to correctly use the dirfsp path.

Missed in my original fixes.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Böhme <slow@samba.org>
This commit is contained in:
Jeremy Allison 2021-01-20 11:56:36 -08:00
parent 4135a5cc81
commit db5744f0ab

View File

@ -1752,11 +1752,21 @@ static int mh_mknodat(vfs_handle_struct *handle,
SMB_DEV_T dev)
{
int status;
struct smb_filename *full_fname = NULL;
struct smb_filename *clientFname = NULL;
TALLOC_CTX *ctx;
DEBUG(MH_INFO_DEBUG, ("Entering mh_mknodat\n"));
if (!is_in_media_files(smb_fname->base_name)) {
full_fname = full_path_from_dirfsp_atname(talloc_tos(),
dirfsp,
smb_fname);
if (full_fname == NULL) {
status = -1;
goto err;
}
if (!is_in_media_files(full_fname->base_name)) {
status = SMB_VFS_NEXT_MKNODAT(handle,
dirfsp,
smb_fname,
@ -1768,13 +1778,13 @@ static int mh_mknodat(vfs_handle_struct *handle,
ctx = talloc_tos();
if ((status = alloc_get_client_smb_fname(handle, ctx,
smb_fname,
full_fname,
&clientFname))) {
goto err;
}
status = SMB_VFS_NEXT_MKNODAT(handle,
dirfsp,
handle->conn->cwd_fsp,
clientFname,
mode,
dev);
@ -1782,6 +1792,7 @@ static int mh_mknodat(vfs_handle_struct *handle,
err:
TALLOC_FREE(clientFname);
out:
TALLOC_FREE(full_fname);
return status;
}