Respect FAMChanged -- attempt to fix bug 5307
[Samba.git] / source / winbindd / winbindd_dual.c
blob2b756b24d17f1a88e5dd9f9b76bf3f34f69e0653
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind child daemons
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.
30 #include "includes.h"
31 #include "winbindd.h"
33 #undef DBGC_CLASS
34 #define DBGC_CLASS DBGC_WINBIND
36 extern bool override_logfile;
37 extern struct winbindd_methods cache_methods;
39 /* Read some data from a client connection */
41 static void child_read_request(struct winbindd_cli_state *state)
43 NTSTATUS status;
45 /* Read data */
47 status = read_data(state->sock, (char *)&state->request,
48 sizeof(state->request));
50 if (!NT_STATUS_IS_OK(status)) {
51 DEBUG(3, ("child_read_request: read_data failed: %s\n",
52 nt_errstr(status)));
53 state->finished = True;
54 return;
57 if (state->request.extra_len == 0) {
58 state->request.extra_data.data = NULL;
59 return;
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 state->finished = True;
70 return;
73 /* Ensure null termination */
74 state->request.extra_data.data[state->request.extra_len] = '\0';
76 status= read_data(state->sock, state->request.extra_data.data,
77 state->request.extra_len);
79 if (!NT_STATUS_IS_OK(status)) {
80 DEBUG(0, ("Could not read extra data: %s\n",
81 nt_errstr(status)));
82 state->finished = True;
83 return;
88 * Machinery for async requests sent to children. You set up a
89 * winbindd_request, select a child to query, and issue a async_request
90 * call. When the request is completed, the callback function you specified is
91 * called back with the private pointer you gave to async_request.
94 struct winbindd_async_request {
95 struct winbindd_async_request *next, *prev;
96 TALLOC_CTX *mem_ctx;
97 struct winbindd_child *child;
98 struct winbindd_request *request;
99 struct winbindd_response *response;
100 void (*continuation)(void *private_data, bool success);
101 struct timed_event *reply_timeout_event;
102 pid_t child_pid; /* pid of the child we're waiting on. Used to detect
103 a restart of the child (child->pid != child_pid). */
104 void *private_data;
107 static void async_main_request_sent(void *private_data, bool success);
108 static void async_request_sent(void *private_data, bool success);
109 static void async_reply_recv(void *private_data, bool success);
110 static void schedule_async_request(struct winbindd_child *child);
112 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
113 struct winbindd_request *request,
114 struct winbindd_response *response,
115 void (*continuation)(void *private_data, bool success),
116 void *private_data)
118 struct winbindd_async_request *state;
120 SMB_ASSERT(continuation != NULL);
122 state = TALLOC_P(mem_ctx, struct winbindd_async_request);
124 if (state == NULL) {
125 DEBUG(0, ("talloc failed\n"));
126 continuation(private_data, False);
127 return;
130 state->mem_ctx = mem_ctx;
131 state->child = child;
132 state->request = request;
133 state->response = response;
134 state->continuation = continuation;
135 state->private_data = private_data;
137 DLIST_ADD_END(child->requests, state, struct winbindd_async_request *);
139 schedule_async_request(child);
141 return;
144 static void async_main_request_sent(void *private_data, bool success)
146 struct winbindd_async_request *state =
147 talloc_get_type_abort(private_data, struct winbindd_async_request);
149 if (!success) {
150 DEBUG(5, ("Could not send async request\n"));
152 state->response->length = sizeof(struct winbindd_response);
153 state->response->result = WINBINDD_ERROR;
154 state->continuation(state->private_data, False);
155 return;
158 if (state->request->extra_len == 0) {
159 async_request_sent(private_data, True);
160 return;
163 setup_async_write(&state->child->event, state->request->extra_data.data,
164 state->request->extra_len,
165 async_request_sent, state);
168 /****************************************************************
169 Handler triggered if the child winbindd doesn't respond within
170 a given timeout.
171 ****************************************************************/
173 static void async_request_timeout_handler(struct event_context *ctx,
174 struct timed_event *te,
175 const struct timeval *now,
176 void *private_data)
178 struct winbindd_async_request *state =
179 talloc_get_type_abort(private_data, struct winbindd_async_request);
181 DEBUG(0,("async_request_timeout_handler: child pid %u is not responding. "
182 "Closing connection to it.\n",
183 state->child_pid ));
185 /* Deal with the reply - set to error. */
186 async_reply_recv(private_data, False);
189 /**************************************************************
190 Common function called on both async send and recv fail.
191 Cleans up the child and schedules the next request.
192 **************************************************************/
194 static void async_request_fail(struct winbindd_async_request *state)
196 DLIST_REMOVE(state->child->requests, state);
198 TALLOC_FREE(state->reply_timeout_event);
200 SMB_ASSERT(state->child_pid != (pid_t)0);
202 /* If not already reaped, send kill signal to child. */
203 if (state->child->pid == state->child_pid) {
204 kill(state->child_pid, SIGTERM);
207 * Close the socket to the child.
209 winbind_child_died(state->child_pid);
212 state->response->length = sizeof(struct winbindd_response);
213 state->response->result = WINBINDD_ERROR;
214 state->continuation(state->private_data, False);
217 static void async_request_sent(void *private_data_data, bool success)
219 struct winbindd_async_request *state =
220 talloc_get_type_abort(private_data_data, struct winbindd_async_request);
222 if (!success) {
223 DEBUG(5, ("Could not send async request to child pid %u\n",
224 (unsigned int)state->child_pid ));
225 async_request_fail(state);
226 return;
229 /* Request successfully sent to the child, setup the wait for reply */
231 setup_async_read(&state->child->event,
232 &state->response->result,
233 sizeof(state->response->result),
234 async_reply_recv, state);
237 * Set up a timeout of 300 seconds for the response.
238 * If we don't get it close the child socket and
239 * report failure.
242 state->reply_timeout_event = event_add_timed(winbind_event_context(),
243 NULL,
244 timeval_current_ofs(300,0),
245 "async_request_timeout",
246 async_request_timeout_handler,
247 state);
248 if (!state->reply_timeout_event) {
249 smb_panic("async_request_sent: failed to add timeout handler.\n");
253 static void async_reply_recv(void *private_data, bool success)
255 struct winbindd_async_request *state =
256 talloc_get_type_abort(private_data, struct winbindd_async_request);
257 struct winbindd_child *child = state->child;
259 TALLOC_FREE(state->reply_timeout_event);
261 state->response->length = sizeof(struct winbindd_response);
263 if (!success) {
264 DEBUG(5, ("Could not receive async reply from child pid %u\n",
265 (unsigned int)state->child_pid ));
267 cache_cleanup_response(state->child_pid);
268 async_request_fail(state);
269 return;
272 SMB_ASSERT(cache_retrieve_response(state->child_pid,
273 state->response));
275 cache_cleanup_response(state->child_pid);
277 DLIST_REMOVE(child->requests, state);
279 schedule_async_request(child);
281 state->continuation(state->private_data, True);
284 static bool fork_domain_child(struct winbindd_child *child);
286 static void schedule_async_request(struct winbindd_child *child)
288 struct winbindd_async_request *request = child->requests;
290 if (request == NULL) {
291 return;
294 if (child->event.flags != 0) {
295 return; /* Busy */
298 if ((child->pid == 0) && (!fork_domain_child(child))) {
299 /* Cancel all outstanding requests */
301 while (request != NULL) {
302 /* request might be free'd in the continuation */
303 struct winbindd_async_request *next = request->next;
304 request->continuation(request->private_data, False);
305 request = next;
307 return;
310 /* Now we know who we're sending to - remember the pid. */
311 request->child_pid = child->pid;
313 setup_async_write(&child->event, request->request,
314 sizeof(*request->request),
315 async_main_request_sent, request);
317 return;
320 struct domain_request_state {
321 TALLOC_CTX *mem_ctx;
322 struct winbindd_domain *domain;
323 struct winbindd_request *request;
324 struct winbindd_response *response;
325 void (*continuation)(void *private_data_data, bool success);
326 void *private_data_data;
329 static void domain_init_recv(void *private_data_data, bool success);
331 void async_domain_request(TALLOC_CTX *mem_ctx,
332 struct winbindd_domain *domain,
333 struct winbindd_request *request,
334 struct winbindd_response *response,
335 void (*continuation)(void *private_data_data, bool success),
336 void *private_data_data)
338 struct domain_request_state *state;
340 if (domain->initialized) {
341 async_request(mem_ctx, &domain->child, request, response,
342 continuation, private_data_data);
343 return;
346 state = TALLOC_P(mem_ctx, struct domain_request_state);
347 if (state == NULL) {
348 DEBUG(0, ("talloc failed\n"));
349 continuation(private_data_data, False);
350 return;
353 state->mem_ctx = mem_ctx;
354 state->domain = domain;
355 state->request = request;
356 state->response = response;
357 state->continuation = continuation;
358 state->private_data_data = private_data_data;
360 init_child_connection(domain, domain_init_recv, state);
363 static void domain_init_recv(void *private_data_data, bool success)
365 struct domain_request_state *state =
366 talloc_get_type_abort(private_data_data, struct domain_request_state);
368 if (!success) {
369 DEBUG(5, ("Domain init returned an error\n"));
370 state->continuation(state->private_data_data, False);
371 return;
374 async_request(state->mem_ctx, &state->domain->child,
375 state->request, state->response,
376 state->continuation, state->private_data_data);
379 static void recvfrom_child(void *private_data_data, bool success)
381 struct winbindd_cli_state *state =
382 talloc_get_type_abort(private_data_data, struct winbindd_cli_state);
383 enum winbindd_result result = state->response.result;
385 /* This is an optimization: The child has written directly to the
386 * response buffer. The request itself is still in pending state,
387 * state that in the result code. */
389 state->response.result = WINBINDD_PENDING;
391 if ((!success) || (result != WINBINDD_OK)) {
392 request_error(state);
393 return;
396 request_ok(state);
399 void sendto_child(struct winbindd_cli_state *state,
400 struct winbindd_child *child)
402 async_request(state->mem_ctx, child, &state->request,
403 &state->response, recvfrom_child, state);
406 void sendto_domain(struct winbindd_cli_state *state,
407 struct winbindd_domain *domain)
409 async_domain_request(state->mem_ctx, domain,
410 &state->request, &state->response,
411 recvfrom_child, state);
414 static void child_process_request(struct winbindd_child *child,
415 struct winbindd_cli_state *state)
417 struct winbindd_domain *domain = child->domain;
418 const struct winbindd_child_dispatch_table *table = child->table;
420 /* Free response data - we may be interrupted and receive another
421 command before being able to send this data off. */
423 state->response.result = WINBINDD_ERROR;
424 state->response.length = sizeof(struct winbindd_response);
426 /* as all requests in the child are sync, we can use talloc_tos() */
427 state->mem_ctx = talloc_tos();
429 /* Process command */
431 for (; table->name; table++) {
432 if (state->request.cmd == table->struct_cmd) {
433 DEBUG(10,("child_process_request: request fn %s\n",
434 table->name));
435 state->response.result = table->struct_fn(domain, state);
436 return;
440 DEBUG(1 ,("child_process_request: unknown request fn number %d\n",
441 (int)state->request.cmd));
442 state->response.result = WINBINDD_ERROR;
445 void setup_child(struct winbindd_child *child,
446 const struct winbindd_child_dispatch_table *table,
447 const char *logprefix,
448 const char *logname)
450 if (logprefix && logname) {
451 if (asprintf(&child->logfilename, "%s/%s-%s",
452 get_dyn_LOGFILEBASE(), logprefix, logname) < 0) {
453 smb_panic("Internal error: asprintf failed");
455 } else {
456 smb_panic("Internal error: logprefix == NULL && "
457 "logname == NULL");
460 child->domain = NULL;
461 child->table = table;
464 struct winbindd_child *children = NULL;
466 void winbind_child_died(pid_t pid)
468 struct winbindd_child *child;
470 for (child = children; child != NULL; child = child->next) {
471 if (child->pid == pid) {
472 break;
476 if (child == NULL) {
477 DEBUG(5, ("Already reaped child %u died\n", (unsigned int)pid));
478 return;
481 remove_fd_event(&child->event);
482 close(child->event.fd);
483 child->event.fd = 0;
484 child->event.flags = 0;
485 child->pid = 0;
487 schedule_async_request(child);
490 /* Ensure any negative cache entries with the netbios or realm names are removed. */
492 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain)
494 flush_negative_conn_cache_for_domain(domain->name);
495 if (*domain->alt_name) {
496 flush_negative_conn_cache_for_domain(domain->alt_name);
500 /* Set our domains as offline and forward the offline message to our children. */
502 void winbind_msg_offline(struct messaging_context *msg_ctx,
503 void *private_data,
504 uint32_t msg_type,
505 struct server_id server_id,
506 DATA_BLOB *data)
508 struct winbindd_child *child;
509 struct winbindd_domain *domain;
511 DEBUG(10,("winbind_msg_offline: got offline message.\n"));
513 if (!lp_winbind_offline_logon()) {
514 DEBUG(10,("winbind_msg_offline: rejecting offline message.\n"));
515 return;
518 /* Set our global state as offline. */
519 if (!set_global_winbindd_state_offline()) {
520 DEBUG(10,("winbind_msg_offline: offline request failed.\n"));
521 return;
524 /* Set all our domains as offline. */
525 for (domain = domain_list(); domain; domain = domain->next) {
526 if (domain->internal) {
527 continue;
529 DEBUG(5,("winbind_msg_offline: marking %s offline.\n", domain->name));
530 set_domain_offline(domain);
533 for (child = children; child != NULL; child = child->next) {
534 /* Don't send message to internal childs. We've already
535 done so above. */
536 if (!child->domain || winbindd_internal_child(child)) {
537 continue;
540 /* Or internal domains (this should not be possible....) */
541 if (child->domain->internal) {
542 continue;
545 /* Each winbindd child should only process requests for one domain - make sure
546 we only set it online / offline for that domain. */
548 DEBUG(10,("winbind_msg_offline: sending message to pid %u for domain %s.\n",
549 (unsigned int)child->pid, domain->name ));
551 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
552 MSG_WINBIND_OFFLINE,
553 (uint8 *)child->domain->name,
554 strlen(child->domain->name)+1);
558 /* Set our domains as online and forward the online message to our children. */
560 void winbind_msg_online(struct messaging_context *msg_ctx,
561 void *private_data,
562 uint32_t msg_type,
563 struct server_id server_id,
564 DATA_BLOB *data)
566 struct winbindd_child *child;
567 struct winbindd_domain *domain;
569 DEBUG(10,("winbind_msg_online: got online message.\n"));
571 if (!lp_winbind_offline_logon()) {
572 DEBUG(10,("winbind_msg_online: rejecting online message.\n"));
573 return;
576 /* Set our global state as online. */
577 set_global_winbindd_state_online();
579 smb_nscd_flush_user_cache();
580 smb_nscd_flush_group_cache();
582 /* Set all our domains as online. */
583 for (domain = domain_list(); domain; domain = domain->next) {
584 if (domain->internal) {
585 continue;
587 DEBUG(5,("winbind_msg_online: requesting %s to go online.\n", domain->name));
589 winbindd_flush_negative_conn_cache(domain);
590 set_domain_online_request(domain);
592 /* Send an online message to the idmap child when our
593 primary domain comes back online */
595 if ( domain->primary ) {
596 struct winbindd_child *idmap = idmap_child();
598 if ( idmap->pid != 0 ) {
599 messaging_send_buf(msg_ctx,
600 pid_to_procid(idmap->pid),
601 MSG_WINBIND_ONLINE,
602 (uint8 *)domain->name,
603 strlen(domain->name)+1);
609 for (child = children; child != NULL; child = child->next) {
610 /* Don't send message to internal childs. */
611 if (!child->domain || winbindd_internal_child(child)) {
612 continue;
615 /* Or internal domains (this should not be possible....) */
616 if (child->domain->internal) {
617 continue;
620 /* Each winbindd child should only process requests for one domain - make sure
621 we only set it online / offline for that domain. */
623 DEBUG(10,("winbind_msg_online: sending message to pid %u for domain %s.\n",
624 (unsigned int)child->pid, child->domain->name ));
626 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
627 MSG_WINBIND_ONLINE,
628 (uint8 *)child->domain->name,
629 strlen(child->domain->name)+1);
633 /* Forward the online/offline messages to our children. */
634 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
635 void *private_data,
636 uint32_t msg_type,
637 struct server_id server_id,
638 DATA_BLOB *data)
640 struct winbindd_child *child;
642 DEBUG(10,("winbind_msg_onlinestatus: got onlinestatus message.\n"));
644 for (child = children; child != NULL; child = child->next) {
645 if (child->domain && child->domain->primary) {
646 DEBUG(10,("winbind_msg_onlinestatus: "
647 "sending message to pid %u of primary domain.\n",
648 (unsigned int)child->pid));
649 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
650 MSG_WINBIND_ONLINESTATUS,
651 (uint8 *)data->data,
652 data->length);
653 break;
658 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
659 void *private_data,
660 uint32_t msg_type,
661 struct server_id server_id,
662 DATA_BLOB *data)
664 struct winbindd_child *child;
666 DEBUG(10,("winbind_msg_dump_event_list received\n"));
668 dump_event_list(winbind_event_context());
670 for (child = children; child != NULL; child = child->next) {
672 DEBUG(10,("winbind_msg_dump_event_list: sending message to pid %u\n",
673 (unsigned int)child->pid));
675 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
676 MSG_DUMP_EVENT_LIST,
677 NULL, 0);
682 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
683 void *private_data,
684 uint32_t msg_type,
685 struct server_id server_id,
686 DATA_BLOB *data)
688 TALLOC_CTX *mem_ctx;
689 const char *message = NULL;
690 struct server_id *sender = NULL;
691 const char *domain = NULL;
692 char *s = NULL;
693 NTSTATUS status;
694 struct winbindd_domain *dom = NULL;
696 DEBUG(5,("winbind_msg_dump_domain_list received.\n"));
698 if (!data || !data->data) {
699 return;
702 if (data->length < sizeof(struct server_id)) {
703 return;
706 mem_ctx = talloc_init("winbind_msg_dump_domain_list");
707 if (!mem_ctx) {
708 return;
711 sender = (struct server_id *)data->data;
712 if (data->length > sizeof(struct server_id)) {
713 domain = (const char *)data->data+sizeof(struct server_id);
716 if (domain) {
718 DEBUG(5,("winbind_msg_dump_domain_list for domain: %s\n",
719 domain));
721 message = NDR_PRINT_STRUCT_STRING(mem_ctx, winbindd_domain,
722 find_domain_from_name_noinit(domain));
723 if (!message) {
724 talloc_destroy(mem_ctx);
725 return;
728 messaging_send_buf(msg_ctx, *sender,
729 MSG_WINBIND_DUMP_DOMAIN_LIST,
730 (uint8_t *)message, strlen(message) + 1);
732 talloc_destroy(mem_ctx);
734 return;
737 DEBUG(5,("winbind_msg_dump_domain_list all domains\n"));
739 for (dom = domain_list(); dom; dom=dom->next) {
740 message = NDR_PRINT_STRUCT_STRING(mem_ctx, winbindd_domain, dom);
741 if (!message) {
742 talloc_destroy(mem_ctx);
743 return;
746 s = talloc_asprintf_append(s, "%s\n", message);
747 if (!s) {
748 talloc_destroy(mem_ctx);
749 return;
753 status = messaging_send_buf(msg_ctx, *sender,
754 MSG_WINBIND_DUMP_DOMAIN_LIST,
755 (uint8_t *)s, strlen(s) + 1);
756 if (!NT_STATUS_IS_OK(status)) {
757 DEBUG(0,("failed to send message: %s\n",
758 nt_errstr(status)));
761 talloc_destroy(mem_ctx);
764 static void account_lockout_policy_handler(struct event_context *ctx,
765 struct timed_event *te,
766 const struct timeval *now,
767 void *private_data)
769 struct winbindd_child *child =
770 (struct winbindd_child *)private_data;
771 TALLOC_CTX *mem_ctx = NULL;
772 struct winbindd_methods *methods;
773 struct samr_DomInfo12 lockout_policy;
774 NTSTATUS result;
776 DEBUG(10,("account_lockout_policy_handler called\n"));
778 TALLOC_FREE(child->lockout_policy_event);
780 if ( !winbindd_can_contact_domain( child->domain ) ) {
781 DEBUG(10,("account_lockout_policy_handler: Removing myself since I "
782 "do not have an incoming trust to domain %s\n",
783 child->domain->name));
785 return;
788 methods = child->domain->methods;
790 mem_ctx = talloc_init("account_lockout_policy_handler ctx");
791 if (!mem_ctx) {
792 result = NT_STATUS_NO_MEMORY;
793 } else {
794 result = methods->lockout_policy(child->domain, mem_ctx, &lockout_policy);
796 TALLOC_FREE(mem_ctx);
798 if (!NT_STATUS_IS_OK(result)) {
799 DEBUG(10,("account_lockout_policy_handler: lockout_policy failed error %s\n",
800 nt_errstr(result)));
803 child->lockout_policy_event = event_add_timed(winbind_event_context(), NULL,
804 timeval_current_ofs(3600, 0),
805 "account_lockout_policy_handler",
806 account_lockout_policy_handler,
807 child);
810 /* Deal with a request to go offline. */
812 static void child_msg_offline(struct messaging_context *msg,
813 void *private_data,
814 uint32_t msg_type,
815 struct server_id server_id,
816 DATA_BLOB *data)
818 struct winbindd_domain *domain;
819 const char *domainname = (const char *)data->data;
821 if (data->data == NULL || data->length == 0) {
822 return;
825 DEBUG(5,("child_msg_offline received for domain %s.\n", domainname));
827 if (!lp_winbind_offline_logon()) {
828 DEBUG(10,("child_msg_offline: rejecting offline message.\n"));
829 return;
832 /* Mark the requested domain offline. */
834 for (domain = domain_list(); domain; domain = domain->next) {
835 if (domain->internal) {
836 continue;
838 if (strequal(domain->name, domainname)) {
839 DEBUG(5,("child_msg_offline: marking %s offline.\n", domain->name));
840 set_domain_offline(domain);
845 /* Deal with a request to go online. */
847 static void child_msg_online(struct messaging_context *msg,
848 void *private_data,
849 uint32_t msg_type,
850 struct server_id server_id,
851 DATA_BLOB *data)
853 struct winbindd_domain *domain;
854 const char *domainname = (const char *)data->data;
856 if (data->data == NULL || data->length == 0) {
857 return;
860 DEBUG(5,("child_msg_online received for domain %s.\n", domainname));
862 if (!lp_winbind_offline_logon()) {
863 DEBUG(10,("child_msg_online: rejecting online message.\n"));
864 return;
867 /* Set our global state as online. */
868 set_global_winbindd_state_online();
870 /* Try and mark everything online - delete any negative cache entries
871 to force a reconnect now. */
873 for (domain = domain_list(); domain; domain = domain->next) {
874 if (domain->internal) {
875 continue;
877 if (strequal(domain->name, domainname)) {
878 DEBUG(5,("child_msg_online: requesting %s to go online.\n", domain->name));
879 winbindd_flush_negative_conn_cache(domain);
880 set_domain_online_request(domain);
885 static const char *collect_onlinestatus(TALLOC_CTX *mem_ctx)
887 struct winbindd_domain *domain;
888 char *buf = NULL;
890 if ((buf = talloc_asprintf(mem_ctx, "global:%s ",
891 get_global_winbindd_state_offline() ?
892 "Offline":"Online")) == NULL) {
893 return NULL;
896 for (domain = domain_list(); domain; domain = domain->next) {
897 if ((buf = talloc_asprintf_append_buffer(buf, "%s:%s ",
898 domain->name,
899 domain->online ?
900 "Online":"Offline")) == NULL) {
901 return NULL;
905 buf = talloc_asprintf_append_buffer(buf, "\n");
907 DEBUG(5,("collect_onlinestatus: %s", buf));
909 return buf;
912 static void child_msg_onlinestatus(struct messaging_context *msg_ctx,
913 void *private_data,
914 uint32_t msg_type,
915 struct server_id server_id,
916 DATA_BLOB *data)
918 TALLOC_CTX *mem_ctx;
919 const char *message;
920 struct server_id *sender;
922 DEBUG(5,("winbind_msg_onlinestatus received.\n"));
924 if (!data->data) {
925 return;
928 sender = (struct server_id *)data->data;
930 mem_ctx = talloc_init("winbind_msg_onlinestatus");
931 if (mem_ctx == NULL) {
932 return;
935 message = collect_onlinestatus(mem_ctx);
936 if (message == NULL) {
937 talloc_destroy(mem_ctx);
938 return;
941 messaging_send_buf(msg_ctx, *sender, MSG_WINBIND_ONLINESTATUS,
942 (uint8 *)message, strlen(message) + 1);
944 talloc_destroy(mem_ctx);
947 static void child_msg_dump_event_list(struct messaging_context *msg,
948 void *private_data,
949 uint32_t msg_type,
950 struct server_id server_id,
951 DATA_BLOB *data)
953 DEBUG(5,("child_msg_dump_event_list received\n"));
955 dump_event_list(winbind_event_context());
959 static bool fork_domain_child(struct winbindd_child *child)
961 int fdpair[2];
962 struct winbindd_cli_state state;
963 struct winbindd_domain *domain;
965 if (child->domain) {
966 DEBUG(10, ("fork_domain_child called for domain '%s'\n",
967 child->domain->name));
968 } else {
969 DEBUG(10, ("fork_domain_child called without domain.\n"));
972 if (socketpair(AF_UNIX, SOCK_STREAM, 0, fdpair) != 0) {
973 DEBUG(0, ("Could not open child pipe: %s\n",
974 strerror(errno)));
975 return False;
978 ZERO_STRUCT(state);
979 state.pid = sys_getpid();
981 /* Stop zombies */
982 CatchChild();
984 child->pid = sys_fork();
986 if (child->pid == -1) {
987 DEBUG(0, ("Could not fork: %s\n", strerror(errno)));
988 return False;
991 if (child->pid != 0) {
992 /* Parent */
993 close(fdpair[0]);
994 child->next = child->prev = NULL;
995 DLIST_ADD(children, child);
996 child->event.fd = fdpair[1];
997 child->event.flags = 0;
998 child->requests = NULL;
999 add_fd_event(&child->event);
1000 return True;
1003 /* Child */
1005 state.sock = fdpair[0];
1006 close(fdpair[1]);
1008 /* tdb needs special fork handling */
1009 if (tdb_reopen_all(1) == -1) {
1010 DEBUG(0,("tdb_reopen_all failed.\n"));
1011 _exit(0);
1014 close_conns_after_fork();
1016 if (!override_logfile) {
1017 lp_set_logfile(child->logfilename);
1018 reopen_logs();
1022 * For clustering, we need to re-init our ctdbd connection after the
1023 * fork
1025 if (!NT_STATUS_IS_OK(messaging_reinit(winbind_messaging_context())))
1026 exit(1);
1028 /* Don't handle the same messages as our parent. */
1029 messaging_deregister(winbind_messaging_context(),
1030 MSG_SMB_CONF_UPDATED, NULL);
1031 messaging_deregister(winbind_messaging_context(),
1032 MSG_SHUTDOWN, NULL);
1033 messaging_deregister(winbind_messaging_context(),
1034 MSG_WINBIND_OFFLINE, NULL);
1035 messaging_deregister(winbind_messaging_context(),
1036 MSG_WINBIND_ONLINE, NULL);
1037 messaging_deregister(winbind_messaging_context(),
1038 MSG_WINBIND_ONLINESTATUS, NULL);
1039 messaging_deregister(winbind_messaging_context(),
1040 MSG_DUMP_EVENT_LIST, NULL);
1041 messaging_deregister(winbind_messaging_context(),
1042 MSG_WINBIND_DUMP_DOMAIN_LIST, NULL);
1044 /* Handle online/offline messages. */
1045 messaging_register(winbind_messaging_context(), NULL,
1046 MSG_WINBIND_OFFLINE, child_msg_offline);
1047 messaging_register(winbind_messaging_context(), NULL,
1048 MSG_WINBIND_ONLINE, child_msg_online);
1049 messaging_register(winbind_messaging_context(), NULL,
1050 MSG_WINBIND_ONLINESTATUS, child_msg_onlinestatus);
1051 messaging_register(winbind_messaging_context(), NULL,
1052 MSG_DUMP_EVENT_LIST, child_msg_dump_event_list);
1054 if ( child->domain ) {
1055 child->domain->startup = True;
1056 child->domain->startup_time = time(NULL);
1059 /* Ensure we have no pending check_online events other
1060 than one for this domain. */
1062 for (domain = domain_list(); domain; domain = domain->next) {
1063 if (domain != child->domain) {
1064 TALLOC_FREE(domain->check_online_event);
1068 /* Ensure we're not handling an event inherited from
1069 our parent. */
1071 cancel_named_event(winbind_event_context(),
1072 "krb5_ticket_refresh_handler");
1074 /* We might be in the idmap child...*/
1075 if (child->domain && !(child->domain->internal) &&
1076 lp_winbind_offline_logon()) {
1078 set_domain_online_request(child->domain);
1080 child->lockout_policy_event = event_add_timed(
1081 winbind_event_context(), NULL, timeval_zero(),
1082 "account_lockout_policy_handler",
1083 account_lockout_policy_handler,
1084 child);
1087 /* Special case for Winbindd on a Samba DC,
1088 * We want to make sure the child can connect to smbd
1089 * but not the main daemon */
1091 if (child->domain && child->domain->internal && IS_DC) {
1092 child->domain->internal = False;
1093 child->domain->methods = &cache_methods;
1094 child->domain->online = False;
1097 while (1) {
1099 int ret;
1100 fd_set read_fds;
1101 struct timeval t;
1102 struct timeval *tp;
1103 struct timeval now;
1104 TALLOC_CTX *frame = talloc_stackframe();
1106 run_events(winbind_event_context(), 0, NULL, NULL);
1108 GetTimeOfDay(&now);
1110 if (child->domain && child->domain->startup &&
1111 (now.tv_sec > child->domain->startup_time + 30)) {
1112 /* No longer in "startup" mode. */
1113 DEBUG(10,("fork_domain_child: domain %s no longer in 'startup' mode.\n",
1114 child->domain->name ));
1115 child->domain->startup = False;
1118 tp = get_timed_events_timeout(winbind_event_context(), &t);
1119 if (tp) {
1120 DEBUG(11,("select will use timeout of %u.%u seconds\n",
1121 (unsigned int)tp->tv_sec, (unsigned int)tp->tv_usec ));
1124 /* Handle messages */
1126 message_dispatch(winbind_messaging_context());
1128 FD_ZERO(&read_fds);
1129 FD_SET(state.sock, &read_fds);
1131 ret = sys_select(state.sock + 1, &read_fds, NULL, NULL, tp);
1133 if (ret == 0) {
1134 DEBUG(11,("nothing is ready yet, continue\n"));
1135 TALLOC_FREE(frame);
1136 continue;
1139 if (ret == -1 && errno == EINTR) {
1140 /* We got a signal - continue. */
1141 TALLOC_FREE(frame);
1142 continue;
1145 if (ret == -1 && errno != EINTR) {
1146 DEBUG(0,("select error occured\n"));
1147 TALLOC_FREE(frame);
1148 perror("select");
1149 return False;
1152 /* fetch a request from the main daemon */
1153 child_read_request(&state);
1155 if (state.finished) {
1156 /* we lost contact with our parent */
1157 exit(0);
1160 DEBUG(4,("child daemon request %d\n", (int)state.request.cmd));
1162 ZERO_STRUCT(state.response);
1163 state.request.null_term = '\0';
1164 child_process_request(child, &state);
1166 SAFE_FREE(state.request.extra_data.data);
1168 cache_store_response(sys_getpid(), &state.response);
1170 SAFE_FREE(state.response.extra_data.data);
1172 /* We just send the result code back, the result
1173 * structure needs to be fetched via the
1174 * winbindd_cache. Hmm. That needs fixing... */
1176 if (write_data(state.sock,
1177 (const char *)&state.response.result,
1178 sizeof(state.response.result)) !=
1179 sizeof(state.response.result)) {
1180 DEBUG(0, ("Could not write result\n"));
1181 exit(1);
1183 TALLOC_FREE(frame);