2 Unix SMB/CIFS implementation.
6 Copyright (C) Andrew Tridgell 2002
7 Copyright (C) Volker Lendecke 2004,2005
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * We fork a child per domain to be able to act non-blocking in the main
25 * winbind daemon. A domain controller thousands of miles away being being
26 * slow replying with a 10.000 user list should not hold up netlogon calls
27 * that can be handled locally.
32 #include "../../nsswitch/libwbclient/wbc_async.h"
35 #define DBGC_CLASS DBGC_WINBIND
37 extern bool override_logfile
;
38 extern struct winbindd_methods cache_methods
;
40 /* Read some data from a client connection */
42 static NTSTATUS
child_read_request(struct winbindd_cli_state
*state
)
48 status
= read_data(state
->sock
, (char *)state
->request
,
49 sizeof(*state
->request
));
51 if (!NT_STATUS_IS_OK(status
)) {
52 DEBUG(3, ("child_read_request: read_data failed: %s\n",
57 if (state
->request
->extra_len
== 0) {
58 state
->request
->extra_data
.data
= NULL
;
62 DEBUG(10, ("Need to read %d extra bytes\n", (int)state
->request
->extra_len
));
64 state
->request
->extra_data
.data
=
65 SMB_MALLOC_ARRAY(char, state
->request
->extra_len
+ 1);
67 if (state
->request
->extra_data
.data
== NULL
) {
68 DEBUG(0, ("malloc failed\n"));
69 return NT_STATUS_NO_MEMORY
;
72 /* Ensure null termination */
73 state
->request
->extra_data
.data
[state
->request
->extra_len
] = '\0';
75 status
= read_data(state
->sock
, state
->request
->extra_data
.data
,
76 state
->request
->extra_len
);
78 if (!NT_STATUS_IS_OK(status
)) {
79 DEBUG(0, ("Could not read extra data: %s\n",
86 * Do winbind child async request. This is not simply wb_simple_trans. We have
87 * to do the queueing ourselves because while a request is queued, the child
88 * might have crashed, and we have to re-fork it in the _trigger function.
91 struct wb_child_request_state
{
92 struct tevent_context
*ev
;
93 struct winbindd_child
*child
;
94 struct winbindd_request
*request
;
95 struct winbindd_response
*response
;
98 static bool fork_domain_child(struct winbindd_child
*child
);
100 static void wb_child_request_trigger(struct tevent_req
*req
,
102 static void wb_child_request_done(struct tevent_req
*subreq
);
104 struct tevent_req
*wb_child_request_send(TALLOC_CTX
*mem_ctx
,
105 struct tevent_context
*ev
,
106 struct winbindd_child
*child
,
107 struct winbindd_request
*request
)
109 struct tevent_req
*req
;
110 struct wb_child_request_state
*state
;
112 req
= tevent_req_create(mem_ctx
, &state
,
113 struct wb_child_request_state
);
119 state
->child
= child
;
120 state
->request
= request
;
122 if (!tevent_queue_add(child
->queue
, ev
, req
,
123 wb_child_request_trigger
, NULL
)) {
124 tevent_req_nomem(NULL
, req
);
125 return tevent_req_post(req
, ev
);
130 static void wb_child_request_trigger(struct tevent_req
*req
,
133 struct wb_child_request_state
*state
= tevent_req_data(
134 req
, struct wb_child_request_state
);
135 struct tevent_req
*subreq
;
137 if ((state
->child
->pid
== 0) && (!fork_domain_child(state
->child
))) {
138 tevent_req_error(req
, errno
);
142 subreq
= wb_simple_trans_send(state
, winbind_event_context(), NULL
,
143 state
->child
->sock
, state
->request
);
144 if (tevent_req_nomem(subreq
, req
)) {
147 tevent_req_set_callback(subreq
, wb_child_request_done
, req
);
149 if (!tevent_req_set_endtime(req
, state
->ev
,
150 timeval_current_ofs(300, 0))) {
151 tevent_req_nomem(NULL
, req
);
156 static void wb_child_request_done(struct tevent_req
*subreq
)
158 struct tevent_req
*req
= tevent_req_callback_data(
159 subreq
, struct tevent_req
);
160 struct wb_child_request_state
*state
= tevent_req_data(
161 req
, struct wb_child_request_state
);
164 ret
= wb_simple_trans_recv(subreq
, state
, &state
->response
, &err
);
167 tevent_req_error(req
, err
);
170 tevent_req_done(req
);
173 int wb_child_request_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
174 struct winbindd_response
**presponse
, int *err
)
176 struct wb_child_request_state
*state
= tevent_req_data(
177 req
, struct wb_child_request_state
);
179 if (tevent_req_is_unix_error(req
, err
)) {
182 *presponse
= talloc_move(mem_ctx
, &state
->response
);
186 struct wb_domain_request_state
{
187 struct tevent_context
*ev
;
188 struct winbindd_domain
*domain
;
189 struct winbindd_request
*request
;
190 struct winbindd_request
*init_req
;
191 struct winbindd_response
*response
;
194 static void wb_domain_request_gotdc(struct tevent_req
*subreq
);
195 static void wb_domain_request_initialized(struct tevent_req
*subreq
);
196 static void wb_domain_request_done(struct tevent_req
*subreq
);
198 struct tevent_req
*wb_domain_request_send(TALLOC_CTX
*mem_ctx
,
199 struct tevent_context
*ev
,
200 struct winbindd_domain
*domain
,
201 struct winbindd_request
*request
)
203 struct tevent_req
*req
, *subreq
;
204 struct wb_domain_request_state
*state
;
206 req
= tevent_req_create(mem_ctx
, &state
,
207 struct wb_domain_request_state
);
212 if (domain
->initialized
) {
213 subreq
= wb_child_request_send(state
, ev
, &domain
->child
,
215 if (tevent_req_nomem(subreq
, req
)) {
216 return tevent_req_post(req
, ev
);
218 tevent_req_set_callback(subreq
, wb_domain_request_done
, req
);
222 state
->domain
= domain
;
224 state
->request
= request
;
226 state
->init_req
= talloc_zero(state
, struct winbindd_request
);
227 if (tevent_req_nomem(state
->init_req
, req
)) {
228 return tevent_req_post(req
, ev
);
231 if (IS_DC
|| domain
->primary
|| domain
->internal
) {
232 /* The primary domain has to find the DC name itself */
233 state
->init_req
->cmd
= WINBINDD_INIT_CONNECTION
;
234 fstrcpy(state
->init_req
->domain_name
, domain
->name
);
235 state
->init_req
->data
.init_conn
.is_primary
=
236 domain
->primary
? true : false;
237 fstrcpy(state
->init_req
->data
.init_conn
.dcname
, "");
239 subreq
= wb_child_request_send(state
, ev
, &domain
->child
,
241 if (tevent_req_nomem(subreq
, req
)) {
242 return tevent_req_post(req
, ev
);
244 tevent_req_set_callback(subreq
, wb_domain_request_initialized
,
250 * Ask our DC for a DC name
252 domain
= find_our_domain();
254 /* This is *not* the primary domain, let's ask our DC about a DC
257 state
->init_req
->cmd
= WINBINDD_GETDCNAME
;
258 fstrcpy(state
->init_req
->domain_name
, domain
->name
);
260 subreq
= wb_child_request_send(state
, ev
, &domain
->child
, request
);
261 if (tevent_req_nomem(subreq
, req
)) {
262 return tevent_req_post(req
, ev
);
264 tevent_req_set_callback(subreq
, wb_domain_request_gotdc
, req
);
268 static void wb_domain_request_gotdc(struct tevent_req
*subreq
)
270 struct tevent_req
*req
= tevent_req_callback_data(
271 subreq
, struct tevent_req
);
272 struct wb_domain_request_state
*state
= tevent_req_data(
273 req
, struct wb_domain_request_state
);
274 struct winbindd_response
*response
;
277 ret
= wb_child_request_recv(subreq
, talloc_tos(), &response
, &err
);
280 tevent_req_error(req
, err
);
283 state
->init_req
->cmd
= WINBINDD_INIT_CONNECTION
;
284 fstrcpy(state
->init_req
->domain_name
, state
->domain
->name
);
285 state
->init_req
->data
.init_conn
.is_primary
= False
;
286 fstrcpy(state
->init_req
->data
.init_conn
.dcname
,
287 response
->data
.dc_name
);
289 TALLOC_FREE(response
);
291 subreq
= wb_child_request_send(state
, state
->ev
, &state
->domain
->child
,
293 if (tevent_req_nomem(subreq
, req
)) {
296 tevent_req_set_callback(subreq
, wb_domain_request_initialized
, req
);
299 static void wb_domain_request_initialized(struct tevent_req
*subreq
)
301 struct tevent_req
*req
= tevent_req_callback_data(
302 subreq
, struct tevent_req
);
303 struct wb_domain_request_state
*state
= tevent_req_data(
304 req
, struct wb_domain_request_state
);
305 struct winbindd_response
*response
;
308 ret
= wb_child_request_recv(subreq
, talloc_tos(), &response
, &err
);
311 tevent_req_error(req
, err
);
315 if (!string_to_sid(&state
->domain
->sid
,
316 response
->data
.domain_info
.sid
)) {
317 DEBUG(1,("init_child_recv: Could not convert sid %s "
318 "from string\n", response
->data
.domain_info
.sid
));
319 tevent_req_error(req
, EINVAL
);
322 fstrcpy(state
->domain
->name
, response
->data
.domain_info
.name
);
323 fstrcpy(state
->domain
->alt_name
, response
->data
.domain_info
.alt_name
);
324 state
->domain
->native_mode
= response
->data
.domain_info
.native_mode
;
325 state
->domain
->active_directory
=
326 response
->data
.domain_info
.active_directory
;
327 state
->domain
->initialized
= true;
329 TALLOC_FREE(response
);
331 subreq
= wb_child_request_send(state
, state
->ev
, &state
->domain
->child
,
333 if (tevent_req_nomem(subreq
, req
)) {
336 tevent_req_set_callback(subreq
, wb_domain_request_done
, req
);
339 static void wb_domain_request_done(struct tevent_req
*subreq
)
341 struct tevent_req
*req
= tevent_req_callback_data(
342 subreq
, struct tevent_req
);
343 struct wb_domain_request_state
*state
= tevent_req_data(
344 req
, struct wb_domain_request_state
);
347 ret
= wb_child_request_recv(subreq
, talloc_tos(), &state
->response
,
351 tevent_req_error(req
, err
);
354 tevent_req_done(req
);
357 int wb_domain_request_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
358 struct winbindd_response
**presponse
, int *err
)
360 struct wb_domain_request_state
*state
= tevent_req_data(
361 req
, struct wb_domain_request_state
);
363 if (tevent_req_is_unix_error(req
, err
)) {
366 *presponse
= talloc_move(mem_ctx
, &state
->response
);
371 * Machinery for async requests sent to children. You set up a
372 * winbindd_request, select a child to query, and issue a async_request
373 * call. When the request is completed, the callback function you specified is
374 * called back with the private pointer you gave to async_request.
377 struct winbindd_async_request
{
378 struct winbindd_async_request
*next
, *prev
;
380 struct winbindd_child
*child
;
381 struct winbindd_response
*response
;
382 void (*continuation
)(void *private_data
, bool success
);
383 struct timed_event
*reply_timeout_event
;
384 pid_t child_pid
; /* pid of the child we're waiting on. Used to detect
385 a restart of the child (child->pid != child_pid). */
389 static void async_request_done(struct tevent_req
*req
);
391 void async_request(TALLOC_CTX
*mem_ctx
, struct winbindd_child
*child
,
392 struct winbindd_request
*request
,
393 struct winbindd_response
*response
,
394 void (*continuation
)(void *private_data
, bool success
),
397 struct winbindd_async_request
*state
;
398 struct tevent_req
*req
;
400 DEBUG(10, ("Sending request to child pid %d (domain=%s)\n",
402 (child
->domain
!= NULL
) ? child
->domain
->name
: "''"));
404 state
= talloc(mem_ctx
, struct winbindd_async_request
);
406 DEBUG(0, ("talloc failed\n"));
407 continuation(private_data
, False
);
411 state
->mem_ctx
= mem_ctx
;
412 state
->child
= child
;
413 state
->reply_timeout_event
= NULL
;
414 state
->response
= response
;
415 state
->continuation
= continuation
;
416 state
->private_data
= private_data
;
418 request
->pid
= child
->pid
;
420 req
= wb_child_request_send(state
, winbind_event_context(),
423 DEBUG(0, ("wb_child_request_send failed\n"));
424 continuation(private_data
, false);
427 tevent_req_set_callback(req
, async_request_done
, state
);
430 static void async_request_done(struct tevent_req
*req
)
432 struct winbindd_async_request
*state
= tevent_req_callback_data(
433 req
, struct winbindd_async_request
);
434 struct winbindd_response
*response
;
437 ret
= wb_child_request_recv(req
, state
, &response
, &err
);
440 DEBUG(2, ("wb_child_request_recv failed: %s\n",
442 state
->continuation(state
->private_data
, false);
445 *state
->response
= *response
;
446 state
->continuation(state
->private_data
, true);
449 struct domain_request_state
{
450 struct winbindd_domain
*domain
;
451 struct winbindd_request
*request
;
452 struct winbindd_response
*response
;
453 void (*continuation
)(void *private_data_data
, bool success
);
454 void *private_data_data
;
457 static void async_domain_request_done(struct tevent_req
*req
);
459 void async_domain_request(TALLOC_CTX
*mem_ctx
,
460 struct winbindd_domain
*domain
,
461 struct winbindd_request
*request
,
462 struct winbindd_response
*response
,
463 void (*continuation
)(void *private_data_data
, bool success
),
464 void *private_data_data
)
466 struct tevent_req
*subreq
;
467 struct domain_request_state
*state
;
469 state
= TALLOC_P(mem_ctx
, struct domain_request_state
);
471 DEBUG(0, ("talloc failed\n"));
472 continuation(private_data_data
, False
);
476 state
->domain
= domain
;
477 state
->request
= request
;
478 state
->response
= response
;
479 state
->continuation
= continuation
;
480 state
->private_data_data
= private_data_data
;
482 subreq
= wb_domain_request_send(state
, winbind_event_context(),
484 if (subreq
== NULL
) {
485 DEBUG(5, ("wb_domain_request_send failed\n"));
486 continuation(private_data_data
, false);
489 tevent_req_set_callback(subreq
, async_domain_request_done
, state
);
492 static void async_domain_request_done(struct tevent_req
*req
)
494 struct domain_request_state
*state
= tevent_req_callback_data(
495 req
, struct domain_request_state
);
496 struct winbindd_response
*response
;
499 ret
= wb_domain_request_recv(req
, state
, &response
, &err
);
502 DEBUG(5, ("wb_domain_request returned %s\n", strerror(err
)));
503 state
->continuation(state
->private_data_data
, false);
506 *(state
->response
) = *response
;
507 state
->continuation(state
->private_data_data
, true);
510 static void recvfrom_child(void *private_data_data
, bool success
)
512 struct winbindd_cli_state
*state
=
513 talloc_get_type_abort(private_data_data
, struct winbindd_cli_state
);
514 enum winbindd_result result
= state
->response
->result
;
516 /* This is an optimization: The child has written directly to the
517 * response buffer. The request itself is still in pending state,
518 * state that in the result code. */
520 state
->response
->result
= WINBINDD_PENDING
;
522 if ((!success
) || (result
!= WINBINDD_OK
)) {
523 request_error(state
);
530 void sendto_child(struct winbindd_cli_state
*state
,
531 struct winbindd_child
*child
)
533 async_request(state
->mem_ctx
, child
, state
->request
,
534 state
->response
, recvfrom_child
, state
);
537 void sendto_domain(struct winbindd_cli_state
*state
,
538 struct winbindd_domain
*domain
)
540 async_domain_request(state
->mem_ctx
, domain
,
541 state
->request
, state
->response
,
542 recvfrom_child
, state
);
545 static void child_process_request(struct winbindd_child
*child
,
546 struct winbindd_cli_state
*state
)
548 struct winbindd_domain
*domain
= child
->domain
;
549 const struct winbindd_child_dispatch_table
*table
= child
->table
;
551 /* Free response data - we may be interrupted and receive another
552 command before being able to send this data off. */
554 state
->response
->result
= WINBINDD_ERROR
;
555 state
->response
->length
= sizeof(struct winbindd_response
);
557 /* as all requests in the child are sync, we can use talloc_tos() */
558 state
->mem_ctx
= talloc_tos();
560 /* Process command */
562 for (; table
->name
; table
++) {
563 if (state
->request
->cmd
== table
->struct_cmd
) {
564 DEBUG(10,("child_process_request: request fn %s\n",
566 state
->response
->result
= table
->struct_fn(domain
, state
);
571 DEBUG(1 ,("child_process_request: unknown request fn number %d\n",
572 (int)state
->request
->cmd
));
573 state
->response
->result
= WINBINDD_ERROR
;
576 void setup_child(struct winbindd_domain
*domain
, struct winbindd_child
*child
,
577 const struct winbindd_child_dispatch_table
*table
,
578 const char *logprefix
,
581 if (logprefix
&& logname
) {
582 if (asprintf(&child
->logfilename
, "%s/%s-%s",
583 get_dyn_LOGFILEBASE(), logprefix
, logname
) < 0) {
584 smb_panic("Internal error: asprintf failed");
587 smb_panic("Internal error: logprefix == NULL && "
591 child
->domain
= NULL
;
592 child
->table
= table
;
593 child
->queue
= tevent_queue_create(NULL
, "winbind_child");
594 SMB_ASSERT(child
->queue
!= NULL
);
595 child
->rpccli
= wbint_rpccli_create(NULL
, domain
, child
);
596 SMB_ASSERT(child
->rpccli
!= NULL
);
599 struct winbindd_child
*children
= NULL
;
601 void winbind_child_died(pid_t pid
)
603 struct winbindd_child
*child
;
605 for (child
= children
; child
!= NULL
; child
= child
->next
) {
606 if (child
->pid
== pid
) {
612 DEBUG(5, ("Already reaped child %u died\n", (unsigned int)pid
));
616 /* This will be re-added in fork_domain_child() */
618 DLIST_REMOVE(children
, child
);
625 /* Ensure any negative cache entries with the netbios or realm names are removed. */
627 void winbindd_flush_negative_conn_cache(struct winbindd_domain
*domain
)
629 flush_negative_conn_cache_for_domain(domain
->name
);
630 if (*domain
->alt_name
) {
631 flush_negative_conn_cache_for_domain(domain
->alt_name
);
636 * Parent winbindd process sets its own debug level first and then
637 * sends a message to all the winbindd children to adjust their debug
638 * level to that of parents.
641 void winbind_msg_debug(struct messaging_context
*msg_ctx
,
644 struct server_id server_id
,
647 struct winbindd_child
*child
;
649 DEBUG(10,("winbind_msg_debug: got debug message.\n"));
651 debug_message(msg_ctx
, private_data
, MSG_DEBUG
, server_id
, data
);
653 for (child
= children
; child
!= NULL
; child
= child
->next
) {
655 DEBUG(10,("winbind_msg_debug: sending message to pid %u.\n",
656 (unsigned int)child
->pid
));
658 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
661 strlen((char *) data
->data
) + 1);
665 /* Set our domains as offline and forward the offline message to our children. */
667 void winbind_msg_offline(struct messaging_context
*msg_ctx
,
670 struct server_id server_id
,
673 struct winbindd_child
*child
;
674 struct winbindd_domain
*domain
;
676 DEBUG(10,("winbind_msg_offline: got offline message.\n"));
678 if (!lp_winbind_offline_logon()) {
679 DEBUG(10,("winbind_msg_offline: rejecting offline message.\n"));
683 /* Set our global state as offline. */
684 if (!set_global_winbindd_state_offline()) {
685 DEBUG(10,("winbind_msg_offline: offline request failed.\n"));
689 /* Set all our domains as offline. */
690 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
691 if (domain
->internal
) {
694 DEBUG(5,("winbind_msg_offline: marking %s offline.\n", domain
->name
));
695 set_domain_offline(domain
);
698 for (child
= children
; child
!= NULL
; child
= child
->next
) {
699 /* Don't send message to internal childs. We've already
701 if (!child
->domain
|| winbindd_internal_child(child
)) {
705 /* Or internal domains (this should not be possible....) */
706 if (child
->domain
->internal
) {
710 /* Each winbindd child should only process requests for one domain - make sure
711 we only set it online / offline for that domain. */
713 DEBUG(10,("winbind_msg_offline: sending message to pid %u for domain %s.\n",
714 (unsigned int)child
->pid
, domain
->name
));
716 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
718 (uint8
*)child
->domain
->name
,
719 strlen(child
->domain
->name
)+1);
723 /* Set our domains as online and forward the online message to our children. */
725 void winbind_msg_online(struct messaging_context
*msg_ctx
,
728 struct server_id server_id
,
731 struct winbindd_child
*child
;
732 struct winbindd_domain
*domain
;
734 DEBUG(10,("winbind_msg_online: got online message.\n"));
736 if (!lp_winbind_offline_logon()) {
737 DEBUG(10,("winbind_msg_online: rejecting online message.\n"));
741 /* Set our global state as online. */
742 set_global_winbindd_state_online();
744 smb_nscd_flush_user_cache();
745 smb_nscd_flush_group_cache();
747 /* Set all our domains as online. */
748 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
749 if (domain
->internal
) {
752 DEBUG(5,("winbind_msg_online: requesting %s to go online.\n", domain
->name
));
754 winbindd_flush_negative_conn_cache(domain
);
755 set_domain_online_request(domain
);
757 /* Send an online message to the idmap child when our
758 primary domain comes back online */
760 if ( domain
->primary
) {
761 struct winbindd_child
*idmap
= idmap_child();
763 if ( idmap
->pid
!= 0 ) {
764 messaging_send_buf(msg_ctx
,
765 pid_to_procid(idmap
->pid
),
767 (uint8
*)domain
->name
,
768 strlen(domain
->name
)+1);
773 for (child
= children
; child
!= NULL
; child
= child
->next
) {
774 /* Don't send message to internal childs. */
775 if (!child
->domain
|| winbindd_internal_child(child
)) {
779 /* Or internal domains (this should not be possible....) */
780 if (child
->domain
->internal
) {
784 /* Each winbindd child should only process requests for one domain - make sure
785 we only set it online / offline for that domain. */
787 DEBUG(10,("winbind_msg_online: sending message to pid %u for domain %s.\n",
788 (unsigned int)child
->pid
, child
->domain
->name
));
790 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
792 (uint8
*)child
->domain
->name
,
793 strlen(child
->domain
->name
)+1);
797 static const char *collect_onlinestatus(TALLOC_CTX
*mem_ctx
)
799 struct winbindd_domain
*domain
;
802 if ((buf
= talloc_asprintf(mem_ctx
, "global:%s ",
803 get_global_winbindd_state_offline() ?
804 "Offline":"Online")) == NULL
) {
808 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
809 if ((buf
= talloc_asprintf_append_buffer(buf
, "%s:%s ",
812 "Online":"Offline")) == NULL
) {
817 buf
= talloc_asprintf_append_buffer(buf
, "\n");
819 DEBUG(5,("collect_onlinestatus: %s", buf
));
824 void winbind_msg_onlinestatus(struct messaging_context
*msg_ctx
,
827 struct server_id server_id
,
832 struct server_id
*sender
;
834 DEBUG(5,("winbind_msg_onlinestatus received.\n"));
840 sender
= (struct server_id
*)data
->data
;
842 mem_ctx
= talloc_init("winbind_msg_onlinestatus");
843 if (mem_ctx
== NULL
) {
847 message
= collect_onlinestatus(mem_ctx
);
848 if (message
== NULL
) {
849 talloc_destroy(mem_ctx
);
853 messaging_send_buf(msg_ctx
, *sender
, MSG_WINBIND_ONLINESTATUS
,
854 (uint8
*)message
, strlen(message
) + 1);
856 talloc_destroy(mem_ctx
);
859 void winbind_msg_dump_event_list(struct messaging_context
*msg_ctx
,
862 struct server_id server_id
,
865 struct winbindd_child
*child
;
867 DEBUG(10,("winbind_msg_dump_event_list received\n"));
869 dump_event_list(winbind_event_context());
871 for (child
= children
; child
!= NULL
; child
= child
->next
) {
873 DEBUG(10,("winbind_msg_dump_event_list: sending message to pid %u\n",
874 (unsigned int)child
->pid
));
876 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
883 void winbind_msg_dump_domain_list(struct messaging_context
*msg_ctx
,
886 struct server_id server_id
,
890 const char *message
= NULL
;
891 struct server_id
*sender
= NULL
;
892 const char *domain
= NULL
;
895 struct winbindd_domain
*dom
= NULL
;
897 DEBUG(5,("winbind_msg_dump_domain_list received.\n"));
899 if (!data
|| !data
->data
) {
903 if (data
->length
< sizeof(struct server_id
)) {
907 mem_ctx
= talloc_init("winbind_msg_dump_domain_list");
912 sender
= (struct server_id
*)data
->data
;
913 if (data
->length
> sizeof(struct server_id
)) {
914 domain
= (const char *)data
->data
+sizeof(struct server_id
);
919 DEBUG(5,("winbind_msg_dump_domain_list for domain: %s\n",
922 message
= NDR_PRINT_STRUCT_STRING(mem_ctx
, winbindd_domain
,
923 find_domain_from_name_noinit(domain
));
925 talloc_destroy(mem_ctx
);
929 messaging_send_buf(msg_ctx
, *sender
,
930 MSG_WINBIND_DUMP_DOMAIN_LIST
,
931 (uint8_t *)message
, strlen(message
) + 1);
933 talloc_destroy(mem_ctx
);
938 DEBUG(5,("winbind_msg_dump_domain_list all domains\n"));
940 for (dom
= domain_list(); dom
; dom
=dom
->next
) {
941 message
= NDR_PRINT_STRUCT_STRING(mem_ctx
, winbindd_domain
, dom
);
943 talloc_destroy(mem_ctx
);
947 s
= talloc_asprintf_append(s
, "%s\n", message
);
949 talloc_destroy(mem_ctx
);
954 status
= messaging_send_buf(msg_ctx
, *sender
,
955 MSG_WINBIND_DUMP_DOMAIN_LIST
,
956 (uint8_t *)s
, strlen(s
) + 1);
957 if (!NT_STATUS_IS_OK(status
)) {
958 DEBUG(0,("failed to send message: %s\n",
962 talloc_destroy(mem_ctx
);
965 static void account_lockout_policy_handler(struct event_context
*ctx
,
966 struct timed_event
*te
,
970 struct winbindd_child
*child
=
971 (struct winbindd_child
*)private_data
;
972 TALLOC_CTX
*mem_ctx
= NULL
;
973 struct winbindd_methods
*methods
;
974 struct samr_DomInfo12 lockout_policy
;
977 DEBUG(10,("account_lockout_policy_handler called\n"));
979 TALLOC_FREE(child
->lockout_policy_event
);
981 if ( !winbindd_can_contact_domain( child
->domain
) ) {
982 DEBUG(10,("account_lockout_policy_handler: Removing myself since I "
983 "do not have an incoming trust to domain %s\n",
984 child
->domain
->name
));
989 methods
= child
->domain
->methods
;
991 mem_ctx
= talloc_init("account_lockout_policy_handler ctx");
993 result
= NT_STATUS_NO_MEMORY
;
995 result
= methods
->lockout_policy(child
->domain
, mem_ctx
, &lockout_policy
);
997 TALLOC_FREE(mem_ctx
);
999 if (!NT_STATUS_IS_OK(result
)) {
1000 DEBUG(10,("account_lockout_policy_handler: lockout_policy failed error %s\n",
1001 nt_errstr(result
)));
1004 child
->lockout_policy_event
= event_add_timed(winbind_event_context(), NULL
,
1005 timeval_current_ofs(3600, 0),
1006 account_lockout_policy_handler
,
1010 static time_t get_machine_password_timeout(void)
1012 /* until we have gpo support use lp setting */
1013 return lp_machine_password_timeout();
1016 static bool calculate_next_machine_pwd_change(const char *domain
,
1019 time_t pass_last_set_time
;
1024 pw
= secrets_fetch_machine_password(domain
,
1025 &pass_last_set_time
,
1029 DEBUG(0,("cannot fetch own machine password ????"));
1035 timeout
= get_machine_password_timeout();
1037 DEBUG(10,("machine password never expires\n"));
1041 if (time(NULL
) < (pass_last_set_time
+ timeout
)) {
1042 next_change
= pass_last_set_time
+ timeout
;
1043 DEBUG(10,("machine password still valid until: %s\n",
1044 http_timestring(talloc_tos(), next_change
)));
1045 *t
= timeval_set(next_change
, 0);
1049 DEBUG(10,("machine password expired, needs immediate change\n"));
1051 *t
= timeval_zero();
1056 static void machine_password_change_handler(struct event_context
*ctx
,
1057 struct timed_event
*te
,
1061 struct winbindd_child
*child
=
1062 (struct winbindd_child
*)private_data
;
1063 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
1066 struct timeval next_change
;
1068 DEBUG(10,("machine_password_change_handler called\n"));
1070 TALLOC_FREE(child
->machine_password_change_event
);
1072 if (!calculate_next_machine_pwd_change(child
->domain
->name
,
1077 if (!winbindd_can_contact_domain(child
->domain
)) {
1078 DEBUG(10,("machine_password_change_handler: Removing myself since I "
1079 "do not have an incoming trust to domain %s\n",
1080 child
->domain
->name
));
1084 result
= cm_connect_netlogon(child
->domain
, &netlogon_pipe
);
1085 if (!NT_STATUS_IS_OK(result
)) {
1086 DEBUG(10,("machine_password_change_handler: "
1087 "failed to connect netlogon pipe: %s\n",
1088 nt_errstr(result
)));
1092 frame
= talloc_stackframe();
1094 result
= trust_pw_find_change_and_store_it(netlogon_pipe
,
1096 child
->domain
->name
);
1099 if (!NT_STATUS_IS_OK(result
)) {
1100 DEBUG(10,("machine_password_change_handler: "
1101 "failed to change machine password: %s\n",
1102 nt_errstr(result
)));
1104 DEBUG(10,("machine_password_change_handler: "
1105 "successfully changed machine password\n"));
1108 child
->machine_password_change_event
= event_add_timed(winbind_event_context(), NULL
,
1110 machine_password_change_handler
,
1114 /* Deal with a request to go offline. */
1116 static void child_msg_offline(struct messaging_context
*msg
,
1119 struct server_id server_id
,
1122 struct winbindd_domain
*domain
;
1123 struct winbindd_domain
*primary_domain
= NULL
;
1124 const char *domainname
= (const char *)data
->data
;
1126 if (data
->data
== NULL
|| data
->length
== 0) {
1130 DEBUG(5,("child_msg_offline received for domain %s.\n", domainname
));
1132 if (!lp_winbind_offline_logon()) {
1133 DEBUG(10,("child_msg_offline: rejecting offline message.\n"));
1137 primary_domain
= find_our_domain();
1139 /* Mark the requested domain offline. */
1141 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1142 if (domain
->internal
) {
1145 if (strequal(domain
->name
, domainname
)) {
1146 DEBUG(5,("child_msg_offline: marking %s offline.\n", domain
->name
));
1147 set_domain_offline(domain
);
1148 /* we are in the trusted domain, set the primary domain
1150 if (domain
!= primary_domain
) {
1151 set_domain_offline(primary_domain
);
1157 /* Deal with a request to go online. */
1159 static void child_msg_online(struct messaging_context
*msg
,
1162 struct server_id server_id
,
1165 struct winbindd_domain
*domain
;
1166 struct winbindd_domain
*primary_domain
= NULL
;
1167 const char *domainname
= (const char *)data
->data
;
1169 if (data
->data
== NULL
|| data
->length
== 0) {
1173 DEBUG(5,("child_msg_online received for domain %s.\n", domainname
));
1175 if (!lp_winbind_offline_logon()) {
1176 DEBUG(10,("child_msg_online: rejecting online message.\n"));
1180 primary_domain
= find_our_domain();
1182 /* Set our global state as online. */
1183 set_global_winbindd_state_online();
1185 /* Try and mark everything online - delete any negative cache entries
1186 to force a reconnect now. */
1188 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1189 if (domain
->internal
) {
1192 if (strequal(domain
->name
, domainname
)) {
1193 DEBUG(5,("child_msg_online: requesting %s to go online.\n", domain
->name
));
1194 winbindd_flush_negative_conn_cache(domain
);
1195 set_domain_online_request(domain
);
1197 /* we can be in trusted domain, which will contact primary domain
1198 * we have to bring primary domain online in trusted domain process
1199 * see, winbindd_dual_pam_auth() --> winbindd_dual_pam_auth_samlogon()
1200 * --> contact_domain = find_our_domain()
1202 if (domain
!= primary_domain
) {
1203 winbindd_flush_negative_conn_cache(primary_domain
);
1204 set_domain_online_request(primary_domain
);
1210 static void child_msg_dump_event_list(struct messaging_context
*msg
,
1213 struct server_id server_id
,
1216 DEBUG(5,("child_msg_dump_event_list received\n"));
1218 dump_event_list(winbind_event_context());
1221 bool winbindd_reinit_after_fork(const char *logfilename
)
1223 struct winbindd_domain
*domain
;
1224 struct winbindd_child
*cl
;
1226 if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1227 winbind_event_context(),
1229 DEBUG(0,("reinit_after_fork() failed\n"));
1233 close_conns_after_fork();
1235 if (!override_logfile
&& logfilename
) {
1236 lp_set_logfile(logfilename
);
1240 if (!winbindd_setup_sig_term_handler(false))
1242 if (!winbindd_setup_sig_hup_handler(override_logfile
? NULL
:
1246 /* Don't handle the same messages as our parent. */
1247 messaging_deregister(winbind_messaging_context(),
1248 MSG_SMB_CONF_UPDATED
, NULL
);
1249 messaging_deregister(winbind_messaging_context(),
1250 MSG_SHUTDOWN
, NULL
);
1251 messaging_deregister(winbind_messaging_context(),
1252 MSG_WINBIND_OFFLINE
, NULL
);
1253 messaging_deregister(winbind_messaging_context(),
1254 MSG_WINBIND_ONLINE
, NULL
);
1255 messaging_deregister(winbind_messaging_context(),
1256 MSG_WINBIND_ONLINESTATUS
, NULL
);
1257 messaging_deregister(winbind_messaging_context(),
1258 MSG_DUMP_EVENT_LIST
, NULL
);
1259 messaging_deregister(winbind_messaging_context(),
1260 MSG_WINBIND_DUMP_DOMAIN_LIST
, NULL
);
1261 messaging_deregister(winbind_messaging_context(),
1264 /* We have destroyed all events in the winbindd_event_context
1265 * in reinit_after_fork(), so clean out all possible pending
1266 * event pointers. */
1268 /* Deal with check_online_events. */
1270 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1271 TALLOC_FREE(domain
->check_online_event
);
1274 /* Ensure we're not handling a credential cache event inherited
1275 * from our parent. */
1277 ccache_remove_all_after_fork();
1279 /* Destroy all possible events in child list. */
1280 for (cl
= children
; cl
!= NULL
; cl
= cl
->next
) {
1281 TALLOC_FREE(cl
->lockout_policy_event
);
1282 TALLOC_FREE(cl
->machine_password_change_event
);
1284 /* Children should never be able to send
1285 * each other messages, all messages must
1286 * go through the parent.
1291 * This is a little tricky, children must not
1292 * send an MSG_WINBIND_ONLINE message to idmap_child().
1293 * If we are in a child of our primary domain or
1294 * in the process created by fork_child_dc_connect(),
1295 * and the primary domain cannot go online,
1296 * fork_child_dc_connection() sends MSG_WINBIND_ONLINE
1297 * periodically to idmap_child().
1299 * The sequence is, fork_child_dc_connect() ---> getdcs() --->
1300 * get_dc_name_via_netlogon() ---> cm_connect_netlogon()
1301 * ---> init_dc_connection() ---> cm_open_connection --->
1302 * set_domain_online(), sends MSG_WINBIND_ONLINE to
1303 * idmap_child(). Disallow children sending messages
1304 * to each other, all messages must go through the parent.
1313 * In a child there will be only one domain, reference that here.
1315 static struct winbindd_domain
*child_domain
;
1317 struct winbindd_domain
*wb_child_domain(void)
1319 return child_domain
;
1322 static bool fork_domain_child(struct winbindd_child
*child
)
1325 struct winbindd_cli_state state
;
1326 struct winbindd_request request
;
1327 struct winbindd_response response
;
1328 struct winbindd_domain
*primary_domain
= NULL
;
1330 if (child
->domain
) {
1331 DEBUG(10, ("fork_domain_child called for domain '%s'\n",
1332 child
->domain
->name
));
1334 DEBUG(10, ("fork_domain_child called without domain.\n"));
1336 child_domain
= child
->domain
;
1338 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, fdpair
) != 0) {
1339 DEBUG(0, ("Could not open child pipe: %s\n",
1345 state
.pid
= sys_getpid();
1346 state
.request
= &request
;
1347 state
.response
= &response
;
1349 child
->pid
= sys_fork();
1351 if (child
->pid
== -1) {
1352 DEBUG(0, ("Could not fork: %s\n", strerror(errno
)));
1356 if (child
->pid
!= 0) {
1359 child
->next
= child
->prev
= NULL
;
1360 DLIST_ADD(children
, child
);
1361 child
->sock
= fdpair
[1];
1367 DEBUG(10, ("Child process %d\n", (int)sys_getpid()));
1369 /* Stop zombies in children */
1372 state
.sock
= fdpair
[0];
1375 if (!winbindd_reinit_after_fork(child
->logfilename
)) {
1379 /* Handle online/offline messages. */
1380 messaging_register(winbind_messaging_context(), NULL
,
1381 MSG_WINBIND_OFFLINE
, child_msg_offline
);
1382 messaging_register(winbind_messaging_context(), NULL
,
1383 MSG_WINBIND_ONLINE
, child_msg_online
);
1384 messaging_register(winbind_messaging_context(), NULL
,
1385 MSG_DUMP_EVENT_LIST
, child_msg_dump_event_list
);
1386 messaging_register(winbind_messaging_context(), NULL
,
1387 MSG_DEBUG
, debug_message
);
1389 primary_domain
= find_our_domain();
1391 if (primary_domain
== NULL
) {
1392 smb_panic("no primary domain found");
1395 /* It doesn't matter if we allow cache login,
1396 * try to bring domain online after fork. */
1397 if ( child
->domain
) {
1398 child
->domain
->startup
= True
;
1399 child
->domain
->startup_time
= time(NULL
);
1400 /* we can be in primary domain or in trusted domain
1401 * If we are in trusted domain, set the primary domain
1402 * in start-up mode */
1403 if (!(child
->domain
->internal
)) {
1404 set_domain_online_request(child
->domain
);
1405 if (!(child
->domain
->primary
)) {
1406 primary_domain
->startup
= True
;
1407 primary_domain
->startup_time
= time(NULL
);
1408 set_domain_online_request(primary_domain
);
1414 * We are in idmap child, make sure that we set the
1415 * check_online_event to bring primary domain online.
1417 if (child
== idmap_child()) {
1418 set_domain_online_request(primary_domain
);
1421 /* We might be in the idmap child...*/
1422 if (child
->domain
&& !(child
->domain
->internal
) &&
1423 lp_winbind_offline_logon()) {
1425 set_domain_online_request(child
->domain
);
1427 if (primary_domain
&& (primary_domain
!= child
->domain
)) {
1428 /* We need to talk to the primary
1429 * domain as well as the trusted
1430 * domain inside a trusted domain
1433 * set_dc_type_and_flags_trustinfo()
1436 set_domain_online_request(primary_domain
);
1439 child
->lockout_policy_event
= event_add_timed(
1440 winbind_event_context(), NULL
, timeval_zero(),
1441 account_lockout_policy_handler
,
1445 if (child
->domain
&& child
->domain
->primary
&&
1446 !USE_KERBEROS_KEYTAB
&&
1447 lp_server_role() == ROLE_DOMAIN_MEMBER
) {
1449 struct timeval next_change
;
1451 if (calculate_next_machine_pwd_change(child
->domain
->name
,
1453 child
->machine_password_change_event
= event_add_timed(
1454 winbind_event_context(), NULL
, next_change
,
1455 machine_password_change_handler
,
1469 TALLOC_CTX
*frame
= talloc_stackframe();
1470 struct iovec iov
[2];
1474 if (run_events(winbind_event_context(), 0, NULL
, NULL
)) {
1481 if (child
->domain
&& child
->domain
->startup
&&
1482 (now
.tv_sec
> child
->domain
->startup_time
+ 30)) {
1483 /* No longer in "startup" mode. */
1484 DEBUG(10,("fork_domain_child: domain %s no longer in 'startup' mode.\n",
1485 child
->domain
->name
));
1486 child
->domain
->startup
= False
;
1491 FD_SET(state
.sock
, &r_fds
);
1494 event_add_to_select_args(winbind_event_context(), &now
,
1495 &r_fds
, &w_fds
, &t
, &maxfd
);
1496 tp
= get_timed_events_timeout(winbind_event_context(), &t
);
1498 DEBUG(11,("select will use timeout of %u.%u seconds\n",
1499 (unsigned int)tp
->tv_sec
, (unsigned int)tp
->tv_usec
));
1502 ret
= sys_select(maxfd
+ 1, &r_fds
, &w_fds
, NULL
, tp
);
1504 if (run_events(winbind_event_context(), ret
, &r_fds
, &w_fds
)) {
1505 /* We got a signal - continue. */
1511 DEBUG(11,("nothing is ready yet, continue\n"));
1516 if (ret
== -1 && errno
== EINTR
) {
1517 /* We got a signal - continue. */
1522 if (ret
== -1 && errno
!= EINTR
) {
1523 DEBUG(0,("select error occured\n"));
1529 /* fetch a request from the main daemon */
1530 status
= child_read_request(&state
);
1532 if (!NT_STATUS_IS_OK(status
)) {
1533 /* we lost contact with our parent */
1537 DEBUG(4,("child daemon request %d\n", (int)state
.request
->cmd
));
1539 ZERO_STRUCTP(state
.response
);
1540 state
.request
->null_term
= '\0';
1541 state
.mem_ctx
= frame
;
1542 child_process_request(child
, &state
);
1544 DEBUG(4, ("Finished processing child request %d\n",
1545 (int)state
.request
->cmd
));
1547 SAFE_FREE(state
.request
->extra_data
.data
);
1549 iov
[0].iov_base
= (void *)state
.response
;
1550 iov
[0].iov_len
= sizeof(struct winbindd_response
);
1553 if (state
.response
->length
> sizeof(struct winbindd_response
)) {
1555 (void *)state
.response
->extra_data
.data
;
1556 iov
[1].iov_len
= state
.response
->length
-iov
[0].iov_len
;
1560 DEBUG(10, ("Writing %d bytes to parent\n",
1561 (int)state
.response
->length
));
1563 if (write_data_iov(state
.sock
, iov
, iov_count
) !=
1564 state
.response
->length
) {
1565 DEBUG(0, ("Could not write result\n"));