build: Remove unused dependencies
[Samba.git] / source3 / winbindd / wb_query_group_list.c
bloba71e162c7fee396d6ec12742271aad1ef9968e77
1 /*
2 Unix SMB/CIFS implementation.
3 async query_group_list
4 Copyright (C) Volker Lendecke 2009
5 Copyright (C) Michael Adam 2015
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "winbindd.h"
23 #include "librpc/gen_ndr/ndr_winbind_c.h"
26 struct wb_query_group_list_state {
27 struct wbint_Principals groups;
30 static void wb_query_group_list_done(struct tevent_req *subreq);
32 struct tevent_req *wb_query_group_list_send(TALLOC_CTX *mem_ctx,
33 struct tevent_context *ev,
34 struct winbindd_domain *domain)
36 struct tevent_req *req, *subreq;
37 struct wb_query_group_list_state *state;
39 req = tevent_req_create(mem_ctx, &state,
40 struct wb_query_group_list_state);
41 if (req == NULL) {
42 return NULL;
45 D_INFO("WB command group_list start.\nQuery domain %s\n", domain->name);
46 subreq = dcerpc_wbint_QueryGroupList_send(state, ev,
47 dom_child_handle(domain),
48 &state->groups);
49 if (tevent_req_nomem(subreq, req)) {
50 return tevent_req_post(req, ev);
53 tevent_req_set_callback(subreq, wb_query_group_list_done, req);
54 return req;
57 static void wb_query_group_list_done(struct tevent_req *subreq)
59 struct tevent_req *req = tevent_req_callback_data(
60 subreq, struct tevent_req);
61 struct wb_query_group_list_state *state = tevent_req_data(
62 req, struct wb_query_group_list_state);
63 NTSTATUS status, result;
65 status = dcerpc_wbint_QueryGroupList_recv(subreq, state, &result);
66 TALLOC_FREE(subreq);
67 if (any_nt_status_not_ok(status, result, &status)) {
68 tevent_req_nterror(req, status);
69 return;
72 tevent_req_done(req);
75 NTSTATUS wb_query_group_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
76 uint32_t *num_groups,
77 struct wbint_Principal **groups)
79 struct wb_query_group_list_state *state = tevent_req_data(
80 req, struct wb_query_group_list_state);
81 NTSTATUS status;
83 if (tevent_req_is_nterror(req, &status)) {
84 D_WARNING("Failed with: %s\n", nt_errstr(status));
85 return status;
88 *num_groups = state->groups.num_principals;
89 *groups = talloc_move(mem_ctx, &state->groups.principals);
91 D_INFO("WB command group_list end.\n"
92 "Returning %"PRIu32" group(s).\n", *num_groups);
93 return NT_STATUS_OK;