idl: rebuild drsuapi.idl
[Samba/aatanasov.git] / source3 / winbindd / winbindd_sid_to_gid.c
blob1e712cfbee0c098303c098507f3fb1bc5b636eda
1 /*
2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_SID_TO_GID
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_sid_to_gid_state {
24 struct dom_sid sid;
25 gid_t gid;
28 static void winbindd_sid_to_gid_done(struct tevent_req *subreq);
30 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
31 struct tevent_context *ev,
32 struct winbindd_cli_state *cli,
33 struct winbindd_request *request)
35 struct tevent_req *req, *subreq;
36 struct winbindd_sid_to_gid_state *state;
38 req = tevent_req_create(mem_ctx, &state,
39 struct winbindd_sid_to_gid_state);
40 if (req == NULL) {
41 return NULL;
44 /* Ensure null termination */
45 request->data.sid[sizeof(request->data.sid)-1]='\0';
47 DEBUG(3, ("sid to gid %s\n", request->data.sid));
49 if (!string_to_sid(&state->sid, request->data.sid)) {
50 DEBUG(1, ("Could not get convert sid %s from string\n",
51 request->data.sid));
52 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
53 return tevent_req_post(req, ev);
56 subreq = wb_sid2gid_send(state, ev, &state->sid);
57 if (tevent_req_nomem(subreq, req)) {
58 return tevent_req_post(req, ev);
60 tevent_req_set_callback(subreq, winbindd_sid_to_gid_done, req);
61 return req;
64 static void winbindd_sid_to_gid_done(struct tevent_req *subreq)
66 struct tevent_req *req = tevent_req_callback_data(
67 subreq, struct tevent_req);
68 struct winbindd_sid_to_gid_state *state = tevent_req_data(
69 req, struct winbindd_sid_to_gid_state);
70 NTSTATUS status;
72 status = wb_sid2gid_recv(subreq, &state->gid);
73 TALLOC_FREE(subreq);
74 if (!NT_STATUS_IS_OK(status)) {
75 tevent_req_nterror(req, status);
76 return;
78 tevent_req_done(req);
81 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
82 struct winbindd_response *response)
84 struct winbindd_sid_to_gid_state *state = tevent_req_data(
85 req, struct winbindd_sid_to_gid_state);
86 NTSTATUS status;
88 if (tevent_req_is_nterror(req, &status)) {
89 DEBUG(5, ("Could not convert sid %s: %s\n",
90 sid_string_dbg(&state->sid), nt_errstr(status)));
91 return status;
93 response->data.gid = state->gid;
94 return NT_STATUS_OK;