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/>.
22 #include "libcli/security/dom_sid.h"
24 struct winbindd_getgrgid_state
{
25 struct tevent_context
*ev
;
31 struct db_context
*members
;
34 static void winbindd_getgrgid_gid2sid_done(struct tevent_req
*subreq
);
35 static void winbindd_getgrgid_done(struct tevent_req
*subreq
);
37 struct tevent_req
*winbindd_getgrgid_send(TALLOC_CTX
*mem_ctx
,
38 struct tevent_context
*ev
,
39 struct winbindd_cli_state
*cli
,
40 struct winbindd_request
*request
)
42 struct tevent_req
*req
, *subreq
;
43 struct winbindd_getgrgid_state
*state
;
45 req
= tevent_req_create(mem_ctx
, &state
,
46 struct winbindd_getgrgid_state
);
52 DBG_NOTICE("[%s (%u)] getgrgid %d\n",
54 (unsigned int)cli
->pid
,
55 (int)request
->data
.gid
);
57 state
->xid
= (struct unixid
) {
58 .id
= request
->data
.uid
, .type
= ID_TYPE_GID
};
60 subreq
= wb_xids2sids_send(state
, ev
, &state
->xid
, 1);
61 if (tevent_req_nomem(subreq
, req
)) {
62 return tevent_req_post(req
, ev
);
64 tevent_req_set_callback(subreq
, winbindd_getgrgid_gid2sid_done
,
69 static void winbindd_getgrgid_gid2sid_done(struct tevent_req
*subreq
)
71 struct tevent_req
*req
= tevent_req_callback_data(
72 subreq
, struct tevent_req
);
73 struct winbindd_getgrgid_state
*state
= tevent_req_data(
74 req
, struct winbindd_getgrgid_state
);
77 status
= wb_xids2sids_recv(subreq
, state
, &state
->sid
);
79 if (tevent_req_nterror(req
, status
)) {
83 subreq
= wb_getgrsid_send(state
, state
->ev
, state
->sid
,
84 lp_winbind_expand_groups());
85 if (tevent_req_nomem(subreq
, req
)) {
88 tevent_req_set_callback(subreq
, winbindd_getgrgid_done
, req
);
91 static void winbindd_getgrgid_done(struct tevent_req
*subreq
)
93 struct tevent_req
*req
= tevent_req_callback_data(
94 subreq
, struct tevent_req
);
95 struct winbindd_getgrgid_state
*state
= tevent_req_data(
96 req
, struct winbindd_getgrgid_state
);
99 status
= wb_getgrsid_recv(subreq
, state
, &state
->domname
, &state
->name
,
100 &state
->gid
, &state
->members
);
102 if (tevent_req_nterror(req
, status
)) {
105 tevent_req_done(req
);
108 NTSTATUS
winbindd_getgrgid_recv(struct tevent_req
*req
,
109 struct winbindd_response
*response
)
111 struct winbindd_getgrgid_state
*state
= tevent_req_data(
112 req
, struct winbindd_getgrgid_state
);
117 if (tevent_req_is_nterror(req
, &status
)) {
118 struct dom_sid_buf sidbuf
;
119 DEBUG(5, ("Could not convert sid %s: %s\n",
120 dom_sid_str_buf(state
->sid
, &sidbuf
),
125 if (!fill_grent(talloc_tos(), &response
->data
.gr
, state
->domname
,
126 state
->name
, state
->gid
)) {
127 DEBUG(5, ("fill_grent failed\n"));
128 return NT_STATUS_NO_MEMORY
;
131 status
= winbindd_print_groupmembers(state
->members
, response
,
133 if (!NT_STATUS_IS_OK(status
)) {
137 response
->data
.gr
.num_gr_mem
= (uint32_t)num_members
;
139 /* Group membership lives at start of extra data */
141 response
->data
.gr
.gr_mem_ofs
= 0;
142 response
->extra_data
.data
= buf
;
143 response
->length
+= talloc_get_size(response
->extra_data
.data
);