Fix a few small spelling mistakes in DEBUG messages to reduce confusion
[Samba.git] / source3 / smbd / server.c
blobca9fb9e1a4e7bde586a0208b0786b5dd3322395d
1 /*
2 Unix SMB/CIFS implementation.
3 Main SMB server routines
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Martin Pool 2002
6 Copyright (C) Jelmer Vernooij 2002-2003
7 Copyright (C) Volker Lendecke 1993-2007
8 Copyright (C) Jeremy Allison 1993-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
25 #include "system/filesys.h"
26 #include "popt_common.h"
27 #include "smbd/smbd.h"
28 #include "smbd/globals.h"
29 #include "registry/reg_init_full.h"
30 #include "libcli/auth/schannel.h"
31 #include "secrets.h"
32 #include "../lib/util/memcache.h"
33 #include "ctdbd_conn.h"
34 #include "util_cluster.h"
35 #include "printing/queue_process.h"
36 #include "rpc_server/rpc_service_setup.h"
37 #include "rpc_server/rpc_config.h"
38 #include "serverid.h"
39 #include "passdb.h"
40 #include "auth.h"
41 #include "messages.h"
42 #include "smbprofile.h"
43 #include "lib/id_cache.h"
44 #include "lib/param/param.h"
45 #include "lib/background.h"
46 #include "lib/conn_tdb.h"
47 #include "../lib/util/pidfile.h"
48 #include "lib/smbd_shim.h"
49 #include "scavenger.h"
50 #include "locking/leases_db.h"
51 #include "../../ctdb/include/ctdb_protocol.h"
52 #include "smbd/notifyd/notifyd.h"
54 struct smbd_open_socket;
55 struct smbd_child_pid;
57 struct smbd_parent_context {
58 bool interactive;
60 struct tevent_context *ev_ctx;
61 struct messaging_context *msg_ctx;
63 /* the list of listening sockets */
64 struct smbd_open_socket *sockets;
66 /* the list of current child processes */
67 struct smbd_child_pid *children;
68 size_t num_children;
70 struct tevent_timer *cleanup_te;
73 struct smbd_open_socket {
74 struct smbd_open_socket *prev, *next;
75 struct smbd_parent_context *parent;
76 int fd;
77 struct tevent_fd *fde;
80 struct smbd_child_pid {
81 struct smbd_child_pid *prev, *next;
82 pid_t pid;
85 extern void start_epmd(struct tevent_context *ev_ctx,
86 struct messaging_context *msg_ctx);
88 extern void start_lsasd(struct tevent_context *ev_ctx,
89 struct messaging_context *msg_ctx);
91 extern void start_fssd(struct tevent_context *ev_ctx,
92 struct messaging_context *msg_ctx);
94 extern void start_mdssd(struct tevent_context *ev_ctx,
95 struct messaging_context *msg_ctx);
97 #ifdef WITH_DFS
98 extern int dcelogin_atmost_once;
99 #endif /* WITH_DFS */
101 /*******************************************************************
102 What to do when smb.conf is updated.
103 ********************************************************************/
105 static void smbd_parent_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 =
112 talloc_get_type_abort(private_data, struct tevent_context);
114 DEBUG(10,("smbd_parent_conf_updated: Got message saying smb.conf was "
115 "updated. Reloading.\n"));
116 change_to_root_user();
117 reload_services(NULL, NULL, false);
118 printing_subsystem_update(ev_ctx, msg, false);
121 /*******************************************************************
122 Delete a statcache entry.
123 ********************************************************************/
125 static void smb_stat_cache_delete(struct messaging_context *msg,
126 void *private_data,
127 uint32_t msg_tnype,
128 struct server_id server_id,
129 DATA_BLOB *data)
131 const char *name = (const char *)data->data;
132 DEBUG(10,("smb_stat_cache_delete: delete name %s\n", name));
133 stat_cache_delete(name);
136 /****************************************************************************
137 Send a SIGTERM to our process group.
138 *****************************************************************************/
140 static void killkids(void)
142 if(am_parent) kill(0,SIGTERM);
145 static void msg_exit_server(struct messaging_context *msg,
146 void *private_data,
147 uint32_t msg_type,
148 struct server_id server_id,
149 DATA_BLOB *data)
151 DEBUG(3, ("got a SHUTDOWN message\n"));
152 exit_server_cleanly(NULL);
155 #ifdef DEVELOPER
156 static void msg_inject_fault(struct messaging_context *msg,
157 void *private_data,
158 uint32_t msg_type,
159 struct server_id src,
160 DATA_BLOB *data)
162 int sig;
163 struct server_id_buf tmp;
165 if (data->length != sizeof(sig)) {
166 DEBUG(0, ("Process %s sent bogus signal injection request\n",
167 server_id_str_buf(src, &tmp)));
168 return;
171 sig = *(int *)data->data;
172 if (sig == -1) {
173 exit_server("internal error injected");
174 return;
177 #if HAVE_STRSIGNAL
178 DEBUG(0, ("Process %s requested injection of signal %d (%s)\n",
179 server_id_str_buf(src, &tmp), sig, strsignal(sig)));
180 #else
181 DEBUG(0, ("Process %s requested injection of signal %d\n",
182 server_id_str_buf(src, &tmp), sig));
183 #endif
185 kill(getpid(), sig);
187 #endif /* DEVELOPER */
189 static NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx,
190 uint32_t msg_type, DATA_BLOB* data)
192 NTSTATUS status;
193 struct smbd_parent_context *parent = am_parent;
194 struct smbd_child_pid *child;
196 if (parent == NULL) {
197 return NT_STATUS_INTERNAL_ERROR;
200 for (child = parent->children; child != NULL; child = child->next) {
201 status = messaging_send(parent->msg_ctx,
202 pid_to_procid(child->pid),
203 msg_type, data);
204 if (!NT_STATUS_IS_OK(status)) {
205 return status;
208 return NT_STATUS_OK;
211 static void smb_parent_send_to_children(struct messaging_context *ctx,
212 void* data,
213 uint32_t msg_type,
214 struct server_id srv_id,
215 DATA_BLOB* msg_data)
217 messaging_send_to_children(ctx, msg_type, msg_data);
221 * Parent smbd process sets its own debug level first and then
222 * sends a message to all the smbd children to adjust their debug
223 * level to that of the parent.
226 static void smbd_msg_debug(struct messaging_context *msg_ctx,
227 void *private_data,
228 uint32_t msg_type,
229 struct server_id server_id,
230 DATA_BLOB *data)
232 debug_message(msg_ctx, private_data, MSG_DEBUG, server_id, data);
234 messaging_send_to_children(msg_ctx, MSG_DEBUG, data);
237 static void smbd_parent_id_cache_kill(struct messaging_context *msg_ctx,
238 void *private_data,
239 uint32_t msg_type,
240 struct server_id server_id,
241 DATA_BLOB* data)
243 const char *msg = (data && data->data)
244 ? (const char *)data->data : "<NULL>";
245 struct id_cache_ref id;
247 if (!id_cache_ref_parse(msg, &id)) {
248 DEBUG(0, ("Invalid ?ID: %s\n", msg));
249 return;
252 id_cache_delete_from_cache(&id);
254 messaging_send_to_children(msg_ctx, msg_type, data);
257 static void smbd_parent_id_cache_delete(struct messaging_context *ctx,
258 void* data,
259 uint32_t msg_type,
260 struct server_id srv_id,
261 DATA_BLOB* msg_data)
263 id_cache_delete_message(ctx, data, msg_type, srv_id, msg_data);
265 messaging_send_to_children(ctx, msg_type, msg_data);
268 static int smbd_parent_ctdb_reconfigured(
269 uint32_t src_vnn, uint32_t dst_vnn, uint64_t dst_srvid,
270 const uint8_t *msg, size_t msglen, void *private_data)
272 struct messaging_context *msg_ctx = talloc_get_type_abort(
273 private_data, struct messaging_context);
275 DEBUG(10, ("Got %s message\n", (dst_srvid == CTDB_SRVID_RECONFIGURE)
276 ? "cluster reconfigure" : "SAMBA_NOTIFY"));
279 * Someone from the family died, validate our locks
282 messaging_send_buf(msg_ctx, messaging_server_id(msg_ctx),
283 MSG_SMB_BRL_VALIDATE, NULL, 0);
285 return 0;
288 static void add_child_pid(struct smbd_parent_context *parent,
289 pid_t pid)
291 struct smbd_child_pid *child;
293 child = talloc_zero(parent, struct smbd_child_pid);
294 if (child == NULL) {
295 DEBUG(0, ("Could not add child struct -- malloc failed\n"));
296 return;
298 child->pid = pid;
299 DLIST_ADD(parent->children, child);
300 parent->num_children += 1;
303 static void smb_tell_num_children(struct messaging_context *ctx, void *data,
304 uint32_t msg_type, struct server_id srv_id,
305 DATA_BLOB *msg_data)
307 uint8_t buf[sizeof(uint32_t)];
309 if (am_parent) {
310 SIVAL(buf, 0, am_parent->num_children);
311 messaging_send_buf(ctx, srv_id, MSG_SMB_NUM_CHILDREN,
312 buf, sizeof(buf));
316 static void notifyd_stopped(struct tevent_req *req);
318 static struct tevent_req *notifyd_req(struct messaging_context *msg_ctx,
319 struct tevent_context *ev)
321 struct tevent_req *req;
322 sys_notify_watch_fn sys_notify_watch = NULL;
323 struct sys_notify_context *sys_notify_ctx = NULL;
325 if (lp_kernel_change_notify()) {
327 #ifdef HAVE_INOTIFY
328 if (lp_parm_bool(-1, "notify", "inotify", true)) {
329 sys_notify_watch = inotify_watch;
331 #endif
333 #ifdef HAVE_FAM
334 if (lp_parm_bool(-1, "notify", "fam",
335 (sys_notify_watch == NULL))) {
336 sys_notify_watch = fam_watch;
338 #endif
341 if (sys_notify_watch != NULL) {
342 sys_notify_ctx = sys_notify_context_create(msg_ctx, ev);
343 if (sys_notify_ctx == NULL) {
344 return NULL;
348 req = notifyd_send(msg_ctx, ev, msg_ctx,
349 messaging_ctdbd_connection(),
350 sys_notify_watch, sys_notify_ctx);
351 if (req == NULL) {
352 TALLOC_FREE(sys_notify_ctx);
353 return NULL;
355 tevent_req_set_callback(req, notifyd_stopped, msg_ctx);
357 return req;
360 static void notifyd_stopped(struct tevent_req *req)
362 int ret;
364 ret = notifyd_recv(req);
365 TALLOC_FREE(req);
366 DEBUG(1, ("notifyd stopped: %s\n", strerror(ret)));
369 static bool smbd_notifyd_init(struct messaging_context *msg, bool interactive)
371 struct tevent_context *ev = messaging_tevent_context(msg);
372 struct tevent_req *req;
373 pid_t pid;
374 NTSTATUS status;
376 if (interactive) {
377 req = notifyd_req(msg, ev);
378 return (req != NULL);
381 pid = fork();
382 if (pid == -1) {
383 DEBUG(1, ("%s: fork failed: %s\n", __func__,
384 strerror(errno)));
385 return false;
388 if (pid != 0) {
389 return true;
392 status = reinit_after_fork(msg, ev, true, "smbd-notifyd");
393 if (!NT_STATUS_IS_OK(status)) {
394 DEBUG(1, ("%s: reinit_after_fork failed: %s\n",
395 __func__, nt_errstr(status)));
396 exit(1);
399 req = notifyd_req(msg, ev);
400 if (req == NULL) {
401 exit(1);
403 tevent_req_set_callback(req, notifyd_stopped, msg);
404 return tevent_req_poll(req, ev);
408 at most every smbd:cleanuptime seconds (default 20), we scan the BRL
409 and locking database for entries to cleanup. As a side effect this
410 also cleans up dead entries in the connections database (due to the
411 traversal in message_send_all()
413 Using a timer for this prevents a flood of traversals when a large
414 number of clients disconnect at the same time (perhaps due to a
415 network outage).
418 static void cleanup_timeout_fn(struct tevent_context *event_ctx,
419 struct tevent_timer *te,
420 struct timeval now,
421 void *private_data)
423 struct smbd_parent_context *parent =
424 talloc_get_type_abort(private_data,
425 struct smbd_parent_context);
427 parent->cleanup_te = NULL;
429 DEBUG(1,("Cleaning up brl and lock database after unclean shutdown\n"));
430 message_send_all(parent->msg_ctx, MSG_SMB_UNLOCK, NULL, 0, NULL);
431 messaging_send_buf(parent->msg_ctx,
432 messaging_server_id(parent->msg_ctx),
433 MSG_SMB_BRL_VALIDATE, NULL, 0);
436 static void remove_child_pid(struct smbd_parent_context *parent,
437 pid_t pid,
438 bool unclean_shutdown)
440 struct smbd_child_pid *child;
441 struct server_id child_id;
442 int ret;
444 child_id = pid_to_procid(pid);
446 ret = messaging_cleanup(parent->msg_ctx, pid);
448 if ((ret != 0) && (ret != ENOENT)) {
449 DEBUG(10, ("%s: messaging_cleanup returned %s\n",
450 __func__, strerror(ret)));
453 smbprofile_cleanup(pid);
455 for (child = parent->children; child != NULL; child = child->next) {
456 if (child->pid == pid) {
457 struct smbd_child_pid *tmp = child;
458 DLIST_REMOVE(parent->children, child);
459 TALLOC_FREE(tmp);
460 parent->num_children -= 1;
461 break;
465 if (child == NULL) {
466 /* not all forked child processes are added to the children list */
467 DEBUG(2, ("Could not find child %d -- ignoring\n", (int)pid));
468 return;
471 if (unclean_shutdown) {
472 /* a child terminated uncleanly so tickle all
473 processes to see if they can grab any of the
474 pending locks
476 DEBUG(3,(__location__ " Unclean shutdown of pid %u\n",
477 (unsigned int)pid));
478 if (parent->cleanup_te == NULL) {
479 /* call the cleanup timer, but not too often */
480 int cleanup_time = lp_parm_int(-1, "smbd", "cleanuptime", 20);
481 parent->cleanup_te = tevent_add_timer(parent->ev_ctx,
482 parent,
483 timeval_current_ofs(cleanup_time, 0),
484 cleanup_timeout_fn,
485 parent);
486 DEBUG(1,("Scheduled cleanup of brl and lock database after unclean shutdown\n"));
490 if (!serverid_deregister(child_id)) {
491 DEBUG(1, ("Could not remove pid %d from serverid.tdb\n",
492 (int)pid));
496 /****************************************************************************
497 Have we reached the process limit ?
498 ****************************************************************************/
500 static bool allowable_number_of_smbd_processes(struct smbd_parent_context *parent)
502 int max_processes = lp_max_smbd_processes();
504 if (!max_processes)
505 return True;
507 return parent->num_children < max_processes;
510 static void smbd_sig_chld_handler(struct tevent_context *ev,
511 struct tevent_signal *se,
512 int signum,
513 int count,
514 void *siginfo,
515 void *private_data)
517 pid_t pid;
518 int status;
519 struct smbd_parent_context *parent =
520 talloc_get_type_abort(private_data,
521 struct smbd_parent_context);
523 while ((pid = sys_waitpid(-1, &status, WNOHANG)) > 0) {
524 bool unclean_shutdown = False;
526 /* If the child terminated normally, assume
527 it was an unclean shutdown unless the
528 status is 0
530 if (WIFEXITED(status)) {
531 unclean_shutdown = WEXITSTATUS(status);
533 /* If the child terminated due to a signal
534 we always assume it was unclean.
536 if (WIFSIGNALED(status)) {
537 unclean_shutdown = True;
539 remove_child_pid(parent, pid, unclean_shutdown);
543 static void smbd_setup_sig_chld_handler(struct smbd_parent_context *parent)
545 struct tevent_signal *se;
547 se = tevent_add_signal(parent->ev_ctx,
548 parent, /* mem_ctx */
549 SIGCHLD, 0,
550 smbd_sig_chld_handler,
551 parent);
552 if (!se) {
553 exit_server("failed to setup SIGCHLD handler");
557 static void smbd_open_socket_close_fn(struct tevent_context *ev,
558 struct tevent_fd *fde,
559 int fd,
560 void *private_data)
562 /* this might be the socket_wrapper swrap_close() */
563 close(fd);
566 static void smbd_accept_connection(struct tevent_context *ev,
567 struct tevent_fd *fde,
568 uint16_t flags,
569 void *private_data)
571 struct smbd_open_socket *s = talloc_get_type_abort(private_data,
572 struct smbd_open_socket);
573 struct messaging_context *msg_ctx = s->parent->msg_ctx;
574 struct sockaddr_storage addr;
575 socklen_t in_addrlen = sizeof(addr);
576 int fd;
577 pid_t pid = 0;
578 uint64_t unique_id;
580 fd = accept(s->fd, (struct sockaddr *)(void *)&addr,&in_addrlen);
581 if (fd == -1 && errno == EINTR)
582 return;
584 if (fd == -1) {
585 DEBUG(0,("accept: %s\n",
586 strerror(errno)));
587 return;
590 if (s->parent->interactive) {
591 reinit_after_fork(msg_ctx, ev, true, NULL);
592 smbd_process(ev, msg_ctx, fd, true);
593 exit_server_cleanly("end of interactive mode");
594 return;
597 if (!allowable_number_of_smbd_processes(s->parent)) {
598 close(fd);
599 return;
603 * Generate a unique id in the parent process so that we use
604 * the global random state in the parent.
606 unique_id = serverid_get_random_unique_id();
608 pid = fork();
609 if (pid == 0) {
610 NTSTATUS status = NT_STATUS_OK;
613 * Can't use TALLOC_FREE here. Nulling out the argument to it
614 * would overwrite memory we've just freed.
616 talloc_free(s->parent);
617 s = NULL;
619 set_my_unique_id(unique_id);
621 /* Stop zombies, the parent explicitly handles
622 * them, counting worker smbds. */
623 CatchChild();
625 status = smbd_reinit_after_fork(msg_ctx, ev, true, NULL);
626 if (!NT_STATUS_IS_OK(status)) {
627 if (NT_STATUS_EQUAL(status,
628 NT_STATUS_TOO_MANY_OPENED_FILES)) {
629 DEBUG(0,("child process cannot initialize "
630 "because too many files are open\n"));
631 goto exit;
633 if (lp_clustering() &&
634 NT_STATUS_EQUAL(status,
635 NT_STATUS_INTERNAL_DB_ERROR)) {
636 DEBUG(1,("child process cannot initialize "
637 "because connection to CTDB "
638 "has failed\n"));
639 goto exit;
642 DEBUG(0,("reinit_after_fork() failed\n"));
643 smb_panic("reinit_after_fork() failed");
646 smbd_process(ev, msg_ctx, fd, false);
647 exit:
648 exit_server_cleanly("end of child");
649 return;
652 if (pid < 0) {
653 DEBUG(0,("smbd_accept_connection: fork() failed: %s\n",
654 strerror(errno)));
657 /* The parent doesn't need this socket */
658 close(fd);
660 /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
661 Clear the closed fd info out of server_fd --
662 and more importantly, out of client_fd in
663 util_sock.c, to avoid a possible
664 getpeername failure if we reopen the logs
665 and use %I in the filename.
668 if (pid != 0) {
669 add_child_pid(s->parent, pid);
672 /* Force parent to check log size after
673 * spawning child. Fix from
674 * klausr@ITAP.Physik.Uni-Stuttgart.De. The
675 * parent smbd will log to logserver.smb. It
676 * writes only two messages for each child
677 * started/finished. But each child writes,
678 * say, 50 messages also in logserver.smb,
679 * begining with the debug_count of the
680 * parent, before the child opens its own log
681 * file logserver.client. In a worst case
682 * scenario the size of logserver.smb would be
683 * checked after about 50*50=2500 messages
684 * (ca. 100kb).
685 * */
686 force_check_log_size();
689 static bool smbd_open_one_socket(struct smbd_parent_context *parent,
690 struct tevent_context *ev_ctx,
691 const struct sockaddr_storage *ifss,
692 uint16_t port)
694 struct smbd_open_socket *s;
696 s = talloc(parent, struct smbd_open_socket);
697 if (!s) {
698 return false;
701 s->parent = parent;
702 s->fd = open_socket_in(SOCK_STREAM,
703 port,
704 parent->sockets == NULL ? 0 : 2,
705 ifss,
706 true);
707 if (s->fd == -1) {
708 DEBUG(0,("smbd_open_one_socket: open_socket_in: "
709 "%s\n", strerror(errno)));
710 TALLOC_FREE(s);
712 * We ignore an error here, as we've done before
714 return true;
717 /* ready to listen */
718 set_socket_options(s->fd, "SO_KEEPALIVE");
719 set_socket_options(s->fd, lp_socket_options());
721 /* Set server socket to
722 * non-blocking for the accept. */
723 set_blocking(s->fd, False);
725 if (listen(s->fd, SMBD_LISTEN_BACKLOG) == -1) {
726 DEBUG(0,("smbd_open_one_socket: listen: "
727 "%s\n", strerror(errno)));
728 close(s->fd);
729 TALLOC_FREE(s);
730 return false;
733 s->fde = tevent_add_fd(ev_ctx,
735 s->fd, TEVENT_FD_READ,
736 smbd_accept_connection,
738 if (!s->fde) {
739 DEBUG(0,("smbd_open_one_socket: "
740 "tevent_add_fd: %s\n",
741 strerror(errno)));
742 close(s->fd);
743 TALLOC_FREE(s);
744 return false;
746 tevent_fd_set_close_fn(s->fde, smbd_open_socket_close_fn);
748 DLIST_ADD_END(parent->sockets, s, struct smbd_open_socket *);
750 return true;
753 /****************************************************************************
754 Open the socket communication.
755 ****************************************************************************/
757 static bool open_sockets_smbd(struct smbd_parent_context *parent,
758 struct tevent_context *ev_ctx,
759 struct messaging_context *msg_ctx,
760 const char *smb_ports)
762 int num_interfaces = iface_count();
763 int i,j;
764 const char **ports;
765 unsigned dns_port = 0;
767 #ifdef HAVE_ATEXIT
768 atexit(killkids);
769 #endif
771 /* Stop zombies */
772 smbd_setup_sig_chld_handler(parent);
774 ports = lp_smb_ports();
776 /* use a reasonable default set of ports - listing on 445 and 139 */
777 if (smb_ports) {
778 char **l;
779 l = str_list_make_v3(talloc_tos(), smb_ports, NULL);
780 ports = discard_const_p(const char *, l);
783 for (j = 0; ports && ports[j]; j++) {
784 unsigned port = atoi(ports[j]);
786 if (port == 0 || port > 0xffff) {
787 exit_server_cleanly("Invalid port in the config or on "
788 "the commandline specified!");
792 if (lp_interfaces() && lp_bind_interfaces_only()) {
793 /* We have been given an interfaces line, and been
794 told to only bind to those interfaces. Create a
795 socket per interface and bind to only these.
798 /* Now open a listen socket for each of the
799 interfaces. */
800 for(i = 0; i < num_interfaces; i++) {
801 const struct sockaddr_storage *ifss =
802 iface_n_sockaddr_storage(i);
803 if (ifss == NULL) {
804 DEBUG(0,("open_sockets_smbd: "
805 "interface %d has NULL IP address !\n",
806 i));
807 continue;
810 for (j = 0; ports && ports[j]; j++) {
811 unsigned port = atoi(ports[j]);
813 /* Keep the first port for mDNS service
814 * registration.
816 if (dns_port == 0) {
817 dns_port = port;
820 if (!smbd_open_one_socket(parent,
821 ev_ctx,
822 ifss,
823 port)) {
824 return false;
828 } else {
829 /* Just bind to 0.0.0.0 - accept connections
830 from anywhere. */
832 const char *sock_addr;
833 char *sock_tok;
834 const char *sock_ptr;
836 #if HAVE_IPV6
837 sock_addr = "::,0.0.0.0";
838 #else
839 sock_addr = "0.0.0.0";
840 #endif
842 for (sock_ptr=sock_addr;
843 next_token_talloc(talloc_tos(), &sock_ptr, &sock_tok, " \t,"); ) {
844 for (j = 0; ports && ports[j]; j++) {
845 struct sockaddr_storage ss;
846 unsigned port = atoi(ports[j]);
848 /* Keep the first port for mDNS service
849 * registration.
851 if (dns_port == 0) {
852 dns_port = port;
855 /* open an incoming socket */
856 if (!interpret_string_addr(&ss, sock_tok,
857 AI_NUMERICHOST|AI_PASSIVE)) {
858 continue;
862 * If we fail to open any sockets
863 * in this loop the parent-sockets == NULL
864 * case below will prevent us from starting.
867 (void)smbd_open_one_socket(parent,
868 ev_ctx,
869 &ss,
870 port);
875 if (parent->sockets == NULL) {
876 DEBUG(0,("open_sockets_smbd: No "
877 "sockets available to bind to.\n"));
878 return false;
881 /* Setup the main smbd so that we can get messages. Note that
882 do this after starting listening. This is needed as when in
883 clustered mode, ctdb won't allow us to start doing database
884 operations until it has gone thru a full startup, which
885 includes checking to see that smbd is listening. */
887 if (!serverid_register(messaging_server_id(msg_ctx),
888 FLAG_MSG_GENERAL|FLAG_MSG_SMBD
889 |FLAG_MSG_PRINT_GENERAL
890 |FLAG_MSG_DBWRAP)) {
891 DEBUG(0, ("open_sockets_smbd: Failed to register "
892 "myself in serverid.tdb\n"));
893 return false;
896 /* Listen to messages */
898 messaging_register(msg_ctx, NULL, MSG_SHUTDOWN, msg_exit_server);
899 messaging_register(msg_ctx, ev_ctx, MSG_SMB_CONF_UPDATED,
900 smbd_parent_conf_updated);
901 messaging_register(msg_ctx, NULL, MSG_SMB_STAT_CACHE_DELETE,
902 smb_stat_cache_delete);
903 messaging_register(msg_ctx, NULL, MSG_DEBUG, smbd_msg_debug);
904 messaging_register(msg_ctx, NULL, MSG_SMB_BRL_VALIDATE,
905 brl_revalidate);
906 messaging_register(msg_ctx, NULL, MSG_SMB_FORCE_TDIS,
907 smb_parent_send_to_children);
908 messaging_register(msg_ctx, NULL, MSG_SMB_KILL_CLIENT_IP,
909 smb_parent_send_to_children);
910 messaging_register(msg_ctx, NULL, MSG_SMB_TELL_NUM_CHILDREN,
911 smb_tell_num_children);
913 messaging_register(msg_ctx, NULL,
914 ID_CACHE_DELETE, smbd_parent_id_cache_delete);
915 messaging_register(msg_ctx, NULL,
916 ID_CACHE_KILL, smbd_parent_id_cache_kill);
918 if (lp_clustering()) {
919 struct ctdbd_connection *conn = messaging_ctdbd_connection();
921 register_with_ctdbd(conn, CTDB_SRVID_RECONFIGURE,
922 smbd_parent_ctdb_reconfigured, msg_ctx);
923 register_with_ctdbd(conn, CTDB_SRVID_SAMBA_NOTIFY,
924 smbd_parent_ctdb_reconfigured, msg_ctx);
927 #ifdef DEVELOPER
928 messaging_register(msg_ctx, NULL, MSG_SMB_INJECT_FAULT,
929 msg_inject_fault);
930 #endif
932 if (lp_multicast_dns_register() && (dns_port != 0)) {
933 #ifdef WITH_DNSSD_SUPPORT
934 smbd_setup_mdns_registration(ev_ctx,
935 parent, dns_port);
936 #endif
937 #ifdef WITH_AVAHI_SUPPORT
938 void *avahi_conn;
940 avahi_conn = avahi_start_register(ev_ctx,
941 ev_ctx,
942 dns_port);
943 if (avahi_conn == NULL) {
944 DEBUG(10, ("avahi_start_register failed\n"));
946 #endif
949 return true;
954 handle stdin becoming readable when we are in --foreground mode
956 static void smbd_stdin_handler(struct tevent_context *ev,
957 struct tevent_fd *fde,
958 uint16_t flags,
959 void *private_data)
961 char c;
962 if (read(0, &c, 1) != 1) {
963 /* we have reached EOF on stdin, which means the
964 parent has exited. Shutdown the server */
965 exit_server_cleanly("EOF on stdin");
969 struct smbd_parent_tevent_trace_state {
970 TALLOC_CTX *frame;
973 static void smbd_parent_tevent_trace_callback(enum tevent_trace_point point,
974 void *private_data)
976 struct smbd_parent_tevent_trace_state *state =
977 (struct smbd_parent_tevent_trace_state *)private_data;
979 switch (point) {
980 case TEVENT_TRACE_BEFORE_WAIT:
981 break;
982 case TEVENT_TRACE_AFTER_WAIT:
983 break;
984 case TEVENT_TRACE_BEFORE_LOOP_ONCE:
985 TALLOC_FREE(state->frame);
986 state->frame = talloc_stackframe();
987 break;
988 case TEVENT_TRACE_AFTER_LOOP_ONCE:
989 TALLOC_FREE(state->frame);
990 break;
993 errno = 0;
996 static void smbd_parent_loop(struct tevent_context *ev_ctx,
997 struct smbd_parent_context *parent)
999 struct smbd_parent_tevent_trace_state trace_state = {
1000 .frame = NULL,
1002 int ret = 0;
1004 tevent_set_trace_callback(ev_ctx, smbd_parent_tevent_trace_callback,
1005 &trace_state);
1007 /* now accept incoming connections - forking a new process
1008 for each incoming connection */
1009 DEBUG(2,("waiting for connections\n"));
1011 ret = tevent_loop_wait(ev_ctx);
1012 if (ret != 0) {
1013 DEBUG(0, ("tevent_loop_wait failed: %d, %s, exiting\n",
1014 ret, strerror(errno)));
1017 TALLOC_FREE(trace_state.frame);
1019 /* NOTREACHED return True; */
1023 /****************************************************************************
1024 Initialise connect, service and file structs.
1025 ****************************************************************************/
1027 static bool init_structs(void )
1030 * Set the machine NETBIOS name if not already
1031 * set from the config file.
1034 if (!init_names())
1035 return False;
1037 if (!secrets_init())
1038 return False;
1040 return True;
1043 static void smbd_parent_sig_term_handler(struct tevent_context *ev,
1044 struct tevent_signal *se,
1045 int signum,
1046 int count,
1047 void *siginfo,
1048 void *private_data)
1050 exit_server_cleanly("termination signal");
1053 static void smbd_parent_sig_hup_handler(struct tevent_context *ev,
1054 struct tevent_signal *se,
1055 int signum,
1056 int count,
1057 void *siginfo,
1058 void *private_data)
1060 struct smbd_parent_context *parent =
1061 talloc_get_type_abort(private_data,
1062 struct smbd_parent_context);
1064 change_to_root_user();
1065 DEBUG(1,("parent: Reloading services after SIGHUP\n"));
1066 reload_services(NULL, NULL, false);
1068 printing_subsystem_update(parent->ev_ctx, parent->msg_ctx, true);
1071 /****************************************************************************
1072 main program.
1073 ****************************************************************************/
1075 /* Declare prototype for build_options() to avoid having to run it through
1076 mkproto.h. Mixing $(builddir) and $(srcdir) source files in the current
1077 prototype generation system is too complicated. */
1079 extern void build_options(bool screen);
1081 int main(int argc,const char *argv[])
1083 /* shall I run as a daemon */
1084 bool is_daemon = false;
1085 bool interactive = false;
1086 bool Fork = true;
1087 bool no_process_group = false;
1088 bool log_stdout = false;
1089 char *ports = NULL;
1090 char *profile_level = NULL;
1091 int opt;
1092 poptContext pc;
1093 bool print_build_options = False;
1094 enum {
1095 OPT_DAEMON = 1000,
1096 OPT_INTERACTIVE,
1097 OPT_FORK,
1098 OPT_NO_PROCESS_GROUP,
1099 OPT_LOG_STDOUT
1101 struct poptOption long_options[] = {
1102 POPT_AUTOHELP
1103 {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
1104 {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)"},
1105 {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools, etc.)" },
1106 {"no-process-group", '\0', POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
1107 {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
1108 {"build-options", 'b', POPT_ARG_NONE, NULL, 'b', "Print build options" },
1109 {"port", 'p', POPT_ARG_STRING, &ports, 0, "Listen on the specified ports"},
1110 {"profiling-level", 'P', POPT_ARG_STRING, &profile_level, 0, "Set profiling level","PROFILE_LEVEL"},
1111 POPT_COMMON_SAMBA
1112 POPT_TABLEEND
1114 struct smbd_parent_context *parent = NULL;
1115 TALLOC_CTX *frame;
1116 NTSTATUS status;
1117 struct tevent_context *ev_ctx;
1118 struct messaging_context *msg_ctx;
1119 struct server_id server_id;
1120 struct tevent_signal *se;
1121 int profiling_level;
1122 char *np_dir = NULL;
1123 static const struct smbd_shim smbd_shim_fns =
1125 .cancel_pending_lock_requests_by_fid = smbd_cancel_pending_lock_requests_by_fid,
1126 .send_stat_cache_delete_message = smbd_send_stat_cache_delete_message,
1127 .change_to_root_user = smbd_change_to_root_user,
1128 .become_authenticated_pipe_user = smbd_become_authenticated_pipe_user,
1129 .unbecome_authenticated_pipe_user = smbd_unbecome_authenticated_pipe_user,
1131 .contend_level2_oplocks_begin = smbd_contend_level2_oplocks_begin,
1132 .contend_level2_oplocks_end = smbd_contend_level2_oplocks_end,
1134 .become_root = smbd_become_root,
1135 .unbecome_root = smbd_unbecome_root,
1137 .exit_server = smbd_exit_server,
1138 .exit_server_cleanly = smbd_exit_server_cleanly,
1142 * Do this before any other talloc operation
1144 talloc_enable_null_tracking();
1145 frame = talloc_stackframe();
1147 setup_logging(argv[0], DEBUG_DEFAULT_STDOUT);
1149 smb_init_locale();
1151 set_smbd_shim(&smbd_shim_fns);
1153 smbd_init_globals();
1155 TimeInit();
1157 #ifdef HAVE_SET_AUTH_PARAMETERS
1158 set_auth_parameters(argc,argv);
1159 #endif
1161 pc = poptGetContext("smbd", argc, argv, long_options, 0);
1162 while((opt = poptGetNextOpt(pc)) != -1) {
1163 switch (opt) {
1164 case OPT_DAEMON:
1165 is_daemon = true;
1166 break;
1167 case OPT_INTERACTIVE:
1168 interactive = true;
1169 break;
1170 case OPT_FORK:
1171 Fork = false;
1172 break;
1173 case OPT_NO_PROCESS_GROUP:
1174 no_process_group = true;
1175 break;
1176 case OPT_LOG_STDOUT:
1177 log_stdout = true;
1178 break;
1179 case 'b':
1180 print_build_options = True;
1181 break;
1182 default:
1183 d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1184 poptBadOption(pc, 0), poptStrerror(opt));
1185 poptPrintUsage(pc, stderr, 0);
1186 exit(1);
1189 poptFreeContext(pc);
1191 if (interactive) {
1192 Fork = False;
1193 log_stdout = True;
1196 if (log_stdout) {
1197 setup_logging(argv[0], DEBUG_STDOUT);
1198 } else {
1199 setup_logging(argv[0], DEBUG_FILE);
1202 if (print_build_options) {
1203 build_options(True); /* Display output to screen as well as debug */
1204 exit(0);
1207 #ifdef HAVE_SETLUID
1208 /* needed for SecureWare on SCO */
1209 setluid(0);
1210 #endif
1212 set_remote_machine_name("smbd", False);
1214 if (interactive && (DEBUGLEVEL >= 9)) {
1215 talloc_enable_leak_report();
1218 if (log_stdout && Fork) {
1219 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
1220 exit(1);
1223 /* we want to re-seed early to prevent time delays causing
1224 client problems at a later date. (tridge) */
1225 generate_random_buffer(NULL, 0);
1227 /* get initial effective uid and gid */
1228 sec_init();
1230 /* make absolutely sure we run as root - to handle cases where people
1231 are crazy enough to have it setuid */
1232 gain_root_privilege();
1233 gain_root_group_privilege();
1235 fault_setup();
1236 dump_core_setup("smbd", lp_logfile(talloc_tos()));
1238 /* we are never interested in SIGPIPE */
1239 BlockSignals(True,SIGPIPE);
1241 #if defined(SIGFPE)
1242 /* we are never interested in SIGFPE */
1243 BlockSignals(True,SIGFPE);
1244 #endif
1246 #if defined(SIGUSR2)
1247 /* We are no longer interested in USR2 */
1248 BlockSignals(True,SIGUSR2);
1249 #endif
1251 /* POSIX demands that signals are inherited. If the invoking process has
1252 * these signals masked, we will have problems, as we won't recieve them. */
1253 BlockSignals(False, SIGHUP);
1254 BlockSignals(False, SIGUSR1);
1255 BlockSignals(False, SIGTERM);
1257 /* Ensure we leave no zombies until we
1258 * correctly set up child handling below. */
1260 CatchChild();
1262 /* we want total control over the permissions on created files,
1263 so set our umask to 0 */
1264 umask(0);
1266 reopen_logs();
1268 DEBUG(0,("smbd version %s started.\n", samba_version_string()));
1269 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1271 DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
1272 (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
1274 /* Output the build options to the debug log */
1275 build_options(False);
1277 if (sizeof(uint16_t) < 2 || sizeof(uint32_t) < 4) {
1278 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
1279 exit(1);
1282 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1283 DEBUG(0, ("error opening config file '%s'\n", get_dyn_CONFIGFILE()));
1284 exit(1);
1287 if (!cluster_probe_ok()) {
1288 exit(1);
1291 /* Init the security context and global current_user */
1292 init_sec_ctx();
1295 * Initialize the event context. The event context needs to be
1296 * initialized before the messaging context, cause the messaging
1297 * context holds an event context.
1298 * FIXME: This should be s3_tevent_context_init()
1300 ev_ctx = server_event_context();
1301 if (ev_ctx == NULL) {
1302 exit(1);
1306 * Init the messaging context
1307 * FIXME: This should only call messaging_init()
1309 msg_ctx = server_messaging_context();
1310 if (msg_ctx == NULL) {
1311 exit(1);
1315 * Reloading of the printers will not work here as we don't have a
1316 * server info and rpc services set up. It will be called later.
1318 if (!reload_services(NULL, NULL, false)) {
1319 exit(1);
1322 if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC
1323 && !lp_parm_bool(-1, "server role check", "inhibit", false)) {
1324 DEBUG(0, ("server role = 'active directory domain controller' not compatible with running smbd standalone. \n"));
1325 DEBUGADD(0, ("You should start 'samba' instead, and it will control starting smbd if required\n"));
1326 exit(1);
1329 /* ...NOTE... Log files are working from this point! */
1331 DEBUG(3,("loaded services\n"));
1333 init_structs();
1335 if (!profile_setup(msg_ctx, False)) {
1336 DEBUG(0,("ERROR: failed to setup profiling\n"));
1337 return -1;
1340 if (profile_level != NULL) {
1341 profiling_level = atoi(profile_level);
1342 } else {
1343 profiling_level = lp_smbd_profiling_level();
1345 set_profile_level(profiling_level, messaging_server_id(msg_ctx));
1347 if (!is_daemon && !is_a_socket(0)) {
1348 if (!interactive) {
1349 DEBUG(3, ("Standard input is not a socket, "
1350 "assuming -D option\n"));
1354 * Setting is_daemon here prevents us from eventually calling
1355 * the open_sockets_inetd()
1358 is_daemon = True;
1361 if (is_daemon && !interactive) {
1362 DEBUG(3, ("Becoming a daemon.\n"));
1363 become_daemon(Fork, no_process_group, log_stdout);
1366 set_my_unique_id(serverid_get_random_unique_id());
1368 #if HAVE_SETPGID
1370 * If we're interactive we want to set our own process group for
1371 * signal management.
1373 if (interactive && !no_process_group)
1374 setpgid( (pid_t)0, (pid_t)0);
1375 #endif
1377 if (!directory_exist(lp_lock_directory()))
1378 mkdir(lp_lock_directory(), 0755);
1380 if (!directory_exist(lp_pid_directory()))
1381 mkdir(lp_pid_directory(), 0755);
1383 if (is_daemon)
1384 pidfile_create(lp_pid_directory(), "smbd");
1386 status = reinit_after_fork(msg_ctx, ev_ctx, false, NULL);
1387 if (!NT_STATUS_IS_OK(status)) {
1388 exit_daemon("reinit_after_fork() failed", map_errno_from_nt_status(status));
1391 if (!interactive) {
1393 * Do not initialize the parent-child-pipe before becoming a
1394 * daemon: this is used to detect a died parent in the child
1395 * process.
1397 status = init_before_fork();
1398 if (!NT_STATUS_IS_OK(status)) {
1399 exit_daemon(nt_errstr(status), map_errno_from_nt_status(status));
1403 parent = talloc_zero(ev_ctx, struct smbd_parent_context);
1404 if (!parent) {
1405 exit_server("talloc(struct smbd_parent_context) failed");
1407 parent->interactive = interactive;
1408 parent->ev_ctx = ev_ctx;
1409 parent->msg_ctx = msg_ctx;
1410 am_parent = parent;
1412 se = tevent_add_signal(parent->ev_ctx,
1413 parent,
1414 SIGTERM, 0,
1415 smbd_parent_sig_term_handler,
1416 parent);
1417 if (!se) {
1418 exit_server("failed to setup SIGTERM handler");
1420 se = tevent_add_signal(parent->ev_ctx,
1421 parent,
1422 SIGHUP, 0,
1423 smbd_parent_sig_hup_handler,
1424 parent);
1425 if (!se) {
1426 exit_server("failed to setup SIGHUP handler");
1429 /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
1431 if (smbd_memcache() == NULL) {
1432 exit_daemon("no memcache available", EACCES);
1435 memcache_set_global(smbd_memcache());
1437 /* Initialise the password backed before the global_sam_sid
1438 to ensure that we fetch from ldap before we make a domain sid up */
1440 if(!initialize_password_db(false, ev_ctx))
1441 exit(1);
1443 if (!secrets_init()) {
1444 exit_daemon("smbd can not open secrets.tdb", EACCES);
1447 if (lp_server_role() == ROLE_DOMAIN_BDC || lp_server_role() == ROLE_DOMAIN_PDC) {
1448 struct loadparm_context *lp_ctx = loadparm_init_s3(NULL, loadparm_s3_helpers());
1449 if (!open_schannel_session_store(NULL, lp_ctx)) {
1450 exit_daemon("ERROR: Samba cannot open schannel store for secured NETLOGON operations.", EACCES);
1452 TALLOC_FREE(lp_ctx);
1455 if(!get_global_sam_sid()) {
1456 exit_daemon("Samba cannot create a SAM SID", EACCES);
1459 server_id = messaging_server_id(msg_ctx);
1460 status = smbXsrv_version_global_init(&server_id);
1461 if (!NT_STATUS_IS_OK(status)) {
1462 exit_daemon("Samba cannot init server context", EACCES);
1465 status = smbXsrv_session_global_init();
1466 if (!NT_STATUS_IS_OK(status)) {
1467 exit_daemon("Samba cannot init session context", EACCES);
1470 status = smbXsrv_tcon_global_init();
1471 if (!NT_STATUS_IS_OK(status)) {
1472 exit_daemon("Samba cannot init tcon context", EACCES);
1475 if (!locking_init())
1476 exit_daemon("Samba cannot init locking", EACCES);
1478 if (!leases_db_init(false)) {
1479 exit_daemon("Samba cannot init leases", EACCES);
1482 if (!smbd_notifyd_init(msg_ctx, interactive)) {
1483 exit_daemon("Samba cannot init notification", EACCES);
1486 if (!messaging_parent_dgm_cleanup_init(msg_ctx)) {
1487 exit(1);
1490 if (!smbd_scavenger_init(NULL, msg_ctx, ev_ctx)) {
1491 exit_daemon("Samba cannot init scavenging", EACCES);
1494 if (!serverid_parent_init(ev_ctx)) {
1495 exit_daemon("Samba cannot init server id", EACCES);
1498 if (!W_ERROR_IS_OK(registry_init_full()))
1499 exit_daemon("Samba cannot init registry", EACCES);
1501 /* Open the share_info.tdb here, so we don't have to open
1502 after the fork on every single connection. This is a small
1503 performance improvment and reduces the total number of system
1504 fds used. */
1505 if (!share_info_db_init()) {
1506 exit_daemon("ERROR: failed to load share info db.", EACCES);
1509 status = init_system_session_info();
1510 if (!NT_STATUS_IS_OK(status)) {
1511 DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
1512 nt_errstr(status)));
1513 return -1;
1516 if (!init_guest_info()) {
1517 DEBUG(0,("ERROR: failed to setup guest info.\n"));
1518 return -1;
1521 if (!file_init_global()) {
1522 DEBUG(0, ("ERROR: file_init_global() failed\n"));
1523 return -1;
1525 status = smbXsrv_open_global_init();
1526 if (!NT_STATUS_IS_OK(status)) {
1527 exit_daemon("Samba cannot init global open", map_errno_from_nt_status(status));
1530 /* This MUST be done before start_epmd() because otherwise
1531 * start_epmd() forks and races against dcesrv_ep_setup() to
1532 * call directory_create_or_exist() */
1533 if (!directory_create_or_exist(lp_ncalrpc_dir(), 0755)) {
1534 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
1535 lp_ncalrpc_dir(), strerror(errno)));
1536 return -1;
1539 np_dir = talloc_asprintf(talloc_tos(), "%s/np", lp_ncalrpc_dir());
1540 if (!np_dir) {
1541 DEBUG(0, ("%s: Out of memory\n", __location__));
1542 return -1;
1545 if (!directory_create_or_exist_strict(np_dir, geteuid(), 0700)) {
1546 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
1547 np_dir, strerror(errno)));
1548 return -1;
1551 if (is_daemon && !interactive) {
1552 if (rpc_epmapper_daemon() == RPC_DAEMON_FORK) {
1553 start_epmd(ev_ctx, msg_ctx);
1557 if (!dcesrv_ep_setup(ev_ctx, msg_ctx)) {
1558 exit_daemon("Samba cannot setup ep pipe", EACCES);
1561 if (is_daemon && !interactive) {
1562 daemon_ready("smbd");
1565 /* only start other daemons if we are running as a daemon
1566 * -- bad things will happen if smbd is launched via inetd
1567 * and we fork a copy of ourselves here */
1568 if (is_daemon && !interactive) {
1570 if (rpc_lsasd_daemon() == RPC_DAEMON_FORK) {
1571 start_lsasd(ev_ctx, msg_ctx);
1574 if (rpc_fss_daemon() == RPC_DAEMON_FORK) {
1575 start_fssd(ev_ctx, msg_ctx);
1578 if (!lp__disable_spoolss() &&
1579 (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1580 bool bgq = lp_parm_bool(-1, "smbd", "backgroundqueue", true);
1582 if (!printing_subsystem_init(ev_ctx, msg_ctx, true, bgq)) {
1583 exit_daemon("Samba failed to init printing subsystem", EACCES);
1587 #ifdef WITH_SPOTLIGHT
1588 if ((rpc_mdssvc_mode() == RPC_SERVICE_MODE_EXTERNAL) &&
1589 (rpc_mdssd_daemon() == RPC_DAEMON_FORK)) {
1590 start_mdssd(ev_ctx, msg_ctx);
1592 #endif
1593 } else if (!lp__disable_spoolss() &&
1594 (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1595 if (!printing_subsystem_init(ev_ctx, msg_ctx, false, false)) {
1596 exit(1);
1600 if (!is_daemon) {
1601 int sock;
1603 /* inetd mode */
1604 TALLOC_FREE(frame);
1606 /* Started from inetd. fd 0 is the socket. */
1607 /* We will abort gracefully when the client or remote system
1608 goes away */
1609 sock = dup(0);
1611 /* close stdin, stdout (if not logging to it), but not stderr */
1612 close_low_fds(true, !debug_get_output_is_stdout(), false);
1614 #ifdef HAVE_ATEXIT
1615 atexit(killkids);
1616 #endif
1618 /* Stop zombies */
1619 smbd_setup_sig_chld_handler(parent);
1621 smbd_process(ev_ctx, msg_ctx, sock, true);
1623 exit_server_cleanly(NULL);
1624 return(0);
1627 if (!open_sockets_smbd(parent, ev_ctx, msg_ctx, ports))
1628 exit_server("open_sockets_smbd() failed");
1630 /* do a printer update now that all messaging has been set up,
1631 * before we allow clients to start connecting */
1632 if (!lp__disable_spoolss() &&
1633 (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1634 printing_subsystem_update(ev_ctx, msg_ctx, false);
1637 TALLOC_FREE(frame);
1638 /* make sure we always have a valid stackframe */
1639 frame = talloc_stackframe();
1641 if (!Fork) {
1642 /* if we are running in the foreground then look for
1643 EOF on stdin, and exit if it happens. This allows
1644 us to die if the parent process dies
1645 Only do this on a pipe or socket, no other device.
1647 struct stat st;
1648 if (fstat(0, &st) != 0) {
1649 return false;
1651 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode)) {
1652 tevent_add_fd(ev_ctx,
1653 parent,
1655 TEVENT_FD_READ,
1656 smbd_stdin_handler,
1657 NULL);
1661 smbd_parent_loop(ev_ctx, parent);
1663 exit_server_cleanly(NULL);
1664 TALLOC_FREE(frame);
1665 return(0);