s3: Make winbindd_reinit_after_fork return NTSTATUS
[Samba.git] / source3 / winbindd / winbindd_getgroups.c
blobc9b0f195ce5551597444958a84c0c35648469de8
1 /*
2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_GETGROUPS
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"
22 #include "passdb/lookup_sid.h" /* only for LOOKUP_NAME_NO_NSS flag */
24 struct winbindd_getgroups_state {
25 struct tevent_context *ev;
26 fstring domname;
27 fstring username;
28 struct dom_sid sid;
29 enum lsa_SidType type;
30 int num_sids;
31 struct dom_sid *sids;
32 int next_sid;
33 int num_gids;
34 gid_t *gids;
37 static void winbindd_getgroups_lookupname_done(struct tevent_req *subreq);
38 static void winbindd_getgroups_gettoken_done(struct tevent_req *subreq);
39 static void winbindd_getgroups_sid2gid_done(struct tevent_req *subreq);
41 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
42 struct tevent_context *ev,
43 struct winbindd_cli_state *cli,
44 struct winbindd_request *request)
46 struct tevent_req *req, *subreq;
47 struct winbindd_getgroups_state *state;
48 char *domuser, *mapped_user;
49 NTSTATUS status;
51 req = tevent_req_create(mem_ctx, &state,
52 struct winbindd_getgroups_state);
53 if (req == NULL) {
54 return NULL;
56 state->ev = ev;
58 /* Ensure null termination */
59 request->data.username[sizeof(request->data.username)-1]='\0';
61 DEBUG(3, ("getgroups %s\n", request->data.username));
63 domuser = request->data.username;
65 status = normalize_name_unmap(state, domuser, &mapped_user);
67 if (NT_STATUS_IS_OK(status)
68 || NT_STATUS_EQUAL(status, NT_STATUS_FILE_RENAMED)) {
69 /* normalize_name_unmapped did something */
70 domuser = mapped_user;
73 if (!parse_domain_user(domuser, state->domname, state->username)) {
74 DEBUG(5, ("Could not parse domain user: %s\n", domuser));
75 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
76 return tevent_req_post(req, ev);
79 subreq = wb_lookupname_send(state, ev, state->domname, state->username,
80 LOOKUP_NAME_NO_NSS);
81 if (tevent_req_nomem(subreq, req)) {
82 return tevent_req_post(req, ev);
84 tevent_req_set_callback(subreq, winbindd_getgroups_lookupname_done,
85 req);
86 return req;
89 static void winbindd_getgroups_lookupname_done(struct tevent_req *subreq)
91 struct tevent_req *req = tevent_req_callback_data(
92 subreq, struct tevent_req);
93 struct winbindd_getgroups_state *state = tevent_req_data(
94 req, struct winbindd_getgroups_state);
95 NTSTATUS status;
97 status = wb_lookupname_recv(subreq, &state->sid, &state->type);
98 TALLOC_FREE(subreq);
99 if (!NT_STATUS_IS_OK(status)) {
100 tevent_req_nterror(req, status);
101 return;
104 subreq = wb_gettoken_send(state, state->ev, &state->sid);
105 if (tevent_req_nomem(subreq, req)) {
106 return;
108 tevent_req_set_callback(subreq, winbindd_getgroups_gettoken_done, req);
111 static void winbindd_getgroups_gettoken_done(struct tevent_req *subreq)
113 struct tevent_req *req = tevent_req_callback_data(
114 subreq, struct tevent_req);
115 struct winbindd_getgroups_state *state = tevent_req_data(
116 req, struct winbindd_getgroups_state);
117 NTSTATUS status;
119 status = wb_gettoken_recv(subreq, state, &state->num_sids,
120 &state->sids);
121 TALLOC_FREE(subreq);
122 if (!NT_STATUS_IS_OK(status)) {
123 tevent_req_nterror(req, status);
124 return;
128 * Convert the group SIDs to gids. state->sids[0] contains the user
129 * sid, so start at index 1.
132 state->gids = talloc_array(state, gid_t, state->num_sids-1);
133 if (tevent_req_nomem(state->gids, req)) {
134 return;
136 state->num_gids = 0;
137 state->next_sid = 1;
139 subreq = wb_sid2gid_send(state, state->ev,
140 &state->sids[state->next_sid]);
141 if (tevent_req_nomem(subreq, req)) {
142 return;
144 tevent_req_set_callback(subreq, winbindd_getgroups_sid2gid_done, req);
147 static void winbindd_getgroups_sid2gid_done(struct tevent_req *subreq)
149 struct tevent_req *req = tevent_req_callback_data(
150 subreq, struct tevent_req);
151 struct winbindd_getgroups_state *state = tevent_req_data(
152 req, struct winbindd_getgroups_state);
153 NTSTATUS status;
155 status = wb_sid2gid_recv(subreq, &state->gids[state->num_gids]);
156 TALLOC_FREE(subreq);
159 * In case of failure, just continue with the next gid
161 if (NT_STATUS_IS_OK(status)) {
162 state->num_gids += 1;
164 state->next_sid += 1;
166 if (state->next_sid >= state->num_sids) {
167 tevent_req_done(req);
168 return;
171 subreq = wb_sid2gid_send(state, state->ev,
172 &state->sids[state->next_sid]);
173 if (tevent_req_nomem(subreq, req)) {
174 return;
176 tevent_req_set_callback(subreq, winbindd_getgroups_sid2gid_done, req);
179 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
180 struct winbindd_response *response)
182 struct winbindd_getgroups_state *state = tevent_req_data(
183 req, struct winbindd_getgroups_state);
184 NTSTATUS status;
186 if (tevent_req_is_nterror(req, &status)) {
187 DEBUG(5, ("Could not convert sid %s: %s\n",
188 sid_string_dbg(&state->sid), nt_errstr(status)));
189 return status;
192 response->data.num_entries = state->num_gids;
194 if (state->num_gids > 0) {
195 response->extra_data.data = talloc_move(response,
196 &state->gids);
197 response->length += state->num_gids * sizeof(gid_t);
199 return NT_STATUS_OK;