2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_SIDS_TO_XIDS
4 Copyright (C) Volker Lendecke 2011
5 Copyright (C) Michael Adam 2012
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "../libcli/security/security.h"
26 struct winbindd_sids_to_xids_state
{
27 struct tevent_context
*ev
;
33 static void winbindd_sids_to_xids_done(struct tevent_req
*subreq
);
35 struct tevent_req
*winbindd_sids_to_xids_send(TALLOC_CTX
*mem_ctx
,
36 struct tevent_context
*ev
,
37 struct winbindd_cli_state
*cli
,
38 struct winbindd_request
*request
)
40 struct tevent_req
*req
, *subreq
;
41 struct winbindd_sids_to_xids_state
*state
;
43 req
= tevent_req_create(mem_ctx
, &state
,
44 struct winbindd_sids_to_xids_state
);
50 DEBUG(3, ("sids_to_xids\n"));
52 if (request
->extra_len
== 0) {
54 return tevent_req_post(req
, ev
);
56 if (request
->extra_data
.data
[request
->extra_len
-1] != '\0') {
57 DEBUG(10, ("Got invalid sids list\n"));
58 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
59 return tevent_req_post(req
, ev
);
61 if (!parse_sidlist(state
, request
->extra_data
.data
,
62 &state
->sids
, &state
->num_sids
)) {
63 DEBUG(10, ("parse_sidlist failed\n"));
64 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
65 return tevent_req_post(req
, ev
);
68 DEBUG(10, ("num_sids: %d\n", (int)state
->num_sids
));
70 subreq
= wb_sids2xids_send(state
, ev
, state
->sids
, state
->num_sids
);
71 if (tevent_req_nomem(subreq
, req
)) {
72 return tevent_req_post(req
, ev
);
75 tevent_req_set_callback(subreq
, winbindd_sids_to_xids_done
, req
);
79 static void winbindd_sids_to_xids_done(struct tevent_req
*subreq
)
81 struct tevent_req
*req
= tevent_req_callback_data(
82 subreq
, struct tevent_req
);
83 struct winbindd_sids_to_xids_state
*state
= tevent_req_data(
84 req
, struct winbindd_sids_to_xids_state
);
87 state
->xids
= talloc_zero_array(state
, struct unixid
, state
->num_sids
);
88 if (tevent_req_nomem(state
->xids
, req
)) {
92 status
= wb_sids2xids_recv(subreq
, state
->xids
);
94 if (tevent_req_nterror(req
, status
)) {
100 NTSTATUS
winbindd_sids_to_xids_recv(struct tevent_req
*req
,
101 struct winbindd_response
*response
)
103 struct winbindd_sids_to_xids_state
*state
= tevent_req_data(
104 req
, struct winbindd_sids_to_xids_state
);
109 if (tevent_req_is_nterror(req
, &status
)) {
110 DEBUG(5, ("Could not convert sids: %s\n", nt_errstr(status
)));
114 result
= talloc_strdup(response
, "");
115 if (result
== NULL
) {
116 return NT_STATUS_NO_MEMORY
;
119 for (i
=0; i
<state
->num_sids
; i
++) {
124 xid
= state
->xids
[i
];
141 if (xid
.id
== UINT32_MAX
) {
146 result
= talloc_asprintf_append_buffer(
147 result
, "%c%lu\n", type
,
148 (unsigned long)xid
.id
);
150 result
= talloc_asprintf_append_buffer(result
, "\n");
152 if (result
== NULL
) {
153 return NT_STATUS_NO_MEMORY
;
157 response
->extra_data
.data
= result
;
158 response
->length
+= talloc_get_size(result
);