2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_LIST_USERS
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/>.
22 #include "librpc/gen_ndr/ndr_winbind_c.h"
23 #include "lib/util/strv.h"
25 struct winbindd_list_users_domstate
{
26 struct tevent_req
*subreq
;
27 struct winbindd_domain
*domain
;
31 struct winbindd_list_users_state
{
35 struct winbindd_list_users_domstate
*domains
;
38 static void winbindd_list_users_done(struct tevent_req
*subreq
);
40 struct tevent_req
*winbindd_list_users_send(TALLOC_CTX
*mem_ctx
,
41 struct tevent_context
*ev
,
42 struct winbindd_cli_state
*cli
,
43 struct winbindd_request
*request
)
45 struct tevent_req
*req
;
46 struct winbindd_list_users_state
*state
;
47 struct winbindd_domain
*domain
;
50 req
= tevent_req_create(mem_ctx
, &state
,
51 struct winbindd_list_users_state
);
56 if (request
->wb_flags
& WBFLAG_FROM_NSS
&& !lp_winbind_enum_users()) {
58 return tevent_req_post(req
, ev
);
61 /* Ensure null termination */
62 request
->domain_name
[sizeof(request
->domain_name
)-1]='\0';
64 DEBUG(3, ("list_users %s\n", request
->domain_name
));
66 if (request
->domain_name
[0] != '\0') {
67 state
->num_domains
= 1;
69 state
->num_domains
= 0;
70 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
71 state
->num_domains
+= 1;
75 state
->domains
= talloc_array(state
,
76 struct winbindd_list_users_domstate
,
78 if (tevent_req_nomem(state
->domains
, req
)) {
79 return tevent_req_post(req
, ev
);
82 if (request
->domain_name
[0] != '\0') {
83 state
->domains
[0].domain
= find_domain_from_name_noinit(
84 request
->domain_name
);
85 if (state
->domains
[0].domain
== NULL
) {
86 tevent_req_nterror(req
, NT_STATUS_NO_SUCH_DOMAIN
);
87 return tevent_req_post(req
, ev
);
91 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
92 state
->domains
[i
++].domain
= domain
;
96 for (i
=0; i
<state
->num_domains
; i
++) {
97 struct winbindd_list_users_domstate
*d
= &state
->domains
[i
];
99 d
->subreq
= wb_query_user_list_send(
100 state
->domains
, ev
, d
->domain
);
101 if (tevent_req_nomem(d
->subreq
, req
)) {
102 TALLOC_FREE(state
->domains
);
103 return tevent_req_post(req
, ev
);
105 tevent_req_set_callback(d
->subreq
, winbindd_list_users_done
,
108 state
->num_received
= 0;
112 static void winbindd_list_users_done(struct tevent_req
*subreq
)
114 struct tevent_req
*req
= tevent_req_callback_data(
115 subreq
, struct tevent_req
);
116 struct winbindd_list_users_state
*state
= tevent_req_data(
117 req
, struct winbindd_list_users_state
);
118 struct winbindd_list_users_domstate
*d
;
122 for (i
=0; i
<state
->num_domains
; i
++) {
123 if (subreq
== state
->domains
[i
].subreq
) {
127 if (i
== state
->num_domains
) {
128 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
132 d
= &state
->domains
[i
];
134 status
= wb_query_user_list_recv(subreq
, state
->domains
,
137 if (!NT_STATUS_IS_OK(status
)) {
139 * Just skip this domain
144 state
->num_received
+= 1;
146 if (state
->num_received
>= state
->num_domains
) {
147 tevent_req_done(req
);
151 NTSTATUS
winbindd_list_users_recv(struct tevent_req
*req
,
152 struct winbindd_response
*response
)
154 struct winbindd_list_users_state
*state
= tevent_req_data(
155 req
, struct winbindd_list_users_state
);
160 if (tevent_req_is_nterror(req
, &status
)) {
166 for (i
=0; i
<state
->num_domains
; i
++) {
167 struct winbindd_list_users_domstate
*d
= &state
->domains
[i
];
170 if (d
->users
== NULL
) {
174 ret
= strv_append(state
, &result
, d
->users
);
176 return map_nt_error_from_unix(ret
);
180 len
= talloc_get_size(result
);
182 response
->extra_data
.data
= talloc_steal(response
, result
);
183 response
->length
+= len
;
184 response
->data
.num_entries
= 0;
186 if (result
!= NULL
&& len
>= 1) {
188 response
->data
.num_entries
= 1;
190 for (i
=0; i
<len
; i
++) {
191 if (result
[i
] == '\0') {
193 response
->data
.num_entries
+= 1;