mirror of
https://github.com/samba-team/samba.git
synced 2025-02-28 01:58:17 +03:00
s4-lsa Use the supplied handle in LsaLookupNames2
In my rework of this function in 2006 with 459a2301a5d63f5a1a6b27996c8a0358b20f2ab2 I ignored the incoming handle, instead feching the LSA state again (dispite the commit message indicating otherwise). This means that data->access_mask is uninitialised, which doesn't matter right now, but will once we start checking that. Andrew Bartlett
This commit is contained in:
parent
481f1e601d
commit
ee20a27d41
@ -549,12 +549,17 @@ NTSTATUS dcesrv_lsa_LookupSids2(struct dcesrv_call_state *dce_call,
|
||||
struct lsa_RefDomainList *domains = NULL;
|
||||
uint32_t i;
|
||||
NTSTATUS status = NT_STATUS_OK;
|
||||
struct dcesrv_handle *h;
|
||||
|
||||
DCESRV_PULL_HANDLE(h, r->in.handle, LSA_HANDLE_POLICY);
|
||||
|
||||
if (r->in.level < LSA_LOOKUP_NAMES_ALL ||
|
||||
r->in.level > LSA_LOOKUP_NAMES_RODC_REFERRAL_TO_FULL_DC) {
|
||||
return NT_STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
state = h->data;
|
||||
|
||||
*r->out.domains = NULL;
|
||||
|
||||
/* NOTE: the WSPP test suite tries SIDs with invalid revision numbers,
|
||||
@ -563,11 +568,6 @@ NTSTATUS dcesrv_lsa_LookupSids2(struct dcesrv_call_state *dce_call,
|
||||
MS-DTYP 2.4.2
|
||||
*/
|
||||
|
||||
status = dcesrv_lsa_get_policy_state(dce_call, mem_ctx, &state);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
domains = talloc_zero(r->out.domains, struct lsa_RefDomainList);
|
||||
if (domains == NULL) {
|
||||
return NT_STATUS_NO_MEMORY;
|
||||
|
Loading…
x
Reference in New Issue
Block a user