diff options
author | Alexander Bokovoy <ab@samba.org> | 2019-08-10 11:53:12 +0300 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2019-08-19 12:36:22 +0000 |
commit | 38876ad4ef46fc3cf6a12329236918a87c2e2c65 (patch) | |
tree | 5198e35fe736f69cc3b4b545eb2eb63e357ed49b | |
parent | 60d222327343599d13643ee54e041cd65373a7eb (diff) | |
download | samba-38876ad4ef46fc3cf6a12329236918a87c2e2c65.tar.gz |
smbtorture: extend rpc.lsa to lookup machine over forest-wide LookupNames
Add a simple test to resolve DOMAIN\MACHINE$ via LSA LookupNames3
using LSA_LOOKUP_NAMES_UPLEVEL_TRUSTS_ONLY2 level. This level would pass
zero lookup flags to lookup_name().
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14091
Signed-off-by: Alexander Bokovoy <ab@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Autobuild-User(master): Alexander Bokovoy <ab@samba.org>
Autobuild-Date(master): Wed Aug 14 13:07:42 UTC 2019 on sn-devel-184
(cherry picked from commit 4d276a93fc624dc04d880f5b4157f272d3555be6)
Autobuild-User(v4-11-test): Karolin Seeger <kseeger@samba.org>
Autobuild-Date(v4-11-test): Mon Aug 19 12:36:22 UTC 2019 on sn-devel-184
-rw-r--r-- | source4/torture/rpc/lsa.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index fdbfcbffc16..0ce113feb5d 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -4819,7 +4819,7 @@ static bool test_QueryInfoPolicyCalls( bool version2, || i == LSA_POLICY_INFO_DNS_INT)) { /* Let's look up some of these names */ - struct lsa_TransNameArray tnames; + struct lsa_TransNameArray tnames, dnames; tnames.count = 14; tnames.names = talloc_zero_array(tctx, struct lsa_TranslatedName, tnames.count); tnames.names[0].name.string = info->dns.name.string; @@ -4852,6 +4852,12 @@ static bool test_QueryInfoPolicyCalls( bool version2, tnames.names[13].sid_type = SID_NAME_USER; ret &= test_LookupNames(b, tctx, handle, LSA_LOOKUP_NAMES_ALL, &tnames); + /* Try to use in-forest search for the test machine */ + dnames.count = 1; + dnames.names = talloc_zero_array(tctx, struct lsa_TranslatedName, dnames.count); + dnames.names[0].name.string = talloc_asprintf(tctx, "%s\\"TEST_MACHINENAME "$", info->dns.name.string); + dnames.names[0].sid_type = SID_NAME_USER; + ret &= test_LookupNames(b, tctx, handle, LSA_LOOKUP_NAMES_UPLEVEL_TRUSTS_ONLY2, &dnames); } } |