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(talloc_tos());
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(talloc_tos()),
86 rc
= asprintf(&lfile
, "%s.%s",
87 lp_logfile(talloc_tos()),
94 lp_set_logfile(lfile
);
103 static void update_conf(struct tevent_context
*ev
,
104 struct messaging_context
*msg
)
106 change_to_root_user();
107 lp_load(get_dyn_CONFIGFILE(), true, false, false, true);
108 load_printers(ev
, msg
);
110 spoolss_reopen_logs(spoolss_child_id
);
111 if (spoolss_child_id
== 0) {
112 pfh_daemon_config(DAEMON_NAME
,
114 &default_pf_spoolss_cfg
);
115 pfh_manage_pool(ev
, msg
, &pf_spoolss_cfg
, spoolss_pool
);
119 static void smb_conf_updated(struct messaging_context
*msg
,
122 struct server_id server_id
,
125 struct tevent_context
*ev_ctx
= talloc_get_type_abort(private_data
,
126 struct tevent_context
);
128 DEBUG(10, ("Got message saying smb.conf was updated. Reloading.\n"));
129 update_conf(ev_ctx
, msg
);
132 static void update_pcap(struct tevent_context
*ev_ctx
,
133 struct messaging_context
*msg_ctx
)
135 change_to_root_user();
136 delete_and_reload_printers(ev_ctx
, msg_ctx
);
139 static void pcap_updated(struct messaging_context
*msg
,
142 struct server_id server_id
,
145 struct tevent_context
*ev_ctx
;
147 ev_ctx
= talloc_get_type_abort(private_data
, struct tevent_context
);
149 DEBUG(10, ("Got message that pcap updated. Reloading.\n"));
150 update_pcap(ev_ctx
, msg
);
153 static void spoolss_sig_term_handler(struct tevent_context
*ev
,
154 struct tevent_signal
*se
,
160 exit_server_cleanly("termination signal");
163 static void spoolss_setup_sig_term_handler(struct tevent_context
*ev_ctx
)
165 struct tevent_signal
*se
;
167 se
= tevent_add_signal(ev_ctx
,
170 spoolss_sig_term_handler
,
173 exit_server("failed to setup SIGTERM handler");
177 static void spoolss_sig_hup_handler(struct tevent_context
*ev
,
178 struct tevent_signal
*se
,
184 struct messaging_context
*msg_ctx
;
186 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
188 DEBUG(1,("Reloading printers after SIGHUP\n"));
189 update_conf(ev
, msg_ctx
);
191 /* relay to all children */
193 prefork_send_signal_to_all(spoolss_pool
, SIGHUP
);
197 static void spoolss_setup_sig_hup_handler(struct tevent_context
*ev_ctx
,
198 struct messaging_context
*msg_ctx
)
200 struct tevent_signal
*se
;
202 se
= tevent_add_signal(ev_ctx
,
205 spoolss_sig_hup_handler
,
208 exit_server("failed to setup SIGHUP handler");
212 static bool spoolss_init_cb(void *ptr
)
214 struct messaging_context
*msg_ctx
= talloc_get_type_abort(
215 ptr
, struct messaging_context
);
217 return nt_printing_tdb_migrate(msg_ctx
);
220 static bool spoolss_shutdown_cb(void *ptr
)
222 srv_spoolss_cleanup();
229 static void spoolss_chld_sig_hup_handler(struct tevent_context
*ev
,
230 struct tevent_signal
*se
,
236 struct messaging_context
*msg_ctx
;
238 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
240 change_to_root_user();
241 DEBUG(1,("Reloading printers after SIGHUP\n"));
242 load_printers(ev
, msg_ctx
);
243 spoolss_reopen_logs(spoolss_child_id
);
246 static bool spoolss_setup_chld_hup_handler(struct tevent_context
*ev_ctx
,
247 struct messaging_context
*msg_ctx
,
248 struct pf_worker_data
*pf
)
250 struct tevent_signal
*se
;
252 se
= tevent_add_signal(ev_ctx
,
255 spoolss_chld_sig_hup_handler
,
258 DEBUG(1, ("failed to setup SIGHUP handler"));
265 static void parent_ping(struct messaging_context
*msg_ctx
,
268 struct server_id server_id
,
272 /* The fact we received this message is enough to let make the event
273 * loop if it was idle. spoolss_children_main will cycle through
274 * spoolss_next_client at least once. That function will take whatever
275 * action is necessary */
277 DEBUG(10, ("Got message that the parent changed status.\n"));
281 static bool spoolss_child_init(struct tevent_context
*ev_ctx
,
282 int child_id
, struct pf_worker_data
*pf
)
285 struct rpc_srv_callbacks spoolss_cb
;
286 struct messaging_context
*msg_ctx
= messaging_init(NULL
, ev_ctx
);
289 status
= reinit_after_fork(msg_ctx
, ev_ctx
,
291 if (!NT_STATUS_IS_OK(status
)) {
292 DEBUG(0,("reinit_after_fork() failed\n"));
293 smb_panic("reinit_after_fork() failed");
296 spoolss_child_id
= child_id
;
297 spoolss_reopen_logs(child_id
);
299 ok
= spoolss_setup_chld_hup_handler(ev_ctx
, msg_ctx
, pf
);
304 if (!serverid_register(messaging_server_id(msg_ctx
),
306 FLAG_MSG_PRINT_GENERAL
)) {
310 if (!locking_init()) {
314 messaging_register(msg_ctx
, ev_ctx
,
315 MSG_SMB_CONF_UPDATED
, smb_conf_updated
);
316 messaging_register(msg_ctx
, ev_ctx
, MSG_PRINTER_PCAP
,
318 messaging_register(msg_ctx
, ev_ctx
,
319 MSG_PREFORK_PARENT_EVENT
, parent_ping
);
321 /* As soon as messaging is up check if pcap has been loaded already.
322 * If so then we probably missed a message and should load_printers()
323 * ourselves. If pcap has not been loaded yet, then ignore, we will get
324 * a message as soon as the bq process completes the reload. */
325 if (pcap_cache_loaded()) {
326 load_printers(ev_ctx
, msg_ctx
);
329 /* try to reinit rpc queues */
330 spoolss_cb
.init
= spoolss_init_cb
;
331 spoolss_cb
.shutdown
= spoolss_shutdown_cb
;
332 spoolss_cb
.private_data
= msg_ctx
;
334 status
= rpc_winreg_init(NULL
);
335 if (!NT_STATUS_IS_OK(status
)) {
336 DEBUG(0, ("Failed to register winreg rpc inteface! (%s)\n",
341 status
= rpc_spoolss_init(&spoolss_cb
);
342 if (!NT_STATUS_IS_OK(status
)) {
343 DEBUG(0, ("Failed to register spoolss rpc inteface! (%s)\n",
351 struct spoolss_children_data
{
352 struct tevent_context
*ev_ctx
;
353 struct messaging_context
*msg_ctx
;
354 struct pf_worker_data
*pf
;
359 static void spoolss_next_client(void *pvt
);
361 static int spoolss_children_main(struct tevent_context
*ev_ctx
,
362 struct messaging_context
*msg_ctx
,
363 struct pf_worker_data
*pf
,
369 struct spoolss_children_data
*data
;
373 ok
= spoolss_child_init(ev_ctx
, child_id
, pf
);
378 data
= talloc(ev_ctx
, struct spoolss_children_data
);
383 data
->ev_ctx
= ev_ctx
;
384 data
->msg_ctx
= msg_ctx
;
385 data
->listen_fd_size
= listen_fd_size
;
386 data
->listen_fds
= listen_fds
;
388 /* loop until it is time to exit */
389 while (pf
->status
!= PF_WORKER_EXITING
) {
390 /* try to see if it is time to schedule the next client */
391 spoolss_next_client(data
);
393 ret
= tevent_loop_once(ev_ctx
);
395 DEBUG(0, ("tevent_loop_once() exited with %d: %s\n",
396 ret
, strerror(errno
)));
397 pf
->status
= PF_WORKER_EXITING
;
404 static void spoolss_client_terminated(void *pvt
)
406 struct spoolss_children_data
*data
;
408 data
= talloc_get_type_abort(pvt
, struct spoolss_children_data
);
410 pfh_client_terminated(data
->pf
);
412 spoolss_next_client(pvt
);
415 struct spoolss_new_client
{
416 struct spoolss_children_data
*data
;
417 struct tsocket_address
*srv_addr
;
418 struct tsocket_address
*cli_addr
;
421 static void spoolss_handle_client(struct tevent_req
*req
);
423 static void spoolss_next_client(void *pvt
)
425 struct tevent_req
*req
;
426 struct spoolss_children_data
*data
;
427 struct spoolss_new_client
*next
;
429 data
= talloc_get_type_abort(pvt
, struct spoolss_children_data
);
431 if (!pfh_child_allowed_to_accept(data
->pf
)) {
432 /* nothing to do for now we are already listening
433 * or we are not allowed to listen further */
437 next
= talloc_zero(data
, struct spoolss_new_client
);
439 DEBUG(1, ("Out of memory!?\n"));
444 req
= prefork_listen_send(next
, data
->ev_ctx
, data
->pf
,
445 data
->listen_fd_size
,
448 DEBUG(1, ("Failed to make listening request!?\n"));
452 tevent_req_set_callback(req
, spoolss_handle_client
, next
);
455 static void spoolss_handle_client(struct tevent_req
*req
)
457 struct spoolss_children_data
*data
;
458 struct spoolss_new_client
*client
;
459 const DATA_BLOB ping
= data_blob_null
;
463 client
= tevent_req_callback_data(req
, struct spoolss_new_client
);
466 ret
= prefork_listen_recv(req
, client
, &sd
,
467 &client
->srv_addr
, &client
->cli_addr
);
469 /* this will free the request too */
473 DEBUG(6, ("No client connection was available after all!\n"));
477 /* Warn parent that our status changed */
478 messaging_send(data
->msg_ctx
, parent_id
,
479 MSG_PREFORK_CHILD_EVENT
, &ping
);
481 DEBUG(2, ("Spoolss preforked child %d got client connection!\n",
482 (int)(data
->pf
->pid
)));
484 named_pipe_accept_function(data
->ev_ctx
, data
->msg_ctx
,
485 SPOOLSS_PIPE_NAME
, sd
,
486 spoolss_client_terminated
, data
);
489 /* ==== Main Process Functions ==== */
491 extern pid_t background_lpq_updater_pid
;
492 static char *bq_logfile
;
494 static void check_updater_child(struct tevent_context
*ev_ctx
,
495 struct messaging_context
*msg_ctx
)
500 if (background_lpq_updater_pid
== -1) {
504 pid
= sys_waitpid(background_lpq_updater_pid
, &status
, WNOHANG
);
506 DEBUG(2, ("The background queue child died... Restarting!\n"));
507 pid
= start_background_queue(ev_ctx
, msg_ctx
, bq_logfile
);
508 background_lpq_updater_pid
= pid
;
512 static void child_ping(struct messaging_context
*msg_ctx
,
515 struct server_id server_id
,
518 struct tevent_context
*ev_ctx
;
520 ev_ctx
= talloc_get_type_abort(private_data
, struct tevent_context
);
522 DEBUG(10, ("Got message that a child changed status.\n"));
523 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
526 static bool spoolssd_schedule_check(struct tevent_context
*ev_ctx
,
527 struct messaging_context
*msg_ctx
,
528 struct timeval current_time
);
529 static void spoolssd_check_children(struct tevent_context
*ev_ctx
,
530 struct tevent_timer
*te
,
531 struct timeval current_time
,
534 static void spoolssd_sigchld_handler(struct tevent_context
*ev_ctx
,
535 struct prefork_pool
*pfp
,
538 struct messaging_context
*msg_ctx
;
540 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
542 /* run pool management so we can fork/retire or increase
543 * the allowed connections per child based on load */
544 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
546 /* also check if the updater child is alive and well */
547 check_updater_child(ev_ctx
, msg_ctx
);
550 static bool spoolssd_setup_children_monitor(struct tevent_context
*ev_ctx
,
551 struct messaging_context
*msg_ctx
)
555 /* add our oun sigchld callback */
556 prefork_set_sigchld_callback(spoolss_pool
,
557 spoolssd_sigchld_handler
, msg_ctx
);
559 ok
= spoolssd_schedule_check(ev_ctx
, msg_ctx
,
560 tevent_timeval_current());
564 static bool spoolssd_schedule_check(struct tevent_context
*ev_ctx
,
565 struct messaging_context
*msg_ctx
,
566 struct timeval current_time
)
568 struct tevent_timer
*te
;
569 struct timeval next_event
;
571 /* check situation again in 10 seconds */
572 next_event
= tevent_timeval_current_ofs(10, 0);
574 /* TODO: check when the socket becomes readable, so that children
575 * are checked only when there is some activity ? */
576 te
= tevent_add_timer(ev_ctx
, spoolss_pool
, next_event
,
577 spoolssd_check_children
, msg_ctx
);
579 DEBUG(2, ("Failed to set up children monitoring!\n"));
586 static void spoolssd_check_children(struct tevent_context
*ev_ctx
,
587 struct tevent_timer
*te
,
588 struct timeval current_time
,
591 struct messaging_context
*msg_ctx
;
593 msg_ctx
= talloc_get_type_abort(pvt
, struct messaging_context
);
595 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
597 spoolssd_schedule_check(ev_ctx
, msg_ctx
, current_time
);
600 static void print_queue_forward(struct messaging_context
*msg
,
603 struct server_id server_id
,
606 messaging_send_buf(msg
, pid_to_procid(background_lpq_updater_pid
),
607 MSG_PRINTER_UPDATE
, data
->data
, data
->length
);
610 static char *get_bq_logfile(void)
612 char *lfile
= lp_logfile(talloc_tos());
615 if (lfile
== NULL
|| lfile
[0] == '\0') {
616 rc
= asprintf(&lfile
, "%s/log.%s.bq",
617 get_dyn_LOGFILEBASE(), DAEMON_NAME
);
619 rc
= asprintf(&lfile
, "%s.bq", lp_logfile(talloc_tos()));
627 pid_t
start_spoolssd(struct tevent_context
*ev_ctx
,
628 struct messaging_context
*msg_ctx
)
630 struct rpc_srv_callbacks spoolss_cb
;
631 struct dcerpc_binding_vector
*v
;
639 DEBUG(1, ("Forking SPOOLSS Daemon\n"));
642 * Block signals before forking child as it will have to
643 * set its own handlers. Child will re-enable SIGHUP as
644 * soon as the handlers are set up.
646 BlockSignals(true, SIGTERM
);
647 BlockSignals(true, SIGHUP
);
652 DEBUG(0, ("Failed to fork SPOOLSS [%s]\n",
656 /* parent or error */
659 /* Re-enable SIGHUP before returnig */
660 BlockSignals(false, SIGTERM
);
661 BlockSignals(false, SIGHUP
);
665 status
= reinit_after_fork(msg_ctx
,
668 if (!NT_STATUS_IS_OK(status
)) {
669 DEBUG(0,("reinit_after_fork() failed\n"));
670 smb_panic("reinit_after_fork() failed");
673 /* save the parent process id so the children can use it later */
674 parent_id
= messaging_server_id(msg_ctx
);
676 spoolss_reopen_logs(0);
677 pfh_daemon_config(DAEMON_NAME
,
679 &default_pf_spoolss_cfg
);
681 spoolss_setup_sig_term_handler(ev_ctx
);
682 spoolss_setup_sig_hup_handler(ev_ctx
, msg_ctx
);
684 BlockSignals(false, SIGTERM
);
685 BlockSignals(false, SIGHUP
);
687 /* always start the backgroundqueue listner in spoolssd */
688 bq_logfile
= get_bq_logfile();
689 pid
= start_background_queue(ev_ctx
, msg_ctx
, bq_logfile
);
691 background_lpq_updater_pid
= pid
;
694 /* the listening fd must be created before the children are actually
696 listen_fd
= create_named_pipe_socket(SPOOLSS_PIPE_NAME
);
697 if (listen_fd
== -1) {
701 ret
= listen(listen_fd
, pf_spoolss_cfg
.max_allowed_clients
);
703 DEBUG(0, ("Failed to listen on spoolss pipe - %s\n",
708 /* start children before any more initialization is done */
709 ok
= prefork_create_pool(ev_ctx
, /* mem_ctx */
712 pf_spoolss_cfg
.min_children
,
713 pf_spoolss_cfg
.max_children
,
714 &spoolss_children_main
, NULL
,
720 if (!serverid_register(messaging_server_id(msg_ctx
),
722 FLAG_MSG_PRINT_GENERAL
)) {
726 if (!locking_init()) {
730 messaging_register(msg_ctx
, ev_ctx
,
731 MSG_SMB_CONF_UPDATED
, smb_conf_updated
);
732 messaging_register(msg_ctx
, NULL
, MSG_PRINTER_UPDATE
,
733 print_queue_forward
);
734 messaging_register(msg_ctx
, ev_ctx
, MSG_PRINTER_PCAP
,
736 messaging_register(msg_ctx
, ev_ctx
,
737 MSG_PREFORK_CHILD_EVENT
, child_ping
);
739 /* As soon as messaging is up check if pcap has been loaded already.
740 * If so then we probably missed a message and should load_printers()
741 * ourselves. If pcap has not been loaded yet, then ignore, we will get
742 * a message as soon as the bq process completes the reload. */
743 if (pcap_cache_loaded()) {
744 load_printers(ev_ctx
, msg_ctx
);
747 mem_ctx
= talloc_new(NULL
);
748 if (mem_ctx
== NULL
) {
753 * Initialize spoolss with an init function to convert printers first.
754 * static_init_rpc will try to initialize the spoolss server too but you
755 * can't register it twice.
757 spoolss_cb
.init
= spoolss_init_cb
;
758 spoolss_cb
.shutdown
= spoolss_shutdown_cb
;
759 spoolss_cb
.private_data
= msg_ctx
;
761 status
= rpc_winreg_init(NULL
);
762 if (!NT_STATUS_IS_OK(status
)) {
763 DEBUG(0, ("Failed to register winreg rpc inteface! (%s)\n",
768 status
= rpc_spoolss_init(&spoolss_cb
);
769 if (!NT_STATUS_IS_OK(status
)) {
770 DEBUG(0, ("Failed to register spoolss rpc inteface! (%s)\n",
775 status
= dcerpc_binding_vector_new(mem_ctx
, &v
);
776 if (!NT_STATUS_IS_OK(status
)) {
777 DEBUG(0, ("Failed to create binding vector (%s)\n",
782 status
= dcerpc_binding_vector_add_np_default(&ndr_table_spoolss
, v
);
783 if (!NT_STATUS_IS_OK(status
)) {
784 DEBUG(0, ("Failed to add np to binding vector (%s)\n",
789 status
= rpc_ep_register(ev_ctx
, msg_ctx
, &ndr_table_spoolss
, v
);
790 if (!NT_STATUS_IS_OK(status
)) {
791 DEBUG(0, ("Failed to register spoolss endpoint! (%s)\n",
796 talloc_free(mem_ctx
);
798 ok
= spoolssd_setup_children_monitor(ev_ctx
, msg_ctx
);
800 DEBUG(0, ("Failed to setup children monitoring!\n"));
804 DEBUG(1, ("SPOOLSS Daemon Started (%d)\n", getpid()));
806 pfh_manage_pool(ev_ctx
, msg_ctx
, &pf_spoolss_cfg
, spoolss_pool
);
809 ret
= tevent_loop_wait(ev_ctx
);
811 /* should not be reached */
812 DEBUG(0,("spoolssd tevent_loop_wait() exited with %d - %s\n",
813 ret
, (ret
== 0) ? "out of events" : strerror(errno
)));