s4:samr RPC server - DomainGeneralInformation - never return NULL on the oem name
[Samba.git] / source3 / winbindd / winbindd_lookupsid.c
blob596699f4f121f6051dbcb6f20e80f5e95d35860d
1 /*
2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_LOOKUPSID
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 "../libcli/security/security.h"
24 struct winbindd_lookupsid_state {
25 struct tevent_context *ev;
26 struct dom_sid sid;
27 enum lsa_SidType type;
28 const char *domname;
29 const char *name;
32 static void winbindd_lookupsid_done(struct tevent_req *subreq);
34 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
35 struct tevent_context *ev,
36 struct winbindd_cli_state *cli,
37 struct winbindd_request *request)
39 struct tevent_req *req, *subreq;
40 struct winbindd_lookupsid_state *state;
42 req = tevent_req_create(mem_ctx, &state,
43 struct winbindd_lookupsid_state);
44 if (req == NULL) {
45 return NULL;
47 state->ev = ev;
49 /* Ensure null termination */
50 request->data.sid[sizeof(request->data.sid)-1]='\0';
52 DEBUG(3, ("lookupsid %s\n", request->data.sid));
54 if (!string_to_sid(&state->sid, request->data.sid)) {
55 DEBUG(5, ("%s not a SID\n", request->data.sid));
56 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
57 return tevent_req_post(req, ev);;
60 subreq = wb_lookupsid_send(state, ev, &state->sid);
61 if (tevent_req_nomem(subreq, req)) {
62 return tevent_req_post(req, ev);
64 tevent_req_set_callback(subreq, winbindd_lookupsid_done, req);
65 return req;
68 static void winbindd_lookupsid_done(struct tevent_req *subreq)
70 struct tevent_req *req = tevent_req_callback_data(
71 subreq, struct tevent_req);
72 struct winbindd_lookupsid_state *state = tevent_req_data(
73 req, struct winbindd_lookupsid_state);
74 NTSTATUS status;
76 status = wb_lookupsid_recv(subreq, state, &state->type,
77 &state->domname, &state->name);
78 TALLOC_FREE(subreq);
79 if (!NT_STATUS_IS_OK(status)) {
80 tevent_req_nterror(req, status);
81 return;
83 tevent_req_done(req);
86 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
87 struct winbindd_response *response)
89 struct winbindd_lookupsid_state *state = tevent_req_data(
90 req, struct winbindd_lookupsid_state);
91 NTSTATUS status;
93 if (tevent_req_is_nterror(req, &status)) {
94 DEBUG(5, ("Could not lookup sid %s: %s\n",
95 sid_string_dbg(&state->sid), nt_errstr(status)));
96 return status;
99 fstrcpy(response->data.name.dom_name, state->domname);
100 fstrcpy(response->data.name.name, state->name);
101 response->data.name.type = state->type;
102 return NT_STATUS_OK;