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/wb_reqtrans.h"
34 #include "../lib/util/select.h"
35 #include "../libcli/security/security.h"
36 #include "system/select.h"
38 #include "../lib/util/tevent_unix.h"
39 #include "lib/param/loadparm.h"
42 #define DBGC_CLASS DBGC_WINBIND
44 extern bool override_logfile
;
45 extern struct winbindd_methods cache_methods
;
47 static struct winbindd_child
*winbindd_children
= NULL
;
49 /* Read some data from a client connection */
51 static NTSTATUS
child_read_request(struct winbindd_cli_state
*state
)
57 status
= read_data(state
->sock
, (char *)state
->request
,
58 sizeof(*state
->request
));
60 if (!NT_STATUS_IS_OK(status
)) {
61 DEBUG(3, ("child_read_request: read_data failed: %s\n",
66 if (state
->request
->extra_len
== 0) {
67 state
->request
->extra_data
.data
= NULL
;
71 DEBUG(10, ("Need to read %d extra bytes\n", (int)state
->request
->extra_len
));
73 state
->request
->extra_data
.data
=
74 SMB_MALLOC_ARRAY(char, state
->request
->extra_len
+ 1);
76 if (state
->request
->extra_data
.data
== NULL
) {
77 DEBUG(0, ("malloc failed\n"));
78 return NT_STATUS_NO_MEMORY
;
81 /* Ensure null termination */
82 state
->request
->extra_data
.data
[state
->request
->extra_len
] = '\0';
84 status
= read_data(state
->sock
, state
->request
->extra_data
.data
,
85 state
->request
->extra_len
);
87 if (!NT_STATUS_IS_OK(status
)) {
88 DEBUG(0, ("Could not read extra data: %s\n",
95 * Do winbind child async request. This is not simply wb_simple_trans. We have
96 * to do the queueing ourselves because while a request is queued, the child
97 * might have crashed, and we have to re-fork it in the _trigger function.
100 struct wb_child_request_state
{
101 struct tevent_context
*ev
;
102 struct winbindd_child
*child
;
103 struct winbindd_request
*request
;
104 struct winbindd_response
*response
;
107 static bool fork_domain_child(struct winbindd_child
*child
);
109 static void wb_child_request_trigger(struct tevent_req
*req
,
111 static void wb_child_request_done(struct tevent_req
*subreq
);
113 struct tevent_req
*wb_child_request_send(TALLOC_CTX
*mem_ctx
,
114 struct tevent_context
*ev
,
115 struct winbindd_child
*child
,
116 struct winbindd_request
*request
)
118 struct tevent_req
*req
;
119 struct wb_child_request_state
*state
;
121 req
= tevent_req_create(mem_ctx
, &state
,
122 struct wb_child_request_state
);
128 state
->child
= child
;
129 state
->request
= request
;
131 if (!tevent_queue_add(child
->queue
, ev
, req
,
132 wb_child_request_trigger
, NULL
)) {
134 return tevent_req_post(req
, ev
);
139 static void wb_child_request_trigger(struct tevent_req
*req
,
142 struct wb_child_request_state
*state
= tevent_req_data(
143 req
, struct wb_child_request_state
);
144 struct tevent_req
*subreq
;
146 if ((state
->child
->sock
== -1) && (!fork_domain_child(state
->child
))) {
147 tevent_req_error(req
, errno
);
151 subreq
= wb_simple_trans_send(state
, winbind_event_context(), NULL
,
152 state
->child
->sock
, state
->request
);
153 if (tevent_req_nomem(subreq
, req
)) {
156 tevent_req_set_callback(subreq
, wb_child_request_done
, req
);
157 tevent_req_set_endtime(req
, state
->ev
, timeval_current_ofs(300, 0));
160 static void wb_child_request_done(struct tevent_req
*subreq
)
162 struct tevent_req
*req
= tevent_req_callback_data(
163 subreq
, struct tevent_req
);
164 struct wb_child_request_state
*state
= tevent_req_data(
165 req
, struct wb_child_request_state
);
168 ret
= wb_simple_trans_recv(subreq
, state
, &state
->response
, &err
);
172 * The basic parent/child communication broke, close
175 close(state
->child
->sock
);
176 state
->child
->sock
= -1;
177 DLIST_REMOVE(winbindd_children
, state
->child
);
178 tevent_req_error(req
, err
);
181 tevent_req_done(req
);
184 int wb_child_request_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
185 struct winbindd_response
**presponse
, int *err
)
187 struct wb_child_request_state
*state
= tevent_req_data(
188 req
, struct wb_child_request_state
);
190 if (tevent_req_is_unix_error(req
, err
)) {
193 *presponse
= talloc_move(mem_ctx
, &state
->response
);
197 static bool winbindd_child_busy(struct winbindd_child
*child
)
199 return tevent_queue_length(child
->queue
) > 0;
202 static struct winbindd_child
*find_idle_child(struct winbindd_domain
*domain
)
206 for (i
=0; i
<lp_winbind_max_domain_connections(); i
++) {
207 if (!winbindd_child_busy(&domain
->children
[i
])) {
208 return &domain
->children
[i
];
215 struct winbindd_child
*choose_domain_child(struct winbindd_domain
*domain
)
217 struct winbindd_child
*result
;
219 result
= find_idle_child(domain
);
220 if (result
!= NULL
) {
223 return &domain
->children
[rand() % lp_winbind_max_domain_connections()];
226 struct dcerpc_binding_handle
*dom_child_handle(struct winbindd_domain
*domain
)
228 struct winbindd_child
*child
;
230 child
= choose_domain_child(domain
);
231 return child
->binding_handle
;
234 struct wb_domain_request_state
{
235 struct tevent_context
*ev
;
236 struct winbindd_domain
*domain
;
237 struct winbindd_child
*child
;
238 struct winbindd_request
*request
;
239 struct winbindd_request
*init_req
;
240 struct winbindd_response
*response
;
243 static void wb_domain_request_gotdc(struct tevent_req
*subreq
);
244 static void wb_domain_request_initialized(struct tevent_req
*subreq
);
245 static void wb_domain_request_done(struct tevent_req
*subreq
);
247 struct tevent_req
*wb_domain_request_send(TALLOC_CTX
*mem_ctx
,
248 struct tevent_context
*ev
,
249 struct winbindd_domain
*domain
,
250 struct winbindd_request
*request
)
252 struct tevent_req
*req
, *subreq
;
253 struct wb_domain_request_state
*state
;
255 req
= tevent_req_create(mem_ctx
, &state
,
256 struct wb_domain_request_state
);
261 state
->child
= choose_domain_child(domain
);
263 if (domain
->initialized
) {
264 subreq
= wb_child_request_send(state
, ev
, state
->child
,
266 if (tevent_req_nomem(subreq
, req
)) {
267 return tevent_req_post(req
, ev
);
269 tevent_req_set_callback(subreq
, wb_domain_request_done
, req
);
273 state
->domain
= domain
;
275 state
->request
= request
;
277 state
->init_req
= talloc_zero(state
, struct winbindd_request
);
278 if (tevent_req_nomem(state
->init_req
, req
)) {
279 return tevent_req_post(req
, ev
);
282 if (IS_DC
|| domain
->primary
|| domain
->internal
) {
283 /* The primary domain has to find the DC name itself */
284 state
->init_req
->cmd
= WINBINDD_INIT_CONNECTION
;
285 fstrcpy(state
->init_req
->domain_name
, domain
->name
);
286 state
->init_req
->data
.init_conn
.is_primary
= domain
->primary
;
287 fstrcpy(state
->init_req
->data
.init_conn
.dcname
, "");
289 subreq
= wb_child_request_send(state
, ev
, state
->child
,
291 if (tevent_req_nomem(subreq
, req
)) {
292 return tevent_req_post(req
, ev
);
294 tevent_req_set_callback(subreq
, wb_domain_request_initialized
,
300 * Ask our DC for a DC name
302 domain
= find_our_domain();
304 /* This is *not* the primary domain, let's ask our DC about a DC
307 state
->init_req
->cmd
= WINBINDD_GETDCNAME
;
308 fstrcpy(state
->init_req
->domain_name
, domain
->name
);
310 subreq
= wb_child_request_send(state
, ev
, state
->child
, request
);
311 if (tevent_req_nomem(subreq
, req
)) {
312 return tevent_req_post(req
, ev
);
314 tevent_req_set_callback(subreq
, wb_domain_request_gotdc
, req
);
318 static void wb_domain_request_gotdc(struct tevent_req
*subreq
)
320 struct tevent_req
*req
= tevent_req_callback_data(
321 subreq
, struct tevent_req
);
322 struct wb_domain_request_state
*state
= tevent_req_data(
323 req
, struct wb_domain_request_state
);
324 struct winbindd_response
*response
;
327 ret
= wb_child_request_recv(subreq
, talloc_tos(), &response
, &err
);
330 tevent_req_error(req
, err
);
333 state
->init_req
->cmd
= WINBINDD_INIT_CONNECTION
;
334 fstrcpy(state
->init_req
->domain_name
, state
->domain
->name
);
335 state
->init_req
->data
.init_conn
.is_primary
= False
;
336 fstrcpy(state
->init_req
->data
.init_conn
.dcname
,
337 response
->data
.dc_name
);
339 TALLOC_FREE(response
);
341 subreq
= wb_child_request_send(state
, state
->ev
, state
->child
,
343 if (tevent_req_nomem(subreq
, req
)) {
346 tevent_req_set_callback(subreq
, wb_domain_request_initialized
, req
);
349 static void wb_domain_request_initialized(struct tevent_req
*subreq
)
351 struct tevent_req
*req
= tevent_req_callback_data(
352 subreq
, struct tevent_req
);
353 struct wb_domain_request_state
*state
= tevent_req_data(
354 req
, struct wb_domain_request_state
);
355 struct winbindd_response
*response
;
358 ret
= wb_child_request_recv(subreq
, talloc_tos(), &response
, &err
);
361 tevent_req_error(req
, err
);
365 if (!string_to_sid(&state
->domain
->sid
,
366 response
->data
.domain_info
.sid
)) {
367 DEBUG(1,("init_child_recv: Could not convert sid %s "
368 "from string\n", response
->data
.domain_info
.sid
));
369 tevent_req_error(req
, EINVAL
);
373 talloc_free(state
->domain
->name
);
374 state
->domain
->name
= talloc_strdup(state
->domain
,
375 response
->data
.domain_info
.name
);
376 if (state
->domain
->name
== NULL
) {
377 tevent_req_error(req
, ENOMEM
);
381 if (response
->data
.domain_info
.alt_name
[0] != '\0') {
382 talloc_free(state
->domain
->alt_name
);
384 state
->domain
->alt_name
= talloc_strdup(state
->domain
,
385 response
->data
.domain_info
.alt_name
);
386 if (state
->domain
->alt_name
== NULL
) {
387 tevent_req_error(req
, ENOMEM
);
392 state
->domain
->native_mode
= response
->data
.domain_info
.native_mode
;
393 state
->domain
->active_directory
=
394 response
->data
.domain_info
.active_directory
;
395 state
->domain
->initialized
= true;
397 TALLOC_FREE(response
);
399 subreq
= wb_child_request_send(state
, state
->ev
, state
->child
,
401 if (tevent_req_nomem(subreq
, req
)) {
404 tevent_req_set_callback(subreq
, wb_domain_request_done
, req
);
407 static void wb_domain_request_done(struct tevent_req
*subreq
)
409 struct tevent_req
*req
= tevent_req_callback_data(
410 subreq
, struct tevent_req
);
411 struct wb_domain_request_state
*state
= tevent_req_data(
412 req
, struct wb_domain_request_state
);
415 ret
= wb_child_request_recv(subreq
, talloc_tos(), &state
->response
,
419 tevent_req_error(req
, err
);
422 tevent_req_done(req
);
425 int wb_domain_request_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
426 struct winbindd_response
**presponse
, int *err
)
428 struct wb_domain_request_state
*state
= tevent_req_data(
429 req
, struct wb_domain_request_state
);
431 if (tevent_req_is_unix_error(req
, err
)) {
434 *presponse
= talloc_move(mem_ctx
, &state
->response
);
438 static void child_process_request(struct winbindd_child
*child
,
439 struct winbindd_cli_state
*state
)
441 struct winbindd_domain
*domain
= child
->domain
;
442 const struct winbindd_child_dispatch_table
*table
= child
->table
;
444 /* Free response data - we may be interrupted and receive another
445 command before being able to send this data off. */
447 state
->response
->result
= WINBINDD_ERROR
;
448 state
->response
->length
= sizeof(struct winbindd_response
);
450 /* as all requests in the child are sync, we can use talloc_tos() */
451 state
->mem_ctx
= talloc_tos();
453 /* Process command */
455 for (; table
->name
; table
++) {
456 if (state
->request
->cmd
== table
->struct_cmd
) {
457 DEBUG(10,("child_process_request: request fn %s\n",
459 state
->response
->result
= table
->struct_fn(domain
, state
);
464 DEBUG(1, ("child_process_request: unknown request fn number %d\n",
465 (int)state
->request
->cmd
));
466 state
->response
->result
= WINBINDD_ERROR
;
469 void setup_child(struct winbindd_domain
*domain
, struct winbindd_child
*child
,
470 const struct winbindd_child_dispatch_table
*table
,
471 const char *logprefix
,
474 if (logprefix
&& logname
) {
475 char *logbase
= NULL
;
477 if (*lp_logfile(talloc_tos())) {
480 if (asprintf(&logbase
, "%s", lp_logfile(talloc_tos())) < 0) {
481 smb_panic("Internal error: asprintf failed");
484 if ((end
= strrchr_m(logbase
, '/'))) {
488 if (asprintf(&logbase
, "%s", get_dyn_LOGFILEBASE()) < 0) {
489 smb_panic("Internal error: asprintf failed");
493 if (asprintf(&child
->logfilename
, "%s/%s-%s",
494 logbase
, logprefix
, logname
) < 0) {
496 smb_panic("Internal error: asprintf failed");
501 smb_panic("Internal error: logprefix == NULL && "
506 child
->domain
= domain
;
507 child
->table
= table
;
508 child
->queue
= tevent_queue_create(NULL
, "winbind_child");
509 SMB_ASSERT(child
->queue
!= NULL
);
510 child
->binding_handle
= wbint_binding_handle(NULL
, domain
, child
);
511 SMB_ASSERT(child
->binding_handle
!= NULL
);
514 void winbind_child_died(pid_t pid
)
516 struct winbindd_child
*child
;
518 for (child
= winbindd_children
; child
!= NULL
; child
= child
->next
) {
519 if (child
->pid
== pid
) {
525 DEBUG(5, ("Already reaped child %u died\n", (unsigned int)pid
));
529 /* This will be re-added in fork_domain_child() */
531 DLIST_REMOVE(winbindd_children
, child
);
534 if (child
->sock
!= -1) {
540 /* Ensure any negative cache entries with the netbios or realm names are removed. */
542 void winbindd_flush_negative_conn_cache(struct winbindd_domain
*domain
)
544 flush_negative_conn_cache_for_domain(domain
->name
);
545 if (domain
->alt_name
!= NULL
) {
546 flush_negative_conn_cache_for_domain(domain
->alt_name
);
551 * Parent winbindd process sets its own debug level first and then
552 * sends a message to all the winbindd children to adjust their debug
553 * level to that of parents.
556 void winbind_msg_debug(struct messaging_context
*msg_ctx
,
559 struct server_id server_id
,
562 struct winbindd_child
*child
;
564 DEBUG(10,("winbind_msg_debug: got debug message.\n"));
566 debug_message(msg_ctx
, private_data
, MSG_DEBUG
, server_id
, data
);
568 for (child
= winbindd_children
; child
!= NULL
; child
= child
->next
) {
570 DEBUG(10,("winbind_msg_debug: sending message to pid %u.\n",
571 (unsigned int)child
->pid
));
573 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
576 strlen((char *) data
->data
) + 1);
580 /* Set our domains as offline and forward the offline message to our children. */
582 void winbind_msg_offline(struct messaging_context
*msg_ctx
,
585 struct server_id server_id
,
588 struct winbindd_child
*child
;
589 struct winbindd_domain
*domain
;
591 DEBUG(10,("winbind_msg_offline: got offline message.\n"));
593 if (!lp_winbind_offline_logon()) {
594 DEBUG(10,("winbind_msg_offline: rejecting offline message.\n"));
598 /* Set our global state as offline. */
599 if (!set_global_winbindd_state_offline()) {
600 DEBUG(10,("winbind_msg_offline: offline request failed.\n"));
604 /* Set all our domains as offline. */
605 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
606 if (domain
->internal
) {
609 DEBUG(5,("winbind_msg_offline: marking %s offline.\n", domain
->name
));
610 set_domain_offline(domain
);
613 for (child
= winbindd_children
; child
!= NULL
; child
= child
->next
) {
614 /* Don't send message to internal children. We've already
616 if (!child
->domain
|| winbindd_internal_child(child
)) {
620 /* Or internal domains (this should not be possible....) */
621 if (child
->domain
->internal
) {
625 /* Each winbindd child should only process requests for one domain - make sure
626 we only set it online / offline for that domain. */
628 DEBUG(10,("winbind_msg_offline: sending message to pid %u for domain %s.\n",
629 (unsigned int)child
->pid
, domain
->name
));
631 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
633 (const uint8_t *)child
->domain
->name
,
634 strlen(child
->domain
->name
)+1);
638 /* Set our domains as online and forward the online message to our children. */
640 void winbind_msg_online(struct messaging_context
*msg_ctx
,
643 struct server_id server_id
,
646 struct winbindd_child
*child
;
647 struct winbindd_domain
*domain
;
649 DEBUG(10,("winbind_msg_online: got online message.\n"));
651 if (!lp_winbind_offline_logon()) {
652 DEBUG(10,("winbind_msg_online: rejecting online message.\n"));
656 /* Set our global state as online. */
657 set_global_winbindd_state_online();
659 smb_nscd_flush_user_cache();
660 smb_nscd_flush_group_cache();
662 /* Set all our domains as online. */
663 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
664 if (domain
->internal
) {
667 DEBUG(5,("winbind_msg_online: requesting %s to go online.\n", domain
->name
));
669 winbindd_flush_negative_conn_cache(domain
);
670 set_domain_online_request(domain
);
672 /* Send an online message to the idmap child when our
673 primary domain comes back online */
675 if ( domain
->primary
) {
676 struct winbindd_child
*idmap
= idmap_child();
678 if ( idmap
->pid
!= 0 ) {
679 messaging_send_buf(msg_ctx
,
680 pid_to_procid(idmap
->pid
),
682 (const uint8_t *)domain
->name
,
683 strlen(domain
->name
)+1);
688 for (child
= winbindd_children
; child
!= NULL
; child
= child
->next
) {
689 /* Don't send message to internal childs. */
690 if (!child
->domain
|| winbindd_internal_child(child
)) {
694 /* Or internal domains (this should not be possible....) */
695 if (child
->domain
->internal
) {
699 /* Each winbindd child should only process requests for one domain - make sure
700 we only set it online / offline for that domain. */
702 DEBUG(10,("winbind_msg_online: sending message to pid %u for domain %s.\n",
703 (unsigned int)child
->pid
, child
->domain
->name
));
705 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
707 (const uint8_t *)child
->domain
->name
,
708 strlen(child
->domain
->name
)+1);
712 static const char *collect_onlinestatus(TALLOC_CTX
*mem_ctx
)
714 struct winbindd_domain
*domain
;
717 if ((buf
= talloc_asprintf(mem_ctx
, "global:%s ",
718 get_global_winbindd_state_offline() ?
719 "Offline":"Online")) == NULL
) {
723 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
724 if ((buf
= talloc_asprintf_append_buffer(buf
, "%s:%s ",
727 "Online":"Offline")) == NULL
) {
732 buf
= talloc_asprintf_append_buffer(buf
, "\n");
734 DEBUG(5,("collect_onlinestatus: %s", buf
));
739 void winbind_msg_onlinestatus(struct messaging_context
*msg_ctx
,
742 struct server_id server_id
,
747 struct server_id
*sender
;
749 DEBUG(5,("winbind_msg_onlinestatus received.\n"));
755 sender
= (struct server_id
*)data
->data
;
757 mem_ctx
= talloc_init("winbind_msg_onlinestatus");
758 if (mem_ctx
== NULL
) {
762 message
= collect_onlinestatus(mem_ctx
);
763 if (message
== NULL
) {
764 talloc_destroy(mem_ctx
);
768 messaging_send_buf(msg_ctx
, *sender
, MSG_WINBIND_ONLINESTATUS
,
769 (const uint8
*)message
, strlen(message
) + 1);
771 talloc_destroy(mem_ctx
);
774 void winbind_msg_dump_event_list(struct messaging_context
*msg_ctx
,
777 struct server_id server_id
,
780 struct winbindd_child
*child
;
782 DEBUG(10,("winbind_msg_dump_event_list received\n"));
784 dump_event_list(winbind_event_context());
786 for (child
= winbindd_children
; child
!= NULL
; child
= child
->next
) {
788 DEBUG(10,("winbind_msg_dump_event_list: sending message to pid %u\n",
789 (unsigned int)child
->pid
));
791 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
798 void winbind_msg_dump_domain_list(struct messaging_context
*msg_ctx
,
801 struct server_id server_id
,
805 const char *message
= NULL
;
806 struct server_id
*sender
= NULL
;
807 const char *domain
= NULL
;
810 struct winbindd_domain
*dom
= NULL
;
812 DEBUG(5,("winbind_msg_dump_domain_list received.\n"));
814 if (!data
|| !data
->data
) {
818 if (data
->length
< sizeof(struct server_id
)) {
822 mem_ctx
= talloc_init("winbind_msg_dump_domain_list");
827 sender
= (struct server_id
*)data
->data
;
828 if (data
->length
> sizeof(struct server_id
)) {
829 domain
= (const char *)data
->data
+sizeof(struct server_id
);
834 DEBUG(5,("winbind_msg_dump_domain_list for domain: %s\n",
837 message
= NDR_PRINT_STRUCT_STRING(mem_ctx
, winbindd_domain
,
838 find_domain_from_name_noinit(domain
));
840 talloc_destroy(mem_ctx
);
844 messaging_send_buf(msg_ctx
, *sender
,
845 MSG_WINBIND_DUMP_DOMAIN_LIST
,
846 (const uint8_t *)message
, strlen(message
) + 1);
848 talloc_destroy(mem_ctx
);
853 DEBUG(5,("winbind_msg_dump_domain_list all domains\n"));
855 for (dom
= domain_list(); dom
; dom
=dom
->next
) {
856 message
= NDR_PRINT_STRUCT_STRING(mem_ctx
, winbindd_domain
, dom
);
858 talloc_destroy(mem_ctx
);
862 s
= talloc_asprintf_append(s
, "%s\n", message
);
864 talloc_destroy(mem_ctx
);
869 status
= messaging_send_buf(msg_ctx
, *sender
,
870 MSG_WINBIND_DUMP_DOMAIN_LIST
,
871 (uint8_t *)s
, strlen(s
) + 1);
872 if (!NT_STATUS_IS_OK(status
)) {
873 DEBUG(0,("failed to send message: %s\n",
877 talloc_destroy(mem_ctx
);
880 static void account_lockout_policy_handler(struct tevent_context
*ctx
,
881 struct tevent_timer
*te
,
885 struct winbindd_child
*child
=
886 (struct winbindd_child
*)private_data
;
887 TALLOC_CTX
*mem_ctx
= NULL
;
888 struct winbindd_methods
*methods
;
889 struct samr_DomInfo12 lockout_policy
;
892 DEBUG(10,("account_lockout_policy_handler called\n"));
894 TALLOC_FREE(child
->lockout_policy_event
);
896 if ( !winbindd_can_contact_domain( child
->domain
) ) {
897 DEBUG(10,("account_lockout_policy_handler: Removing myself since I "
898 "do not have an incoming trust to domain %s\n",
899 child
->domain
->name
));
904 methods
= child
->domain
->methods
;
906 mem_ctx
= talloc_init("account_lockout_policy_handler ctx");
908 result
= NT_STATUS_NO_MEMORY
;
910 result
= methods
->lockout_policy(child
->domain
, mem_ctx
, &lockout_policy
);
912 TALLOC_FREE(mem_ctx
);
914 if (!NT_STATUS_IS_OK(result
)) {
915 DEBUG(10,("account_lockout_policy_handler: lockout_policy failed error %s\n",
919 child
->lockout_policy_event
= tevent_add_timer(winbind_event_context(), NULL
,
920 timeval_current_ofs(3600, 0),
921 account_lockout_policy_handler
,
925 static time_t get_machine_password_timeout(void)
927 /* until we have gpo support use lp setting */
928 return lp_machine_password_timeout();
931 static bool calculate_next_machine_pwd_change(const char *domain
,
934 time_t pass_last_set_time
;
940 pw
= secrets_fetch_machine_password(domain
,
945 DEBUG(0,("cannot fetch own machine password ????"));
951 timeout
= get_machine_password_timeout();
953 DEBUG(10,("machine password never expires\n"));
957 tv
.tv_sec
= pass_last_set_time
;
958 DEBUG(10, ("password last changed %s\n",
959 timeval_string(talloc_tos(), &tv
, false)));
960 tv
.tv_sec
+= timeout
;
961 DEBUGADD(10, ("password valid until %s\n",
962 timeval_string(talloc_tos(), &tv
, false)));
964 if (time(NULL
) < (pass_last_set_time
+ timeout
)) {
965 next_change
= pass_last_set_time
+ timeout
;
966 DEBUG(10,("machine password still valid until: %s\n",
967 http_timestring(talloc_tos(), next_change
)));
968 *t
= timeval_set(next_change
, 0);
970 if (lp_clustering()) {
973 * When having a cluster, we have several
974 * winbinds racing for the password change. In
975 * the machine_password_change_handler()
976 * function we check if someone else was
977 * faster when the event triggers. We add a
978 * 255-second random delay here, so that we
979 * don't run to change the password at the
982 generate_random_buffer(&randbuf
, sizeof(randbuf
));
983 DEBUG(10, ("adding %d seconds randomness\n",
985 t
->tv_sec
+= randbuf
;
990 DEBUG(10,("machine password expired, needs immediate change\n"));
997 static void machine_password_change_handler(struct tevent_context
*ctx
,
998 struct tevent_timer
*te
,
1002 struct winbindd_child
*child
=
1003 (struct winbindd_child
*)private_data
;
1004 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
1007 struct timeval next_change
;
1009 DEBUG(10,("machine_password_change_handler called\n"));
1011 TALLOC_FREE(child
->machine_password_change_event
);
1013 if (!calculate_next_machine_pwd_change(child
->domain
->name
,
1015 DEBUG(10, ("calculate_next_machine_pwd_change failed\n"));
1019 DEBUG(10, ("calculate_next_machine_pwd_change returned %s\n",
1020 timeval_string(talloc_tos(), &next_change
, false)));
1022 if (!timeval_expired(&next_change
)) {
1023 DEBUG(10, ("Someone else has already changed the pw\n"));
1027 if (!winbindd_can_contact_domain(child
->domain
)) {
1028 DEBUG(10,("machine_password_change_handler: Removing myself since I "
1029 "do not have an incoming trust to domain %s\n",
1030 child
->domain
->name
));
1034 result
= cm_connect_netlogon(child
->domain
, &netlogon_pipe
);
1035 if (!NT_STATUS_IS_OK(result
)) {
1036 DEBUG(10,("machine_password_change_handler: "
1037 "failed to connect netlogon pipe: %s\n",
1038 nt_errstr(result
)));
1042 frame
= talloc_stackframe();
1044 result
= trust_pw_find_change_and_store_it(netlogon_pipe
,
1046 child
->domain
->name
);
1049 DEBUG(10, ("machine_password_change_handler: "
1050 "trust_pw_find_change_and_store_it returned %s\n",
1051 nt_errstr(result
)));
1053 if (NT_STATUS_EQUAL(result
, NT_STATUS_ACCESS_DENIED
) ) {
1054 DEBUG(3,("machine_password_change_handler: password set returned "
1055 "ACCESS_DENIED. Maybe the trust account "
1056 "password was changed and we didn't know it. "
1057 "Killing connections to domain %s\n",
1058 child
->domain
->name
));
1059 TALLOC_FREE(child
->domain
->conn
.netlogon_pipe
);
1062 if (!calculate_next_machine_pwd_change(child
->domain
->name
,
1064 DEBUG(10, ("calculate_next_machine_pwd_change failed\n"));
1068 DEBUG(10, ("calculate_next_machine_pwd_change returned %s\n",
1069 timeval_string(talloc_tos(), &next_change
, false)));
1071 if (!NT_STATUS_IS_OK(result
)) {
1074 * In case of failure, give the DC a minute to recover
1076 tmp
= timeval_current_ofs(60, 0);
1077 next_change
= timeval_max(&next_change
, &tmp
);
1081 child
->machine_password_change_event
= tevent_add_timer(winbind_event_context(), NULL
,
1083 machine_password_change_handler
,
1087 /* Deal with a request to go offline. */
1089 static void child_msg_offline(struct messaging_context
*msg
,
1092 struct server_id server_id
,
1095 struct winbindd_domain
*domain
;
1096 struct winbindd_domain
*primary_domain
= NULL
;
1097 const char *domainname
= (const char *)data
->data
;
1099 if (data
->data
== NULL
|| data
->length
== 0) {
1103 DEBUG(5,("child_msg_offline received for domain %s.\n", domainname
));
1105 if (!lp_winbind_offline_logon()) {
1106 DEBUG(10,("child_msg_offline: rejecting offline message.\n"));
1110 primary_domain
= find_our_domain();
1112 /* Mark the requested domain offline. */
1114 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1115 if (domain
->internal
) {
1118 if (strequal(domain
->name
, domainname
)) {
1119 DEBUG(5,("child_msg_offline: marking %s offline.\n", domain
->name
));
1120 set_domain_offline(domain
);
1121 /* we are in the trusted domain, set the primary domain
1123 if (domain
!= primary_domain
) {
1124 set_domain_offline(primary_domain
);
1130 /* Deal with a request to go online. */
1132 static void child_msg_online(struct messaging_context
*msg
,
1135 struct server_id server_id
,
1138 struct winbindd_domain
*domain
;
1139 struct winbindd_domain
*primary_domain
= NULL
;
1140 const char *domainname
= (const char *)data
->data
;
1142 if (data
->data
== NULL
|| data
->length
== 0) {
1146 DEBUG(5,("child_msg_online received for domain %s.\n", domainname
));
1148 if (!lp_winbind_offline_logon()) {
1149 DEBUG(10,("child_msg_online: rejecting online message.\n"));
1153 primary_domain
= find_our_domain();
1155 /* Set our global state as online. */
1156 set_global_winbindd_state_online();
1158 /* Try and mark everything online - delete any negative cache entries
1159 to force a reconnect now. */
1161 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1162 if (domain
->internal
) {
1165 if (strequal(domain
->name
, domainname
)) {
1166 DEBUG(5,("child_msg_online: requesting %s to go online.\n", domain
->name
));
1167 winbindd_flush_negative_conn_cache(domain
);
1168 set_domain_online_request(domain
);
1170 /* we can be in trusted domain, which will contact primary domain
1171 * we have to bring primary domain online in trusted domain process
1172 * see, winbindd_dual_pam_auth() --> winbindd_dual_pam_auth_samlogon()
1173 * --> contact_domain = find_our_domain()
1175 if (domain
!= primary_domain
) {
1176 winbindd_flush_negative_conn_cache(primary_domain
);
1177 set_domain_online_request(primary_domain
);
1183 static void child_msg_dump_event_list(struct messaging_context
*msg
,
1186 struct server_id server_id
,
1189 DEBUG(5,("child_msg_dump_event_list received\n"));
1191 dump_event_list(winbind_event_context());
1194 NTSTATUS
winbindd_reinit_after_fork(const struct winbindd_child
*myself
,
1195 const char *logfilename
)
1197 struct winbindd_domain
*domain
;
1198 struct winbindd_child
*cl
;
1201 status
= reinit_after_fork(
1202 winbind_messaging_context(),
1203 winbind_event_context(),
1205 if (!NT_STATUS_IS_OK(status
)) {
1206 DEBUG(0,("reinit_after_fork() failed\n"));
1210 close_conns_after_fork();
1212 if (!override_logfile
&& logfilename
) {
1213 lp_set_logfile(logfilename
);
1217 if (!winbindd_setup_sig_term_handler(false))
1218 return NT_STATUS_NO_MEMORY
;
1219 if (!winbindd_setup_sig_hup_handler(override_logfile
? NULL
:
1221 return NT_STATUS_NO_MEMORY
;
1223 /* Stop zombies in children */
1226 /* Don't handle the same messages as our parent. */
1227 messaging_deregister(winbind_messaging_context(),
1228 MSG_SMB_CONF_UPDATED
, NULL
);
1229 messaging_deregister(winbind_messaging_context(),
1230 MSG_SHUTDOWN
, NULL
);
1231 messaging_deregister(winbind_messaging_context(),
1232 MSG_WINBIND_OFFLINE
, NULL
);
1233 messaging_deregister(winbind_messaging_context(),
1234 MSG_WINBIND_ONLINE
, NULL
);
1235 messaging_deregister(winbind_messaging_context(),
1236 MSG_WINBIND_ONLINESTATUS
, NULL
);
1237 messaging_deregister(winbind_messaging_context(),
1238 MSG_DUMP_EVENT_LIST
, NULL
);
1239 messaging_deregister(winbind_messaging_context(),
1240 MSG_WINBIND_DUMP_DOMAIN_LIST
, NULL
);
1241 messaging_deregister(winbind_messaging_context(),
1244 /* We have destroyed all events in the winbindd_event_context
1245 * in reinit_after_fork(), so clean out all possible pending
1246 * event pointers. */
1248 /* Deal with check_online_events. */
1250 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
1251 TALLOC_FREE(domain
->check_online_event
);
1254 /* Ensure we're not handling a credential cache event inherited
1255 * from our parent. */
1257 ccache_remove_all_after_fork();
1259 /* Destroy all possible events in child list. */
1260 for (cl
= winbindd_children
; cl
!= NULL
; cl
= cl
->next
) {
1261 TALLOC_FREE(cl
->lockout_policy_event
);
1262 TALLOC_FREE(cl
->machine_password_change_event
);
1264 /* Children should never be able to send
1265 * each other messages, all messages must
1266 * go through the parent.
1271 * Close service sockets to all other children
1273 if ((cl
!= myself
) && (cl
->sock
!= -1)) {
1279 * This is a little tricky, children must not
1280 * send an MSG_WINBIND_ONLINE message to idmap_child().
1281 * If we are in a child of our primary domain or
1282 * in the process created by fork_child_dc_connect(),
1283 * and the primary domain cannot go online,
1284 * fork_child_dc_connection() sends MSG_WINBIND_ONLINE
1285 * periodically to idmap_child().
1287 * The sequence is, fork_child_dc_connect() ---> getdcs() --->
1288 * get_dc_name_via_netlogon() ---> cm_connect_netlogon()
1289 * ---> init_dc_connection() ---> cm_open_connection --->
1290 * set_domain_online(), sends MSG_WINBIND_ONLINE to
1291 * idmap_child(). Disallow children sending messages
1292 * to each other, all messages must go through the parent.
1297 return NT_STATUS_OK
;
1301 * In a child there will be only one domain, reference that here.
1303 static struct winbindd_domain
*child_domain
;
1305 struct winbindd_domain
*wb_child_domain(void)
1307 return child_domain
;
1310 struct child_handler_state
{
1311 struct winbindd_child
*child
;
1312 struct winbindd_cli_state cli
;
1315 static void child_handler(struct tevent_context
*ev
, struct tevent_fd
*fde
,
1316 uint16_t flags
, void *private_data
)
1318 struct child_handler_state
*state
=
1319 (struct child_handler_state
*)private_data
;
1321 struct iovec iov
[2];
1324 /* fetch a request from the main daemon */
1325 status
= child_read_request(&state
->cli
);
1327 if (!NT_STATUS_IS_OK(status
)) {
1328 /* we lost contact with our parent */
1332 DEBUG(4,("child daemon request %d\n",
1333 (int)state
->cli
.request
->cmd
));
1335 ZERO_STRUCTP(state
->cli
.response
);
1336 state
->cli
.request
->null_term
= '\0';
1337 state
->cli
.mem_ctx
= talloc_tos();
1338 child_process_request(state
->child
, &state
->cli
);
1340 DEBUG(4, ("Finished processing child request %d\n",
1341 (int)state
->cli
.request
->cmd
));
1343 SAFE_FREE(state
->cli
.request
->extra_data
.data
);
1345 iov
[0].iov_base
= (void *)state
->cli
.response
;
1346 iov
[0].iov_len
= sizeof(struct winbindd_response
);
1349 if (state
->cli
.response
->length
>
1350 sizeof(struct winbindd_response
)) {
1352 (void *)state
->cli
.response
->extra_data
.data
;
1353 iov
[1].iov_len
= state
->cli
.response
->length
-iov
[0].iov_len
;
1357 DEBUG(10, ("Writing %d bytes to parent\n",
1358 (int)state
->cli
.response
->length
));
1360 if (write_data_iov(state
->cli
.sock
, iov
, iov_count
) !=
1361 state
->cli
.response
->length
) {
1362 DEBUG(0, ("Could not write result\n"));
1367 static bool fork_domain_child(struct winbindd_child
*child
)
1370 struct child_handler_state state
;
1371 struct winbindd_request request
;
1372 struct winbindd_response response
;
1373 struct winbindd_domain
*primary_domain
= NULL
;
1376 struct tevent_fd
*fde
;
1378 if (child
->domain
) {
1379 DEBUG(10, ("fork_domain_child called for domain '%s'\n",
1380 child
->domain
->name
));
1382 DEBUG(10, ("fork_domain_child called without domain.\n"));
1385 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, fdpair
) != 0) {
1386 DEBUG(0, ("Could not open child pipe: %s\n",
1392 state
.child
= child
;
1393 state
.cli
.pid
= getpid();
1394 state
.cli
.request
= &request
;
1395 state
.cli
.response
= &response
;
1397 child
->pid
= fork();
1399 if (child
->pid
== -1) {
1400 DEBUG(0, ("Could not fork: %s\n", strerror(errno
)));
1406 if (child
->pid
!= 0) {
1412 nread
= sys_read(fdpair
[1], &status
, sizeof(status
));
1413 if (nread
!= sizeof(status
)) {
1414 DEBUG(1, ("fork_domain_child: Could not read child status: "
1415 "nread=%d, error=%s\n", (int)nread
,
1420 if (!NT_STATUS_IS_OK(status
)) {
1421 DEBUG(1, ("fork_domain_child: Child status is %s\n",
1422 nt_errstr(status
)));
1427 child
->next
= child
->prev
= NULL
;
1428 DLIST_ADD(winbindd_children
, child
);
1429 child
->sock
= fdpair
[1];
1434 child_domain
= child
->domain
;
1436 DEBUG(10, ("Child process %d\n", (int)getpid()));
1438 state
.cli
.sock
= fdpair
[0];
1441 status
= winbindd_reinit_after_fork(child
, child
->logfilename
);
1443 nwritten
= sys_write(state
.cli
.sock
, &status
, sizeof(status
));
1444 if (nwritten
!= sizeof(status
)) {
1445 DEBUG(1, ("fork_domain_child: Could not write status: "
1446 "nwritten=%d, error=%s\n", (int)nwritten
,
1450 if (!NT_STATUS_IS_OK(status
)) {
1451 DEBUG(1, ("winbindd_reinit_after_fork failed: %s\n",
1452 nt_errstr(status
)));
1456 /* Handle online/offline messages. */
1457 messaging_register(winbind_messaging_context(), NULL
,
1458 MSG_WINBIND_OFFLINE
, child_msg_offline
);
1459 messaging_register(winbind_messaging_context(), NULL
,
1460 MSG_WINBIND_ONLINE
, child_msg_online
);
1461 messaging_register(winbind_messaging_context(), NULL
,
1462 MSG_DUMP_EVENT_LIST
, child_msg_dump_event_list
);
1463 messaging_register(winbind_messaging_context(), NULL
,
1464 MSG_DEBUG
, debug_message
);
1465 messaging_register(winbind_messaging_context(), NULL
,
1466 MSG_WINBIND_IP_DROPPED
,
1467 winbind_msg_ip_dropped
);
1470 primary_domain
= find_our_domain();
1472 if (primary_domain
== NULL
) {
1473 smb_panic("no primary domain found");
1476 /* It doesn't matter if we allow cache login,
1477 * try to bring domain online after fork. */
1478 if ( child
->domain
) {
1479 child
->domain
->startup
= True
;
1480 child
->domain
->startup_time
= time_mono(NULL
);
1481 /* we can be in primary domain or in trusted domain
1482 * If we are in trusted domain, set the primary domain
1483 * in start-up mode */
1484 if (!(child
->domain
->internal
)) {
1485 set_domain_online_request(child
->domain
);
1486 if (!(child
->domain
->primary
)) {
1487 primary_domain
->startup
= True
;
1488 primary_domain
->startup_time
= time_mono(NULL
);
1489 set_domain_online_request(primary_domain
);
1495 * We are in idmap child, make sure that we set the
1496 * check_online_event to bring primary domain online.
1498 if (child
== idmap_child()) {
1499 set_domain_online_request(primary_domain
);
1502 /* We might be in the idmap child...*/
1503 if (child
->domain
&& !(child
->domain
->internal
) &&
1504 lp_winbind_offline_logon()) {
1506 set_domain_online_request(child
->domain
);
1508 if (primary_domain
&& (primary_domain
!= child
->domain
)) {
1509 /* We need to talk to the primary
1510 * domain as well as the trusted
1511 * domain inside a trusted domain
1514 * set_dc_type_and_flags_trustinfo()
1517 set_domain_online_request(primary_domain
);
1520 child
->lockout_policy_event
= tevent_add_timer(
1521 winbind_event_context(), NULL
, timeval_zero(),
1522 account_lockout_policy_handler
,
1526 if (child
->domain
&& child
->domain
->primary
&&
1527 !USE_KERBEROS_KEYTAB
&&
1528 lp_server_role() == ROLE_DOMAIN_MEMBER
) {
1530 struct timeval next_change
;
1532 if (calculate_next_machine_pwd_change(child
->domain
->name
,
1534 child
->machine_password_change_event
= tevent_add_timer(
1535 winbind_event_context(), NULL
, next_change
,
1536 machine_password_change_handler
,
1541 fde
= tevent_add_fd(winbind_event_context(), NULL
, state
.cli
.sock
,
1542 TEVENT_FD_READ
, child_handler
, &state
);
1544 DEBUG(1, ("tevent_add_fd failed\n"));
1551 TALLOC_CTX
*frame
= talloc_stackframe();
1553 ret
= tevent_loop_once(winbind_event_context());
1555 DEBUG(1, ("tevent_loop_once failed: %s\n",
1560 if (child
->domain
&& child
->domain
->startup
&&
1561 (time_mono(NULL
) > child
->domain
->startup_time
+ 30)) {
1562 /* No longer in "startup" mode. */
1563 DEBUG(10,("fork_domain_child: domain %s no longer in 'startup' mode.\n",
1564 child
->domain
->name
));
1565 child
->domain
->startup
= False
;
1572 void winbind_msg_ip_dropped_parent(struct messaging_context
*msg_ctx
,
1575 struct server_id server_id
,
1578 struct winbindd_child
*child
;
1580 winbind_msg_ip_dropped(msg_ctx
, private_data
, msg_type
,
1584 for (child
= winbindd_children
; child
!= NULL
; child
= child
->next
) {
1585 messaging_send_buf(msg_ctx
, pid_to_procid(child
->pid
),
1586 msg_type
, data
->data
, data
->length
);