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

smbtorture: test rename with other opens on the file

Windows allows this. Samba also already implements this correctly.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15697

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
(cherry picked from commit 3890ac2fafc5e17919fa39542440a05ef72a3fa5)
This commit is contained in:
Ralph Boehme 2024-09-21 01:28:07 +02:00 committed by Jule Anger
parent 7e5019e845
commit 00fb1d0fe2

View File

@ -1693,6 +1693,74 @@ static bool test_smb2_close_full_information(struct torture_context *torture,
return ret;
}
static bool torture_smb2_rename_open(struct torture_context *torture,
struct smb2_tree *tree1,
struct smb2_tree *tree2)
{
struct smb2_create c1 = {};
struct smb2_create c2 = {};
union smb_setfileinfo sinfo = {};
struct smb2_handle h1 = {};
struct smb2_handle h2 = {};
NTSTATUS status;
bool ret = true;
smb2_deltree(tree1, BASEDIR);
smb2_util_mkdir(tree1, BASEDIR);
/* Create testfile */
c1.in.desired_access = SEC_STD_DELETE;
c1.in.create_options = NTCREATEX_OPTIONS_NON_DIRECTORY_FILE;
c1.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
c1.in.share_access = NTCREATEX_SHARE_ACCESS_READ |
NTCREATEX_SHARE_ACCESS_WRITE | NTCREATEX_SHARE_ACCESS_DELETE;
c1.in.create_disposition = NTCREATEX_DISP_CREATE;
c1.in.impersonation_level = SMB2_IMPERSONATION_ANONYMOUS;
c1.in.fname = BASEDIR "\\file.txt";
status = smb2_create(tree1, torture, &c1);
torture_assert_ntstatus_ok_goto(torture, status, ret, done,
"smb2_create failed\n");
h1 = c1.out.file.handle;
/* 2nd open on testfile */
c2.in.desired_access = SEC_FILE_READ_DATA;
c2.in.create_options = NTCREATEX_OPTIONS_NON_DIRECTORY_FILE;
c2.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
c2.in.share_access = NTCREATEX_SHARE_ACCESS_READ |
NTCREATEX_SHARE_ACCESS_WRITE | NTCREATEX_SHARE_ACCESS_DELETE;
c2.in.create_disposition = NTCREATEX_DISP_OPEN;
c2.in.impersonation_level = SMB2_IMPERSONATION_ANONYMOUS;
c2.in.fname = BASEDIR "\\file.txt";
status = smb2_create(tree2, torture, &c2);
torture_assert_ntstatus_ok_goto(torture, status, ret, done,
"smb2_create failed\n");
h2 = c2.out.file.handle;
torture_comment(torture, "Renaming test file\n");
sinfo.rename_information.level = RAW_SFILEINFO_RENAME_INFORMATION;
sinfo.rename_information.in.file.handle = h1;
sinfo.rename_information.in.new_name =
BASEDIR "\\newname.txt";
status = smb2_setinfo_file(tree1, &sinfo);
torture_assert_ntstatus_ok_goto(torture, status, ret, done,
"Rename failed\n");
done:
if (!smb2_util_handle_empty(h1)) {
smb2_util_close(tree1, h1);
}
if (!smb2_util_handle_empty(h2)) {
smb2_util_close(tree2, h2);
}
smb2_deltree(tree1, BASEDIR);
return ret;
}
/*
basic testing of SMB2 rename
*/
@ -1745,6 +1813,10 @@ struct torture_suite *torture_smb2_rename_init(TALLOC_CTX *ctx)
"close-full-information",
test_smb2_close_full_information);
torture_suite_add_2smb2_test(suite,
"rename-open",
torture_smb2_rename_open);
suite->description = talloc_strdup(suite, "smb2.rename tests");
return suite;