s4: torture: Test mkdir race condition.
authorJeremy Allison <jra@samba.org>
Wed, 23 Sep 2015 01:01:22 +0000 (18:01 -0700)
committerVolker Lendecke <vl@samba.org>
Thu, 24 Sep 2015 04:13:22 +0000 (06:13 +0200)
Found by Max of LoadDynamix <adx.forum@gmail.com>

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

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Thu Sep 24 06:13:22 CEST 2015 on sn-devel-104

selftest/knownfail
source4/torture/smb2/create.c

index 447544ea07cf5f70079c6aa7b4079a2e22ab760a..bf731767791860c14c7dd34f65a29c38d525ed5f 100644 (file)
 ^samba4.raw.acls.*.create_file
 ^samba4.smb2.create.*.acldir
 ^samba4.smb2.create.*.impersonation
+^samba4.smb2.create.*.mkdir-dup # bug 11486
 ^samba4.smb2.acls.*.generic
 ^samba4.smb2.acls.*.inheritflags
 ^samba4.smb2.acls.*.owner
index 44650b58dac25fc5a83eeb0c15f5dba3937eefd6..68dbbc1f27cfb6300862db9e7c2035d0bf99d35a 100644 (file)
@@ -1517,6 +1517,156 @@ done:
        return ret;
 }
 
+/*
+  test SMB2 mkdir with OPEN_IF on the same name twice.
+  Must use 2 connections to hit the race.
+*/
+
+static bool test_mkdir_dup(struct torture_context *tctx,
+                               struct smb2_tree *tree)
+{
+       const char *fname = "mkdir_dup";
+       NTSTATUS status;
+       bool ret = true;
+       union smb_open io;
+       struct smb2_tree **trees;
+       struct smb2_request **requests;
+       union smb_open *ios;
+       int i, num_files = 2;
+       int num_ok = 0;
+       int num_created = 0;
+       int num_existed = 0;
+
+       torture_comment(tctx,
+               "Testing SMB2 Create Directory with multiple connections\n");
+       trees = talloc_array(tctx, struct smb2_tree *, num_files);
+       requests = talloc_array(tctx, struct smb2_request *, num_files);
+       ios = talloc_array(tctx, union smb_open, num_files);
+       if ((tctx->ev == NULL) || (trees == NULL) || (requests == NULL) ||
+           (ios == NULL)) {
+               torture_fail(tctx, ("talloc failed\n"));
+               ret = false;
+               goto done;
+       }
+
+       tree->session->transport->options.request_timeout = 60;
+
+       for (i=0; i<num_files; i++) {
+               if (!torture_smb2_connection(tctx, &(trees[i]))) {
+                       torture_fail(tctx,
+                               talloc_asprintf(tctx,
+                                       "Could not open %d'th connection\n", i));
+                       ret = false;
+                       goto done;
+               }
+               trees[i]->session->transport->options.request_timeout = 60;
+       }
+
+       /* cleanup */
+       smb2_util_unlink(tree, fname);
+       smb2_util_rmdir(tree, fname);
+
+       /*
+         base ntcreatex parms
+       */
+       ZERO_STRUCT(io.smb2);
+       io.generic.level = RAW_OPEN_SMB2;
+       io.smb2.in.desired_access = SEC_RIGHTS_FILE_ALL;
+       io.smb2.in.alloc_size = 0;
+       io.smb2.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
+       io.smb2.in.share_access = NTCREATEX_SHARE_ACCESS_READ|
+               NTCREATEX_SHARE_ACCESS_WRITE|
+               NTCREATEX_SHARE_ACCESS_DELETE;
+       io.smb2.in.create_disposition = NTCREATEX_DISP_OPEN_IF;
+       io.smb2.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
+       io.smb2.in.impersonation_level = SMB2_IMPERSONATION_ANONYMOUS;
+       io.smb2.in.security_flags = 0;
+       io.smb2.in.fname = fname;
+       io.smb2.in.create_flags = 0;
+
+       for (i=0; i<num_files; i++) {
+               ios[i] = io;
+               requests[i] = smb2_create_send(trees[i], &(ios[i].smb2));
+               if (requests[i] == NULL) {
+                       torture_fail(tctx,
+                               talloc_asprintf(tctx,
+                               "could not send %d'th request\n", i));
+                       ret = false;
+                       goto done;
+               }
+       }
+
+       torture_comment(tctx, "waiting for replies\n");
+       while (1) {
+               bool unreplied = false;
+               for (i=0; i<num_files; i++) {
+                       if (requests[i] == NULL) {
+                               continue;
+                       }
+                       if (requests[i]->state < SMB2_REQUEST_DONE) {
+                               unreplied = true;
+                               break;
+                       }
+                       status = smb2_create_recv(requests[i], tctx,
+                                                 &(ios[i].smb2));
+
+                       if (NT_STATUS_IS_OK(status)) {
+                               num_ok += 1;
+
+                               if (ios[i].smb2.out.create_action ==
+                                               NTCREATEX_ACTION_CREATED) {
+                                       num_created++;
+                               }
+                               if (ios[i].smb2.out.create_action ==
+                                               NTCREATEX_ACTION_EXISTED) {
+                                       num_existed++;
+                               }
+                       } else {
+                               torture_fail(tctx,
+                                       talloc_asprintf(tctx,
+                                       "File %d returned status %s\n", i,
+                                       nt_errstr(status)));
+                       }
+
+
+                       requests[i] = NULL;
+               }
+               if (!unreplied) {
+                       break;
+               }
+
+               if (tevent_loop_once(tctx->ev) != 0) {
+                       torture_fail(tctx, "tevent_loop_once failed\n");
+                       ret = false;
+                       goto done;
+               }
+       }
+
+       if (num_ok != 2) {
+               torture_fail(tctx,
+                       talloc_asprintf(tctx,
+                       "num_ok == %d\n", num_ok));
+               ret = false;
+       }
+       if (num_created != 1) {
+               torture_fail(tctx,
+                       talloc_asprintf(tctx,
+                       "num_created == %d\n", num_created));
+               ret = false;
+       }
+       if (num_existed != 1) {
+               torture_fail(tctx,
+                       talloc_asprintf(tctx,
+                       "num_existed == %d\n", num_existed));
+               ret = false;
+       }
+done:
+       smb2_deltree(tree, fname);
+
+       return ret;
+}
+
+
 /*
    basic testing of SMB2 read
 */
@@ -1535,6 +1685,7 @@ struct torture_suite *torture_smb2_create_init(void)
        torture_suite_add_1smb2_test(suite, "aclfile", test_create_acl_file);
        torture_suite_add_1smb2_test(suite, "acldir", test_create_acl_dir);
        torture_suite_add_1smb2_test(suite, "nulldacl", test_create_null_dacl);
+       torture_suite_add_1smb2_test(suite, "mkdir-dup", test_mkdir_dup);
 
        suite->description = talloc_strdup(suite, "SMB2-CREATE tests");