2 Unix SMB/Netbios implementation.
4 Copyright (C) Simo Sorce <idra@samba.org> 2010-2011
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "smbd/smbd.h"
24 #include "include/printing.h"
25 #include "printing/nt_printing_migrate_internal.h"
26 #include "printing/queue_process.h"
27 #include "printing/pcap.h"
28 #include "printing/load.h"
30 #include "librpc/gen_ndr/srv_winreg.h"
31 #include "librpc/gen_ndr/srv_spoolss.h"
32 #include "rpc_server/rpc_server.h"
33 #include "rpc_server/rpc_ep_register.h"
34 #include "rpc_server/spoolss/srv_spoolss_nt.h"
35 #include "librpc/rpc/dcerpc_ep.h"
36 #include "lib/server_prefork.h"
37 #include "lib/server_prefork_util.h"
39 #define SPOOLSS_PIPE_NAME "spoolss"
40 #define DAEMON_NAME "spoolssd"
42 static struct server_id parent_id
;
43 static struct prefork_pool
*spoolss_pool
= NULL
;
44 static int spoolss_child_id
= 0;
46 static struct pf_daemon_config default_pf_spoolss_cfg
= {
47 .prefork_status
= PFH_INIT
,
51 .max_allowed_clients
= 100,
52 .child_min_life
= 60 /* 1 minute minimum life time */
54 static struct pf_daemon_config pf_spoolss_cfg
= { 0 };
56 pid_t
start_spoolssd(struct tevent_context
*ev_ctx
,
57 struct messaging_context
*msg_ctx
);
59 static void spoolss_reopen_logs(int child_id
)
61 char *lfile
= lp_logfile();
66 rc
= asprintf(&ext
, "%s.%d", DAEMON_NAME
, child_id
);
68 rc
= asprintf(&ext
, "%s", DAEMON_NAME
);
76 if (lfile
== NULL
|| lfile
[0] == '\0') {
77 rc
= asprintf(&lfile
, "%s/log.%s",
78 get_dyn_LOGFILEBASE(), ext
);
80 if (strstr(lfile
, ext
) == NULL
) {
82 rc
= asprintf(&lfile
, "%s.%d",
83 lp_logfile(), child_id
);
85 rc
= asprintf(&lfile
, "%s.%s",
92 lp_set_logfile(lfile
);
101 static void update_conf(struct tevent_context
*ev
,
102 struct messaging_context
*msg
)
104 change_to_root_user();
105 lp_load(get_dyn_CONFIGFILE(), true, false, false, true);
106 load_printers(ev
, msg
);
108 spoolss_reopen_logs(spoolss_child_id
);
109 if (spoolss_child_id
== 0) {
110 pfh_daemon_config(DAEMON_NAME
,
112 &default_pf_spoolss_cfg
);
113 pfh_manage_pool(ev
, msg
, &pf_spoolss_cfg
, spoolss_pool
);
117 static void smb_conf_updated(struct messaging_context
*msg
,
120 struct server_id server_id
,
123 struct tevent_context
*ev_ctx
= talloc_get_type_abort(private_data
,
124 struct tevent_context
);
126 DEBUG(10, ("Got message saying smb.conf was updated. Reloading.\n"));
127 update_conf(ev_ctx
, msg
);
130 static void update_pcap(struct tevent_context
*ev_ctx
,
131 struct messaging_context
*msg_ctx
)
133 change_to_root_user();
134 delete_and_reload_printers(ev_ctx
, msg_ctx
);
137 static void pcap_updated(struct messaging_context
*msg
,
140 struct server_id server_id
,
143 struct tevent_context
*ev_ctx
;
145 ev_ctx
= talloc_get_type_abort(private_data
, struct tevent_context
);
147 DEBUG(10, ("Got message that pcap updated. Reloading.\n"));
148 update_pcap(ev_ctx
, msg
);
151 static void spoolss_sig_term_handler(struct tevent_context
*ev
,
152 struct tevent_signal
*se
,
158 exit_server_cleanly("termination signal");
161 static void spoolss_setup_sig_term_handler(struct tevent_context
*ev_ctx
)
163 struct tevent_signal
*se
;
165 se
= tevent_add_signal(ev_ctx
,
168 spoolss_sig_term_handler
,
171 exit_server("failed to setup SIGTERM handler");
175 static void spoolss_sig_hup_handler(struct tevent_context
*ev
,
176 struct tevent_signal
*se
,
182 struct messaging_context
*msg_ctx
;
184 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
186 DEBUG(1,("Reloading printers after SIGHUP\n"));
187 update_conf(ev
, msg_ctx
);
189 /* relay to all children */
191 prefork_send_signal_to_all(spoolss_pool
, SIGHUP
);
195 static void spoolss_setup_sig_hup_handler(struct tevent_context
*ev_ctx
,
196 struct messaging_context
*msg_ctx
)
198 struct tevent_signal
*se
;
200 se
= tevent_add_signal(ev_ctx
,
203 spoolss_sig_hup_handler
,
206 exit_server("failed to setup SIGHUP handler");
210 static bool spoolss_init_cb(void *ptr
)
212 struct messaging_context
*msg_ctx
= talloc_get_type_abort(
213 ptr
, struct messaging_context
);
215 return nt_printing_tdb_migrate(msg_ctx
);
218 static bool spoolss_shutdown_cb(void *ptr
)
220 srv_spoolss_cleanup();
227 static void spoolss_chld_sig_hup_handler(struct tevent_context
*ev
,
228 struct tevent_signal
*se
,
234 struct messaging_context
*msg_ctx
;
236 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
238 change_to_root_user();
239 DEBUG(1,("Reloading printers after SIGHUP\n"));
240 load_printers(ev
, msg_ctx
);
241 spoolss_reopen_logs(spoolss_child_id
);
244 static bool spoolss_setup_chld_hup_handler(struct tevent_context
*ev_ctx
,
245 struct messaging_context
*msg_ctx
,
246 struct pf_worker_data
*pf
)
248 struct tevent_signal
*se
;
250 se
= tevent_add_signal(ev_ctx
,
253 spoolss_chld_sig_hup_handler
,
256 DEBUG(1, ("failed to setup SIGHUP handler"));
263 static void parent_ping(struct messaging_context
*msg_ctx
,
266 struct server_id server_id
,
270 /* The fact we received this message is enough to let make the event
271 * loop if it was idle. spoolss_children_main will cycle through
272 * spoolss_next_client at least once. That function will take whatever
273 * action is necessary */
275 DEBUG(10, ("Got message that the parent changed status.\n"));
279 static bool spoolss_child_init(struct tevent_context
*ev_ctx
,
280 int child_id
, struct pf_worker_data
*pf
)
283 struct rpc_srv_callbacks spoolss_cb
;
284 struct messaging_context
*msg_ctx
= server_messaging_context();
287 status
= reinit_after_fork(msg_ctx
, ev_ctx
,
288 procid_self(), true);
289 if (!NT_STATUS_IS_OK(status
)) {
290 DEBUG(0,("reinit_after_fork() failed\n"));
291 smb_panic("reinit_after_fork() failed");
294 spoolss_child_id
= child_id
;
295 spoolss_reopen_logs(child_id
);
297 ok
= spoolss_setup_chld_hup_handler(ev_ctx
, msg_ctx
, pf
);
302 if (!serverid_register(procid_self(),
304 FLAG_MSG_PRINT_GENERAL
)) {
308 if (!locking_init()) {
312 messaging_register(msg_ctx
, ev_ctx
,
313 MSG_SMB_CONF_UPDATED
, smb_conf_updated
);
314 messaging_register(msg_ctx
, ev_ctx
, MSG_PRINTER_PCAP
,
316 messaging_register(msg_ctx
, ev_ctx
,
317 MSG_PREFORK_PARENT_EVENT
, parent_ping
);
319 /* As soon as messaging is up check if pcap has been loaded already.
320 * If so then we probably missed a message and should load_printers()
321 * ourselves. If pcap has not been loaded yet, then ignore, we will get
322 * a message as soon as the bq process completes the reload. */
323 if (pcap_cache_loaded()) {
324 load_printers(ev_ctx
, msg_ctx
);
327 /* try to reinit rpc queues */
328 spoolss_cb
.init
= spoolss_init_cb
;
329 spoolss_cb
.shutdown
= spoolss_shutdown_cb
;
330 spoolss_cb
.private_data
= msg_ctx
;
332 status
= rpc_winreg_init(NULL
);
333 if (!NT_STATUS_IS_OK(status
)) {
334 DEBUG(0, ("Failed to register winreg rpc inteface! (%s)\n",
339 status
= rpc_spoolss_init(&spoolss_cb
);
340 if (!NT_STATUS_IS_OK(status
)) {
341 DEBUG(0, ("Failed to register spoolss rpc inteface! (%s)\n",
349 struct spoolss_children_data
{
350 struct tevent_context
*ev_ctx
;
351 struct messaging_context
*msg_ctx
;
352 struct pf_worker_data
*pf
;
357 static void spoolss_next_client(void *pvt
);
359 static int spoolss_children_main(struct tevent_context
*ev_ctx
,
360 struct messaging_context
*msg_ctx
,
361 struct pf_worker_data
*pf
,
367 struct spoolss_children_data
*data
;
371 ok
= spoolss_child_init(ev_ctx
, child_id
, pf
);
376 data
= talloc(ev_ctx
, struct spoolss_children_data
);
381 data
->ev_ctx
= ev_ctx
;
382 data
->msg_ctx
= msg_ctx
;
383 data
->listen_fd_size
= listen_fd_size
;
384 data
->listen_fds
= listen_fds
;
386 /* loop until it is time to exit */
387 while (pf
->status
!= PF_WORKER_EXITING
) {
388 /* try to see if it is time to schedule the next client */
389 spoolss_next_client(data
);
391 ret
= tevent_loop_once(ev_ctx
);
393 DEBUG(0, ("tevent_loop_once() exited with %d: %s\n",
394 ret
, strerror(errno
)));
395 pf
->status
= PF_WORKER_EXITING
;
402 static void spoolss_client_terminated(void *pvt
)
404 struct spoolss_children_data
*data
;
406 data
= talloc_get_type_abort(pvt
, struct spoolss_children_data
);
408 pfh_client_terminated(data
->pf
);
410 spoolss_next_client(pvt
);
413 struct spoolss_new_client
{
414 struct spoolss_children_data
*data
;
415 struct tsocket_address
*srv_addr
;
416 struct tsocket_address
*cli_addr
;
419 static void spoolss_handle_client(struct tevent_req
*req
);
421 static void spoolss_next_client(void *pvt
)
423 struct tevent_req
*req
;
424 struct spoolss_children_data
*data
;
425 struct spoolss_new_client
*next
;
427 data
= talloc_get_type_abort(pvt
, struct spoolss_children_data
);
429 if (!pfh_child_allowed_to_accept(data
->pf
)) {
430 /* nothing to do for now we are already listening
431 * or we are not allowed to listen further */
435 next
= talloc_zero(data
, struct spoolss_new_client
);
437 DEBUG(1, ("Out of memory!?\n"));
442 req
= prefork_listen_send(next
, data
->ev_ctx
, data
->pf
,
443 data
->listen_fd_size
,
446 DEBUG(1, ("Failed to make listening request!?\n"));
450 tevent_req_set_callback(req
, spoolss_handle_client
, next
);
453 static void spoolss_handle_client(struct tevent_req
*req
)
455 struct spoolss_children_data
*data
;
456 struct spoolss_new_client
*client
;
457 const DATA_BLOB ping
= data_blob_null
;
461 client
= tevent_req_callback_data(req
, struct spoolss_new_client
);
464 ret
= prefork_listen_recv(req
, client
, &sd
,
465 &client
->srv_addr
, &client
->cli_addr
);
467 /* this will free the request too */
471 DEBUG(6, ("No client connection was available after all!\n"));
475 /* Warn parent that our status changed */
476 messaging_send(data
->msg_ctx
, parent_id
,
477 MSG_PREFORK_CHILD_EVENT
, &ping
);
479 DEBUG(2, ("Spoolss preforked child %d got client connection!\n",
480 (int)(data
->pf
->pid
)));
482 named_pipe_accept_function(data
->ev_ctx
, data
->msg_ctx
,
483 SPOOLSS_PIPE_NAME
, sd
,
484 spoolss_client_terminated
, data
);
487 /* ==== Main Process Functions ==== */
489 extern pid_t background_lpq_updater_pid
;
490 static char *bq_logfile
;
492 static void check_updater_child(void)
497 if (background_lpq_updater_pid
== -1) {
501 pid
= sys_waitpid(background_lpq_updater_pid
, &status
, WNOHANG
);
503 DEBUG(2, ("The background queue child died... Restarting!\n"));
504 pid
= start_background_queue(server_event_context(),
505 server_messaging_context(),
507 background_lpq_updater_pid
= pid
;
511 static void child_ping(struct messaging_context
*msg_ctx
,
514 struct server_id server_id
,
517 struct tevent_context
*ev_ctx
;
519 ev_ctx
= talloc_get_type_abort(private_data
, struct tevent_context
);
521 DEBUG(10, ("Got message that a child changed status.\n"));
522 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
525 static bool spoolssd_schedule_check(struct tevent_context
*ev_ctx
,
526 struct messaging_context
*msg_ctx
,
527 struct timeval current_time
);
528 static void spoolssd_check_children(struct tevent_context
*ev_ctx
,
529 struct tevent_timer
*te
,
530 struct timeval current_time
,
533 static void spoolssd_sigchld_handler(struct tevent_context
*ev_ctx
,
534 struct prefork_pool
*pfp
,
537 struct messaging_context
*msg_ctx
;
539 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
541 /* run pool management so we can fork/retire or increase
542 * the allowed connections per child based on load */
543 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
545 /* also check if the updater child is alive and well */
546 check_updater_child();
549 static bool spoolssd_setup_children_monitor(struct tevent_context
*ev_ctx
,
550 struct messaging_context
*msg_ctx
)
554 /* add our oun sigchld callback */
555 prefork_set_sigchld_callback(spoolss_pool
,
556 spoolssd_sigchld_handler
, msg_ctx
);
558 ok
= spoolssd_schedule_check(ev_ctx
, msg_ctx
,
559 tevent_timeval_current());
563 static bool spoolssd_schedule_check(struct tevent_context
*ev_ctx
,
564 struct messaging_context
*msg_ctx
,
565 struct timeval current_time
)
567 struct tevent_timer
*te
;
568 struct timeval next_event
;
570 /* check situation again in 10 seconds */
571 next_event
= tevent_timeval_current_ofs(10, 0);
573 /* TODO: check when the socket becomes readable, so that children
574 * are checked only when there is some activity ? */
575 te
= tevent_add_timer(ev_ctx
, spoolss_pool
, next_event
,
576 spoolssd_check_children
, msg_ctx
);
578 DEBUG(2, ("Failed to set up children monitoring!\n"));
585 static void spoolssd_check_children(struct tevent_context
*ev_ctx
,
586 struct tevent_timer
*te
,
587 struct timeval current_time
,
590 struct messaging_context
*msg_ctx
;
592 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
594 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
596 spoolssd_schedule_check(ev_ctx
, msg_ctx
, current_time
);
599 static void print_queue_forward(struct messaging_context
*msg
,
602 struct server_id server_id
,
605 messaging_send_buf(msg
, pid_to_procid(background_lpq_updater_pid
),
606 MSG_PRINTER_UPDATE
, data
->data
, data
->length
);
609 static char *get_bq_logfile(void)
611 char *lfile
= lp_logfile();
614 if (lfile
== NULL
|| lfile
[0] == '\0') {
615 rc
= asprintf(&lfile
, "%s/log.%s.bq",
616 get_dyn_LOGFILEBASE(), DAEMON_NAME
);
618 rc
= asprintf(&lfile
, "%s.bq", lp_logfile());
626 pid_t
start_spoolssd(struct tevent_context
*ev_ctx
,
627 struct messaging_context
*msg_ctx
)
629 struct rpc_srv_callbacks spoolss_cb
;
630 struct dcerpc_binding_vector
*v
;
638 DEBUG(1, ("Forking SPOOLSS Daemon\n"));
641 * Block signals before forking child as it will have to
642 * set its own handlers. Child will re-enable SIGHUP as
643 * soon as the handlers are set up.
645 BlockSignals(true, SIGTERM
);
646 BlockSignals(true, SIGHUP
);
651 DEBUG(0, ("Failed to fork SPOOLSS [%s]\n",
655 /* parent or error */
658 /* Re-enable SIGHUP before returnig */
659 BlockSignals(false, SIGTERM
);
660 BlockSignals(false, SIGHUP
);
665 close_low_fds(false);
667 status
= reinit_after_fork(msg_ctx
,
669 procid_self(), true);
670 if (!NT_STATUS_IS_OK(status
)) {
671 DEBUG(0,("reinit_after_fork() failed\n"));
672 smb_panic("reinit_after_fork() failed");
675 /* save the parent process id so the children can use it later */
676 parent_id
= procid_self();
678 spoolss_reopen_logs(0);
679 pfh_daemon_config(DAEMON_NAME
,
681 &default_pf_spoolss_cfg
);
683 spoolss_setup_sig_term_handler(ev_ctx
);
684 spoolss_setup_sig_hup_handler(ev_ctx
, msg_ctx
);
686 BlockSignals(false, SIGTERM
);
687 BlockSignals(false, SIGHUP
);
689 /* always start the backgroundqueue listner in spoolssd */
690 bq_logfile
= get_bq_logfile();
691 pid
= start_background_queue(ev_ctx
, msg_ctx
, bq_logfile
);
693 background_lpq_updater_pid
= pid
;
696 /* the listening fd must be created before the children are actually
698 listen_fd
= create_named_pipe_socket(SPOOLSS_PIPE_NAME
);
699 if (listen_fd
== -1) {
703 ret
= listen(listen_fd
, pf_spoolss_cfg
.max_allowed_clients
);
705 DEBUG(0, ("Failed to listen on spoolss pipe - %s\n",
710 /* start children before any more initialization is done */
711 ok
= prefork_create_pool(ev_ctx
, /* mem_ctx */
714 pf_spoolss_cfg
.min_children
,
715 pf_spoolss_cfg
.max_children
,
716 &spoolss_children_main
, NULL
,
722 if (!serverid_register(procid_self(),
724 FLAG_MSG_PRINT_GENERAL
)) {
728 if (!locking_init()) {
732 messaging_register(msg_ctx
, ev_ctx
,
733 MSG_SMB_CONF_UPDATED
, smb_conf_updated
);
734 messaging_register(msg_ctx
, NULL
, MSG_PRINTER_UPDATE
,
735 print_queue_forward
);
736 messaging_register(msg_ctx
, ev_ctx
, MSG_PRINTER_PCAP
,
738 messaging_register(msg_ctx
, ev_ctx
,
739 MSG_PREFORK_CHILD_EVENT
, child_ping
);
741 /* As soon as messaging is up check if pcap has been loaded already.
742 * If so then we probably missed a message and should load_printers()
743 * ourselves. If pcap has not been loaded yet, then ignore, we will get
744 * a message as soon as the bq process completes the reload. */
745 if (pcap_cache_loaded()) {
746 load_printers(ev_ctx
, msg_ctx
);
749 mem_ctx
= talloc_new(NULL
);
750 if (mem_ctx
== NULL
) {
755 * Initialize spoolss with an init function to convert printers first.
756 * static_init_rpc will try to initialize the spoolss server too but you
757 * can't register it twice.
759 spoolss_cb
.init
= spoolss_init_cb
;
760 spoolss_cb
.shutdown
= spoolss_shutdown_cb
;
761 spoolss_cb
.private_data
= msg_ctx
;
763 status
= rpc_winreg_init(NULL
);
764 if (!NT_STATUS_IS_OK(status
)) {
765 DEBUG(0, ("Failed to register winreg rpc inteface! (%s)\n",
770 status
= rpc_spoolss_init(&spoolss_cb
);
771 if (!NT_STATUS_IS_OK(status
)) {
772 DEBUG(0, ("Failed to register spoolss rpc inteface! (%s)\n",
777 status
= dcerpc_binding_vector_new(mem_ctx
, &v
);
778 if (!NT_STATUS_IS_OK(status
)) {
779 DEBUG(0, ("Failed to create binding vector (%s)\n",
784 status
= dcerpc_binding_vector_add_np_default(&ndr_table_spoolss
, v
);
785 if (!NT_STATUS_IS_OK(status
)) {
786 DEBUG(0, ("Failed to add np to binding vector (%s)\n",
791 status
= rpc_ep_register(ev_ctx
, msg_ctx
, &ndr_table_spoolss
, v
);
792 if (!NT_STATUS_IS_OK(status
)) {
793 DEBUG(0, ("Failed to register spoolss endpoint! (%s)\n",
798 talloc_free(mem_ctx
);
800 ok
= spoolssd_setup_children_monitor(ev_ctx
, msg_ctx
);
802 DEBUG(0, ("Failed to setup children monitoring!\n"));
806 DEBUG(1, ("SPOOLSS Daemon Started (%d)\n", getpid()));
808 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
811 ret
= tevent_loop_wait(ev_ctx
);
813 /* should not be reached */
814 DEBUG(0,("spoolssd tevent_loop_wait() exited with %d - %s\n",
815 ret
, (ret
== 0) ? "out of events" : strerror(errno
)));