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/>.
22 #include "passdb/lookup_sid.h" /* only for LOOKUP_NAME_NO_NSS flag */
24 struct winbindd_getgroups_state
{
25 struct tevent_context
*ev
;
29 enum lsa_SidType type
;
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
;
51 req
= tevent_req_create(mem_ctx
, &state
,
52 struct winbindd_getgroups_state
);
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
,
81 if (tevent_req_nomem(subreq
, req
)) {
82 return tevent_req_post(req
, ev
);
84 tevent_req_set_callback(subreq
, winbindd_getgroups_lookupname_done
,
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
);
97 status
= wb_lookupname_recv(subreq
, &state
->sid
, &state
->type
);
99 if (tevent_req_nterror(req
, status
)) {
103 subreq
= wb_gettoken_send(state
, state
->ev
, &state
->sid
);
104 if (tevent_req_nomem(subreq
, req
)) {
107 tevent_req_set_callback(subreq
, winbindd_getgroups_gettoken_done
, req
);
110 static void winbindd_getgroups_gettoken_done(struct tevent_req
*subreq
)
112 struct tevent_req
*req
= tevent_req_callback_data(
113 subreq
, struct tevent_req
);
114 struct winbindd_getgroups_state
*state
= tevent_req_data(
115 req
, struct winbindd_getgroups_state
);
118 status
= wb_gettoken_recv(subreq
, state
, &state
->num_sids
,
121 if (tevent_req_nterror(req
, status
)) {
126 * Convert the group SIDs to gids. state->sids[0] contains the user
127 * sid, so start at index 1.
130 state
->gids
= talloc_array(state
, gid_t
, state
->num_sids
-1);
131 if (tevent_req_nomem(state
->gids
, req
)) {
137 subreq
= wb_sid2gid_send(state
, state
->ev
,
138 &state
->sids
[state
->next_sid
]);
139 if (tevent_req_nomem(subreq
, req
)) {
142 tevent_req_set_callback(subreq
, winbindd_getgroups_sid2gid_done
, req
);
145 static void winbindd_getgroups_sid2gid_done(struct tevent_req
*subreq
)
147 struct tevent_req
*req
= tevent_req_callback_data(
148 subreq
, struct tevent_req
);
149 struct winbindd_getgroups_state
*state
= tevent_req_data(
150 req
, struct winbindd_getgroups_state
);
153 status
= wb_sid2gid_recv(subreq
, &state
->gids
[state
->num_gids
]);
157 * In case of failure, just continue with the next gid
159 if (NT_STATUS_IS_OK(status
)) {
160 state
->num_gids
+= 1;
162 state
->next_sid
+= 1;
164 if (state
->next_sid
>= state
->num_sids
) {
165 tevent_req_done(req
);
169 subreq
= wb_sid2gid_send(state
, state
->ev
,
170 &state
->sids
[state
->next_sid
]);
171 if (tevent_req_nomem(subreq
, req
)) {
174 tevent_req_set_callback(subreq
, winbindd_getgroups_sid2gid_done
, req
);
177 NTSTATUS
winbindd_getgroups_recv(struct tevent_req
*req
,
178 struct winbindd_response
*response
)
180 struct winbindd_getgroups_state
*state
= tevent_req_data(
181 req
, struct winbindd_getgroups_state
);
184 if (tevent_req_is_nterror(req
, &status
)) {
185 DEBUG(5, ("Could not convert sid %s: %s\n",
186 sid_string_dbg(&state
->sid
), nt_errstr(status
)));
190 response
->data
.num_entries
= state
->num_gids
;
192 if (state
->num_gids
> 0) {
193 response
->extra_data
.data
= talloc_move(response
,
195 response
->length
+= state
->num_gids
* sizeof(gid_t
);