]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
torture: add a test trying to set FILE_ATTRIBUTE_TEMPORARY on a directory
authorRalph Boehme <slow@samba.org>
Tue, 22 Nov 2022 09:45:35 +0000 (10:45 +0100)
committerRalph Boehme <slow@samba.org>
Mon, 28 Nov 2022 09:19:33 +0000 (09:19 +0000)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15252

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
selftest/knownfail
selftest/knownfail.d/samba3.smb2.create.dosattr_tmp_dir [new file with mode: 0644]
source4/torture/smb2/create.c

index cd91a7a50e61212aee696b3ca753ac7eb79ccf5d..c6e0a242ecbdd8b86b25643630bb915183f1e67a 100644 (file)
 ^samba4.smb2.create.*.acldir
 ^samba4.smb2.create.*.impersonation
 ^samba4.smb2.create.quota-fake-file\(ad_dc_ntvfs\) # not supported by the NTVFS
+^samba4.smb2.create.dosattr_tmp_dir\(ad_dc_ntvfs\)
 ^samba4.smb2.acls.*.generic
 ^samba4.smb2.acls.*.inheritflags
 ^samba4.smb2.acls.*.owner
diff --git a/selftest/knownfail.d/samba3.smb2.create.dosattr_tmp_dir b/selftest/knownfail.d/samba3.smb2.create.dosattr_tmp_dir
new file mode 100644 (file)
index 0000000..ab5e365
--- /dev/null
@@ -0,0 +1 @@
+^samba3.smb2.create.dosattr_tmp_dir\(.*\)
index 9357528909e27befbd08519d5df0e6ffbff8e957..cdd543685a12139978e01909fc2866c5380ca0b7 100644 (file)
@@ -3372,6 +3372,52 @@ static bool test_fileid_unique_dir(
        return test_fileid_unique_object(tctx, tree, 100, true);
 }
 
+static bool test_dosattr_tmp_dir(struct torture_context *tctx,
+                                struct smb2_tree *tree)
+{
+       bool ret = true;
+       NTSTATUS status;
+       struct smb2_create c;
+       struct smb2_handle h1 = {{0}};
+       const char *fname = DNAME;
+
+       smb2_deltree(tree, fname);
+       smb2_util_rmdir(tree, fname);
+
+       c = (struct smb2_create) {
+               .in.desired_access = SEC_RIGHTS_DIR_ALL,
+               .in.file_attributes  = FILE_ATTRIBUTE_DIRECTORY,
+               .in.create_disposition = NTCREATEX_DISP_OPEN_IF,
+               .in.share_access = NTCREATEX_SHARE_ACCESS_READ |
+                       NTCREATEX_SHARE_ACCESS_WRITE |
+                       NTCREATEX_SHARE_ACCESS_DELETE,
+               .in.create_options = NTCREATEX_OPTIONS_DIRECTORY,
+               .in.fname = DNAME,
+       };
+
+       status = smb2_create(tree, tctx, &c);
+       torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
+                                       "smb2_create\n");
+       h1 = c.out.file.handle;
+
+       /* Try to set temporary attribute on directory */
+       SET_ATTRIB(FILE_ATTRIBUTE_TEMPORARY);
+
+       torture_assert_ntstatus_equal_goto(tctx, status,
+                                          NT_STATUS_INVALID_PARAMETER,
+                                          ret, done,
+                                          "Unexpected setinfo result\n");
+
+done:
+       if (!smb2_util_handle_empty(h1)) {
+               smb2_util_close(tree, h1);
+       }
+       smb2_util_unlink(tree, fname);
+       smb2_deltree(tree, fname);
+
+       return ret;
+}
+
 /*
   test opening quota fakefile handle and returned attributes
 */
@@ -3927,6 +3973,7 @@ struct torture_suite *torture_smb2_create_init(TALLOC_CTX *ctx)
        torture_suite_add_1smb2_test(suite, "nulldacl", test_create_null_dacl);
        torture_suite_add_1smb2_test(suite, "mkdir-dup", test_mkdir_dup);
        torture_suite_add_1smb2_test(suite, "dir-alloc-size", test_dir_alloc_size);
+       torture_suite_add_1smb2_test(suite, "dosattr_tmp_dir", test_dosattr_tmp_dir);
        torture_suite_add_1smb2_test(suite, "quota-fake-file", test_smb2_open_quota_fake_file);
 
        torture_suite_add_1smb2_test(suite, "bench-path-contention-shared", test_smb2_bench_path_contention_shared);