s3:libsmb: add cli_{query,set}_security_descriptor() which take sec_info flags
[Samba/gebeck_regimport.git] / source3 / winbindd / winbindd_lookupname.c
blob1be29fd85c8da0d9422f43314c1ed662ed7443e5
1 /*
2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_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"
23 struct winbindd_lookupname_state {
24 struct tevent_context *ev;
25 struct dom_sid sid;
26 enum lsa_SidType type;
29 static void winbindd_lookupname_done(struct tevent_req *subreq);
31 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
32 struct tevent_context *ev,
33 struct winbindd_cli_state *cli,
34 struct winbindd_request *request)
36 struct tevent_req *req, *subreq;
37 struct winbindd_lookupname_state *state;
38 char *domname, *name, *p;
40 req = tevent_req_create(mem_ctx, &state,
41 struct winbindd_lookupname_state);
42 if (req == NULL) {
43 return NULL;
45 state->ev = ev;
47 /* Ensure null termination */
48 request->data.name.dom_name[
49 sizeof(request->data.name.dom_name)-1]='\0';
50 request->data.name.name[sizeof(request->data.name.name)-1]='\0';
52 /* cope with the name being a fully qualified name */
53 p = strstr(request->data.name.name, lp_winbind_separator());
54 if (p) {
55 *p = 0;
56 domname = request->data.name.name;
57 name = p+1;
58 } else if ((p = strchr(request->data.name.name, '@')) != NULL) {
59 /* upn */
60 domname = p + 1;
61 *p = 0;
62 name = request->data.name.name;
63 } else {
64 domname = request->data.name.dom_name;
65 name = request->data.name.name;
68 DEBUG(3, ("lookupname %s%s%s\n", domname, lp_winbind_separator(),
69 name));
71 subreq = wb_lookupname_send(state, ev, domname, name, 0);
72 if (tevent_req_nomem(subreq, req)) {
73 return tevent_req_post(req, ev);
75 tevent_req_set_callback(subreq, winbindd_lookupname_done, req);
76 return req;
79 static void winbindd_lookupname_done(struct tevent_req *subreq)
81 struct tevent_req *req = tevent_req_callback_data(
82 subreq, struct tevent_req);
83 struct winbindd_lookupname_state *state = tevent_req_data(
84 req, struct winbindd_lookupname_state);
85 NTSTATUS status;
87 status = wb_lookupname_recv(subreq, &state->sid, &state->type);
88 TALLOC_FREE(subreq);
89 if (tevent_req_nterror(req, status)) {
90 return;
92 tevent_req_done(req);
95 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
96 struct winbindd_response *response)
98 struct winbindd_lookupname_state *state = tevent_req_data(
99 req, struct winbindd_lookupname_state);
100 NTSTATUS status;
102 if (tevent_req_is_nterror(req, &status)) {
103 DEBUG(5, ("Could not convert sid %s: %s\n",
104 sid_string_dbg(&state->sid), nt_errstr(status)));
105 return status;
107 sid_to_fstring(response->data.sid.sid, &state->sid);
108 response->data.sid.type = state->type;
109 return NT_STATUS_OK;