s3: Add a regression test for bug 6898
authorVolker Lendecke <vl@samba.org>
Sun, 29 Nov 2009 15:05:36 +0000 (16:05 +0100)
committerVolker Lendecke <vl@samba.org>
Sun, 29 Nov 2009 15:12:51 +0000 (16:12 +0100)
source3/Makefile.in
source3/script/tests/test_smbtorture_s3.sh
source3/torture/proto.h
source3/torture/test_posix_append.c [new file with mode: 0644]
source3/torture/torture.c

index 6b1b64bb18956ff8793e4cbb117919d9baabe595..29a5b3d77f1b8e1f1012e9b680d2d40735495a53 100644 (file)
@@ -1043,7 +1043,8 @@ NMBLOOKUP_OBJ = utils/nmblookup.o $(PARAM_OBJ) $(LIBNMB_OBJ) \
                $(LIB_NONSMBD_OBJ) $(POPT_LIB_OBJ) $(LIBSAMBA_OBJ)
 
 SMBTORTURE_OBJ1 = torture/torture.o torture/nbio.o torture/scanner.o torture/utable.o \
-               torture/denytest.o torture/mangle_test.o
+               torture/denytest.o torture/mangle_test.o \
+               torture/test_posix_append.o
 
 SMBTORTURE_OBJ = $(SMBTORTURE_OBJ1) $(PARAM_OBJ) $(TLDAP_OBJ) \
        $(LIBSMB_OBJ) $(LDB_OBJ) $(KRBCLIENT_OBJ) $(LIB_NONSMBD_OBJ) \
index a6ac9482a60d1c1bcb612834ce0a5b5d55796f6c..774ca94833623d3480fb3677c974d52e960c608a 100755 (executable)
@@ -32,7 +32,7 @@ tests="$tests DIR DIR1 TCON TCONDEV RW1 RW2 RW3"
 tests="$tests OPEN XCOPY RENAME DELETE PROPERTIES W2K"
 tests="$tests TCON2 IOCTL CHKPATH FDSESS LOCAL-SUBSTITUTE CHAIN1"
 tests="$tests GETADDRINFO POSIX UID-REGRESSION-TEST SHORTNAME-TEST"
-tests="$tests LOCAL-BASE64 LOCAL-GENCACHE"
+tests="$tests LOCAL-BASE64 LOCAL-GENCACHE POSIX-APPEND"
 
 skipped1="RANDOMIPC NEGNOWAIT NBENCH ERRMAPEXTRACT TRANS2SCAN NTTRANSSCAN"
 skipped2="DENY1 DENY2 OPENATTR CASETABLE EATEST"
index 56396fe4c07a33d59dab598faff50a004d668fb7..d78a39d85a8507d772dc5d8a7993670fbc3e4694 100644 (file)
@@ -77,4 +77,10 @@ NTSTATUS torture_setup_unix_extensions(struct cli_state *cli);
 bool torture_utable(int dummy);
 bool torture_casetable(int dummy);
 
+/*
+ * Misc
+ */
+
+bool run_posix_append(int dummy);
+
 #endif /* __TORTURE_H__ */
diff --git a/source3/torture/test_posix_append.c b/source3/torture/test_posix_append.c
new file mode 100644 (file)
index 0000000..36336aa
--- /dev/null
@@ -0,0 +1,97 @@
+/*
+   Unix SMB/CIFS implementation.
+   async getpwsid
+   Copyright (C) Volker Lendecke 2009
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "torture/proto.h"
+
+/*
+ * Make sure that GENERIC_WRITE does not trigger append. See
+ * https://bugzilla.samba.org/show_bug.cgi?id=6898
+ */
+
+bool run_posix_append(int dummy)
+{
+       struct cli_state *cli;
+       const char *fname = "append";
+       NTSTATUS status;
+       uint16_t fnum;
+       ssize_t written;
+       SMB_OFF_T size;
+       char c = '\0';
+       bool ret = false;
+
+       printf("Starting POSIX_APPEND\n");
+
+       if (!torture_open_connection(&cli, 0)) {
+               return false;
+       }
+
+       status = torture_setup_unix_extensions(cli);
+       if (!NT_STATUS_IS_OK(status)) {
+               printf("torture_setup_unix_extensions failed: %s\n",
+                      nt_errstr(status));
+               goto fail;
+       }
+
+       status = cli_ntcreate(
+               cli, fname, 0,
+               GENERIC_WRITE_ACCESS|GENERIC_READ_ACCESS|DELETE_ACCESS,
+               FILE_ATTRIBUTE_NORMAL|FILE_FLAG_POSIX_SEMANTICS,
+               FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
+               FILE_OVERWRITE_IF,
+               FILE_NON_DIRECTORY_FILE|FILE_DELETE_ON_CLOSE,
+               0, &fnum);
+
+       if (!NT_STATUS_IS_OK(status)) {
+               printf("cli_ntcreate failed: %s\n", nt_errstr(status));
+               goto fail;
+       }
+
+       /*
+        * Write two bytes at offset 0. With bug 6898 we would end up
+        * with a file of 2 byte length.
+        */
+
+       written = cli_write(cli, fnum, 0, &c, 0, sizeof(c));
+       if (written != sizeof(c)) {
+               printf("cli_write failed\n");
+               goto fail;
+       }
+       written = cli_write(cli, fnum, 0, &c, 0, sizeof(c));
+       if (written != sizeof(c)) {
+               printf("cli_write failed\n");
+               goto fail;
+       }
+
+       status = cli_getattrE(cli, fnum, NULL, &size, NULL, NULL, NULL);
+       if (!NT_STATUS_IS_OK(status)) {
+               printf("cli_getatrE failed: %s\n", nt_errstr(status));
+               goto fail;
+       }
+
+       if (size != sizeof(c)) {
+               printf("BUG: Writing with O_APPEND!!\n");
+               goto fail;
+       }
+
+       ret = true;
+fail:
+       torture_close_connection(cli);
+       return ret;
+}
index 4b5e8b2dfb847e1f88cb2859aa9e95df1372b210..5a0a3000920039f0e39a91ca72fc6732aa9e0217 100644 (file)
@@ -7176,6 +7176,7 @@ static struct {
        {"RW3",  run_readwritelarge, 0},
        {"OPEN", run_opentest, 0},
        {"POSIX", run_simple_posix_open_test, 0},
+       {"POSIX-APPEND", run_posix_append, 0},
        { "UID-REGRESSION-TEST", run_uid_regression_test, 0},
        { "SHORTNAME-TEST", run_shortname_test, 0},
 #if 1