2 Unix SMB/CIFS implementation.
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 "librpc/gen_ndr/cli_wbint.h"
24 struct wb_getgrsid_state
{
25 struct tevent_context
*ev
;
30 enum lsa_SidType type
;
32 struct talloc_dict
*members
;
35 static void wb_getgrsid_lookupsid_done(struct tevent_req
*subreq
);
36 static void wb_getgrsid_sid2gid_done(struct tevent_req
*subreq
);
37 static void wb_getgrsid_got_members(struct tevent_req
*subreq
);
39 struct tevent_req
*wb_getgrsid_send(TALLOC_CTX
*mem_ctx
,
40 struct tevent_context
*ev
,
41 const struct dom_sid
*group_sid
,
44 struct tevent_req
*req
, *subreq
;
45 struct wb_getgrsid_state
*state
;
47 req
= tevent_req_create(mem_ctx
, &state
, struct wb_getgrsid_state
);
51 sid_copy(&state
->sid
, group_sid
);
53 state
->max_nesting
= max_nesting
;
55 if (lp_winbind_trusted_domains_only()) {
56 struct winbindd_domain
*our_domain
= find_our_domain();
58 if (sid_compare_domain(group_sid
, &our_domain
->sid
) == 0) {
59 DEBUG(7, ("winbindd_getgrsid: My domain -- rejecting "
60 "getgrsid() for %s\n", sid_string_tos(group_sid
)));
61 tevent_req_nterror(req
, NT_STATUS_NO_SUCH_GROUP
);
62 return tevent_req_post(req
, ev
);
66 subreq
= wb_lookupsid_send(state
, ev
, &state
->sid
);
67 if (tevent_req_nomem(subreq
, req
)) {
68 return tevent_req_post(req
, ev
);
70 tevent_req_set_callback(subreq
, wb_getgrsid_lookupsid_done
, req
);
74 static void wb_getgrsid_lookupsid_done(struct tevent_req
*subreq
)
76 struct tevent_req
*req
= tevent_req_callback_data(
77 subreq
, struct tevent_req
);
78 struct wb_getgrsid_state
*state
= tevent_req_data(
79 req
, struct wb_getgrsid_state
);
82 status
= wb_lookupsid_recv(subreq
, state
, &state
->type
,
83 &state
->domname
, &state
->name
);
85 if (!NT_STATUS_IS_OK(status
)) {
86 tevent_req_nterror(req
, status
);
90 switch (state
->type
) {
91 case SID_NAME_DOM_GRP
:
93 case SID_NAME_WKN_GRP
:
96 tevent_req_nterror(req
, NT_STATUS_NO_SUCH_GROUP
);
100 subreq
= wb_sid2gid_send(state
, state
->ev
, &state
->sid
);
101 if (tevent_req_nomem(subreq
, req
)) {
104 tevent_req_set_callback(subreq
, wb_getgrsid_sid2gid_done
, req
);
107 static void wb_getgrsid_sid2gid_done(struct tevent_req
*subreq
)
109 struct tevent_req
*req
= tevent_req_callback_data(
110 subreq
, struct tevent_req
);
111 struct wb_getgrsid_state
*state
= tevent_req_data(
112 req
, struct wb_getgrsid_state
);
115 status
= wb_sid2gid_recv(subreq
, &state
->gid
);
117 if (!NT_STATUS_IS_OK(status
)) {
118 tevent_req_nterror(req
, status
);
121 subreq
= wb_group_members_send(state
, state
->ev
, &state
->sid
,
122 state
->type
, state
->max_nesting
);
123 if (tevent_req_nomem(subreq
, req
)) {
126 tevent_req_set_callback(subreq
, wb_getgrsid_got_members
, req
);
129 static void wb_getgrsid_got_members(struct tevent_req
*subreq
)
131 struct tevent_req
*req
= tevent_req_callback_data(
132 subreq
, struct tevent_req
);
133 struct wb_getgrsid_state
*state
= tevent_req_data(
134 req
, struct wb_getgrsid_state
);
137 status
= wb_group_members_recv(subreq
, state
, &state
->members
);
139 if (!NT_STATUS_IS_OK(status
)) {
140 tevent_req_nterror(req
, status
);
143 tevent_req_done(req
);
146 NTSTATUS
wb_getgrsid_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
147 const char **domname
, const char **name
, gid_t
*gid
,
148 struct talloc_dict
**members
)
150 struct wb_getgrsid_state
*state
= tevent_req_data(
151 req
, struct wb_getgrsid_state
);
154 if (tevent_req_is_nterror(req
, &status
)) {
157 *domname
= talloc_move(mem_ctx
, &state
->domname
);
158 *name
= talloc_move(mem_ctx
, &state
->name
);
160 *members
= talloc_move(mem_ctx
, &state
->members
);