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/ndr_winbind_c.h"
23 #include "../libcli/security/security.h"
25 struct wb_lookupsid_state
{
26 struct tevent_context
*ev
;
27 struct winbindd_domain
*lookup_domain
;
29 enum lsa_SidType type
;
34 static void wb_lookupsid_done(struct tevent_req
*subreq
);
36 struct tevent_req
*wb_lookupsid_send(TALLOC_CTX
*mem_ctx
,
37 struct tevent_context
*ev
,
38 const struct dom_sid
*sid
)
40 struct tevent_req
*req
, *subreq
;
41 struct wb_lookupsid_state
*state
;
43 req
= tevent_req_create(mem_ctx
, &state
, struct wb_lookupsid_state
);
47 sid_copy(&state
->sid
, sid
);
50 state
->lookup_domain
= find_lookup_domain_from_sid(sid
);
51 if (state
->lookup_domain
== NULL
) {
52 struct dom_sid_buf buf
;
53 DEBUG(5, ("Could not find domain for sid %s\n",
54 dom_sid_str_buf(sid
, &buf
)));
55 tevent_req_nterror(req
, NT_STATUS_NONE_MAPPED
);
56 return tevent_req_post(req
, ev
);
59 subreq
= dcerpc_wbint_LookupSid_send(
60 state
, ev
, dom_child_handle(state
->lookup_domain
),
61 &state
->sid
, &state
->type
, &state
->domname
, &state
->name
);
62 if (tevent_req_nomem(subreq
, req
)) {
63 return tevent_req_post(req
, ev
);
65 tevent_req_set_callback(subreq
, wb_lookupsid_done
, req
);
69 static void wb_lookupsid_done(struct tevent_req
*subreq
)
71 struct tevent_req
*req
= tevent_req_callback_data(
72 subreq
, struct tevent_req
);
73 struct wb_lookupsid_state
*state
= tevent_req_data(
74 req
, struct wb_lookupsid_state
);
75 NTSTATUS status
, result
;
77 status
= dcerpc_wbint_LookupSid_recv(subreq
, state
, &result
);
79 if (any_nt_status_not_ok(status
, result
, &status
)) {
80 tevent_req_nterror(req
, status
);
86 NTSTATUS
wb_lookupsid_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
87 enum lsa_SidType
*type
, const char **domain
,
90 struct wb_lookupsid_state
*state
= tevent_req_data(
91 req
, struct wb_lookupsid_state
);
94 if (tevent_req_is_nterror(req
, &status
)) {
98 *domain
= talloc_move(mem_ctx
, &state
->domname
);
99 *name
= talloc_move(mem_ctx
, &state
->name
);