From 44c6432d64635c94348d2a1b0e7c42ac03ea9373 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 17 Jun 2010 15:52:44 +0200 Subject: s3-winbind: Use rpc_enum_local_groups in msrpc. --- source3/winbindd/winbindd_msrpc.c | 95 +++++++++++++++++---------------------- 1 file changed, 42 insertions(+), 53 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd_msrpc.c b/source3/winbindd/winbindd_msrpc.c index 26f3e86236..5e897ebbac 100644 --- a/source3/winbindd/winbindd_msrpc.c +++ b/source3/winbindd/winbindd_msrpc.c @@ -156,72 +156,61 @@ done: /* List all domain groups */ -static NTSTATUS enum_local_groups(struct winbindd_domain *domain, - TALLOC_CTX *mem_ctx, - uint32 *num_entries, - struct acct_info **info) +static NTSTATUS msrpc_enum_local_groups(struct winbindd_domain *domain, + TALLOC_CTX *mem_ctx, + uint32_t *pnum_info, + struct acct_info **pinfo) { + struct rpc_pipe_client *samr_pipe; struct policy_handle dom_pol; - NTSTATUS result; - struct rpc_pipe_client *cli; + struct acct_info *info = NULL; + uint32_t num_info = 0; + TALLOC_CTX *tmp_ctx; + NTSTATUS status; - *num_entries = 0; - *info = NULL; + DEBUG(3,("msrpc_enum_local_groups\n")); - DEBUG(3,("rpc: enum_local_groups\n")); + if (pnum_info) { + *pnum_info = 0; + } + + tmp_ctx = talloc_stackframe(); + if (tmp_ctx == NULL) { + return NT_STATUS_NO_MEMORY; + } if ( !winbindd_can_contact_domain( domain ) ) { DEBUG(10,("enum_local_groups: No incoming trust for domain %s\n", domain->name)); - return NT_STATUS_OK; + status = NT_STATUS_OK; + goto done; } - result = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol); - if (!NT_STATUS_IS_OK(result)) - return result; - - do { - struct samr_SamArray *sam_array = NULL; - uint32 count = 0, start = *num_entries; - TALLOC_CTX *mem_ctx2; - int g; - - mem_ctx2 = talloc_init("enum_dom_local_groups[rpc]"); - - result = rpccli_samr_EnumDomainAliases(cli, mem_ctx2, - &dom_pol, - &start, - &sam_array, - 0xFFFF, /* buffer size? */ - &count); - if (!NT_STATUS_IS_OK(result) && - !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES) ) - { - talloc_destroy(mem_ctx2); - return result; - } - - (*info) = TALLOC_REALLOC_ARRAY(mem_ctx, *info, - struct acct_info, - (*num_entries) + count); - if (! *info) { - talloc_destroy(mem_ctx2); - return NT_STATUS_NO_MEMORY; - } - - for (g=0; g < count; g++) { + status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + if (!NT_STATUS_IS_OK(status)) { + goto done; + } - fstrcpy((*info)[*num_entries + g].acct_name, - sam_array->entries[g].name.string); - (*info)[*num_entries + g].rid = sam_array->entries[g].idx; - } + status = rpc_enum_local_groups(mem_ctx, + samr_pipe, + &dom_pol, + &num_info, + &info); + if (!NT_STATUS_IS_OK(status)) { + goto done; + } - (*num_entries) += count; - talloc_destroy(mem_ctx2); + if (pnum_info) { + *pnum_info = num_info; + } - } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES)); + if (pinfo) { + *pinfo = talloc_move(mem_ctx, &info); + } - return result; +done: + TALLOC_FREE(tmp_ctx); + return status; } /* convert a single name to a sid in a domain */ @@ -1265,7 +1254,7 @@ struct winbindd_methods msrpc_methods = { False, msrpc_query_user_list, msrpc_enum_dom_groups, - enum_local_groups, + msrpc_enum_local_groups, msrpc_name_to_sid, msrpc_sid_to_name, msrpc_rids_to_names, -- cgit