messages_ctdb: Handle async msgs for nested event contexts
[Samba.git] / source3 / winbindd / wb_lookupname.c
blob1dd6b68334e5573e26ef42a52f235f9b6f2317a7
1 /*
2 Unix SMB/CIFS implementation.
3 async lookupname
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 "librpc/gen_ndr/ndr_winbind_c.h"
23 #include "../libcli/security/security.h"
25 struct wb_lookupname_state {
26 struct tevent_context *ev;
27 const char *dom_name;
28 const char *name;
29 uint32_t flags;
30 struct dom_sid sid;
31 enum lsa_SidType type;
34 static void wb_lookupname_done(struct tevent_req *subreq);
36 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
37 struct tevent_context *ev,
38 const char *dom_name, const char *name,
39 uint32_t flags)
41 struct tevent_req *req, *subreq;
42 struct wb_lookupname_state *state;
43 struct winbindd_domain *domain;
45 req = tevent_req_create(mem_ctx, &state, struct wb_lookupname_state);
46 if (req == NULL) {
47 return NULL;
49 state->ev = ev;
50 state->flags = flags;
53 * Uppercase domain and name so that we become cache-friendly
55 state->dom_name = talloc_strdup_upper(state, dom_name);
56 if (tevent_req_nomem(state->dom_name, req)) {
57 return tevent_req_post(req, ev);
59 state->name = talloc_strdup_upper(state, name);
60 if (tevent_req_nomem(state->name, req)) {
61 return tevent_req_post(req, ev);
64 domain = find_lookup_domain_from_name(state->dom_name);
65 if (domain == NULL) {
66 DEBUG(5, ("Could not find domain for %s\n", state->dom_name));
67 tevent_req_nterror(req, NT_STATUS_NONE_MAPPED);
68 return tevent_req_post(req, ev);
71 subreq = dcerpc_wbint_LookupName_send(
72 state, ev, dom_child_handle(domain),
73 state->dom_name, state->name,
74 flags, &state->type, &state->sid);
75 if (tevent_req_nomem(subreq, req)) {
76 return tevent_req_post(req, ev);
78 tevent_req_set_callback(subreq, wb_lookupname_done, req);
79 return req;
82 static void wb_lookupname_done(struct tevent_req *subreq)
84 struct tevent_req *req = tevent_req_callback_data(
85 subreq, struct tevent_req);
86 struct wb_lookupname_state *state = tevent_req_data(
87 req, struct wb_lookupname_state);
88 NTSTATUS status, result;
90 status = dcerpc_wbint_LookupName_recv(subreq, state, &result);
91 TALLOC_FREE(subreq);
92 if (any_nt_status_not_ok(status, result, &status)) {
93 tevent_req_nterror(req, status);
94 return;
96 tevent_req_done(req);
99 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
100 enum lsa_SidType *type)
102 struct wb_lookupname_state *state = tevent_req_data(
103 req, struct wb_lookupname_state);
104 NTSTATUS status;
106 if (tevent_req_is_nterror(req, &status)) {
107 return status;
109 sid_copy(sid, &state->sid);
110 *type = state->type;
111 return NT_STATUS_OK;