s4:librpc/rpc: use talloc_zero for 'struct rpc_request'
[Samba/gebeck_regimport.git] / source3 / rpc_server / lsasd.c
blobfd6c248294abb896dbba6c0b2801a34ab4a1873b
1 /*
2 * Unix SMB/CIFS implementation.
4 * LSA service daemon
6 * Copyright (c) 2011 Andreas Schneider <asn@samba.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "serverid.h"
24 #include "messages.h"
25 #include "ntdomain.h"
27 #include "lib/id_cache.h"
29 #include "../lib/tsocket/tsocket.h"
30 #include "lib/server_prefork.h"
31 #include "lib/server_prefork_util.h"
32 #include "librpc/rpc/dcerpc_ep.h"
34 #include "rpc_server/rpc_server.h"
35 #include "rpc_server/rpc_ep_register.h"
36 #include "rpc_server/rpc_sock_helper.h"
38 #include "librpc/gen_ndr/srv_lsa.h"
39 #include "librpc/gen_ndr/srv_samr.h"
40 #include "librpc/gen_ndr/srv_netlogon.h"
42 #define DAEMON_NAME "lsasd"
43 #define LSASD_MAX_SOCKETS 64
45 static struct server_id parent_id;
46 static struct prefork_pool *lsasd_pool = NULL;
47 static int lsasd_child_id = 0;
49 static struct pf_daemon_config default_pf_lsasd_cfg = {
50 .prefork_status = PFH_INIT,
51 .min_children = 5,
52 .max_children = 25,
53 .spawn_rate = 5,
54 .max_allowed_clients = 100,
55 .child_min_life = 60 /* 1 minute minimum life time */
57 static struct pf_daemon_config pf_lsasd_cfg = { 0 };
59 void start_lsasd(struct tevent_context *ev_ctx,
60 struct messaging_context *msg_ctx);
62 static void lsasd_reopen_logs(int child_id)
64 char *lfile = lp_logfile(talloc_tos());
65 char *extension;
66 int rc;
68 if (child_id) {
69 rc = asprintf(&extension, "%s.%d", DAEMON_NAME, child_id);
70 } else {
71 rc = asprintf(&extension, "%s", DAEMON_NAME);
73 if (rc == -1) {
74 return;
77 rc = 0;
78 if (lfile == NULL || lfile[0] == '\0') {
79 rc = asprintf(&lfile, "%s/log.%s",
80 get_dyn_LOGFILEBASE(), extension);
81 } else {
82 if (strstr(lfile, extension) == NULL) {
83 if (child_id) {
84 rc = asprintf(&lfile, "%s.%d",
85 lp_logfile(talloc_tos()),
86 child_id);
87 } else {
88 rc = asprintf(&lfile, "%s.%s",
89 lp_logfile(talloc_tos()),
90 extension);
95 if (rc > 0) {
96 lp_set_logfile(lfile);
97 SAFE_FREE(lfile);
100 SAFE_FREE(extension);
102 reopen_logs();
105 static void lsasd_smb_conf_updated(struct messaging_context *msg,
106 void *private_data,
107 uint32_t msg_type,
108 struct server_id server_id,
109 DATA_BLOB *data)
111 struct tevent_context *ev_ctx;
113 DEBUG(10, ("Got message saying smb.conf was updated. Reloading.\n"));
114 ev_ctx = talloc_get_type_abort(private_data, struct tevent_context);
116 change_to_root_user();
117 lp_load(get_dyn_CONFIGFILE(), true, false, false, true);
119 lsasd_reopen_logs(lsasd_child_id);
120 if (lsasd_child_id == 0) {
121 pfh_daemon_config(DAEMON_NAME,
122 &pf_lsasd_cfg,
123 &default_pf_lsasd_cfg);
124 pfh_manage_pool(ev_ctx, msg, &pf_lsasd_cfg, lsasd_pool);
128 static void lsasd_sig_term_handler(struct tevent_context *ev,
129 struct tevent_signal *se,
130 int signum,
131 int count,
132 void *siginfo,
133 void *private_data)
135 rpc_netlogon_shutdown();
136 rpc_samr_shutdown();
137 rpc_lsarpc_shutdown();
139 DEBUG(0, ("termination signal\n"));
140 exit(0);
143 static void lsasd_setup_sig_term_handler(struct tevent_context *ev_ctx)
145 struct tevent_signal *se;
147 se = tevent_add_signal(ev_ctx,
148 ev_ctx,
149 SIGTERM, 0,
150 lsasd_sig_term_handler,
151 NULL);
152 if (!se) {
153 DEBUG(0, ("failed to setup SIGTERM handler\n"));
154 exit(1);
158 static void lsasd_sig_hup_handler(struct tevent_context *ev,
159 struct tevent_signal *se,
160 int signum,
161 int count,
162 void *siginfo,
163 void *pvt)
166 change_to_root_user();
167 lp_load(get_dyn_CONFIGFILE(), true, false, false, true);
169 lsasd_reopen_logs(lsasd_child_id);
170 pfh_daemon_config(DAEMON_NAME,
171 &pf_lsasd_cfg,
172 &default_pf_lsasd_cfg);
174 /* relay to all children */
175 prefork_send_signal_to_all(lsasd_pool, SIGHUP);
178 static void lsasd_setup_sig_hup_handler(struct tevent_context *ev_ctx)
180 struct tevent_signal *se;
182 se = tevent_add_signal(ev_ctx,
183 ev_ctx,
184 SIGHUP, 0,
185 lsasd_sig_hup_handler,
186 NULL);
187 if (!se) {
188 DEBUG(0, ("failed to setup SIGHUP handler\n"));
189 exit(1);
193 /**********************************************************
194 * Children
195 **********************************************************/
197 static void lsasd_chld_sig_hup_handler(struct tevent_context *ev,
198 struct tevent_signal *se,
199 int signum,
200 int count,
201 void *siginfo,
202 void *pvt)
204 change_to_root_user();
205 lsasd_reopen_logs(lsasd_child_id);
208 static bool lsasd_setup_chld_hup_handler(struct tevent_context *ev_ctx)
210 struct tevent_signal *se;
212 se = tevent_add_signal(ev_ctx,
213 ev_ctx,
214 SIGHUP, 0,
215 lsasd_chld_sig_hup_handler,
216 NULL);
217 if (!se) {
218 DEBUG(1, ("failed to setup SIGHUP handler"));
219 return false;
222 return true;
225 static void parent_ping(struct messaging_context *msg_ctx,
226 void *private_data,
227 uint32_t msg_type,
228 struct server_id server_id,
229 DATA_BLOB *data)
232 /* The fact we received this message is enough to let make the event
233 * loop if it was idle. lsasd_children_main will cycle through
234 * lsasd_next_client at least once. That function will take whatever
235 * action is necessary */
237 DEBUG(10, ("Got message that the parent changed status.\n"));
238 return;
241 static bool lsasd_child_init(struct tevent_context *ev_ctx,
242 int child_id,
243 struct pf_worker_data *pf)
245 NTSTATUS status;
246 struct messaging_context *msg_ctx = server_messaging_context();
247 bool ok;
249 status = reinit_after_fork(msg_ctx, ev_ctx,
250 true);
251 if (!NT_STATUS_IS_OK(status)) {
252 DEBUG(0,("reinit_after_fork() failed\n"));
253 smb_panic("reinit_after_fork() failed");
256 lsasd_child_id = child_id;
257 lsasd_reopen_logs(child_id);
259 ok = lsasd_setup_chld_hup_handler(ev_ctx);
260 if (!ok) {
261 return false;
264 if (!serverid_register(procid_self(), FLAG_MSG_GENERAL)) {
265 return false;
268 messaging_register(msg_ctx, ev_ctx,
269 MSG_SMB_CONF_UPDATED, lsasd_smb_conf_updated);
270 messaging_register(msg_ctx, ev_ctx,
271 MSG_PREFORK_PARENT_EVENT, parent_ping);
272 id_cache_register_msgs(msg_ctx);
274 status = rpc_lsarpc_init(NULL);
275 if (!NT_STATUS_IS_OK(status)) {
276 DEBUG(0, ("Failed to register lsarpc rpc inteface! (%s)\n",
277 nt_errstr(status)));
278 return false;
281 status = rpc_samr_init(NULL);
282 if (!NT_STATUS_IS_OK(status)) {
283 DEBUG(0, ("Failed to register samr rpc inteface! (%s)\n",
284 nt_errstr(status)));
285 return false;
288 status = rpc_netlogon_init(NULL);
289 if (!NT_STATUS_IS_OK(status)) {
290 DEBUG(0, ("Failed to register netlogon rpc inteface! (%s)\n",
291 nt_errstr(status)));
292 return false;
295 return true;
298 struct lsasd_children_data {
299 struct tevent_context *ev_ctx;
300 struct messaging_context *msg_ctx;
301 struct pf_worker_data *pf;
302 int listen_fd_size;
303 int *listen_fds;
306 static void lsasd_next_client(void *pvt);
308 static int lsasd_children_main(struct tevent_context *ev_ctx,
309 struct messaging_context *msg_ctx,
310 struct pf_worker_data *pf,
311 int child_id,
312 int listen_fd_size,
313 int *listen_fds,
314 void *private_data)
316 struct lsasd_children_data *data;
317 bool ok;
318 int ret = 0;
320 ok = lsasd_child_init(ev_ctx, child_id, pf);
321 if (!ok) {
322 return 1;
325 data = talloc(ev_ctx, struct lsasd_children_data);
326 if (!data) {
327 return 1;
329 data->pf = pf;
330 data->ev_ctx = ev_ctx;
331 data->msg_ctx = msg_ctx;
332 data->listen_fd_size = listen_fd_size;
333 data->listen_fds = listen_fds;
335 /* loop until it is time to exit */
336 while (pf->status != PF_WORKER_EXITING) {
337 /* try to see if it is time to schedule the next client */
338 lsasd_next_client(data);
340 ret = tevent_loop_once(ev_ctx);
341 if (ret != 0) {
342 DEBUG(0, ("tevent_loop_once() exited with %d: %s\n",
343 ret, strerror(errno)));
344 pf->status = PF_WORKER_EXITING;
348 return ret;
351 static void lsasd_client_terminated(void *pvt)
353 struct lsasd_children_data *data;
355 data = talloc_get_type_abort(pvt, struct lsasd_children_data);
357 pfh_client_terminated(data->pf);
359 lsasd_next_client(pvt);
362 struct lsasd_new_client {
363 struct lsasd_children_data *data;
366 static void lsasd_handle_client(struct tevent_req *req);
368 static void lsasd_next_client(void *pvt)
370 struct tevent_req *req;
371 struct lsasd_children_data *data;
372 struct lsasd_new_client *next;
374 data = talloc_get_type_abort(pvt, struct lsasd_children_data);
376 if (!pfh_child_allowed_to_accept(data->pf)) {
377 /* nothing to do for now we are already listening
378 * or we are not allowed to listen further */
379 return;
382 next = talloc_zero(data, struct lsasd_new_client);
383 if (!next) {
384 DEBUG(1, ("Out of memory!?\n"));
385 return;
387 next->data = data;
389 req = prefork_listen_send(next,
390 data->ev_ctx,
391 data->pf,
392 data->listen_fd_size,
393 data->listen_fds);
394 if (!req) {
395 DEBUG(1, ("Failed to make listening request!?\n"));
396 talloc_free(next);
397 return;
399 tevent_req_set_callback(req, lsasd_handle_client, next);
402 static void lsasd_handle_client(struct tevent_req *req)
404 struct lsasd_children_data *data;
405 struct lsasd_new_client *client;
406 const DATA_BLOB ping = data_blob_null;
407 int rc;
408 int sd;
409 TALLOC_CTX *tmp_ctx;
410 struct tsocket_address *srv_addr;
411 struct tsocket_address *cli_addr;
413 client = tevent_req_callback_data(req, struct lsasd_new_client);
414 data = client->data;
416 tmp_ctx = talloc_stackframe();
417 if (tmp_ctx == NULL) {
418 DEBUG(1, ("Failed to allocate stackframe!\n"));
419 return;
422 rc = prefork_listen_recv(req,
423 tmp_ctx,
424 &sd,
425 &srv_addr,
426 &cli_addr);
428 /* this will free the request too */
429 talloc_free(client);
431 if (rc != 0) {
432 DEBUG(6, ("No client connection was available after all!\n"));
433 goto done;
436 /* Warn parent that our status changed */
437 messaging_send(data->msg_ctx, parent_id,
438 MSG_PREFORK_CHILD_EVENT, &ping);
440 DEBUG(2, ("LSASD preforked child %d got client connection!\n",
441 (int)(data->pf->pid)));
443 if (tsocket_address_is_inet(srv_addr, "ip")) {
444 DEBUG(3, ("Got a tcpip client connection from %s on inteface %s\n",
445 tsocket_address_string(cli_addr, tmp_ctx),
446 tsocket_address_string(srv_addr, tmp_ctx)));
448 dcerpc_ncacn_accept(data->ev_ctx,
449 data->msg_ctx,
450 NCACN_IP_TCP,
451 "IP",
452 cli_addr,
453 srv_addr,
455 NULL);
456 } else if (tsocket_address_is_unix(srv_addr)) {
457 const char *p;
458 const char *b;
460 p = tsocket_address_unix_path(srv_addr, tmp_ctx);
461 if (p == NULL) {
462 talloc_free(tmp_ctx);
463 return;
466 b = strrchr(p, '/');
467 if (b != NULL) {
468 b++;
469 } else {
470 b = p;
473 if (strstr(p, "/np/")) {
474 named_pipe_accept_function(data->ev_ctx,
475 data->msg_ctx,
478 lsasd_client_terminated,
479 data);
480 } else {
481 dcerpc_ncacn_accept(data->ev_ctx,
482 data->msg_ctx,
483 NCALRPC,
485 cli_addr,
486 srv_addr,
488 NULL);
490 } else {
491 DEBUG(0, ("ERROR: Unsupported socket!\n"));
494 done:
495 talloc_free(tmp_ctx);
499 * MAIN
502 static void child_ping(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 tevent_context *ev_ctx;
510 ev_ctx = talloc_get_type_abort(private_data, struct tevent_context);
512 DEBUG(10, ("Got message that a child changed status.\n"));
513 pfh_manage_pool(ev_ctx, msg_ctx, &pf_lsasd_cfg, lsasd_pool);
516 static bool lsasd_schedule_check(struct tevent_context *ev_ctx,
517 struct messaging_context *msg_ctx,
518 struct timeval current_time);
520 static void lsasd_check_children(struct tevent_context *ev_ctx,
521 struct tevent_timer *te,
522 struct timeval current_time,
523 void *pvt);
525 static void lsasd_sigchld_handler(struct tevent_context *ev_ctx,
526 struct prefork_pool *pfp,
527 void *pvt)
529 struct messaging_context *msg_ctx;
531 msg_ctx = talloc_get_type_abort(pvt, struct messaging_context);
533 /* run pool management so we can fork/retire or increase
534 * the allowed connections per child based on load */
535 pfh_manage_pool(ev_ctx, msg_ctx, &pf_lsasd_cfg, lsasd_pool);
538 static bool lsasd_setup_children_monitor(struct tevent_context *ev_ctx,
539 struct messaging_context *msg_ctx)
541 bool ok;
543 /* add our oun sigchld callback */
544 prefork_set_sigchld_callback(lsasd_pool, lsasd_sigchld_handler, msg_ctx);
546 ok = lsasd_schedule_check(ev_ctx, msg_ctx, tevent_timeval_current());
548 return ok;
551 static bool lsasd_schedule_check(struct tevent_context *ev_ctx,
552 struct messaging_context *msg_ctx,
553 struct timeval current_time)
555 struct tevent_timer *te;
556 struct timeval next_event;
558 /* check situation again in 10 seconds */
559 next_event = tevent_timeval_current_ofs(10, 0);
561 /* TODO: check when the socket becomes readable, so that children
562 * are checked only when there is some activity ? */
563 te = tevent_add_timer(ev_ctx, lsasd_pool, next_event,
564 lsasd_check_children, msg_ctx);
565 if (!te) {
566 DEBUG(2, ("Failed to set up children monitoring!\n"));
567 return false;
570 return true;
573 static void lsasd_check_children(struct tevent_context *ev_ctx,
574 struct tevent_timer *te,
575 struct timeval current_time,
576 void *pvt)
578 struct messaging_context *msg_ctx;
580 msg_ctx = talloc_get_type_abort(pvt, struct messaging_context);
582 pfh_manage_pool(ev_ctx, msg_ctx, &pf_lsasd_cfg, lsasd_pool);
584 lsasd_schedule_check(ev_ctx, msg_ctx, current_time);
588 * start it up
591 static bool lsasd_create_sockets(struct tevent_context *ev_ctx,
592 struct messaging_context *msg_ctx,
593 int *listen_fd,
594 int *listen_fd_size)
596 struct dcerpc_binding_vector *v, *v_orig;
597 TALLOC_CTX *tmp_ctx;
598 NTSTATUS status;
599 uint32_t i;
600 int fd;
601 int rc;
602 bool ok = true;
604 tmp_ctx = talloc_stackframe();
605 if (tmp_ctx == NULL) {
606 return false;
609 status = dcerpc_binding_vector_new(tmp_ctx, &v_orig);
610 if (!NT_STATUS_IS_OK(status)) {
611 ok = false;
612 goto done;
615 /* Create only one tcpip listener for all services */
616 status = rpc_create_tcpip_sockets(&ndr_table_lsarpc,
617 v_orig,
619 listen_fd,
620 listen_fd_size);
621 if (!NT_STATUS_IS_OK(status)) {
622 ok = false;
623 goto done;
626 /* Start to listen on tcpip sockets */
627 for (i = 0; i < *listen_fd_size; i++) {
628 rc = listen(listen_fd[i], pf_lsasd_cfg.max_allowed_clients);
629 if (rc == -1) {
630 DEBUG(0, ("Failed to listen on tcpip socket - %s\n",
631 strerror(errno)));
632 ok = false;
633 goto done;
637 /* LSARPC */
638 fd = create_named_pipe_socket("lsarpc");
639 if (fd < 0) {
640 ok = false;
641 goto done;
643 listen_fd[*listen_fd_size] = fd;
644 (*listen_fd_size)++;
646 rc = listen(fd, pf_lsasd_cfg.max_allowed_clients);
647 if (rc == -1) {
648 DEBUG(0, ("Failed to listen on lsarpc pipe - %s\n",
649 strerror(errno)));
650 ok = false;
651 goto done;
654 fd = create_named_pipe_socket("lsass");
655 if (fd < 0) {
656 ok = false;
657 goto done;
659 listen_fd[*listen_fd_size] = fd;
660 (*listen_fd_size)++;
662 rc = listen(fd, pf_lsasd_cfg.max_allowed_clients);
663 if (rc == -1) {
664 DEBUG(0, ("Failed to listen on lsass pipe - %s\n",
665 strerror(errno)));
666 ok = false;
667 goto done;
670 fd = create_dcerpc_ncalrpc_socket("lsarpc");
671 if (fd < 0) {
672 ok = false;
673 goto done;
675 listen_fd[*listen_fd_size] = fd;
676 (*listen_fd_size)++;
678 rc = listen(fd, pf_lsasd_cfg.max_allowed_clients);
679 if (rc == -1) {
680 DEBUG(0, ("Failed to listen on lsarpc ncalrpc - %s\n",
681 strerror(errno)));
682 ok = false;
683 goto done;
686 v = dcerpc_binding_vector_dup(tmp_ctx, v_orig);
687 if (v == NULL) {
688 ok = false;
689 goto done;
692 status = dcerpc_binding_vector_replace_iface(&ndr_table_lsarpc, v);
693 if (!NT_STATUS_IS_OK(status)) {
694 return false;
697 status = dcerpc_binding_vector_add_np_default(&ndr_table_lsarpc, v);
698 if (!NT_STATUS_IS_OK(status)) {
699 ok = false;
700 goto done;
703 status = dcerpc_binding_vector_add_unix(&ndr_table_lsarpc, v, "lsarpc");
704 if (!NT_STATUS_IS_OK(status)) {
705 ok = false;
706 goto done;
709 status = rpc_ep_register(ev_ctx, msg_ctx, &ndr_table_lsarpc, v);
710 if (!NT_STATUS_IS_OK(status)) {
711 ok = false;
712 goto done;
715 /* SAMR */
716 fd = create_named_pipe_socket("samr");
717 if (fd < 0) {
718 ok = false;
719 goto done;
722 rc = listen(fd, pf_lsasd_cfg.max_allowed_clients);
723 if (rc == -1) {
724 DEBUG(0, ("Failed to listen on samr pipe - %s\n",
725 strerror(errno)));
726 ok = false;
727 goto done;
729 listen_fd[*listen_fd_size] = fd;
730 (*listen_fd_size)++;
732 fd = create_dcerpc_ncalrpc_socket("samr");
733 if (fd < 0) {
734 ok = false;
735 goto done;
737 listen_fd[*listen_fd_size] = fd;
738 (*listen_fd_size)++;
740 rc = listen(fd, pf_lsasd_cfg.max_allowed_clients);
741 if (rc == -1) {
742 DEBUG(0, ("Failed to listen on samr ncalrpc - %s\n",
743 strerror(errno)));
744 ok = false;
745 goto done;
748 v = dcerpc_binding_vector_dup(tmp_ctx, v_orig);
749 if (v == NULL) {
750 ok = false;
751 goto done;
754 status = dcerpc_binding_vector_replace_iface(&ndr_table_samr, v);
755 if (!NT_STATUS_IS_OK(status)) {
756 return false;
759 status = dcerpc_binding_vector_add_np_default(&ndr_table_samr, v);
760 if (!NT_STATUS_IS_OK(status)) {
761 ok = false;
762 goto done;
765 status = dcerpc_binding_vector_add_unix(&ndr_table_lsarpc, v, "samr");
766 if (!NT_STATUS_IS_OK(status)) {
767 ok = false;
768 goto done;
771 status = rpc_ep_register(ev_ctx, msg_ctx, &ndr_table_samr, v);
772 if (!NT_STATUS_IS_OK(status)) {
773 ok = false;
774 goto done;
777 /* NETLOGON */
778 fd = create_named_pipe_socket("netlogon");
779 if (fd < 0) {
780 ok = false;
781 goto done;
784 rc = listen(fd, pf_lsasd_cfg.max_allowed_clients);
785 if (rc == -1) {
786 DEBUG(0, ("Failed to listen on samr pipe - %s\n",
787 strerror(errno)));
788 ok = false;
789 goto done;
791 listen_fd[*listen_fd_size] = fd;
792 (*listen_fd_size)++;
794 fd = create_dcerpc_ncalrpc_socket("netlogon");
795 if (fd < 0) {
796 ok = false;
797 goto done;
799 listen_fd[*listen_fd_size] = fd;
800 (*listen_fd_size)++;
802 rc = listen(fd, pf_lsasd_cfg.max_allowed_clients);
803 if (rc == -1) {
804 DEBUG(0, ("Failed to listen on netlogon ncalrpc - %s\n",
805 strerror(errno)));
806 ok = false;
807 goto done;
810 v = dcerpc_binding_vector_dup(tmp_ctx, v_orig);
811 if (v == NULL) {
812 ok = false;
813 goto done;
816 status = dcerpc_binding_vector_replace_iface(&ndr_table_netlogon, v);
817 if (!NT_STATUS_IS_OK(status)) {
818 return false;
821 status = dcerpc_binding_vector_add_np_default(&ndr_table_netlogon, v);
822 if (!NT_STATUS_IS_OK(status)) {
823 ok = false;
824 goto done;
827 status = dcerpc_binding_vector_add_unix(&ndr_table_lsarpc, v, "netlogon");
828 if (!NT_STATUS_IS_OK(status)) {
829 ok = false;
830 goto done;
833 status = rpc_ep_register(ev_ctx, msg_ctx, &ndr_table_netlogon, v);
834 if (!NT_STATUS_IS_OK(status)) {
835 ok = false;
836 goto done;
839 done:
840 talloc_free(tmp_ctx);
841 return ok;
844 void start_lsasd(struct tevent_context *ev_ctx,
845 struct messaging_context *msg_ctx)
847 NTSTATUS status;
848 int listen_fd[LSASD_MAX_SOCKETS];
849 int listen_fd_size = 0;
850 pid_t pid;
851 int rc;
852 bool ok;
854 DEBUG(1, ("Forking LSA Service Daemon\n"));
857 * Block signals before forking child as it will have to
858 * set its own handlers. Child will re-enable SIGHUP as
859 * soon as the handlers are set up.
861 BlockSignals(true, SIGTERM);
862 BlockSignals(true, SIGHUP);
864 pid = fork();
865 if (pid == -1) {
866 DEBUG(0, ("Failed to fork LSASD [%s], aborting ...\n",
867 strerror(errno)));
868 exit(1);
871 /* parent or error */
872 if (pid != 0) {
874 /* Re-enable SIGHUP before returnig */
875 BlockSignals(false, SIGTERM);
876 BlockSignals(false, SIGHUP);
878 return;
881 /* save the parent process id so the children can use it later */
882 parent_id = procid_self();
884 status = reinit_after_fork(msg_ctx,
885 ev_ctx,
886 true);
887 if (!NT_STATUS_IS_OK(status)) {
888 DEBUG(0,("reinit_after_fork() failed\n"));
889 smb_panic("reinit_after_fork() failed");
892 lsasd_reopen_logs(0);
893 pfh_daemon_config(DAEMON_NAME,
894 &pf_lsasd_cfg,
895 &default_pf_lsasd_cfg);
897 lsasd_setup_sig_term_handler(ev_ctx);
898 lsasd_setup_sig_hup_handler(ev_ctx);
900 BlockSignals(false, SIGTERM);
901 BlockSignals(false, SIGHUP);
903 ok = lsasd_create_sockets(ev_ctx, msg_ctx, listen_fd, &listen_fd_size);
904 if (!ok) {
905 exit(1);
908 /* start children before any more initialization is done */
909 ok = prefork_create_pool(ev_ctx, /* mem_ctx */
910 ev_ctx,
911 msg_ctx,
912 listen_fd_size,
913 listen_fd,
914 pf_lsasd_cfg.min_children,
915 pf_lsasd_cfg.max_children,
916 &lsasd_children_main,
917 NULL,
918 &lsasd_pool);
919 if (!ok) {
920 exit(1);
923 if (!serverid_register(procid_self(), FLAG_MSG_GENERAL)) {
924 exit(1);
927 messaging_register(msg_ctx,
928 ev_ctx,
929 MSG_SMB_CONF_UPDATED,
930 lsasd_smb_conf_updated);
931 messaging_register(msg_ctx, ev_ctx,
932 MSG_PREFORK_CHILD_EVENT, child_ping);
934 status = rpc_lsarpc_init(NULL);
935 if (!NT_STATUS_IS_OK(status)) {
936 DEBUG(0, ("Failed to register lsarpc rpc inteface in lsasd! (%s)\n",
937 nt_errstr(status)));
938 exit(1);
941 status = rpc_samr_init(NULL);
942 if (!NT_STATUS_IS_OK(status)) {
943 DEBUG(0, ("Failed to register samr rpc inteface in lsasd! (%s)\n",
944 nt_errstr(status)));
945 exit(1);
948 status = rpc_netlogon_init(NULL);
949 if (!NT_STATUS_IS_OK(status)) {
950 DEBUG(0, ("Failed to register netlogon rpc inteface in lsasd! (%s)\n",
951 nt_errstr(status)));
952 exit(1);
955 ok = lsasd_setup_children_monitor(ev_ctx, msg_ctx);
956 if (!ok) {
957 DEBUG(0, ("Failed to setup children monitoring!\n"));
958 exit(1);
961 DEBUG(1, ("LSASD Daemon Started (%d)\n", getpid()));
963 /* loop forever */
964 rc = tevent_loop_wait(ev_ctx);
966 /* should not be reached */
967 DEBUG(0,("lsasd: tevent_loop_wait() exited with %d - %s\n",
968 rc, (rc == 0) ? "out of events" : strerror(errno)));
969 exit(1);