s3:auth: add function to convert samu to netr_SamInfo3
[Samba/ekacnet.git] / source3 / winbindd / winbindd_dual.c
blob2ae32e793c9ee49f7d128ab09c8c50285f107f16
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"
32 #include "../../nsswitch/libwbclient/wbc_async.h"
33 #include "librpc/gen_ndr/messaging.h"
35 #undef DBGC_CLASS
36 #define DBGC_CLASS DBGC_WINBIND
38 extern bool override_logfile;
39 extern struct winbindd_methods cache_methods;
41 /* Read some data from a client connection */
43 static NTSTATUS child_read_request(struct winbindd_cli_state *state)
45 NTSTATUS status;
47 /* Read data */
49 status = read_data(state->sock, (char *)state->request,
50 sizeof(*state->request));
52 if (!NT_STATUS_IS_OK(status)) {
53 DEBUG(3, ("child_read_request: read_data failed: %s\n",
54 nt_errstr(status)));
55 return status;
58 if (state->request->extra_len == 0) {
59 state->request->extra_data.data = NULL;
60 return NT_STATUS_OK;
63 DEBUG(10, ("Need to read %d extra bytes\n", (int)state->request->extra_len));
65 state->request->extra_data.data =
66 SMB_MALLOC_ARRAY(char, state->request->extra_len + 1);
68 if (state->request->extra_data.data == NULL) {
69 DEBUG(0, ("malloc failed\n"));
70 return NT_STATUS_NO_MEMORY;
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)));
83 return status;
87 * Do winbind child async request. This is not simply wb_simple_trans. We have
88 * to do the queueing ourselves because while a request is queued, the child
89 * might have crashed, and we have to re-fork it in the _trigger function.
92 struct wb_child_request_state {
93 struct tevent_context *ev;
94 struct winbindd_child *child;
95 struct winbindd_request *request;
96 struct winbindd_response *response;
99 static bool fork_domain_child(struct winbindd_child *child);
101 static void wb_child_request_trigger(struct tevent_req *req,
102 void *private_data);
103 static void wb_child_request_done(struct tevent_req *subreq);
105 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
106 struct tevent_context *ev,
107 struct winbindd_child *child,
108 struct winbindd_request *request)
110 struct tevent_req *req;
111 struct wb_child_request_state *state;
113 req = tevent_req_create(mem_ctx, &state,
114 struct wb_child_request_state);
115 if (req == NULL) {
116 return NULL;
119 state->ev = ev;
120 state->child = child;
121 state->request = request;
123 if (!tevent_queue_add(child->queue, ev, req,
124 wb_child_request_trigger, NULL)) {
125 tevent_req_nomem(NULL, req);
126 return tevent_req_post(req, ev);
128 return req;
131 static void wb_child_request_trigger(struct tevent_req *req,
132 void *private_data)
134 struct wb_child_request_state *state = tevent_req_data(
135 req, struct wb_child_request_state);
136 struct tevent_req *subreq;
138 if ((state->child->pid == 0) && (!fork_domain_child(state->child))) {
139 tevent_req_error(req, errno);
140 return;
143 subreq = wb_simple_trans_send(state, winbind_event_context(), NULL,
144 state->child->sock, state->request);
145 if (tevent_req_nomem(subreq, req)) {
146 return;
148 tevent_req_set_callback(subreq, wb_child_request_done, req);
150 if (!tevent_req_set_endtime(req, state->ev,
151 timeval_current_ofs(300, 0))) {
152 tevent_req_nomem(NULL, req);
153 return;
157 static void wb_child_request_done(struct tevent_req *subreq)
159 struct tevent_req *req = tevent_req_callback_data(
160 subreq, struct tevent_req);
161 struct wb_child_request_state *state = tevent_req_data(
162 req, struct wb_child_request_state);
163 int ret, err;
165 ret = wb_simple_trans_recv(subreq, state, &state->response, &err);
166 TALLOC_FREE(subreq);
167 if (ret == -1) {
168 tevent_req_error(req, err);
169 return;
171 tevent_req_done(req);
174 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
175 struct winbindd_response **presponse, int *err)
177 struct wb_child_request_state *state = tevent_req_data(
178 req, struct wb_child_request_state);
180 if (tevent_req_is_unix_error(req, err)) {
181 return -1;
183 *presponse = talloc_move(mem_ctx, &state->response);
184 return 0;
187 struct wb_domain_request_state {
188 struct tevent_context *ev;
189 struct winbindd_domain *domain;
190 struct winbindd_request *request;
191 struct winbindd_request *init_req;
192 struct winbindd_response *response;
195 static void wb_domain_request_gotdc(struct tevent_req *subreq);
196 static void wb_domain_request_initialized(struct tevent_req *subreq);
197 static void wb_domain_request_done(struct tevent_req *subreq);
199 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
200 struct tevent_context *ev,
201 struct winbindd_domain *domain,
202 struct winbindd_request *request)
204 struct tevent_req *req, *subreq;
205 struct wb_domain_request_state *state;
207 req = tevent_req_create(mem_ctx, &state,
208 struct wb_domain_request_state);
209 if (req == NULL) {
210 return NULL;
213 if (domain->initialized) {
214 subreq = wb_child_request_send(state, ev, &domain->child,
215 request);
216 if (tevent_req_nomem(subreq, req)) {
217 return tevent_req_post(req, ev);
219 tevent_req_set_callback(subreq, wb_domain_request_done, req);
220 return req;
223 state->domain = domain;
224 state->ev = ev;
225 state->request = request;
227 state->init_req = talloc_zero(state, struct winbindd_request);
228 if (tevent_req_nomem(state->init_req, req)) {
229 return tevent_req_post(req, ev);
232 if (IS_DC || domain->primary || domain->internal) {
233 /* The primary domain has to find the DC name itself */
234 state->init_req->cmd = WINBINDD_INIT_CONNECTION;
235 fstrcpy(state->init_req->domain_name, domain->name);
236 state->init_req->data.init_conn.is_primary =
237 domain->primary ? true : false;
238 fstrcpy(state->init_req->data.init_conn.dcname, "");
240 subreq = wb_child_request_send(state, ev, &domain->child,
241 state->init_req);
242 if (tevent_req_nomem(subreq, req)) {
243 return tevent_req_post(req, ev);
245 tevent_req_set_callback(subreq, wb_domain_request_initialized,
246 req);
247 return req;
251 * Ask our DC for a DC name
253 domain = find_our_domain();
255 /* This is *not* the primary domain, let's ask our DC about a DC
256 * name */
258 state->init_req->cmd = WINBINDD_GETDCNAME;
259 fstrcpy(state->init_req->domain_name, domain->name);
261 subreq = wb_child_request_send(state, ev, &domain->child, request);
262 if (tevent_req_nomem(subreq, req)) {
263 return tevent_req_post(req, ev);
265 tevent_req_set_callback(subreq, wb_domain_request_gotdc, req);
266 return req;
269 static void wb_domain_request_gotdc(struct tevent_req *subreq)
271 struct tevent_req *req = tevent_req_callback_data(
272 subreq, struct tevent_req);
273 struct wb_domain_request_state *state = tevent_req_data(
274 req, struct wb_domain_request_state);
275 struct winbindd_response *response;
276 int ret, err;
278 ret = wb_child_request_recv(subreq, talloc_tos(), &response, &err);
279 TALLOC_FREE(subreq);
280 if (ret == -1) {
281 tevent_req_error(req, err);
282 return;
284 state->init_req->cmd = WINBINDD_INIT_CONNECTION;
285 fstrcpy(state->init_req->domain_name, state->domain->name);
286 state->init_req->data.init_conn.is_primary = False;
287 fstrcpy(state->init_req->data.init_conn.dcname,
288 response->data.dc_name);
290 TALLOC_FREE(response);
292 subreq = wb_child_request_send(state, state->ev, &state->domain->child,
293 state->init_req);
294 if (tevent_req_nomem(subreq, req)) {
295 return;
297 tevent_req_set_callback(subreq, wb_domain_request_initialized, req);
300 static void wb_domain_request_initialized(struct tevent_req *subreq)
302 struct tevent_req *req = tevent_req_callback_data(
303 subreq, struct tevent_req);
304 struct wb_domain_request_state *state = tevent_req_data(
305 req, struct wb_domain_request_state);
306 struct winbindd_response *response;
307 int ret, err;
309 ret = wb_child_request_recv(subreq, talloc_tos(), &response, &err);
310 TALLOC_FREE(subreq);
311 if (ret == -1) {
312 tevent_req_error(req, err);
313 return;
316 if (!string_to_sid(&state->domain->sid,
317 response->data.domain_info.sid)) {
318 DEBUG(1,("init_child_recv: Could not convert sid %s "
319 "from string\n", response->data.domain_info.sid));
320 tevent_req_error(req, EINVAL);
321 return;
323 fstrcpy(state->domain->name, response->data.domain_info.name);
324 fstrcpy(state->domain->alt_name, response->data.domain_info.alt_name);
325 state->domain->native_mode = response->data.domain_info.native_mode;
326 state->domain->active_directory =
327 response->data.domain_info.active_directory;
328 state->domain->initialized = true;
330 TALLOC_FREE(response);
332 subreq = wb_child_request_send(state, state->ev, &state->domain->child,
333 state->request);
334 if (tevent_req_nomem(subreq, req)) {
335 return;
337 tevent_req_set_callback(subreq, wb_domain_request_done, req);
340 static void wb_domain_request_done(struct tevent_req *subreq)
342 struct tevent_req *req = tevent_req_callback_data(
343 subreq, struct tevent_req);
344 struct wb_domain_request_state *state = tevent_req_data(
345 req, struct wb_domain_request_state);
346 int ret, err;
348 ret = wb_child_request_recv(subreq, talloc_tos(), &state->response,
349 &err);
350 TALLOC_FREE(subreq);
351 if (ret == -1) {
352 tevent_req_error(req, err);
353 return;
355 tevent_req_done(req);
358 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
359 struct winbindd_response **presponse, int *err)
361 struct wb_domain_request_state *state = tevent_req_data(
362 req, struct wb_domain_request_state);
364 if (tevent_req_is_unix_error(req, err)) {
365 return -1;
367 *presponse = talloc_move(mem_ctx, &state->response);
368 return 0;
371 static void child_process_request(struct winbindd_child *child,
372 struct winbindd_cli_state *state)
374 struct winbindd_domain *domain = child->domain;
375 const struct winbindd_child_dispatch_table *table = child->table;
377 /* Free response data - we may be interrupted and receive another
378 command before being able to send this data off. */
380 state->response->result = WINBINDD_ERROR;
381 state->response->length = sizeof(struct winbindd_response);
383 /* as all requests in the child are sync, we can use talloc_tos() */
384 state->mem_ctx = talloc_tos();
386 /* Process command */
388 for (; table->name; table++) {
389 if (state->request->cmd == table->struct_cmd) {
390 DEBUG(10,("child_process_request: request fn %s\n",
391 table->name));
392 state->response->result = table->struct_fn(domain, state);
393 return;
397 DEBUG(1 ,("child_process_request: unknown request fn number %d\n",
398 (int)state->request->cmd));
399 state->response->result = WINBINDD_ERROR;
402 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
403 const struct winbindd_child_dispatch_table *table,
404 const char *logprefix,
405 const char *logname)
407 if (logprefix && logname) {
408 if (asprintf(&child->logfilename, "%s/%s-%s",
409 get_dyn_LOGFILEBASE(), logprefix, logname) < 0) {
410 smb_panic("Internal error: asprintf failed");
412 } else {
413 smb_panic("Internal error: logprefix == NULL && "
414 "logname == NULL");
417 child->domain = domain;
418 child->table = table;
419 child->queue = tevent_queue_create(NULL, "winbind_child");
420 SMB_ASSERT(child->queue != NULL);
421 child->rpccli = wbint_rpccli_create(NULL, domain, child);
422 SMB_ASSERT(child->rpccli != NULL);
425 static struct winbindd_child *winbindd_children = NULL;
427 void winbind_child_died(pid_t pid)
429 struct winbindd_child *child;
431 for (child = winbindd_children; child != NULL; child = child->next) {
432 if (child->pid == pid) {
433 break;
437 if (child == NULL) {
438 DEBUG(5, ("Already reaped child %u died\n", (unsigned int)pid));
439 return;
442 /* This will be re-added in fork_domain_child() */
444 DLIST_REMOVE(winbindd_children, child);
446 close(child->sock);
447 child->sock = -1;
448 child->pid = 0;
451 /* Ensure any negative cache entries with the netbios or realm names are removed. */
453 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain)
455 flush_negative_conn_cache_for_domain(domain->name);
456 if (*domain->alt_name) {
457 flush_negative_conn_cache_for_domain(domain->alt_name);
462 * Parent winbindd process sets its own debug level first and then
463 * sends a message to all the winbindd children to adjust their debug
464 * level to that of parents.
467 void winbind_msg_debug(struct messaging_context *msg_ctx,
468 void *private_data,
469 uint32_t msg_type,
470 struct server_id server_id,
471 DATA_BLOB *data)
473 struct winbindd_child *child;
475 DEBUG(10,("winbind_msg_debug: got debug message.\n"));
477 debug_message(msg_ctx, private_data, MSG_DEBUG, server_id, data);
479 for (child = winbindd_children; child != NULL; child = child->next) {
481 DEBUG(10,("winbind_msg_debug: sending message to pid %u.\n",
482 (unsigned int)child->pid));
484 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
485 MSG_DEBUG,
486 data->data,
487 strlen((char *) data->data) + 1);
491 /* Set our domains as offline and forward the offline message to our children. */
493 void winbind_msg_offline(struct messaging_context *msg_ctx,
494 void *private_data,
495 uint32_t msg_type,
496 struct server_id server_id,
497 DATA_BLOB *data)
499 struct winbindd_child *child;
500 struct winbindd_domain *domain;
502 DEBUG(10,("winbind_msg_offline: got offline message.\n"));
504 if (!lp_winbind_offline_logon()) {
505 DEBUG(10,("winbind_msg_offline: rejecting offline message.\n"));
506 return;
509 /* Set our global state as offline. */
510 if (!set_global_winbindd_state_offline()) {
511 DEBUG(10,("winbind_msg_offline: offline request failed.\n"));
512 return;
515 /* Set all our domains as offline. */
516 for (domain = domain_list(); domain; domain = domain->next) {
517 if (domain->internal) {
518 continue;
520 DEBUG(5,("winbind_msg_offline: marking %s offline.\n", domain->name));
521 set_domain_offline(domain);
524 for (child = winbindd_children; child != NULL; child = child->next) {
525 /* Don't send message to internal children. We've already
526 done so above. */
527 if (!child->domain || winbindd_internal_child(child)) {
528 continue;
531 /* Or internal domains (this should not be possible....) */
532 if (child->domain->internal) {
533 continue;
536 /* Each winbindd child should only process requests for one domain - make sure
537 we only set it online / offline for that domain. */
539 DEBUG(10,("winbind_msg_offline: sending message to pid %u for domain %s.\n",
540 (unsigned int)child->pid, domain->name ));
542 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
543 MSG_WINBIND_OFFLINE,
544 (uint8 *)child->domain->name,
545 strlen(child->domain->name)+1);
549 /* Set our domains as online and forward the online message to our children. */
551 void winbind_msg_online(struct messaging_context *msg_ctx,
552 void *private_data,
553 uint32_t msg_type,
554 struct server_id server_id,
555 DATA_BLOB *data)
557 struct winbindd_child *child;
558 struct winbindd_domain *domain;
560 DEBUG(10,("winbind_msg_online: got online message.\n"));
562 if (!lp_winbind_offline_logon()) {
563 DEBUG(10,("winbind_msg_online: rejecting online message.\n"));
564 return;
567 /* Set our global state as online. */
568 set_global_winbindd_state_online();
570 smb_nscd_flush_user_cache();
571 smb_nscd_flush_group_cache();
573 /* Set all our domains as online. */
574 for (domain = domain_list(); domain; domain = domain->next) {
575 if (domain->internal) {
576 continue;
578 DEBUG(5,("winbind_msg_online: requesting %s to go online.\n", domain->name));
580 winbindd_flush_negative_conn_cache(domain);
581 set_domain_online_request(domain);
583 /* Send an online message to the idmap child when our
584 primary domain comes back online */
586 if ( domain->primary ) {
587 struct winbindd_child *idmap = idmap_child();
589 if ( idmap->pid != 0 ) {
590 messaging_send_buf(msg_ctx,
591 pid_to_procid(idmap->pid),
592 MSG_WINBIND_ONLINE,
593 (uint8 *)domain->name,
594 strlen(domain->name)+1);
599 for (child = winbindd_children; child != NULL; child = child->next) {
600 /* Don't send message to internal childs. */
601 if (!child->domain || winbindd_internal_child(child)) {
602 continue;
605 /* Or internal domains (this should not be possible....) */
606 if (child->domain->internal) {
607 continue;
610 /* Each winbindd child should only process requests for one domain - make sure
611 we only set it online / offline for that domain. */
613 DEBUG(10,("winbind_msg_online: sending message to pid %u for domain %s.\n",
614 (unsigned int)child->pid, child->domain->name ));
616 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
617 MSG_WINBIND_ONLINE,
618 (uint8 *)child->domain->name,
619 strlen(child->domain->name)+1);
623 static const char *collect_onlinestatus(TALLOC_CTX *mem_ctx)
625 struct winbindd_domain *domain;
626 char *buf = NULL;
628 if ((buf = talloc_asprintf(mem_ctx, "global:%s ",
629 get_global_winbindd_state_offline() ?
630 "Offline":"Online")) == NULL) {
631 return NULL;
634 for (domain = domain_list(); domain; domain = domain->next) {
635 if ((buf = talloc_asprintf_append_buffer(buf, "%s:%s ",
636 domain->name,
637 domain->online ?
638 "Online":"Offline")) == NULL) {
639 return NULL;
643 buf = talloc_asprintf_append_buffer(buf, "\n");
645 DEBUG(5,("collect_onlinestatus: %s", buf));
647 return buf;
650 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
651 void *private_data,
652 uint32_t msg_type,
653 struct server_id server_id,
654 DATA_BLOB *data)
656 TALLOC_CTX *mem_ctx;
657 const char *message;
658 struct server_id *sender;
660 DEBUG(5,("winbind_msg_onlinestatus received.\n"));
662 if (!data->data) {
663 return;
666 sender = (struct server_id *)data->data;
668 mem_ctx = talloc_init("winbind_msg_onlinestatus");
669 if (mem_ctx == NULL) {
670 return;
673 message = collect_onlinestatus(mem_ctx);
674 if (message == NULL) {
675 talloc_destroy(mem_ctx);
676 return;
679 messaging_send_buf(msg_ctx, *sender, MSG_WINBIND_ONLINESTATUS,
680 (uint8 *)message, strlen(message) + 1);
682 talloc_destroy(mem_ctx);
685 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
686 void *private_data,
687 uint32_t msg_type,
688 struct server_id server_id,
689 DATA_BLOB *data)
691 struct winbindd_child *child;
693 DEBUG(10,("winbind_msg_dump_event_list received\n"));
695 dump_event_list(winbind_event_context());
697 for (child = winbindd_children; child != NULL; child = child->next) {
699 DEBUG(10,("winbind_msg_dump_event_list: sending message to pid %u\n",
700 (unsigned int)child->pid));
702 messaging_send_buf(msg_ctx, pid_to_procid(child->pid),
703 MSG_DUMP_EVENT_LIST,
704 NULL, 0);
709 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
710 void *private_data,
711 uint32_t msg_type,
712 struct server_id server_id,
713 DATA_BLOB *data)
715 TALLOC_CTX *mem_ctx;
716 const char *message = NULL;
717 struct server_id *sender = NULL;
718 const char *domain = NULL;
719 char *s = NULL;
720 NTSTATUS status;
721 struct winbindd_domain *dom = NULL;
723 DEBUG(5,("winbind_msg_dump_domain_list received.\n"));
725 if (!data || !data->data) {
726 return;
729 if (data->length < sizeof(struct server_id)) {
730 return;
733 mem_ctx = talloc_init("winbind_msg_dump_domain_list");
734 if (!mem_ctx) {
735 return;
738 sender = (struct server_id *)data->data;
739 if (data->length > sizeof(struct server_id)) {
740 domain = (const char *)data->data+sizeof(struct server_id);
743 if (domain) {
745 DEBUG(5,("winbind_msg_dump_domain_list for domain: %s\n",
746 domain));
748 message = NDR_PRINT_STRUCT_STRING(mem_ctx, winbindd_domain,
749 find_domain_from_name_noinit(domain));
750 if (!message) {
751 talloc_destroy(mem_ctx);
752 return;
755 messaging_send_buf(msg_ctx, *sender,
756 MSG_WINBIND_DUMP_DOMAIN_LIST,
757 (uint8_t *)message, strlen(message) + 1);
759 talloc_destroy(mem_ctx);
761 return;
764 DEBUG(5,("winbind_msg_dump_domain_list all domains\n"));
766 for (dom = domain_list(); dom; dom=dom->next) {
767 message = NDR_PRINT_STRUCT_STRING(mem_ctx, winbindd_domain, dom);
768 if (!message) {
769 talloc_destroy(mem_ctx);
770 return;
773 s = talloc_asprintf_append(s, "%s\n", message);
774 if (!s) {
775 talloc_destroy(mem_ctx);
776 return;
780 status = messaging_send_buf(msg_ctx, *sender,
781 MSG_WINBIND_DUMP_DOMAIN_LIST,
782 (uint8_t *)s, strlen(s) + 1);
783 if (!NT_STATUS_IS_OK(status)) {
784 DEBUG(0,("failed to send message: %s\n",
785 nt_errstr(status)));
788 talloc_destroy(mem_ctx);
791 static void account_lockout_policy_handler(struct event_context *ctx,
792 struct timed_event *te,
793 struct timeval now,
794 void *private_data)
796 struct winbindd_child *child =
797 (struct winbindd_child *)private_data;
798 TALLOC_CTX *mem_ctx = NULL;
799 struct winbindd_methods *methods;
800 struct samr_DomInfo12 lockout_policy;
801 NTSTATUS result;
803 DEBUG(10,("account_lockout_policy_handler called\n"));
805 TALLOC_FREE(child->lockout_policy_event);
807 if ( !winbindd_can_contact_domain( child->domain ) ) {
808 DEBUG(10,("account_lockout_policy_handler: Removing myself since I "
809 "do not have an incoming trust to domain %s\n",
810 child->domain->name));
812 return;
815 methods = child->domain->methods;
817 mem_ctx = talloc_init("account_lockout_policy_handler ctx");
818 if (!mem_ctx) {
819 result = NT_STATUS_NO_MEMORY;
820 } else {
821 result = methods->lockout_policy(child->domain, mem_ctx, &lockout_policy);
823 TALLOC_FREE(mem_ctx);
825 if (!NT_STATUS_IS_OK(result)) {
826 DEBUG(10,("account_lockout_policy_handler: lockout_policy failed error %s\n",
827 nt_errstr(result)));
830 child->lockout_policy_event = event_add_timed(winbind_event_context(), NULL,
831 timeval_current_ofs(3600, 0),
832 account_lockout_policy_handler,
833 child);
836 static time_t get_machine_password_timeout(void)
838 /* until we have gpo support use lp setting */
839 return lp_machine_password_timeout();
842 static bool calculate_next_machine_pwd_change(const char *domain,
843 struct timeval *t)
845 time_t pass_last_set_time;
846 time_t timeout;
847 time_t next_change;
848 struct timeval tv;
849 char *pw;
851 pw = secrets_fetch_machine_password(domain,
852 &pass_last_set_time,
853 NULL);
855 if (pw == NULL) {
856 DEBUG(0,("cannot fetch own machine password ????"));
857 return false;
860 SAFE_FREE(pw);
862 timeout = get_machine_password_timeout();
863 if (timeout == 0) {
864 DEBUG(10,("machine password never expires\n"));
865 return false;
868 tv.tv_sec = pass_last_set_time;
869 DEBUG(10, ("password last changed %s\n",
870 timeval_string(talloc_tos(), &tv, false)));
871 tv.tv_sec += timeout;
872 DEBUGADD(10, ("password valid until %s\n",
873 timeval_string(talloc_tos(), &tv, false)));
875 if (time(NULL) < (pass_last_set_time + timeout)) {
876 next_change = pass_last_set_time + timeout;
877 DEBUG(10,("machine password still valid until: %s\n",
878 http_timestring(talloc_tos(), next_change)));
879 *t = timeval_set(next_change, 0);
881 if (lp_clustering()) {
882 uint8_t randbuf;
884 * When having a cluster, we have several
885 * winbinds racing for the password change. In
886 * the machine_password_change_handler()
887 * function we check if someone else was
888 * faster when the event triggers. We add a
889 * 255-second random delay here, so that we
890 * don't run to change the password at the
891 * exact same moment.
893 generate_random_buffer(&randbuf, sizeof(randbuf));
894 DEBUG(10, ("adding %d seconds randomness\n",
895 (int)randbuf));
896 t->tv_sec += randbuf;
898 return true;
901 DEBUG(10,("machine password expired, needs immediate change\n"));
903 *t = timeval_zero();
905 return true;
908 static void machine_password_change_handler(struct event_context *ctx,
909 struct timed_event *te,
910 struct timeval now,
911 void *private_data)
913 struct winbindd_child *child =
914 (struct winbindd_child *)private_data;
915 struct rpc_pipe_client *netlogon_pipe = NULL;
916 TALLOC_CTX *frame;
917 NTSTATUS result;
918 struct timeval next_change;
920 DEBUG(10,("machine_password_change_handler called\n"));
922 TALLOC_FREE(child->machine_password_change_event);
924 if (!calculate_next_machine_pwd_change(child->domain->name,
925 &next_change)) {
926 DEBUG(10, ("calculate_next_machine_pwd_change failed\n"));
927 return;
930 DEBUG(10, ("calculate_next_machine_pwd_change returned %s\n",
931 timeval_string(talloc_tos(), &next_change, false)));
933 if (!timeval_expired(&next_change)) {
934 DEBUG(10, ("Someone else has already changed the pw\n"));
935 goto done;
938 if (!winbindd_can_contact_domain(child->domain)) {
939 DEBUG(10,("machine_password_change_handler: Removing myself since I "
940 "do not have an incoming trust to domain %s\n",
941 child->domain->name));
942 return;
945 result = cm_connect_netlogon(child->domain, &netlogon_pipe);
946 if (!NT_STATUS_IS_OK(result)) {
947 DEBUG(10,("machine_password_change_handler: "
948 "failed to connect netlogon pipe: %s\n",
949 nt_errstr(result)));
950 return;
953 frame = talloc_stackframe();
955 result = trust_pw_find_change_and_store_it(netlogon_pipe,
956 frame,
957 child->domain->name);
958 TALLOC_FREE(frame);
960 DEBUG(10, ("machine_password_change_handler: "
961 "trust_pw_find_change_and_store_it returned %s\n",
962 nt_errstr(result)));
964 if (NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED) ) {
965 DEBUG(3,("machine_password_change_handler: password set returned "
966 "ACCESS_DENIED. Maybe the trust account "
967 "password was changed and we didn't know it. "
968 "Killing connections to domain %s\n",
969 child->domain->name));
970 TALLOC_FREE(child->domain->conn.netlogon_pipe);
973 if (!calculate_next_machine_pwd_change(child->domain->name,
974 &next_change)) {
975 DEBUG(10, ("calculate_next_machine_pwd_change failed\n"));
976 return;
979 DEBUG(10, ("calculate_next_machine_pwd_change returned %s\n",
980 timeval_string(talloc_tos(), &next_change, false)));
982 if (!NT_STATUS_IS_OK(result)) {
983 struct timeval tmp;
985 * In case of failure, give the DC a minute to recover
987 tmp = timeval_current_ofs(60, 0);
988 next_change = timeval_max(&next_change, &tmp);
991 done:
992 child->machine_password_change_event = event_add_timed(winbind_event_context(), NULL,
993 next_change,
994 machine_password_change_handler,
995 child);
998 /* Deal with a request to go offline. */
1000 static void child_msg_offline(struct messaging_context *msg,
1001 void *private_data,
1002 uint32_t msg_type,
1003 struct server_id server_id,
1004 DATA_BLOB *data)
1006 struct winbindd_domain *domain;
1007 struct winbindd_domain *primary_domain = NULL;
1008 const char *domainname = (const char *)data->data;
1010 if (data->data == NULL || data->length == 0) {
1011 return;
1014 DEBUG(5,("child_msg_offline received for domain %s.\n", domainname));
1016 if (!lp_winbind_offline_logon()) {
1017 DEBUG(10,("child_msg_offline: rejecting offline message.\n"));
1018 return;
1021 primary_domain = find_our_domain();
1023 /* Mark the requested domain offline. */
1025 for (domain = domain_list(); domain; domain = domain->next) {
1026 if (domain->internal) {
1027 continue;
1029 if (strequal(domain->name, domainname)) {
1030 DEBUG(5,("child_msg_offline: marking %s offline.\n", domain->name));
1031 set_domain_offline(domain);
1032 /* we are in the trusted domain, set the primary domain
1033 * offline too */
1034 if (domain != primary_domain) {
1035 set_domain_offline(primary_domain);
1041 /* Deal with a request to go online. */
1043 static void child_msg_online(struct messaging_context *msg,
1044 void *private_data,
1045 uint32_t msg_type,
1046 struct server_id server_id,
1047 DATA_BLOB *data)
1049 struct winbindd_domain *domain;
1050 struct winbindd_domain *primary_domain = NULL;
1051 const char *domainname = (const char *)data->data;
1053 if (data->data == NULL || data->length == 0) {
1054 return;
1057 DEBUG(5,("child_msg_online received for domain %s.\n", domainname));
1059 if (!lp_winbind_offline_logon()) {
1060 DEBUG(10,("child_msg_online: rejecting online message.\n"));
1061 return;
1064 primary_domain = find_our_domain();
1066 /* Set our global state as online. */
1067 set_global_winbindd_state_online();
1069 /* Try and mark everything online - delete any negative cache entries
1070 to force a reconnect now. */
1072 for (domain = domain_list(); domain; domain = domain->next) {
1073 if (domain->internal) {
1074 continue;
1076 if (strequal(domain->name, domainname)) {
1077 DEBUG(5,("child_msg_online: requesting %s to go online.\n", domain->name));
1078 winbindd_flush_negative_conn_cache(domain);
1079 set_domain_online_request(domain);
1081 /* we can be in trusted domain, which will contact primary domain
1082 * we have to bring primary domain online in trusted domain process
1083 * see, winbindd_dual_pam_auth() --> winbindd_dual_pam_auth_samlogon()
1084 * --> contact_domain = find_our_domain()
1085 * */
1086 if (domain != primary_domain) {
1087 winbindd_flush_negative_conn_cache(primary_domain);
1088 set_domain_online_request(primary_domain);
1094 static void child_msg_dump_event_list(struct messaging_context *msg,
1095 void *private_data,
1096 uint32_t msg_type,
1097 struct server_id server_id,
1098 DATA_BLOB *data)
1100 DEBUG(5,("child_msg_dump_event_list received\n"));
1102 dump_event_list(winbind_event_context());
1105 bool winbindd_reinit_after_fork(const char *logfilename)
1107 struct winbindd_domain *domain;
1108 struct winbindd_child *cl;
1110 if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1111 winbind_event_context(),
1112 true))) {
1113 DEBUG(0,("reinit_after_fork() failed\n"));
1114 return false;
1117 close_conns_after_fork();
1119 if (!override_logfile && logfilename) {
1120 lp_set_logfile(logfilename);
1121 reopen_logs();
1124 if (!winbindd_setup_sig_term_handler(false))
1125 return false;
1126 if (!winbindd_setup_sig_hup_handler(override_logfile ? NULL :
1127 logfilename))
1128 return false;
1130 /* Stop zombies in children */
1131 CatchChild();
1133 /* Don't handle the same messages as our parent. */
1134 messaging_deregister(winbind_messaging_context(),
1135 MSG_SMB_CONF_UPDATED, NULL);
1136 messaging_deregister(winbind_messaging_context(),
1137 MSG_SHUTDOWN, NULL);
1138 messaging_deregister(winbind_messaging_context(),
1139 MSG_WINBIND_OFFLINE, NULL);
1140 messaging_deregister(winbind_messaging_context(),
1141 MSG_WINBIND_ONLINE, NULL);
1142 messaging_deregister(winbind_messaging_context(),
1143 MSG_WINBIND_ONLINESTATUS, NULL);
1144 messaging_deregister(winbind_messaging_context(),
1145 MSG_DUMP_EVENT_LIST, NULL);
1146 messaging_deregister(winbind_messaging_context(),
1147 MSG_WINBIND_DUMP_DOMAIN_LIST, NULL);
1148 messaging_deregister(winbind_messaging_context(),
1149 MSG_DEBUG, NULL);
1151 /* We have destroyed all events in the winbindd_event_context
1152 * in reinit_after_fork(), so clean out all possible pending
1153 * event pointers. */
1155 /* Deal with check_online_events. */
1157 for (domain = domain_list(); domain; domain = domain->next) {
1158 TALLOC_FREE(domain->check_online_event);
1161 /* Ensure we're not handling a credential cache event inherited
1162 * from our parent. */
1164 ccache_remove_all_after_fork();
1166 /* Destroy all possible events in child list. */
1167 for (cl = winbindd_children; cl != NULL; cl = cl->next) {
1168 TALLOC_FREE(cl->lockout_policy_event);
1169 TALLOC_FREE(cl->machine_password_change_event);
1171 /* Children should never be able to send
1172 * each other messages, all messages must
1173 * go through the parent.
1175 cl->pid = (pid_t)0;
1178 * This is a little tricky, children must not
1179 * send an MSG_WINBIND_ONLINE message to idmap_child().
1180 * If we are in a child of our primary domain or
1181 * in the process created by fork_child_dc_connect(),
1182 * and the primary domain cannot go online,
1183 * fork_child_dc_connection() sends MSG_WINBIND_ONLINE
1184 * periodically to idmap_child().
1186 * The sequence is, fork_child_dc_connect() ---> getdcs() --->
1187 * get_dc_name_via_netlogon() ---> cm_connect_netlogon()
1188 * ---> init_dc_connection() ---> cm_open_connection --->
1189 * set_domain_online(), sends MSG_WINBIND_ONLINE to
1190 * idmap_child(). Disallow children sending messages
1191 * to each other, all messages must go through the parent.
1193 cl = idmap_child();
1194 cl->pid = (pid_t)0;
1196 return true;
1200 * In a child there will be only one domain, reference that here.
1202 static struct winbindd_domain *child_domain;
1204 struct winbindd_domain *wb_child_domain(void)
1206 return child_domain;
1209 static bool fork_domain_child(struct winbindd_child *child)
1211 int fdpair[2];
1212 struct winbindd_cli_state state;
1213 struct winbindd_request request;
1214 struct winbindd_response response;
1215 struct winbindd_domain *primary_domain = NULL;
1217 if (child->domain) {
1218 DEBUG(10, ("fork_domain_child called for domain '%s'\n",
1219 child->domain->name));
1220 } else {
1221 DEBUG(10, ("fork_domain_child called without domain.\n"));
1224 if (socketpair(AF_UNIX, SOCK_STREAM, 0, fdpair) != 0) {
1225 DEBUG(0, ("Could not open child pipe: %s\n",
1226 strerror(errno)));
1227 return False;
1230 ZERO_STRUCT(state);
1231 state.pid = sys_getpid();
1232 state.request = &request;
1233 state.response = &response;
1235 child->pid = sys_fork();
1237 if (child->pid == -1) {
1238 DEBUG(0, ("Could not fork: %s\n", strerror(errno)));
1239 return False;
1242 if (child->pid != 0) {
1243 /* Parent */
1244 close(fdpair[0]);
1245 child->next = child->prev = NULL;
1246 DLIST_ADD(winbindd_children, child);
1247 child->sock = fdpair[1];
1248 return True;
1251 /* Child */
1252 child_domain = child->domain;
1254 DEBUG(10, ("Child process %d\n", (int)sys_getpid()));
1256 state.sock = fdpair[0];
1257 close(fdpair[1]);
1259 if (!winbindd_reinit_after_fork(child->logfilename)) {
1260 _exit(0);
1263 /* Handle online/offline messages. */
1264 messaging_register(winbind_messaging_context(), NULL,
1265 MSG_WINBIND_OFFLINE, child_msg_offline);
1266 messaging_register(winbind_messaging_context(), NULL,
1267 MSG_WINBIND_ONLINE, child_msg_online);
1268 messaging_register(winbind_messaging_context(), NULL,
1269 MSG_DUMP_EVENT_LIST, child_msg_dump_event_list);
1270 messaging_register(winbind_messaging_context(), NULL,
1271 MSG_DEBUG, debug_message);
1273 primary_domain = find_our_domain();
1275 if (primary_domain == NULL) {
1276 smb_panic("no primary domain found");
1279 /* It doesn't matter if we allow cache login,
1280 * try to bring domain online after fork. */
1281 if ( child->domain ) {
1282 child->domain->startup = True;
1283 child->domain->startup_time = time(NULL);
1284 /* we can be in primary domain or in trusted domain
1285 * If we are in trusted domain, set the primary domain
1286 * in start-up mode */
1287 if (!(child->domain->internal)) {
1288 set_domain_online_request(child->domain);
1289 if (!(child->domain->primary)) {
1290 primary_domain->startup = True;
1291 primary_domain->startup_time = time(NULL);
1292 set_domain_online_request(primary_domain);
1298 * We are in idmap child, make sure that we set the
1299 * check_online_event to bring primary domain online.
1301 if (child == idmap_child()) {
1302 set_domain_online_request(primary_domain);
1305 /* We might be in the idmap child...*/
1306 if (child->domain && !(child->domain->internal) &&
1307 lp_winbind_offline_logon()) {
1309 set_domain_online_request(child->domain);
1311 if (primary_domain && (primary_domain != child->domain)) {
1312 /* We need to talk to the primary
1313 * domain as well as the trusted
1314 * domain inside a trusted domain
1315 * child.
1316 * See the code in :
1317 * set_dc_type_and_flags_trustinfo()
1318 * for details.
1320 set_domain_online_request(primary_domain);
1323 child->lockout_policy_event = event_add_timed(
1324 winbind_event_context(), NULL, timeval_zero(),
1325 account_lockout_policy_handler,
1326 child);
1329 if (child->domain && child->domain->primary &&
1330 !USE_KERBEROS_KEYTAB &&
1331 lp_server_role() == ROLE_DOMAIN_MEMBER) {
1333 struct timeval next_change;
1335 if (calculate_next_machine_pwd_change(child->domain->name,
1336 &next_change)) {
1337 child->machine_password_change_event = event_add_timed(
1338 winbind_event_context(), NULL, next_change,
1339 machine_password_change_handler,
1340 child);
1344 while (1) {
1346 int ret;
1347 fd_set r_fds;
1348 fd_set w_fds;
1349 int maxfd;
1350 struct timeval t;
1351 struct timeval *tp;
1352 struct timeval now;
1353 TALLOC_CTX *frame = talloc_stackframe();
1354 struct iovec iov[2];
1355 int iov_count;
1356 NTSTATUS status;
1358 if (run_events(winbind_event_context(), 0, NULL, NULL)) {
1359 TALLOC_FREE(frame);
1360 continue;
1363 GetTimeOfDay(&now);
1365 if (child->domain && child->domain->startup &&
1366 (now.tv_sec > child->domain->startup_time + 30)) {
1367 /* No longer in "startup" mode. */
1368 DEBUG(10,("fork_domain_child: domain %s no longer in 'startup' mode.\n",
1369 child->domain->name ));
1370 child->domain->startup = False;
1373 FD_ZERO(&r_fds);
1374 FD_ZERO(&w_fds);
1375 FD_SET(state.sock, &r_fds);
1376 maxfd = state.sock;
1379 * Initialize this high as event_add_to_select_args()
1380 * uses a timeval_min() on this and next_event. Fix
1381 * from Roel van Meer <rolek@alt001.com>.
1383 t.tv_sec = 999999;
1384 t.tv_usec = 0;
1386 event_add_to_select_args(winbind_event_context(), &now,
1387 &r_fds, &w_fds, &t, &maxfd);
1388 tp = get_timed_events_timeout(winbind_event_context(), &t);
1389 if (tp) {
1390 DEBUG(11,("select will use timeout of %u.%u seconds\n",
1391 (unsigned int)tp->tv_sec, (unsigned int)tp->tv_usec ));
1394 ret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, tp);
1396 if (run_events(winbind_event_context(), ret, &r_fds, &w_fds)) {
1397 /* We got a signal - continue. */
1398 TALLOC_FREE(frame);
1399 continue;
1402 if (ret == 0) {
1403 DEBUG(11,("nothing is ready yet, continue\n"));
1404 TALLOC_FREE(frame);
1405 continue;
1408 if (ret == -1 && errno == EINTR) {
1409 /* We got a signal - continue. */
1410 TALLOC_FREE(frame);
1411 continue;
1414 if (ret == -1 && errno != EINTR) {
1415 DEBUG(0,("select error occured\n"));
1416 TALLOC_FREE(frame);
1417 perror("select");
1418 _exit(1);
1421 /* fetch a request from the main daemon */
1422 status = child_read_request(&state);
1424 if (!NT_STATUS_IS_OK(status)) {
1425 /* we lost contact with our parent */
1426 _exit(0);
1429 DEBUG(4,("child daemon request %d\n", (int)state.request->cmd));
1431 ZERO_STRUCTP(state.response);
1432 state.request->null_term = '\0';
1433 state.mem_ctx = frame;
1434 child_process_request(child, &state);
1436 DEBUG(4, ("Finished processing child request %d\n",
1437 (int)state.request->cmd));
1439 SAFE_FREE(state.request->extra_data.data);
1441 iov[0].iov_base = (void *)state.response;
1442 iov[0].iov_len = sizeof(struct winbindd_response);
1443 iov_count = 1;
1445 if (state.response->length > sizeof(struct winbindd_response)) {
1446 iov[1].iov_base =
1447 (void *)state.response->extra_data.data;
1448 iov[1].iov_len = state.response->length-iov[0].iov_len;
1449 iov_count = 2;
1452 DEBUG(10, ("Writing %d bytes to parent\n",
1453 (int)state.response->length));
1455 if (write_data_iov(state.sock, iov, iov_count) !=
1456 state.response->length) {
1457 DEBUG(0, ("Could not write result\n"));
1458 exit(1);
1460 TALLOC_FREE(frame);