1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | async implementation of WINBINDD_GID_TO_SID
|
---|
4 | Copyright (C) Volker Lendecke 2009
|
---|
5 |
|
---|
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.
|
---|
10 |
|
---|
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.
|
---|
15 |
|
---|
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/>.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #include "includes.h"
|
---|
21 | #include "winbindd.h"
|
---|
22 |
|
---|
23 | struct winbindd_gid_to_sid_state {
|
---|
24 | struct tevent_context *ev;
|
---|
25 | gid_t gid;
|
---|
26 | struct dom_sid sid;
|
---|
27 | };
|
---|
28 |
|
---|
29 | static void winbindd_gid_to_sid_done(struct tevent_req *subreq);
|
---|
30 |
|
---|
31 | struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
|
---|
32 | struct tevent_context *ev,
|
---|
33 | struct winbindd_cli_state *cli,
|
---|
34 | struct winbindd_request *request)
|
---|
35 | {
|
---|
36 | struct tevent_req *req, *subreq;
|
---|
37 | struct winbindd_gid_to_sid_state *state;
|
---|
38 |
|
---|
39 | req = tevent_req_create(mem_ctx, &state,
|
---|
40 | struct winbindd_gid_to_sid_state);
|
---|
41 | if (req == NULL) {
|
---|
42 | return NULL;
|
---|
43 | }
|
---|
44 | state->ev = ev;
|
---|
45 |
|
---|
46 | DEBUG(3, ("gid_to_sid %d\n", (int)request->data.gid));
|
---|
47 |
|
---|
48 | subreq = wb_gid2sid_send(state, ev, request->data.gid);
|
---|
49 | if (tevent_req_nomem(subreq, req)) {
|
---|
50 | return tevent_req_post(req, ev);
|
---|
51 | }
|
---|
52 | tevent_req_set_callback(subreq, winbindd_gid_to_sid_done, req);
|
---|
53 | return req;
|
---|
54 | }
|
---|
55 |
|
---|
56 | static void winbindd_gid_to_sid_done(struct tevent_req *subreq)
|
---|
57 | {
|
---|
58 | struct tevent_req *req = tevent_req_callback_data(
|
---|
59 | subreq, struct tevent_req);
|
---|
60 | struct winbindd_gid_to_sid_state *state = tevent_req_data(
|
---|
61 | req, struct winbindd_gid_to_sid_state);
|
---|
62 | NTSTATUS status;
|
---|
63 |
|
---|
64 | status = wb_gid2sid_recv(subreq, &state->sid);
|
---|
65 | TALLOC_FREE(subreq);
|
---|
66 | if (tevent_req_nterror(req, status)) {
|
---|
67 | return;
|
---|
68 | }
|
---|
69 | tevent_req_done(req);
|
---|
70 | }
|
---|
71 |
|
---|
72 | NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
|
---|
73 | struct winbindd_response *response)
|
---|
74 | {
|
---|
75 | struct winbindd_gid_to_sid_state *state = tevent_req_data(
|
---|
76 | req, struct winbindd_gid_to_sid_state);
|
---|
77 | NTSTATUS status;
|
---|
78 |
|
---|
79 | if (tevent_req_is_nterror(req, &status)) {
|
---|
80 | DEBUG(5, ("Could not convert sid %s: %s\n",
|
---|
81 | sid_string_dbg(&state->sid), nt_errstr(status)));
|
---|
82 | return status;
|
---|
83 | }
|
---|
84 | sid_to_fstring(response->data.sid.sid, &state->sid);
|
---|
85 | response->data.sid.type = SID_NAME_USER;
|
---|
86 | return NT_STATUS_OK;
|
---|
87 | }
|
---|