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/>.
22 #include "libcli/security/dom_sid.h"
24 struct winbindd_lookupname_state
{
25 struct tevent_context
*ev
;
27 enum lsa_SidType type
;
30 static void winbindd_lookupname_done(struct tevent_req
*subreq
);
32 struct tevent_req
*winbindd_lookupname_send(TALLOC_CTX
*mem_ctx
,
33 struct tevent_context
*ev
,
34 struct winbindd_cli_state
*cli
,
35 struct winbindd_request
*request
)
37 struct tevent_req
*req
, *subreq
;
38 struct winbindd_lookupname_state
*state
;
40 const char *domname
= NULL
;
41 const char *name
= NULL
;
42 const char *namespace = NULL
;
44 req
= tevent_req_create(mem_ctx
, &state
,
45 struct winbindd_lookupname_state
);
50 D_NOTICE("[%s (%u)] Winbind external command LOOKUPNAME start.\n",
52 (unsigned int)cli
->pid
);
56 /* Ensure null termination */
57 request
->data
.name
.dom_name
[
58 sizeof(request
->data
.name
.dom_name
)-1]='\0';
59 request
->data
.name
.name
[sizeof(request
->data
.name
.name
)-1]='\0';
61 if (strlen(request
->data
.name
.dom_name
) == 0) {
62 /* cope with the name being a fully qualified name */
63 p
= strstr(request
->data
.name
.name
, lp_winbind_separator());
66 domname
= request
->data
.name
.name
;
70 p
= strchr(request
->data
.name
.name
, '@');
78 name
= request
->data
.name
.name
;
81 domname
= request
->data
.name
.dom_name
;
83 name
= request
->data
.name
.name
;
86 D_NOTICE("lookupname %s%s%s\n", domname
, lp_winbind_separator(), name
);
88 subreq
= wb_lookupname_send(state
, ev
, namespace, domname
, name
, 0);
89 if (tevent_req_nomem(subreq
, req
)) {
90 return tevent_req_post(req
, ev
);
92 tevent_req_set_callback(subreq
, winbindd_lookupname_done
, req
);
96 static void winbindd_lookupname_done(struct tevent_req
*subreq
)
98 struct tevent_req
*req
= tevent_req_callback_data(
99 subreq
, struct tevent_req
);
100 struct winbindd_lookupname_state
*state
= tevent_req_data(
101 req
, struct winbindd_lookupname_state
);
104 status
= wb_lookupname_recv(subreq
, &state
->sid
, &state
->type
);
106 if (tevent_req_nterror(req
, status
)) {
109 tevent_req_done(req
);
112 NTSTATUS
winbindd_lookupname_recv(struct tevent_req
*req
,
113 struct winbindd_response
*response
)
115 struct winbindd_lookupname_state
*state
= tevent_req_data(
116 req
, struct winbindd_lookupname_state
);
119 D_NOTICE("Winbind external command LOOKUPNAME end.\n");
120 if (tevent_req_is_nterror(req
, &status
)) {
121 struct dom_sid_buf buf
;
122 D_WARNING("Could not convert SID %s, error is %s\n",
123 dom_sid_str_buf(&state
->sid
, &buf
),
127 sid_to_fstring(response
->data
.sid
.sid
, &state
->sid
);
128 response
->data
.sid
.type
= state
->type
;