2 Unix SMB/CIFS implementation.
4 Async helpers for blocking functions
6 Copyright (C) Volker Lendecke 2005
7 Copyright (C) Gerald Carter 2006
9 The helpers always consist of three functions:
11 * A request setup function that takes the necessary parameters together
12 with a continuation function that is to be called upon completion
14 * A private continuation function that is internal only. This is to be
15 called by the lower-level functions in do_async(). Its only task is to
16 properly call the continuation function named above.
18 * A worker function that is called inside the appropriate child process.
20 This program is free software; you can redistribute it and/or modify
21 it under the terms of the GNU General Public License as published by
22 the Free Software Foundation; either version 3 of the License, or
23 (at your option) any later version.
25 This program is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 GNU General Public License for more details.
30 You should have received a copy of the GNU General Public License
31 along with this program. If not, see <http://www.gnu.org/licenses/>.
38 #define DBGC_CLASS DBGC_WINBIND
40 struct do_async_state
{
42 struct winbindd_request request
;
43 struct winbindd_response response
;
44 void (*cont
)(TALLOC_CTX
*mem_ctx
,
46 struct winbindd_response
*response
,
47 void *c
, void *private_data
);
48 void *c
, *private_data
;
51 static void do_async_recv(void *private_data
, bool success
)
53 struct do_async_state
*state
=
54 talloc_get_type_abort(private_data
, struct do_async_state
);
56 state
->cont(state
->mem_ctx
, success
, &state
->response
,
57 state
->c
, state
->private_data
);
60 void do_async(TALLOC_CTX
*mem_ctx
, struct winbindd_child
*child
,
61 const struct winbindd_request
*request
,
62 void (*cont
)(TALLOC_CTX
*mem_ctx
, bool success
,
63 struct winbindd_response
*response
,
64 void *c
, void *private_data
),
65 void *c
, void *private_data
)
67 struct do_async_state
*state
;
69 state
= TALLOC_ZERO_P(mem_ctx
, struct do_async_state
);
71 DEBUG(0, ("talloc failed\n"));
72 cont(mem_ctx
, False
, NULL
, c
, private_data
);
76 state
->mem_ctx
= mem_ctx
;
77 state
->request
= *request
;
78 state
->request
.length
= sizeof(state
->request
);
81 state
->private_data
= private_data
;
83 async_request(mem_ctx
, child
, &state
->request
,
84 &state
->response
, do_async_recv
, state
);
87 static void do_async_domain(TALLOC_CTX
*mem_ctx
, struct winbindd_domain
*domain
,
88 const struct winbindd_request
*request
,
89 void (*cont
)(TALLOC_CTX
*mem_ctx
, bool success
,
90 struct winbindd_response
*response
,
91 void *c
, void *private_data
),
92 void *c
, void *private_data
)
94 struct do_async_state
*state
;
96 state
= TALLOC_ZERO_P(mem_ctx
, struct do_async_state
);
98 DEBUG(0, ("talloc failed\n"));
99 cont(mem_ctx
, False
, NULL
, c
, private_data
);
103 state
->mem_ctx
= mem_ctx
;
104 state
->request
= *request
;
105 state
->request
.length
= sizeof(state
->request
);
108 state
->private_data
= private_data
;
110 async_domain_request(mem_ctx
, domain
, &state
->request
,
111 &state
->response
, do_async_recv
, state
);
114 struct lookupsid_state
{
116 void *caller_private_data
;
120 static void lookupsid_recv2(TALLOC_CTX
*mem_ctx
, bool success
,
121 struct winbindd_response
*response
,
122 void *c
, void *private_data
)
124 void (*cont
)(void *priv
, bool succ
, const char *dom_name
,
125 const char *name
, enum lsa_SidType type
) =
126 (void (*)(void *, bool, const char *, const char *,
128 struct lookupsid_state
*s
= talloc_get_type_abort(private_data
,
129 struct lookupsid_state
);
132 DEBUG(5, ("Could not trigger lookupsid\n"));
133 cont(s
->caller_private_data
, False
, NULL
, NULL
, SID_NAME_UNKNOWN
);
137 if (response
->result
!= WINBINDD_OK
) {
138 DEBUG(5, ("lookupsid (forest root) returned an error\n"));
139 cont(s
->caller_private_data
, False
, NULL
, NULL
, SID_NAME_UNKNOWN
);
143 cont(s
->caller_private_data
, True
, response
->data
.name
.dom_name
,
144 response
->data
.name
.name
,
145 (enum lsa_SidType
)response
->data
.name
.type
);
148 static void lookupsid_recv(TALLOC_CTX
*mem_ctx
, bool success
,
149 struct winbindd_response
*response
,
150 void *c
, void *private_data
)
152 void (*cont
)(void *priv
, bool succ
, const char *dom_name
,
153 const char *name
, enum lsa_SidType type
) =
154 (void (*)(void *, bool, const char *, const char *,
156 struct lookupsid_state
*s
= talloc_get_type_abort(private_data
,
157 struct lookupsid_state
);
160 DEBUG(5, ("Could not trigger lookupsid\n"));
161 cont(s
->caller_private_data
, False
, NULL
, NULL
, SID_NAME_UNKNOWN
);
165 if (response
->result
!= WINBINDD_OK
) {
166 /* Try again using the forest root */
167 struct winbindd_domain
*root_domain
= find_root_domain();
168 struct winbindd_request request
;
170 if ( !root_domain
) {
171 DEBUG(5,("lookupsid_recv: unable to determine forest root\n"));
172 cont(s
->caller_private_data
, False
, NULL
, NULL
, SID_NAME_UNKNOWN
);
176 ZERO_STRUCT(request
);
177 request
.cmd
= WINBINDD_LOOKUPSID
;
178 sid_to_fstring(request
.data
.sid
, &s
->sid
);
180 do_async_domain(mem_ctx
, root_domain
, &request
, lookupsid_recv2
,
186 cont(s
->caller_private_data
, True
, response
->data
.name
.dom_name
,
187 response
->data
.name
.name
,
188 (enum lsa_SidType
)response
->data
.name
.type
);
191 void winbindd_lookupsid_async(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
192 void (*cont
)(void *private_data
, bool success
,
193 const char *dom_name
,
195 enum lsa_SidType type
),
198 struct winbindd_domain
*domain
;
199 struct winbindd_request request
;
200 struct lookupsid_state
*s
;
202 domain
= find_lookup_domain_from_sid(sid
);
203 if (domain
== NULL
) {
204 DEBUG(5, ("Could not find domain for sid %s\n",
205 sid_string_dbg(sid
)));
206 cont(private_data
, False
, NULL
, NULL
, SID_NAME_UNKNOWN
);
210 ZERO_STRUCT(request
);
211 request
.cmd
= WINBINDD_LOOKUPSID
;
212 sid_to_fstring(request
.data
.sid
, sid
);
214 if ( (s
= TALLOC_ZERO_P(mem_ctx
, struct lookupsid_state
)) == NULL
) {
215 DEBUG(0, ("winbindd_lookupsid_async: talloc failed\n"));
216 cont(private_data
, False
, NULL
, NULL
, SID_NAME_UNKNOWN
);
220 sid_copy( &s
->sid
, sid
);
221 s
->caller_private_data
= private_data
;
223 do_async_domain(mem_ctx
, domain
, &request
, lookupsid_recv
,
227 enum winbindd_result
winbindd_dual_lookupsid(struct winbindd_domain
*domain
,
228 struct winbindd_cli_state
*state
)
230 enum lsa_SidType type
;
235 /* Ensure null termination */
236 state
->request
->data
.sid
[sizeof(state
->request
->data
.sid
)-1]='\0';
238 DEBUG(3, ("[%5lu]: lookupsid %s\n", (unsigned long)state
->pid
,
239 state
->request
->data
.sid
));
241 /* Lookup sid from PDC using lsa_lookup_sids() */
243 if (!string_to_sid(&sid
, state
->request
->data
.sid
)) {
244 DEBUG(5, ("%s not a SID\n", state
->request
->data
.sid
));
245 return WINBINDD_ERROR
;
250 if (!winbindd_lookup_name_by_sid(state
->mem_ctx
, domain
, &sid
,
251 &dom_name
, &name
, &type
))
253 TALLOC_FREE(dom_name
);
255 return WINBINDD_ERROR
;
258 fstrcpy(state
->response
->data
.name
.dom_name
, dom_name
);
259 fstrcpy(state
->response
->data
.name
.name
, name
);
260 state
->response
->data
.name
.type
= type
;
262 TALLOC_FREE(dom_name
);
267 /********************************************************************
268 This is the second callback after contacting the forest root
269 ********************************************************************/
271 struct lookupname_state
{
274 void *caller_private_data
;
278 static void lookupname_recv2(TALLOC_CTX
*mem_ctx
, bool success
,
279 struct winbindd_response
*response
,
280 void *c
, void *private_data
)
282 void (*cont
)(void *priv
, bool succ
, const DOM_SID
*sid
,
283 enum lsa_SidType type
) =
284 (void (*)(void *, bool, const DOM_SID
*, enum lsa_SidType
))c
;
286 struct lookupname_state
*s
= talloc_get_type_abort( private_data
,
287 struct lookupname_state
);
290 DEBUG(5, ("Could not trigger lookup_name\n"));
291 cont(s
->caller_private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
295 if (response
->result
!= WINBINDD_OK
) {
296 DEBUG(5, ("lookup_name returned an error\n"));
297 cont(s
->caller_private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
301 if (!string_to_sid(&sid
, response
->data
.sid
.sid
)) {
302 DEBUG(0, ("Could not convert string %s to sid\n",
303 response
->data
.sid
.sid
));
304 cont(s
->caller_private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
308 cont(s
->caller_private_data
, True
, &sid
,
309 (enum lsa_SidType
)response
->data
.sid
.type
);
312 /********************************************************************
313 This is the first callback after contacting our own domain
314 ********************************************************************/
316 static void lookupname_recv(TALLOC_CTX
*mem_ctx
, bool success
,
317 struct winbindd_response
*response
,
318 void *c
, void *private_data
)
320 void (*cont
)(void *priv
, bool succ
, const DOM_SID
*sid
,
321 enum lsa_SidType type
) =
322 (void (*)(void *, bool, const DOM_SID
*, enum lsa_SidType
))c
;
324 struct lookupname_state
*s
= talloc_get_type_abort( private_data
,
325 struct lookupname_state
);
328 DEBUG(5, ("lookupname_recv: lookup_name() failed!\n"));
329 cont(s
->caller_private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
333 if (response
->result
!= WINBINDD_OK
) {
334 /* Try again using the forest root */
335 struct winbindd_domain
*root_domain
= find_root_domain();
336 struct winbindd_request request
;
338 if ( !root_domain
) {
339 DEBUG(5,("lookupname_recv: unable to determine forest root\n"));
340 cont(s
->caller_private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
344 ZERO_STRUCT(request
);
345 request
.cmd
= WINBINDD_LOOKUPNAME
;
347 fstrcpy( request
.data
.name
.dom_name
, s
->dom_name
);
348 fstrcpy( request
.data
.name
.name
, s
->name
);
350 do_async_domain(mem_ctx
, root_domain
, &request
, lookupname_recv2
,
356 if (!string_to_sid(&sid
, response
->data
.sid
.sid
)) {
357 DEBUG(0, ("Could not convert string %s to sid\n",
358 response
->data
.sid
.sid
));
359 cont(s
->caller_private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
363 cont(s
->caller_private_data
, True
, &sid
,
364 (enum lsa_SidType
)response
->data
.sid
.type
);
367 /********************************************************************
368 The lookup name call first contacts a DC in its own domain
369 and fallbacks to contact a DC if the forest in our domain doesn't
371 ********************************************************************/
373 void winbindd_lookupname_async(TALLOC_CTX
*mem_ctx
,
374 const char *dom_name
, const char *name
,
375 void (*cont
)(void *private_data
, bool success
,
377 enum lsa_SidType type
),
378 enum winbindd_cmd orig_cmd
,
381 struct winbindd_request request
;
382 struct winbindd_domain
*domain
;
383 struct lookupname_state
*s
;
385 domain
= find_lookup_domain_from_name(dom_name
);
386 if (domain
== NULL
) {
387 DEBUG(5, ("Could not find domain for name '%s'\n", dom_name
));
388 cont(private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
392 ZERO_STRUCT(request
);
393 request
.cmd
= WINBINDD_LOOKUPNAME
;
394 request
.original_cmd
= orig_cmd
;
395 fstrcpy(request
.data
.name
.dom_name
, dom_name
);
396 fstrcpy(request
.data
.name
.name
, name
);
398 if ( (s
= TALLOC_ZERO_P(mem_ctx
, struct lookupname_state
)) == NULL
) {
399 DEBUG(0, ("winbindd_lookupname_async: talloc failed\n"));
400 cont(private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
404 s
->dom_name
= talloc_strdup( s
, dom_name
);
405 s
->name
= talloc_strdup( s
, name
);
406 if (!s
->dom_name
|| !s
->name
) {
407 cont(private_data
, False
, NULL
, SID_NAME_UNKNOWN
);
411 s
->caller_private_data
= private_data
;
413 do_async_domain(mem_ctx
, domain
, &request
, lookupname_recv
,
417 enum winbindd_result
winbindd_dual_lookupname(struct winbindd_domain
*domain
,
418 struct winbindd_cli_state
*state
)
420 enum lsa_SidType type
;
421 char *name_domain
, *name_user
;
425 /* Ensure null termination */
426 state
->request
->data
.name
.dom_name
[sizeof(state
->request
->data
.name
.dom_name
)-1]='\0';
428 /* Ensure null termination */
429 state
->request
->data
.name
.name
[sizeof(state
->request
->data
.name
.name
)-1]='\0';
431 /* cope with the name being a fully qualified name */
432 p
= strstr(state
->request
->data
.name
.name
, lp_winbind_separator());
435 name_domain
= state
->request
->data
.name
.name
;
438 name_domain
= state
->request
->data
.name
.dom_name
;
439 name_user
= state
->request
->data
.name
.name
;
442 DEBUG(3, ("[%5lu]: lookupname %s%s%s\n", (unsigned long)state
->pid
,
443 name_domain
, lp_winbind_separator(), name_user
));
445 /* Lookup name from DC using lsa_lookup_names() */
446 if (!winbindd_lookup_sid_by_name(state
->mem_ctx
, state
->request
->original_cmd
, domain
, name_domain
,
447 name_user
, &sid
, &type
)) {
448 return WINBINDD_ERROR
;
451 sid_to_fstring(state
->response
->data
.sid
.sid
, &sid
);
452 state
->response
->data
.sid
.type
= type
;
457 bool print_sidlist(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sids
,
458 size_t num_sids
, char **result
, ssize_t
*len
)
465 for (i
=0; i
<num_sids
; i
++) {
467 sprintf_append(mem_ctx
, result
, len
, &buflen
,
468 "%s\n", sid_to_fstring(tmp
, &sids
[i
]));
471 if ((num_sids
!= 0) && (*result
== NULL
)) {
478 bool parse_sidlist(TALLOC_CTX
*mem_ctx
, const char *sidstr
,
479 DOM_SID
**sids
, size_t *num_sids
)
487 while (p
[0] != '\0') {
493 DEBUG(0, ("Got invalid sidstr: %s\n", p
));
496 sidlen
= PTR_DIFF(q
, p
);
497 if (sidlen
>= sizeof(tmp
)-1) {
500 memcpy(tmp
, p
, sidlen
);
503 if (!string_to_sid(&sid
, tmp
)) {
504 DEBUG(0, ("Could not parse sid %s\n", p
));
507 if (!NT_STATUS_IS_OK(add_sid_to_array(mem_ctx
, &sid
, sids
,
517 static void getsidaliases_recv(TALLOC_CTX
*mem_ctx
, bool success
,
518 struct winbindd_response
*response
,
519 void *c
, void *private_data
)
521 void (*cont
)(void *priv
, bool succ
,
522 DOM_SID
*aliases
, size_t num_aliases
) =
523 (void (*)(void *, bool, DOM_SID
*, size_t))c
;
525 DOM_SID
*sids
= NULL
;
529 DEBUG(5, ("Could not trigger getsidaliases\n"));
530 cont(private_data
, success
, NULL
, 0);
534 if (response
->result
!= WINBINDD_OK
) {
535 DEBUG(5, ("getsidaliases returned an error\n"));
536 cont(private_data
, False
, NULL
, 0);
540 aliases_str
= (char *)response
->extra_data
.data
;
542 if (aliases_str
== NULL
) {
543 DEBUG(10, ("getsidaliases return 0 SIDs\n"));
544 cont(private_data
, True
, NULL
, 0);
548 if (!parse_sidlist(mem_ctx
, aliases_str
, &sids
, &num_sids
)) {
549 DEBUG(0, ("Could not parse sids\n"));
550 cont(private_data
, False
, NULL
, 0);
554 cont(private_data
, True
, sids
, num_sids
);
557 void winbindd_getsidaliases_async(struct winbindd_domain
*domain
,
559 const DOM_SID
*sids
, size_t num_sids
,
560 void (*cont
)(void *private_data
,
562 const DOM_SID
*aliases
,
566 struct winbindd_request request
;
571 cont(private_data
, True
, NULL
, 0);
575 if (!print_sidlist(mem_ctx
, sids
, num_sids
, &sidstr
, &len
)) {
576 cont(private_data
, False
, NULL
, 0);
580 ZERO_STRUCT(request
);
581 request
.cmd
= WINBINDD_DUAL_GETSIDALIASES
;
582 request
.extra_len
= len
;
583 request
.extra_data
.data
= sidstr
;
585 do_async_domain(mem_ctx
, domain
, &request
, getsidaliases_recv
,
586 (void *)cont
, private_data
);
589 static void query_user_recv(TALLOC_CTX
*mem_ctx
, bool success
,
590 struct winbindd_response
*response
,
591 void *c
, void *private_data
)
593 void (*cont
)(void *priv
, bool succ
, const char *acct_name
,
594 const char *full_name
, const char *homedir
,
595 const char *shell
, uint32 gid
, uint32 group_rid
) =
596 (void (*)(void *, bool, const char *, const char *,
597 const char *, const char *, uint32
, uint32
))c
;
600 DEBUG(5, ("Could not trigger query_user\n"));
601 cont(private_data
, False
, NULL
, NULL
, NULL
, NULL
, -1, -1);
605 if (response
->result
!= WINBINDD_OK
) {
606 DEBUG(5, ("query_user returned an error\n"));
607 cont(private_data
, False
, NULL
, NULL
, NULL
, NULL
, -1, -1);
611 cont(private_data
, True
, response
->data
.user_info
.acct_name
,
612 response
->data
.user_info
.full_name
,
613 response
->data
.user_info
.homedir
,
614 response
->data
.user_info
.shell
,
615 response
->data
.user_info
.primary_gid
,
616 response
->data
.user_info
.group_rid
);
619 void query_user_async(TALLOC_CTX
*mem_ctx
, struct winbindd_domain
*domain
,
621 void (*cont
)(void *private_data
, bool success
,
622 const char *acct_name
,
623 const char *full_name
,
630 struct winbindd_request request
;
631 ZERO_STRUCT(request
);
632 request
.cmd
= WINBINDD_DUAL_USERINFO
;
633 sid_to_fstring(request
.data
.sid
, sid
);
634 do_async_domain(mem_ctx
, domain
, &request
, query_user_recv
,
635 (void *)cont
, private_data
);
638 enum winbindd_result
winbindd_dual_ping(struct winbindd_domain
*domain
,
639 struct winbindd_cli_state
*state
)