[PATCH 1/1] torture: add local verification trailer parsing test

David Disseldorp ddiss at samba.org
Tue Apr 8 11:49:37 MDT 2014


Signed-off-by: David Disseldorp <ddiss at samba.org>
---
 source4/torture/local/local.c         |   1 +
 source4/torture/local/verif_trailer.c | 101 ++++++++++++++++++++++++++++++++++
 source4/torture/local/wscript_build   |   3 +-
 3 files changed, 104 insertions(+), 1 deletion(-)
 create mode 100644 source4/torture/local/verif_trailer.c

diff --git a/source4/torture/local/local.c b/source4/torture/local/local.c
index d4e8911..681fca1 100644
--- a/source4/torture/local/local.c
+++ b/source4/torture/local/local.c
@@ -74,6 +74,7 @@
 	torture_dsdb_dn,
 	torture_dsdb_syntax,
 	torture_registry,
+	torture_local_verif_trailer,
 	NULL
 };
 
diff --git a/source4/torture/local/verif_trailer.c b/source4/torture/local/verif_trailer.c
new file mode 100644
index 0000000..eb95b21
--- /dev/null
+++ b/source4/torture/local/verif_trailer.c
@@ -0,0 +1,101 @@
+/*
+   Unix SMB/CIFS implementation.
+
+   test suite for DCE/RPC verification trailer parsing
+
+   Copyright (C) David Disseldorp 2014
+
+   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 <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
+#include "includes.h"
+#include "librpc/gen_ndr/security.h"
+#include "lib/param/param.h"
+#include "lib/util/dlinklist.h"
+#include "libcli/resolve/resolve.h"
+#include "librpc/gen_ndr/ndr_dcerpc.h"
+#include "librpc/gen_ndr/ndr_dcerpc_c.h"
+#include "torture/torture.h"
+#include "torture/local/proto.h"
+
+/* VT blob obtained from an FSRVP request */
+uint8_t test_vt[] = {0x8a, 0xe3, 0x13, 0x71, 0x02, 0xf4, 0x36, 0x71,
+		     0x02, 0x40, 0x28, 0x00, 0x3c, 0x65, 0xe0, 0xa8,
+		     0x44, 0x27, 0x89, 0x43, 0xa6, 0x1d, 0x73, 0x73,
+		     0xdf, 0x8b, 0x22, 0x92, 0x01, 0x00, 0x00, 0x00,
+		     0x33, 0x05, 0x71, 0x71, 0xba, 0xbe, 0x37, 0x49,
+		     0x83, 0x19, 0xb5, 0xdb, 0xef, 0x9c, 0xcc, 0x36,
+		     0x01, 0x00, 0x00, 0x00};
+
+const char *vt_abstr_syntax = "a8e0653c-2744-4389-a61d-7373df8b2292/0x00000001";
+const char *vt_trans_syntax = "71710533-beba-4937-8319-b5dbef9ccc36/0x00000001";
+
+static bool test_verif_trailer_pctx(struct torture_context *tctx)
+{
+	DATA_BLOB blob;
+	bool ok;
+	struct dcerpc_sec_vt_pcontext pctx;
+	struct dcerpc_sec_verification_trailer *vt = NULL;
+	struct ndr_pull *ndr;
+	enum ndr_err_code ndr_err;
+	struct ndr_print *ndr_print;
+	TALLOC_CTX *mem_ctx = talloc_new(tctx);
+	torture_assert(tctx, mem_ctx != NULL, "mem");
+
+	blob.data = test_vt;
+	blob.length = ARRAY_SIZE(test_vt);
+
+	ndr = ndr_pull_init_blob(&blob, mem_ctx);
+	torture_assert(tctx, ndr != NULL, "ndr");
+
+	ndr_err = ndr_pop_dcerpc_sec_verification_trailer(ndr, mem_ctx, &vt);
+	torture_assert(tctx, NDR_ERR_CODE_IS_SUCCESS(ndr_err), "ndr");
+
+	ndr_print = talloc_zero(mem_ctx, struct ndr_print);
+	torture_assert(tctx, ndr_print != NULL, "mem");
+	ndr_print->print = ndr_print_printf_helper;
+	ndr_print->depth = 1;
+
+	ndr_print_dcerpc_sec_verification_trailer(ndr_print,
+						  "Verification Trailer", vt);
+
+	ZERO_STRUCT(pctx);
+	ok = ndr_syntax_id_from_string(vt_abstr_syntax, &pctx.abstract_syntax);
+	torture_assert(tctx, ok, "vt_abstr_syntax");
+	ok = ndr_syntax_id_from_string(vt_trans_syntax, &pctx.transfer_syntax);
+	torture_assert(tctx, ok, "vt_trans_syntax");
+
+	ok = dcerpc_sec_verification_trailer_check(vt, NULL, &pctx, NULL);
+	torture_assert(tctx, ok, "VT check");
+
+	talloc_free(mem_ctx);
+
+	return true;
+}
+
+struct torture_suite *torture_local_verif_trailer(TALLOC_CTX *mem_ctx)
+{
+	struct torture_suite *suite = torture_suite_create(mem_ctx,
+							   "verif_trailer");
+
+	torture_suite_add_simple_test(suite,
+				      "pctx",
+				      test_verif_trailer_pctx);
+
+	return suite;
+}
diff --git a/source4/torture/local/wscript_build b/source4/torture/local/wscript_build
index c5d897a..2fad374 100644
--- a/source4/torture/local/wscript_build
+++ b/source4/torture/local/wscript_build
@@ -16,7 +16,8 @@ TORTURE_LOCAL_SOURCE = '''../../../lib/util/charset/tests/iconv.c
 	../../param/tests/loadparm.c ../../../auth/credentials/tests/simple.c local.c
 	dbspeed.c torture.c ../ldb/ldb.c ../../dsdb/common/tests/dsdb_dn.c
 	../../dsdb/schema/tests/schema_syntax.c
-	../../../lib/util/tests/anonymous_shared.c'''
+	../../../lib/util/tests/anonymous_shared.c
+	verif_trailer.c'''
 
 TORTURE_LOCAL_DEPS = 'RPC_NDR_ECHO TDR LIBCLI_SMB MESSAGING iconv POPT_CREDENTIALS TORTURE_AUTH TORTURE_UTIL TORTURE_NDR TORTURE_LIBCRYPTO share torture_registry PROVISION ldb samdb replace-test'
 
-- 
1.8.4.5



More information about the samba-technical mailing list