idl: rebuild drsuapi.idl
[Samba/aatanasov.git] / source3 / winbindd / winbindd_getgrgid.c
blob80db30906079d33e37cd2fa4a6832572faa28ec4
1 /*
2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_GETGRGID
4 Copyright (C) Volker Lendecke 2009
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "winbindd.h"
23 struct winbindd_getgrgid_state {
24 struct tevent_context *ev;
25 struct dom_sid sid;
26 const char *domname;
27 const char *name;
28 gid_t gid;
29 struct talloc_dict *members;
32 static void winbindd_getgrgid_gid2sid_done(struct tevent_req *subreq);
33 static void winbindd_getgrgid_done(struct tevent_req *subreq);
35 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
36 struct tevent_context *ev,
37 struct winbindd_cli_state *cli,
38 struct winbindd_request *request)
40 struct tevent_req *req, *subreq;
41 struct winbindd_getgrgid_state *state;
43 req = tevent_req_create(mem_ctx, &state,
44 struct winbindd_getgrgid_state);
45 if (req == NULL) {
46 return NULL;
48 state->ev = ev;
50 DEBUG(3, ("getgrgid %d\n", (int)request->data.gid));
52 subreq = wb_gid2sid_send(state, ev, request->data.gid);
53 if (tevent_req_nomem(subreq, req)) {
54 return tevent_req_post(req, ev);
56 tevent_req_set_callback(subreq, winbindd_getgrgid_gid2sid_done,
57 req);
58 return req;
61 static void winbindd_getgrgid_gid2sid_done(struct tevent_req *subreq)
63 struct tevent_req *req = tevent_req_callback_data(
64 subreq, struct tevent_req);
65 struct winbindd_getgrgid_state *state = tevent_req_data(
66 req, struct winbindd_getgrgid_state);
67 NTSTATUS status;
69 status = wb_gid2sid_recv(subreq, &state->sid);
70 TALLOC_FREE(subreq);
71 if (!NT_STATUS_IS_OK(status)) {
72 tevent_req_nterror(req, status);
73 return;
76 subreq = wb_getgrsid_send(state, state->ev, &state->sid,
77 lp_winbind_expand_groups());
78 if (tevent_req_nomem(subreq, req)) {
79 return;
81 tevent_req_set_callback(subreq, winbindd_getgrgid_done, req);
84 static void winbindd_getgrgid_done(struct tevent_req *subreq)
86 struct tevent_req *req = tevent_req_callback_data(
87 subreq, struct tevent_req);
88 struct winbindd_getgrgid_state *state = tevent_req_data(
89 req, struct winbindd_getgrgid_state);
90 NTSTATUS status;
92 status = wb_getgrsid_recv(subreq, state, &state->domname, &state->name,
93 &state->gid, &state->members);
94 TALLOC_FREE(subreq);
95 if (!NT_STATUS_IS_OK(status)) {
96 tevent_req_nterror(req, status);
97 return;
99 tevent_req_done(req);
102 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
103 struct winbindd_response *response)
105 struct winbindd_getgrgid_state *state = tevent_req_data(
106 req, struct winbindd_getgrgid_state);
107 NTSTATUS status;
108 int num_members;
109 char *buf;
111 if (tevent_req_is_nterror(req, &status)) {
112 DEBUG(5, ("Could not convert sid %s: %s\n",
113 sid_string_dbg(&state->sid), nt_errstr(status)));
114 return status;
117 if (!fill_grent(talloc_tos(), &response->data.gr, state->domname,
118 state->name, state->gid)) {
119 DEBUG(5, ("fill_grent failed\n"));
120 return NT_STATUS_NO_MEMORY;
123 status = winbindd_print_groupmembers(state->members, response,
124 &num_members, &buf);
125 if (!NT_STATUS_IS_OK(status)) {
126 return status;
129 response->data.gr.num_gr_mem = (uint32)num_members;
131 /* Group membership lives at start of extra data */
133 response->data.gr.gr_mem_ofs = 0;
134 response->extra_data.data = buf;
135 response->length += talloc_get_size(response->extra_data.data);
137 return NT_STATUS_OK;