1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | async queryuser
|
---|
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 | #include "librpc/gen_ndr/cli_wbint.h"
|
---|
23 |
|
---|
24 | struct wb_queryuser_state {
|
---|
25 | struct dom_sid sid;
|
---|
26 | struct wbint_userinfo *info;
|
---|
27 | };
|
---|
28 |
|
---|
29 | static void wb_queryuser_done(struct tevent_req *subreq);
|
---|
30 |
|
---|
31 | struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
|
---|
32 | struct tevent_context *ev,
|
---|
33 | const struct dom_sid *user_sid)
|
---|
34 | {
|
---|
35 | struct tevent_req *req, *subreq;
|
---|
36 | struct wb_queryuser_state *state;
|
---|
37 | struct winbindd_domain *domain;
|
---|
38 |
|
---|
39 | req = tevent_req_create(mem_ctx, &state, struct wb_queryuser_state);
|
---|
40 | if (req == NULL) {
|
---|
41 | return NULL;
|
---|
42 | }
|
---|
43 | sid_copy(&state->sid, user_sid);
|
---|
44 |
|
---|
45 | domain = find_domain_from_sid_noinit(user_sid);
|
---|
46 | if (domain == NULL) {
|
---|
47 | tevent_req_nterror(req, NT_STATUS_NO_SUCH_USER);
|
---|
48 | return tevent_req_post(req, ev);
|
---|
49 | }
|
---|
50 |
|
---|
51 | state->info = talloc(state, struct wbint_userinfo);
|
---|
52 | if (tevent_req_nomem(state->info, req)) {
|
---|
53 | return tevent_req_post(req, ev);
|
---|
54 | }
|
---|
55 |
|
---|
56 | subreq = rpccli_wbint_QueryUser_send(state, ev, domain->child.rpccli,
|
---|
57 | &state->sid, state->info);
|
---|
58 | if (tevent_req_nomem(subreq, req)) {
|
---|
59 | return tevent_req_post(req, ev);
|
---|
60 | }
|
---|
61 | tevent_req_set_callback(subreq, wb_queryuser_done, req);
|
---|
62 | return req;
|
---|
63 | }
|
---|
64 |
|
---|
65 | static void wb_queryuser_done(struct tevent_req *subreq)
|
---|
66 | {
|
---|
67 | struct tevent_req *req = tevent_req_callback_data(
|
---|
68 | subreq, struct tevent_req);
|
---|
69 | struct wb_queryuser_state *state = tevent_req_data(
|
---|
70 | req, struct wb_queryuser_state);
|
---|
71 | NTSTATUS status, result;
|
---|
72 |
|
---|
73 | status = rpccli_wbint_QueryUser_recv(subreq, state->info, &result);
|
---|
74 | TALLOC_FREE(subreq);
|
---|
75 | if (!NT_STATUS_IS_OK(status)) {
|
---|
76 | tevent_req_nterror(req, status);
|
---|
77 | return;
|
---|
78 | }
|
---|
79 | if (!NT_STATUS_IS_OK(result)) {
|
---|
80 | tevent_req_nterror(req, result);
|
---|
81 | return;
|
---|
82 | }
|
---|
83 | tevent_req_done(req);
|
---|
84 | }
|
---|
85 |
|
---|
86 | NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
|
---|
87 | struct wbint_userinfo **pinfo)
|
---|
88 | {
|
---|
89 | struct wb_queryuser_state *state = tevent_req_data(
|
---|
90 | req, struct wb_queryuser_state);
|
---|
91 | NTSTATUS status;
|
---|
92 |
|
---|
93 | if (tevent_req_is_nterror(req, &status)) {
|
---|
94 | return status;
|
---|
95 | }
|
---|
96 | *pinfo = talloc_move(mem_ctx, &state->info);
|
---|
97 | return NT_STATUS_OK;
|
---|
98 | }
|
---|