libsmb: Use clistr_smb2_extract_snapshot_token() in cli_smb2_create_fnum_send()
[Samba.git] / source3 / smbd / server.c
blob6bdaca7a0a410286be5ac3cc9aa335c1eee9b77c
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 "lib/util/server_id.h"
27 #include "lib/util/close_low_fd.h"
28 #include "lib/cmdline/cmdline.h"
29 #include "locking/share_mode_lock.h"
30 #include "smbd/smbd.h"
31 #include "smbd/globals.h"
32 #include "smbd/smbXsrv_open.h"
33 #include "registry/reg_init_full.h"
34 #include "libcli/auth/schannel.h"
35 #include "secrets.h"
36 #include "../lib/util/memcache.h"
37 #include "ctdbd_conn.h"
38 #include "lib/util/util_process.h"
39 #include "util_cluster.h"
40 #include "printing/queue_process.h"
41 #include "rpc_server/rpc_config.h"
42 #include "passdb.h"
43 #include "auth.h"
44 #include "messages.h"
45 #include "messages_ctdb.h"
46 #include "smbprofile.h"
47 #include "lib/id_cache.h"
48 #include "lib/param/param.h"
49 #include "lib/background.h"
50 #include "../lib/util/pidfile.h"
51 #include "lib/smbd_shim.h"
52 #include "scavenger.h"
53 #include "locking/leases_db.h"
54 #include "smbd/notifyd/notifyd.h"
55 #include "smbd/smbd_cleanupd.h"
56 #include "lib/util/sys_rw.h"
57 #include "cleanupdb.h"
58 #include "g_lock.h"
59 #include "lib/global_contexts.h"
60 #include "source3/lib/substitute.h"
62 #ifdef CLUSTER_SUPPORT
63 #include "ctdb_protocol.h"
64 #endif
66 struct smbd_open_socket;
67 struct smbd_child_pid;
69 struct smbd_parent_context {
70 bool interactive;
72 struct tevent_context *ev_ctx;
73 struct messaging_context *msg_ctx;
75 /* the list of listening sockets */
76 struct smbd_open_socket *sockets;
78 /* the list of current child processes */
79 struct smbd_child_pid *children;
80 size_t num_children;
82 struct server_id cleanupd;
83 struct server_id notifyd;
85 struct tevent_timer *cleanup_te;
88 struct smbd_open_socket {
89 struct smbd_open_socket *prev, *next;
90 struct smbd_parent_context *parent;
91 int fd;
92 struct tevent_fd *fde;
95 struct smbd_child_pid {
96 struct smbd_child_pid *prev, *next;
97 pid_t pid;
100 /*******************************************************************
101 What to do when smb.conf is updated.
102 ********************************************************************/
104 static NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx,
105 uint32_t msg_type, DATA_BLOB* data);
107 static void smbd_parent_conf_updated(struct messaging_context *msg,
108 void *private_data,
109 uint32_t msg_type,
110 struct server_id server_id,
111 DATA_BLOB *data)
113 bool ok;
115 DEBUG(10,("smbd_parent_conf_updated: Got message saying smb.conf was "
116 "updated. Reloading.\n"));
117 change_to_root_user();
118 reload_services(NULL, NULL, false);
120 ok = reinit_guest_session_info(NULL);
121 if (!ok) {
122 DBG_ERR("Failed to reinit guest info\n");
124 messaging_send_to_children(msg, MSG_SMB_CONF_UPDATED, NULL);
127 /****************************************************************************
128 Send a SIGTERM to our process group.
129 *****************************************************************************/
131 static void killkids(void)
133 if(am_parent) kill(0,SIGTERM);
136 static void msg_exit_server(struct messaging_context *msg,
137 void *private_data,
138 uint32_t msg_type,
139 struct server_id server_id,
140 DATA_BLOB *data)
142 DEBUG(3, ("got a SHUTDOWN message\n"));
143 exit_server_cleanly(NULL);
146 #ifdef DEVELOPER
147 static void msg_inject_fault(struct messaging_context *msg,
148 void *private_data,
149 uint32_t msg_type,
150 struct server_id src,
151 DATA_BLOB *data)
153 int sig;
154 struct server_id_buf tmp;
156 if (data->length != sizeof(sig)) {
157 DEBUG(0, ("Process %s sent bogus signal injection request\n",
158 server_id_str_buf(src, &tmp)));
159 return;
162 sig = *(int *)data->data;
163 if (sig == -1) {
164 exit_server("internal error injected");
165 return;
168 #ifdef HAVE_STRSIGNAL
169 DEBUG(0, ("Process %s requested injection of signal %d (%s)\n",
170 server_id_str_buf(src, &tmp), sig, strsignal(sig)));
171 #else
172 DEBUG(0, ("Process %s requested injection of signal %d\n",
173 server_id_str_buf(src, &tmp), sig));
174 #endif
176 kill(getpid(), sig);
178 #endif /* DEVELOPER */
180 #if defined(DEVELOPER) || defined(ENABLE_SELFTEST)
182 * Sleep for the specified number of seconds.
184 static void msg_sleep(struct messaging_context *msg,
185 void *private_data,
186 uint32_t msg_type,
187 struct server_id src,
188 DATA_BLOB *data)
190 unsigned int seconds;
191 struct server_id_buf tmp;
193 if (data->length != sizeof(seconds)) {
194 DBG_ERR("Process %s sent bogus sleep request\n",
195 server_id_str_buf(src, &tmp));
196 return;
199 seconds = *(unsigned int *)data->data;
200 DBG_ERR("Process %s request a sleep of %u seconds\n",
201 server_id_str_buf(src, &tmp),
202 seconds);
203 sleep(seconds);
204 DBG_ERR("Restarting after %u second sleep requested by process %s\n",
205 seconds,
206 server_id_str_buf(src, &tmp));
208 #endif /* DEVELOPER */
210 static NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx,
211 uint32_t msg_type, DATA_BLOB* data)
213 NTSTATUS status;
214 struct smbd_parent_context *parent = am_parent;
215 struct smbd_child_pid *child;
217 if (parent == NULL) {
218 return NT_STATUS_INTERNAL_ERROR;
221 for (child = parent->children; child != NULL; child = child->next) {
222 status = messaging_send(parent->msg_ctx,
223 pid_to_procid(child->pid),
224 msg_type, data);
225 if (!NT_STATUS_IS_OK(status)) {
226 DBG_DEBUG("messaging_send(%d) failed: %s\n",
227 (int)child->pid, nt_errstr(status));
230 return NT_STATUS_OK;
233 static void smb_parent_send_to_children(struct messaging_context *ctx,
234 void* data,
235 uint32_t msg_type,
236 struct server_id srv_id,
237 DATA_BLOB* msg_data)
239 messaging_send_to_children(ctx, msg_type, msg_data);
243 * Parent smbd process sets its own debug level first and then
244 * sends a message to all the smbd children to adjust their debug
245 * level to that of the parent.
248 static void smbd_msg_debug(struct messaging_context *msg_ctx,
249 void *private_data,
250 uint32_t msg_type,
251 struct server_id server_id,
252 DATA_BLOB *data)
254 debug_message(msg_ctx, private_data, MSG_DEBUG, server_id, data);
256 messaging_send_to_children(msg_ctx, MSG_DEBUG, data);
259 static void smbd_parent_id_cache_kill(struct messaging_context *msg_ctx,
260 void *private_data,
261 uint32_t msg_type,
262 struct server_id server_id,
263 DATA_BLOB* data)
265 const char *msg = (data && data->data)
266 ? (const char *)data->data : "<NULL>";
267 struct id_cache_ref id;
269 if (!id_cache_ref_parse(msg, &id)) {
270 DEBUG(0, ("Invalid ?ID: %s\n", msg));
271 return;
274 id_cache_delete_from_cache(&id);
276 messaging_send_to_children(msg_ctx, msg_type, data);
279 static void smbd_parent_id_cache_delete(struct messaging_context *ctx,
280 void* data,
281 uint32_t msg_type,
282 struct server_id srv_id,
283 DATA_BLOB* msg_data)
285 id_cache_delete_message(ctx, data, msg_type, srv_id, msg_data);
287 messaging_send_to_children(ctx, msg_type, msg_data);
290 static void add_child_pid(struct smbd_parent_context *parent,
291 pid_t pid)
293 struct smbd_child_pid *child;
295 child = talloc_zero(parent, struct smbd_child_pid);
296 if (child == NULL) {
297 DEBUG(0, ("Could not add child struct -- malloc failed\n"));
298 return;
300 child->pid = pid;
301 DLIST_ADD(parent->children, child);
302 parent->num_children += 1;
305 static void smb_tell_num_children(struct messaging_context *ctx, void *data,
306 uint32_t msg_type, struct server_id srv_id,
307 DATA_BLOB *msg_data)
309 uint8_t buf[sizeof(uint32_t)];
311 if (am_parent) {
312 SIVAL(buf, 0, am_parent->num_children);
313 messaging_send_buf(ctx, srv_id, MSG_SMB_NUM_CHILDREN,
314 buf, sizeof(buf));
318 static void notifyd_stopped(struct tevent_req *req);
320 static struct tevent_req *notifyd_req(struct messaging_context *msg_ctx,
321 struct tevent_context *ev)
323 struct tevent_req *req;
324 sys_notify_watch_fn sys_notify_watch = NULL;
325 struct sys_notify_context *sys_notify_ctx = NULL;
326 struct ctdbd_connection *ctdbd_conn = NULL;
328 if (lp_kernel_change_notify()) {
330 #ifdef HAVE_INOTIFY
331 if (lp_parm_bool(-1, "notify", "inotify", true)) {
332 sys_notify_watch = inotify_watch;
334 #endif
336 #ifdef HAVE_FAM
337 if (lp_parm_bool(-1, "notify", "fam",
338 (sys_notify_watch == NULL))) {
339 sys_notify_watch = fam_watch;
341 #endif
344 if (sys_notify_watch != NULL) {
345 sys_notify_ctx = sys_notify_context_create(msg_ctx, ev);
346 if (sys_notify_ctx == NULL) {
347 return NULL;
351 if (lp_clustering()) {
352 ctdbd_conn = messaging_ctdb_connection();
355 req = notifyd_send(msg_ctx, ev, msg_ctx, ctdbd_conn,
356 sys_notify_watch, sys_notify_ctx);
357 if (req == NULL) {
358 TALLOC_FREE(sys_notify_ctx);
359 return NULL;
361 tevent_req_set_callback(req, notifyd_stopped, msg_ctx);
363 return req;
366 static void notifyd_stopped(struct tevent_req *req)
368 int ret;
370 ret = notifyd_recv(req);
371 TALLOC_FREE(req);
372 DEBUG(1, ("notifyd stopped: %s\n", strerror(ret)));
375 static void notifyd_sig_hup_handler(struct tevent_context *ev,
376 struct tevent_signal *se,
377 int signum,
378 int count,
379 void *siginfo,
380 void *pvt)
382 DBG_NOTICE("notifyd: Reloading services after SIGHUP\n");
383 reload_services(NULL, NULL, false);
384 reopen_logs();
387 static bool smbd_notifyd_init(struct messaging_context *msg, bool interactive,
388 struct server_id *ppid)
390 struct tevent_context *ev = messaging_tevent_context(msg);
391 struct tevent_req *req;
392 struct tevent_signal *se = NULL;
393 pid_t pid;
394 NTSTATUS status;
395 bool ok;
397 if (interactive) {
398 req = notifyd_req(msg, ev);
399 return (req != NULL);
402 pid = fork();
403 if (pid == -1) {
404 DEBUG(1, ("%s: fork failed: %s\n", __func__,
405 strerror(errno)));
406 return false;
409 if (pid != 0) {
410 if (am_parent != NULL) {
411 add_child_pid(am_parent, pid);
413 *ppid = pid_to_procid(pid);
414 return true;
417 status = smbd_reinit_after_fork(msg, ev, true);
418 if (!NT_STATUS_IS_OK(status)) {
419 DEBUG(1, ("%s: reinit_after_fork failed: %s\n",
420 __func__, nt_errstr(status)));
421 exit(1);
424 process_set_title("smbd-notifyd", "notifyd");
426 reopen_logs();
428 /* Set up sighup handler for notifyd */
429 se = tevent_add_signal(ev,
431 SIGHUP, 0,
432 notifyd_sig_hup_handler,
433 NULL);
434 if (!se) {
435 DEBUG(0, ("failed to setup notifyd SIGHUP handler\n"));
436 exit(1);
439 req = notifyd_req(msg, ev);
440 if (req == NULL) {
441 exit(1);
443 tevent_req_set_callback(req, notifyd_stopped, msg);
445 /* Block those signals that we are not handling */
446 BlockSignals(True, SIGUSR1);
448 messaging_send(msg, pid_to_procid(getppid()), MSG_SMB_NOTIFY_STARTED,
449 NULL);
451 ok = tevent_req_poll(req, ev);
452 if (!ok) {
453 DBG_WARNING("tevent_req_poll returned %s\n", strerror(errno));
454 exit(1);
456 exit(0);
459 static void notifyd_init_trigger(struct tevent_req *req);
461 struct notifyd_init_state {
462 bool ok;
463 struct tevent_context *ev;
464 struct messaging_context *msg;
465 struct server_id *ppid;
468 static struct tevent_req *notifyd_init_send(struct tevent_context *ev,
469 TALLOC_CTX *mem_ctx,
470 struct messaging_context *msg,
471 struct server_id *ppid)
473 struct tevent_req *req = NULL;
474 struct tevent_req *subreq = NULL;
475 struct notifyd_init_state *state = NULL;
477 req = tevent_req_create(mem_ctx, &state, struct notifyd_init_state);
478 if (req == NULL) {
479 return NULL;
482 *state = (struct notifyd_init_state) {
483 .msg = msg,
484 .ev = ev,
485 .ppid = ppid
488 subreq = tevent_wakeup_send(state, ev, tevent_timeval_current_ofs(1, 0));
489 if (tevent_req_nomem(subreq, req)) {
490 return tevent_req_post(req, ev);
493 tevent_req_set_callback(subreq, notifyd_init_trigger, req);
494 return req;
497 static void notifyd_init_trigger(struct tevent_req *subreq)
499 struct tevent_req *req = tevent_req_callback_data(
500 subreq, struct tevent_req);
501 struct notifyd_init_state *state = tevent_req_data(
502 req, struct notifyd_init_state);
503 bool ok;
505 DBG_NOTICE("Triggering notifyd startup\n");
507 ok = tevent_wakeup_recv(subreq);
508 TALLOC_FREE(subreq);
509 if (!ok) {
510 tevent_req_error(req, ENOMEM);
511 return;
514 state->ok = smbd_notifyd_init(state->msg, false, state->ppid);
515 if (state->ok) {
516 DBG_WARNING("notifyd restarted\n");
517 tevent_req_done(req);
518 return;
521 DBG_NOTICE("notifyd startup failed, rescheduling\n");
523 subreq = tevent_wakeup_send(state, state->ev,
524 tevent_timeval_current_ofs(1, 0));
525 if (tevent_req_nomem(subreq, req)) {
526 DBG_ERR("scheduling notifyd restart failed, giving up\n");
527 return;
530 tevent_req_set_callback(subreq, notifyd_init_trigger, req);
531 return;
534 static bool notifyd_init_recv(struct tevent_req *req)
536 struct notifyd_init_state *state = tevent_req_data(
537 req, struct notifyd_init_state);
539 return state->ok;
542 static void notifyd_started(struct tevent_req *req)
544 bool ok;
546 ok = notifyd_init_recv(req);
547 TALLOC_FREE(req);
548 if (!ok) {
549 DBG_ERR("Failed to restart notifyd, giving up\n");
550 return;
554 static void cleanupd_sig_hup_handler(struct tevent_context *ev,
555 struct tevent_signal *se,
556 int signum,
557 int count,
558 void *siginfo,
559 void *pvt)
561 DBG_NOTICE("cleanupd: Reloading services after SIGHUP\n");
562 reopen_logs();
565 static void cleanupd_stopped(struct tevent_req *req);
567 static bool cleanupd_init(struct messaging_context *msg, bool interactive,
568 struct server_id *ppid)
570 struct tevent_context *ev = messaging_tevent_context(msg);
571 struct server_id parent_id = messaging_server_id(msg);
572 struct tevent_signal *se = NULL;
573 struct tevent_req *req;
574 pid_t pid;
575 NTSTATUS status;
576 ssize_t rwret;
577 int ret;
578 bool ok;
579 char c;
580 int up_pipe[2];
582 if (interactive) {
583 req = smbd_cleanupd_send(msg, ev, msg, parent_id.pid);
584 *ppid = messaging_server_id(msg);
585 return (req != NULL);
588 ret = pipe(up_pipe);
589 if (ret == -1) {
590 DBG_WARNING("pipe failed: %s\n", strerror(errno));
591 return false;
594 pid = fork();
595 if (pid == -1) {
596 DBG_WARNING("fork failed: %s\n", strerror(errno));
597 close(up_pipe[0]);
598 close(up_pipe[1]);
599 return false;
602 if (pid != 0) {
604 close(up_pipe[1]);
605 rwret = sys_read(up_pipe[0], &c, 1);
606 close(up_pipe[0]);
608 if (rwret == -1) {
609 DBG_WARNING("sys_read failed: %s\n", strerror(errno));
610 return false;
612 if (rwret == 0) {
613 DBG_WARNING("cleanupd could not start\n");
614 return false;
616 if (c != 0) {
617 DBG_WARNING("cleanupd returned %d\n", (int)c);
618 return false;
621 DBG_DEBUG("Started cleanupd pid=%d\n", (int)pid);
623 if (am_parent != NULL) {
624 add_child_pid(am_parent, pid);
627 *ppid = pid_to_procid(pid);
628 return true;
631 close(up_pipe[0]);
633 status = smbd_reinit_after_fork(msg, ev, true);
634 if (!NT_STATUS_IS_OK(status)) {
635 DBG_WARNING("reinit_after_fork failed: %s\n",
636 nt_errstr(status));
637 c = 1;
638 sys_write(up_pipe[1], &c, 1);
640 exit(1);
643 process_set_title("smbd-cleanupd", "cleanupd");
645 se = tevent_add_signal(ev,
647 SIGHUP,
649 cleanupd_sig_hup_handler,
650 NULL);
651 if (se == NULL) {
652 DBG_ERR("Could not add SIGHUP handler\n");
653 exit(1);
656 req = smbd_cleanupd_send(msg, ev, msg, parent_id.pid);
657 if (req == NULL) {
658 DBG_WARNING("smbd_cleanupd_send failed\n");
659 c = 2;
660 sys_write(up_pipe[1], &c, 1);
662 exit(1);
665 tevent_req_set_callback(req, cleanupd_stopped, msg);
667 c = 0;
668 rwret = sys_write(up_pipe[1], &c, 1);
669 close(up_pipe[1]);
671 if (rwret == -1) {
672 DBG_WARNING("sys_write failed: %s\n", strerror(errno));
673 exit(1);
675 if (rwret != 1) {
676 DBG_WARNING("sys_write could not write result\n");
677 exit(1);
680 ok = tevent_req_poll(req, ev);
681 if (!ok) {
682 DBG_WARNING("tevent_req_poll returned %s\n", strerror(errno));
684 exit(0);
687 static void cleanupd_stopped(struct tevent_req *req)
689 NTSTATUS status;
691 status = smbd_cleanupd_recv(req);
692 DBG_WARNING("cleanupd stopped: %s\n", nt_errstr(status));
695 static void cleanupd_init_trigger(struct tevent_req *req);
697 struct cleanup_init_state {
698 bool ok;
699 struct tevent_context *ev;
700 struct messaging_context *msg;
701 struct server_id *ppid;
704 static struct tevent_req *cleanupd_init_send(struct tevent_context *ev,
705 TALLOC_CTX *mem_ctx,
706 struct messaging_context *msg,
707 struct server_id *ppid)
709 struct tevent_req *req = NULL;
710 struct tevent_req *subreq = NULL;
711 struct cleanup_init_state *state = NULL;
713 req = tevent_req_create(mem_ctx, &state, struct cleanup_init_state);
714 if (req == NULL) {
715 return NULL;
718 *state = (struct cleanup_init_state) {
719 .msg = msg,
720 .ev = ev,
721 .ppid = ppid
724 subreq = tevent_wakeup_send(state, ev, tevent_timeval_current_ofs(0, 0));
725 if (tevent_req_nomem(subreq, req)) {
726 return tevent_req_post(req, ev);
729 tevent_req_set_callback(subreq, cleanupd_init_trigger, req);
730 return req;
733 static void cleanupd_init_trigger(struct tevent_req *subreq)
735 struct tevent_req *req = tevent_req_callback_data(
736 subreq, struct tevent_req);
737 struct cleanup_init_state *state = tevent_req_data(
738 req, struct cleanup_init_state);
739 bool ok;
741 DBG_NOTICE("Triggering cleanupd startup\n");
743 ok = tevent_wakeup_recv(subreq);
744 TALLOC_FREE(subreq);
745 if (!ok) {
746 tevent_req_error(req, ENOMEM);
747 return;
750 state->ok = cleanupd_init(state->msg, false, state->ppid);
751 if (state->ok) {
752 DBG_WARNING("cleanupd restarted\n");
753 tevent_req_done(req);
754 return;
757 DBG_NOTICE("cleanupd startup failed, rescheduling\n");
759 subreq = tevent_wakeup_send(state, state->ev,
760 tevent_timeval_current_ofs(1, 0));
761 if (tevent_req_nomem(subreq, req)) {
762 DBG_ERR("scheduling cleanupd restart failed, giving up\n");
763 return;
766 tevent_req_set_callback(subreq, cleanupd_init_trigger, req);
767 return;
770 static bool cleanupd_init_recv(struct tevent_req *req)
772 struct cleanup_init_state *state = tevent_req_data(
773 req, struct cleanup_init_state);
775 return state->ok;
778 static void cleanupd_started(struct tevent_req *req)
780 bool ok;
781 NTSTATUS status;
782 struct smbd_parent_context *parent = tevent_req_callback_data(
783 req, struct smbd_parent_context);
785 ok = cleanupd_init_recv(req);
786 TALLOC_FREE(req);
787 if (!ok) {
788 DBG_ERR("Failed to restart cleanupd, giving up\n");
789 return;
792 status = messaging_send(parent->msg_ctx,
793 parent->cleanupd,
794 MSG_SMB_NOTIFY_CLEANUP,
795 &data_blob_null);
796 if (!NT_STATUS_IS_OK(status)) {
797 DBG_ERR("messaging_send returned %s\n",
798 nt_errstr(status));
802 static void remove_child_pid(struct smbd_parent_context *parent,
803 pid_t pid,
804 bool unclean_shutdown)
806 struct smbd_child_pid *child;
807 NTSTATUS status;
808 bool ok;
810 for (child = parent->children; child != NULL; child = child->next) {
811 if (child->pid == pid) {
812 struct smbd_child_pid *tmp = child;
813 DLIST_REMOVE(parent->children, child);
814 TALLOC_FREE(tmp);
815 parent->num_children -= 1;
816 break;
820 if (child == NULL) {
821 /* not all forked child processes are added to the children list */
822 DEBUG(2, ("Could not find child %d -- ignoring\n", (int)pid));
823 return;
826 if (pid == procid_to_pid(&parent->cleanupd)) {
827 struct tevent_req *req;
829 server_id_set_disconnected(&parent->cleanupd);
831 DBG_WARNING("Restarting cleanupd\n");
832 req = cleanupd_init_send(messaging_tevent_context(parent->msg_ctx),
833 parent,
834 parent->msg_ctx,
835 &parent->cleanupd);
836 if (req == NULL) {
837 DBG_ERR("Failed to restart cleanupd\n");
838 return;
840 tevent_req_set_callback(req, cleanupd_started, parent);
841 return;
844 if (pid == procid_to_pid(&parent->notifyd)) {
845 struct tevent_req *req;
846 struct tevent_context *ev = messaging_tevent_context(
847 parent->msg_ctx);
849 server_id_set_disconnected(&parent->notifyd);
851 DBG_WARNING("Restarting notifyd\n");
852 req = notifyd_init_send(ev,
853 parent,
854 parent->msg_ctx,
855 &parent->notifyd);
856 if (req == NULL) {
857 DBG_ERR("Failed to restart notifyd\n");
858 return;
860 tevent_req_set_callback(req, notifyd_started, parent);
861 return;
864 ok = cleanupdb_store_child(pid, unclean_shutdown);
865 if (!ok) {
866 DBG_ERR("cleanupdb_store_child failed\n");
867 return;
870 if (!server_id_is_disconnected(&parent->cleanupd)) {
871 status = messaging_send(parent->msg_ctx,
872 parent->cleanupd,
873 MSG_SMB_NOTIFY_CLEANUP,
874 &data_blob_null);
875 if (!NT_STATUS_IS_OK(status)) {
876 DBG_ERR("messaging_send returned %s\n",
877 nt_errstr(status));
882 /****************************************************************************
883 Have we reached the process limit ?
884 ****************************************************************************/
886 static bool allowable_number_of_smbd_processes(struct smbd_parent_context *parent)
888 int max_processes = lp_max_smbd_processes();
890 if (!max_processes)
891 return True;
893 return parent->num_children < max_processes;
896 static void smbd_sig_chld_handler(struct tevent_context *ev,
897 struct tevent_signal *se,
898 int signum,
899 int count,
900 void *siginfo,
901 void *private_data)
903 pid_t pid;
904 int status;
905 struct smbd_parent_context *parent =
906 talloc_get_type_abort(private_data,
907 struct smbd_parent_context);
909 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
910 bool unclean_shutdown = False;
912 /* If the child terminated normally, assume
913 it was an unclean shutdown unless the
914 status is 0
916 if (WIFEXITED(status)) {
917 unclean_shutdown = WEXITSTATUS(status);
919 /* If the child terminated due to a signal
920 we always assume it was unclean.
922 if (WIFSIGNALED(status)) {
923 unclean_shutdown = True;
925 remove_child_pid(parent, pid, unclean_shutdown);
929 static void smbd_setup_sig_chld_handler(struct smbd_parent_context *parent)
931 struct tevent_signal *se;
933 se = tevent_add_signal(parent->ev_ctx,
934 parent, /* mem_ctx */
935 SIGCHLD, 0,
936 smbd_sig_chld_handler,
937 parent);
938 if (!se) {
939 exit_server("failed to setup SIGCHLD handler");
943 static void smbd_open_socket_close_fn(struct tevent_context *ev,
944 struct tevent_fd *fde,
945 int fd,
946 void *private_data)
948 /* this might be the socket_wrapper swrap_close() */
949 close(fd);
952 static void smbd_accept_connection(struct tevent_context *ev,
953 struct tevent_fd *fde,
954 uint16_t flags,
955 void *private_data)
957 struct smbd_open_socket *s = talloc_get_type_abort(private_data,
958 struct smbd_open_socket);
959 struct messaging_context *msg_ctx = s->parent->msg_ctx;
960 struct sockaddr_storage addr;
961 socklen_t in_addrlen = sizeof(addr);
962 int fd;
963 pid_t pid = 0;
965 fd = accept(s->fd, (struct sockaddr *)(void *)&addr,&in_addrlen);
966 if (fd == -1 && errno == EINTR)
967 return;
969 if (fd == -1) {
970 DEBUG(0,("accept: %s\n",
971 strerror(errno)));
972 return;
974 smb_set_close_on_exec(fd);
976 if (s->parent->interactive) {
977 reinit_after_fork(msg_ctx, ev, true);
978 smbd_process(ev, msg_ctx, fd, true);
979 exit_server_cleanly("end of interactive mode");
980 return;
983 if (!allowable_number_of_smbd_processes(s->parent)) {
984 close(fd);
985 return;
988 pid = fork();
989 if (pid == 0) {
990 char addrstr[INET6_ADDRSTRLEN];
991 NTSTATUS status = NT_STATUS_OK;
994 * Can't use TALLOC_FREE here. Nulling out the argument to it
995 * would overwrite memory we've just freed.
997 talloc_free(s->parent);
998 s = NULL;
1000 /* Stop zombies, the parent explicitly handles
1001 * them, counting worker smbds. */
1002 CatchChild();
1004 status = smbd_reinit_after_fork(msg_ctx, ev, true);
1005 if (!NT_STATUS_IS_OK(status)) {
1006 if (NT_STATUS_EQUAL(status,
1007 NT_STATUS_TOO_MANY_OPENED_FILES)) {
1008 DEBUG(0,("child process cannot initialize "
1009 "because too many files are open\n"));
1010 goto exit;
1012 if (lp_clustering() &&
1013 (NT_STATUS_EQUAL(
1014 status, NT_STATUS_INTERNAL_DB_ERROR) ||
1015 NT_STATUS_EQUAL(
1016 status, NT_STATUS_CONNECTION_REFUSED))) {
1017 DEBUG(1, ("child process cannot initialize "
1018 "because connection to CTDB "
1019 "has failed: %s\n",
1020 nt_errstr(status)));
1021 goto exit;
1024 DEBUG(0,("reinit_after_fork() failed\n"));
1025 smb_panic("reinit_after_fork() failed");
1028 print_sockaddr(addrstr, sizeof(addrstr), &addr);
1029 process_set_title("smbd[%s]", "client [%s]", addrstr);
1031 smbd_process(ev, msg_ctx, fd, false);
1032 exit:
1033 exit_server_cleanly("end of child");
1034 return;
1037 if (pid < 0) {
1038 DEBUG(0,("smbd_accept_connection: fork() failed: %s\n",
1039 strerror(errno)));
1042 /* The parent doesn't need this socket */
1043 close(fd);
1045 /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
1046 Clear the closed fd info out of server_fd --
1047 and more importantly, out of client_fd in
1048 util_sock.c, to avoid a possible
1049 getpeername failure if we reopen the logs
1050 and use %I in the filename.
1053 if (pid != 0) {
1054 add_child_pid(s->parent, pid);
1057 /* Force parent to check log size after
1058 * spawning child. Fix from
1059 * klausr@ITAP.Physik.Uni-Stuttgart.De. The
1060 * parent smbd will log to logserver.smb. It
1061 * writes only two messages for each child
1062 * started/finished. But each child writes,
1063 * say, 50 messages also in logserver.smb,
1064 * beginning with the debug_count of the
1065 * parent, before the child opens its own log
1066 * file logserver.client. In a worst case
1067 * scenario the size of logserver.smb would be
1068 * checked after about 50*50=2500 messages
1069 * (ca. 100kb).
1070 * */
1071 force_check_log_size();
1074 static bool smbd_open_one_socket(struct smbd_parent_context *parent,
1075 struct tevent_context *ev_ctx,
1076 const struct sockaddr_storage *ifss,
1077 uint16_t port)
1079 struct smbd_open_socket *s;
1081 s = talloc(parent, struct smbd_open_socket);
1082 if (!s) {
1083 return false;
1086 s->parent = parent;
1088 s->fd = open_socket_in(SOCK_STREAM, ifss, port, true);
1089 if (s->fd < 0) {
1090 int err = -(s->fd);
1091 DBG_ERR("open_socket_in failed: %s\n", strerror(err));
1092 TALLOC_FREE(s);
1094 * We ignore an error here, as we've done before
1096 return true;
1099 /* ready to listen */
1100 set_socket_options(s->fd, "SO_KEEPALIVE");
1101 set_socket_options(s->fd, lp_socket_options());
1103 /* Set server socket to
1104 * non-blocking for the accept. */
1105 set_blocking(s->fd, False);
1107 if (listen(s->fd, SMBD_LISTEN_BACKLOG) == -1) {
1108 DEBUG(0,("smbd_open_one_socket: listen: "
1109 "%s\n", strerror(errno)));
1110 close(s->fd);
1111 TALLOC_FREE(s);
1112 return false;
1115 s->fde = tevent_add_fd(ev_ctx,
1117 s->fd, TEVENT_FD_READ,
1118 smbd_accept_connection,
1120 if (!s->fde) {
1121 DEBUG(0,("smbd_open_one_socket: "
1122 "tevent_add_fd: %s\n",
1123 strerror(errno)));
1124 close(s->fd);
1125 TALLOC_FREE(s);
1126 return false;
1128 tevent_fd_set_close_fn(s->fde, smbd_open_socket_close_fn);
1130 DLIST_ADD_END(parent->sockets, s);
1132 return true;
1135 /****************************************************************************
1136 Open the socket communication.
1137 ****************************************************************************/
1139 static bool open_sockets_smbd(struct smbd_parent_context *parent,
1140 struct tevent_context *ev_ctx,
1141 struct messaging_context *msg_ctx,
1142 const char *smb_ports)
1144 int num_interfaces = iface_count();
1145 int i,j;
1146 const char **ports;
1147 unsigned dns_port = 0;
1149 #ifdef HAVE_ATEXIT
1150 atexit(killkids);
1151 #endif
1153 /* Stop zombies */
1154 smbd_setup_sig_chld_handler(parent);
1156 ports = lp_smb_ports();
1158 /* use a reasonable default set of ports - listing on 445 and 139 */
1159 if (smb_ports) {
1160 char **l;
1161 l = str_list_make_v3(talloc_tos(), smb_ports, NULL);
1162 ports = discard_const_p(const char *, l);
1165 for (j = 0; ports && ports[j]; j++) {
1166 unsigned port = atoi(ports[j]);
1168 if (port == 0 || port > 0xffff) {
1169 exit_server_cleanly("Invalid port in the config or on "
1170 "the commandline specified!");
1174 if (lp_interfaces() && lp_bind_interfaces_only()) {
1175 /* We have been given an interfaces line, and been
1176 told to only bind to those interfaces. Create a
1177 socket per interface and bind to only these.
1180 /* Now open a listen socket for each of the
1181 interfaces. */
1182 for(i = 0; i < num_interfaces; i++) {
1183 const struct sockaddr_storage *ifss =
1184 iface_n_sockaddr_storage(i);
1185 if (ifss == NULL) {
1186 DEBUG(0,("open_sockets_smbd: "
1187 "interface %d has NULL IP address !\n",
1188 i));
1189 continue;
1192 for (j = 0; ports && ports[j]; j++) {
1193 unsigned port = atoi(ports[j]);
1195 /* Keep the first port for mDNS service
1196 * registration.
1198 if (dns_port == 0) {
1199 dns_port = port;
1202 if (!smbd_open_one_socket(parent,
1203 ev_ctx,
1204 ifss,
1205 port)) {
1206 return false;
1210 } else {
1211 /* Just bind to 0.0.0.0 - accept connections
1212 from anywhere. */
1214 const char *sock_addr;
1215 char *sock_tok;
1216 const char *sock_ptr;
1218 #ifdef HAVE_IPV6
1219 sock_addr = "::,0.0.0.0";
1220 #else
1221 sock_addr = "0.0.0.0";
1222 #endif
1224 for (sock_ptr=sock_addr;
1225 next_token_talloc(talloc_tos(), &sock_ptr, &sock_tok, " \t,"); ) {
1226 for (j = 0; ports && ports[j]; j++) {
1227 struct sockaddr_storage ss;
1228 unsigned port = atoi(ports[j]);
1230 /* Keep the first port for mDNS service
1231 * registration.
1233 if (dns_port == 0) {
1234 dns_port = port;
1237 /* open an incoming socket */
1238 if (!interpret_string_addr(&ss, sock_tok,
1239 AI_NUMERICHOST|AI_PASSIVE)) {
1240 continue;
1244 * If we fail to open any sockets
1245 * in this loop the parent-sockets == NULL
1246 * case below will prevent us from starting.
1249 (void)smbd_open_one_socket(parent,
1250 ev_ctx,
1251 &ss,
1252 port);
1257 if (parent->sockets == NULL) {
1258 DEBUG(0,("open_sockets_smbd: No "
1259 "sockets available to bind to.\n"));
1260 return false;
1263 /* Listen to messages */
1265 messaging_register(msg_ctx, NULL, MSG_SHUTDOWN, msg_exit_server);
1266 messaging_register(msg_ctx, ev_ctx, MSG_SMB_CONF_UPDATED,
1267 smbd_parent_conf_updated);
1268 messaging_register(msg_ctx, NULL, MSG_DEBUG, smbd_msg_debug);
1269 messaging_register(msg_ctx, NULL, MSG_SMB_FORCE_TDIS,
1270 smb_parent_send_to_children);
1271 messaging_register(msg_ctx, NULL, MSG_SMB_FORCE_TDIS_DENIED,
1272 smb_parent_send_to_children);
1273 messaging_register(msg_ctx, NULL, MSG_SMB_KILL_CLIENT_IP,
1274 smb_parent_send_to_children);
1275 messaging_register(msg_ctx, NULL, MSG_SMB_TELL_NUM_CHILDREN,
1276 smb_tell_num_children);
1278 messaging_register(msg_ctx, NULL,
1279 ID_CACHE_DELETE, smbd_parent_id_cache_delete);
1280 messaging_register(msg_ctx, NULL,
1281 ID_CACHE_KILL, smbd_parent_id_cache_kill);
1282 messaging_register(msg_ctx, NULL, MSG_SMB_NOTIFY_STARTED,
1283 smb_parent_send_to_children);
1285 #ifdef DEVELOPER
1286 messaging_register(msg_ctx, NULL, MSG_SMB_INJECT_FAULT,
1287 msg_inject_fault);
1288 #endif
1290 #if defined(DEVELOPER) || defined(ENABLE_SELFTEST)
1291 messaging_register(msg_ctx, NULL, MSG_SMB_SLEEP, msg_sleep);
1292 #endif
1294 if (lp_multicast_dns_register() && (dns_port != 0)) {
1295 #ifdef WITH_DNSSD_SUPPORT
1296 smbd_setup_mdns_registration(ev_ctx,
1297 parent, dns_port);
1298 #endif
1299 #ifdef WITH_AVAHI_SUPPORT
1300 void *avahi_conn;
1302 avahi_conn = avahi_start_register(ev_ctx,
1303 ev_ctx,
1304 dns_port);
1305 if (avahi_conn == NULL) {
1306 DEBUG(10, ("avahi_start_register failed\n"));
1308 #endif
1311 return true;
1316 handle stdin becoming readable when we are in --foreground mode
1318 static void smbd_stdin_handler(struct tevent_context *ev,
1319 struct tevent_fd *fde,
1320 uint16_t flags,
1321 void *private_data)
1323 char c;
1324 if (read(0, &c, 1) != 1) {
1325 /* we have reached EOF on stdin, which means the
1326 parent has exited. Shutdown the server */
1327 exit_server_cleanly("EOF on stdin");
1331 struct smbd_parent_tevent_trace_state {
1332 TALLOC_CTX *frame;
1335 static void smbd_parent_tevent_trace_callback(enum tevent_trace_point point,
1336 void *private_data)
1338 struct smbd_parent_tevent_trace_state *state =
1339 (struct smbd_parent_tevent_trace_state *)private_data;
1341 switch (point) {
1342 case TEVENT_TRACE_BEFORE_WAIT:
1343 break;
1344 case TEVENT_TRACE_AFTER_WAIT:
1345 break;
1346 case TEVENT_TRACE_BEFORE_LOOP_ONCE:
1347 TALLOC_FREE(state->frame);
1348 state->frame = talloc_stackframe();
1349 break;
1350 case TEVENT_TRACE_AFTER_LOOP_ONCE:
1351 TALLOC_FREE(state->frame);
1352 break;
1355 errno = 0;
1358 static void smbd_parent_loop(struct tevent_context *ev_ctx,
1359 struct smbd_parent_context *parent)
1361 struct smbd_parent_tevent_trace_state trace_state = {
1362 .frame = NULL,
1364 int ret = 0;
1366 tevent_set_trace_callback(ev_ctx, smbd_parent_tevent_trace_callback,
1367 &trace_state);
1369 /* now accept incoming connections - forking a new process
1370 for each incoming connection */
1371 DEBUG(2,("waiting for connections\n"));
1373 ret = tevent_loop_wait(ev_ctx);
1374 if (ret != 0) {
1375 DEBUG(0, ("tevent_loop_wait failed: %d, %s, exiting\n",
1376 ret, strerror(errno)));
1379 TALLOC_FREE(trace_state.frame);
1381 /* NOTREACHED return True; */
1385 /****************************************************************************
1386 Initialise connect, service and file structs.
1387 ****************************************************************************/
1389 static bool init_structs(void )
1392 * Set the machine NETBIOS name if not already
1393 * set from the config file.
1396 if (!secrets_init())
1397 return False;
1399 return True;
1402 static void smbd_parent_sig_term_handler(struct tevent_context *ev,
1403 struct tevent_signal *se,
1404 int signum,
1405 int count,
1406 void *siginfo,
1407 void *private_data)
1409 exit_server_cleanly("termination signal");
1412 static void smbd_parent_sig_hup_handler(struct tevent_context *ev,
1413 struct tevent_signal *se,
1414 int signum,
1415 int count,
1416 void *siginfo,
1417 void *private_data)
1419 change_to_root_user();
1420 DEBUG(1,("parent: Reloading services after SIGHUP\n"));
1421 reload_services(NULL, NULL, false);
1424 struct smbd_claim_version_state {
1425 TALLOC_CTX *mem_ctx;
1426 char *version;
1429 static void smbd_claim_version_parser(struct server_id exclusive,
1430 size_t num_shared,
1431 const struct server_id *shared,
1432 const uint8_t *data,
1433 size_t datalen,
1434 void *private_data)
1436 struct smbd_claim_version_state *state = private_data;
1438 if (datalen == 0) {
1439 state->version = NULL;
1440 return;
1442 if (data[datalen-1] != '\0') {
1443 DBG_WARNING("Invalid samba version\n");
1444 dump_data(DBGLVL_WARNING, data, datalen);
1445 state->version = NULL;
1446 return;
1448 state->version = talloc_strdup(state->mem_ctx, (const char *)data);
1451 static NTSTATUS smbd_claim_version(struct messaging_context *msg,
1452 const char *version)
1454 const char *name = "samba_version_string";
1455 const TDB_DATA key = string_term_tdb_data(name);
1456 struct smbd_claim_version_state state;
1457 struct g_lock_ctx *ctx;
1458 NTSTATUS status;
1460 ctx = g_lock_ctx_init(msg, msg);
1461 if (ctx == NULL) {
1462 DBG_WARNING("g_lock_ctx_init failed\n");
1463 return NT_STATUS_UNSUCCESSFUL;
1466 status = g_lock_lock(ctx,
1467 key,
1468 G_LOCK_READ,
1469 (struct timeval) { .tv_sec = 60 },
1470 NULL,
1471 NULL);
1472 if (!NT_STATUS_IS_OK(status)) {
1473 DBG_WARNING("g_lock_lock(G_LOCK_READ) failed: %s\n",
1474 nt_errstr(status));
1475 TALLOC_FREE(ctx);
1476 return status;
1479 state = (struct smbd_claim_version_state) { .mem_ctx = ctx };
1481 status = g_lock_dump(ctx, key, smbd_claim_version_parser, &state);
1482 if (!NT_STATUS_IS_OK(status) &&
1483 !NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
1484 DBG_ERR("Could not read samba_version_string\n");
1485 g_lock_unlock(ctx, key);
1486 TALLOC_FREE(ctx);
1487 return status;
1490 if ((state.version != NULL) && (strcmp(version, state.version) == 0)) {
1492 * Leave the read lock for us around. Someone else already
1493 * set the version correctly
1495 TALLOC_FREE(ctx);
1496 return NT_STATUS_OK;
1499 status = g_lock_lock(ctx,
1500 key,
1501 G_LOCK_UPGRADE,
1502 (struct timeval) { .tv_sec = 60 },
1503 NULL,
1504 NULL);
1505 if (!NT_STATUS_IS_OK(status)) {
1506 DBG_WARNING("g_lock_lock(G_LOCK_WRITE) failed: %s\n",
1507 nt_errstr(status));
1508 DBG_ERR("smbd %s already running, refusing to start "
1509 "version %s\n", state.version, version);
1510 TALLOC_FREE(ctx);
1511 return NT_STATUS_SXS_VERSION_CONFLICT;
1514 status = g_lock_write_data(
1515 ctx, key, (const uint8_t *)version, strlen(version)+1);
1516 if (!NT_STATUS_IS_OK(status)) {
1517 DBG_WARNING("g_lock_write_data failed: %s\n",
1518 nt_errstr(status));
1519 TALLOC_FREE(ctx);
1520 return status;
1523 status = g_lock_lock(ctx,
1524 key,
1525 G_LOCK_DOWNGRADE,
1526 (struct timeval) { .tv_sec = 60 },
1527 NULL,
1528 NULL);
1529 if (!NT_STATUS_IS_OK(status)) {
1530 DBG_WARNING("g_lock_lock(G_LOCK_READ) failed: %s\n",
1531 nt_errstr(status));
1532 TALLOC_FREE(ctx);
1533 return status;
1537 * Leave "ctx" dangling so that g_lock.tdb keeps opened.
1539 return NT_STATUS_OK;
1542 /****************************************************************************
1543 main program.
1544 ****************************************************************************/
1546 /* Declare prototype for build_options() to avoid having to run it through
1547 mkproto.h. Mixing $(builddir) and $(srcdir) source files in the current
1548 prototype generation system is too complicated. */
1550 extern void build_options(bool screen);
1552 int main(int argc,const char *argv[])
1554 /* shall I run as a daemon */
1555 struct samba_cmdline_daemon_cfg *cmdline_daemon_cfg = NULL;
1556 bool log_stdout = false;
1557 char *ports = NULL;
1558 char *profile_level = NULL;
1559 int opt;
1560 poptContext pc;
1561 struct server_id main_server_id = {0};
1562 struct poptOption long_options[] = {
1563 POPT_AUTOHELP
1565 .longName = "build-options",
1566 .shortName = 'b',
1567 .argInfo = POPT_ARG_NONE,
1568 .arg = NULL,
1569 .val = 'b',
1570 .descrip = "Print build options" ,
1573 .longName = "port",
1574 .shortName = 'p',
1575 .argInfo = POPT_ARG_STRING,
1576 .arg = &ports,
1577 .val = 0,
1578 .descrip = "Listen on the specified ports",
1581 .longName = "profiling-level",
1582 .shortName = 'P',
1583 .argInfo = POPT_ARG_STRING,
1584 .arg = &profile_level,
1585 .val = 0,
1586 .descrip = "Set profiling level","PROFILE_LEVEL",
1588 POPT_COMMON_SAMBA
1589 POPT_COMMON_DAEMON
1590 POPT_COMMON_VERSION
1591 POPT_TABLEEND
1593 struct smbd_parent_context *parent = NULL;
1594 TALLOC_CTX *frame;
1595 NTSTATUS status;
1596 struct tevent_context *ev_ctx;
1597 struct messaging_context *msg_ctx;
1598 struct server_id server_id;
1599 struct tevent_signal *se;
1600 int profiling_level;
1601 char *np_dir = NULL;
1602 const struct loadparm_substitution *lp_sub =
1603 loadparm_s3_global_substitution();
1604 static const struct smbd_shim smbd_shim_fns =
1606 .change_to_root_user = smbd_change_to_root_user,
1607 .become_authenticated_pipe_user = smbd_become_authenticated_pipe_user,
1608 .unbecome_authenticated_pipe_user = smbd_unbecome_authenticated_pipe_user,
1610 .contend_level2_oplocks_begin = smbd_contend_level2_oplocks_begin,
1611 .contend_level2_oplocks_end = smbd_contend_level2_oplocks_end,
1613 .become_root = smbd_become_root,
1614 .unbecome_root = smbd_unbecome_root,
1616 .exit_server = smbd_exit_server,
1617 .exit_server_cleanly = smbd_exit_server_cleanly,
1619 bool ok;
1621 setproctitle_init(argc, discard_const(argv), environ);
1624 * Do this before any other talloc operation
1626 talloc_enable_null_tracking();
1627 frame = talloc_stackframe();
1629 smb_init_locale();
1631 set_smbd_shim(&smbd_shim_fns);
1633 smbd_init_globals();
1635 TimeInit();
1637 #ifdef HAVE_SET_AUTH_PARAMETERS
1638 set_auth_parameters(argc,argv);
1639 #endif
1641 ok = samba_cmdline_init(frame,
1642 SAMBA_CMDLINE_CONFIG_SERVER,
1643 true /* require_smbconf */);
1644 if (!ok) {
1645 DBG_ERR("Failed to setup cmdline parser!\n");
1646 exit(ENOMEM);
1649 cmdline_daemon_cfg = samba_cmdline_get_daemon_cfg();
1651 pc = samba_popt_get_context(getprogname(),
1652 argc,
1653 argv,
1654 long_options,
1656 if (pc == NULL) {
1657 DBG_ERR("Failed to get popt context!\n");
1658 exit(ENOMEM);
1661 while((opt = poptGetNextOpt(pc)) != -1) {
1662 switch (opt) {
1663 case 'b':
1664 build_options(true); /* Display output to screen as well as debug */
1665 exit(0);
1666 break;
1667 default:
1668 d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1669 poptBadOption(pc, 0), poptStrerror(opt));
1670 poptPrintUsage(pc, stderr, 0);
1671 exit(1);
1674 poptFreeContext(pc);
1676 log_stdout = (debug_get_log_type() == DEBUG_STDOUT);
1678 if (cmdline_daemon_cfg->interactive) {
1679 log_stdout = True;
1682 #ifdef HAVE_SETLUID
1683 /* needed for SecureWare on SCO */
1684 setluid(0);
1685 #endif
1687 set_remote_machine_name("smbd", False);
1689 if (cmdline_daemon_cfg->interactive && (DEBUGLEVEL >= 9)) {
1690 talloc_enable_leak_report();
1693 if (log_stdout && cmdline_daemon_cfg->fork) {
1694 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
1695 exit(1);
1699 * We want to die early if we can't open /dev/urandom
1701 generate_random_buffer(NULL, 0);
1703 /* get initial effective uid and gid */
1704 sec_init();
1706 /* make absolutely sure we run as root - to handle cases where people
1707 are crazy enough to have it setuid */
1708 gain_root_privilege();
1709 gain_root_group_privilege();
1711 dump_core_setup("smbd", lp_logfile(talloc_tos(), lp_sub));
1713 /* we are never interested in SIGPIPE */
1714 BlockSignals(True,SIGPIPE);
1716 #if defined(SIGFPE)
1717 /* we are never interested in SIGFPE */
1718 BlockSignals(True,SIGFPE);
1719 #endif
1721 #if defined(SIGUSR2)
1722 /* We are no longer interested in USR2 */
1723 BlockSignals(True,SIGUSR2);
1724 #endif
1727 * POSIX demands that signals are inherited. If the invoking
1728 * process has these signals masked, we will have problems, as
1729 * we won't receive them.
1731 BlockSignals(False, SIGHUP);
1732 BlockSignals(False, SIGUSR1);
1733 BlockSignals(False, SIGTERM);
1735 /* Ensure we leave no zombies until we
1736 * correctly set up child handling below. */
1738 CatchChild();
1740 /* we want total control over the permissions on created files,
1741 so set our umask to 0 */
1742 umask(0);
1744 reopen_logs();
1746 DEBUG(0,("smbd version %s started.\n", samba_version_string()));
1747 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1749 DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
1750 (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
1752 /* Output the build options to the debug log */
1753 build_options(False);
1755 if (sizeof(uint16_t) < 2 || sizeof(uint32_t) < 4) {
1756 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
1757 exit(1);
1761 * This calls unshare(CLONE_FS); on linux
1762 * in order to check if the running kernel/container
1763 * environment supports it.
1765 per_thread_cwd_check();
1767 if (!cluster_probe_ok()) {
1768 exit(1);
1771 /* Init the security context and global current_user */
1772 init_sec_ctx();
1775 * Initialize the event context. The event context needs to be
1776 * initialized before the messaging context, cause the messaging
1777 * context holds an event context.
1779 ev_ctx = global_event_context();
1780 if (ev_ctx == NULL) {
1781 exit(1);
1785 * Init the messaging context
1786 * FIXME: This should only call messaging_init()
1788 msg_ctx = global_messaging_context();
1789 if (msg_ctx == NULL) {
1790 exit(1);
1794 * Reloading of the printers will not work here as we don't have a
1795 * server info and rpc services set up. It will be called later.
1797 if (!reload_services(NULL, NULL, false)) {
1798 exit(1);
1801 if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC) {
1802 if (!lp_parm_bool(-1, "server role check", "inhibit", false)) {
1803 DBG_ERR("server role = 'active directory domain controller' not compatible with running smbd standalone. \n");
1804 DEBUGADD(0, ("You should start 'samba' instead, and it will control starting smbd if required\n"));
1805 exit(1);
1807 /* Main 'samba' daemon will notify */
1808 daemon_sd_notifications(false);
1811 /* ...NOTE... Log files are working from this point! */
1813 DEBUG(3,("loaded services\n"));
1815 init_structs();
1817 if (!profile_setup(msg_ctx, False)) {
1818 DEBUG(0,("ERROR: failed to setup profiling\n"));
1819 return -1;
1822 if (profile_level != NULL) {
1823 profiling_level = atoi(profile_level);
1824 } else {
1825 profiling_level = lp_smbd_profiling_level();
1827 main_server_id = messaging_server_id(msg_ctx);
1828 set_profile_level(profiling_level, &main_server_id);
1830 if (!cmdline_daemon_cfg->daemon && !is_a_socket(0)) {
1831 if (!cmdline_daemon_cfg->interactive) {
1832 DEBUG(3, ("Standard input is not a socket, "
1833 "assuming -D option\n"));
1837 * Setting "daemon" here prevents us from eventually calling
1838 * the open_sockets_inetd()
1841 cmdline_daemon_cfg->daemon = true;
1844 if (cmdline_daemon_cfg->daemon && !cmdline_daemon_cfg->interactive) {
1845 DEBUG(3, ("Becoming a daemon.\n"));
1846 become_daemon(cmdline_daemon_cfg->fork,
1847 cmdline_daemon_cfg->no_process_group,
1848 log_stdout);
1849 } else {
1850 daemon_status("smbd", "Starting process ...");
1853 #ifdef HAVE_SETPGID
1855 * If we're interactive we want to set our own process group for
1856 * signal management.
1858 if (cmdline_daemon_cfg->interactive &&
1859 !cmdline_daemon_cfg->no_process_group)
1861 setpgid( (pid_t)0, (pid_t)0);
1863 #endif
1865 if (!directory_exist(lp_lock_directory()))
1866 mkdir(lp_lock_directory(), 0755);
1868 if (!directory_exist(lp_pid_directory()))
1869 mkdir(lp_pid_directory(), 0755);
1871 if (cmdline_daemon_cfg->daemon)
1872 pidfile_create(lp_pid_directory(), "smbd");
1874 status = reinit_after_fork(msg_ctx, ev_ctx, false);
1875 if (!NT_STATUS_IS_OK(status)) {
1876 exit_daemon("reinit_after_fork() failed", map_errno_from_nt_status(status));
1879 if (!cmdline_daemon_cfg->interactive) {
1881 * Do not initialize the parent-child-pipe before becoming a
1882 * daemon: this is used to detect a died parent in the child
1883 * process.
1885 status = init_before_fork();
1886 if (!NT_STATUS_IS_OK(status)) {
1887 exit_daemon(nt_errstr(status), map_errno_from_nt_status(status));
1891 parent = talloc_zero(ev_ctx, struct smbd_parent_context);
1892 if (!parent) {
1893 exit_server("talloc(struct smbd_parent_context) failed");
1895 parent->interactive = cmdline_daemon_cfg->interactive;
1896 parent->ev_ctx = ev_ctx;
1897 parent->msg_ctx = msg_ctx;
1898 am_parent = parent;
1900 se = tevent_add_signal(parent->ev_ctx,
1901 parent,
1902 SIGTERM, 0,
1903 smbd_parent_sig_term_handler,
1904 parent);
1905 if (!se) {
1906 exit_server("failed to setup SIGTERM handler");
1908 se = tevent_add_signal(parent->ev_ctx,
1909 parent,
1910 SIGHUP, 0,
1911 smbd_parent_sig_hup_handler,
1912 parent);
1913 if (!se) {
1914 exit_server("failed to setup SIGHUP handler");
1917 /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
1919 if (smbd_memcache() == NULL) {
1920 exit_daemon("no memcache available", EACCES);
1923 memcache_set_global(smbd_memcache());
1925 /* Initialise the password backed before the global_sam_sid
1926 to ensure that we fetch from ldap before we make a domain sid up */
1928 if(!initialize_password_db(false, ev_ctx))
1929 exit(1);
1931 if (!secrets_init()) {
1932 exit_daemon("smbd can not open secrets.tdb", EACCES);
1935 if (lp_server_role() == ROLE_DOMAIN_BDC || lp_server_role() == ROLE_DOMAIN_PDC || lp_server_role() == ROLE_IPA_DC) {
1936 struct loadparm_context *lp_ctx = loadparm_init_s3(NULL, loadparm_s3_helpers());
1937 if (!open_schannel_session_store(NULL, lp_ctx)) {
1938 exit_daemon("ERROR: Samba cannot open schannel store for secured NETLOGON operations.", EACCES);
1940 TALLOC_FREE(lp_ctx);
1943 if(!get_global_sam_sid()) {
1944 exit_daemon("Samba cannot create a SAM SID", EACCES);
1947 server_id = messaging_server_id(msg_ctx);
1948 status = smbXsrv_version_global_init(&server_id);
1949 if (!NT_STATUS_IS_OK(status)) {
1950 exit_daemon("Samba cannot init server context", EACCES);
1953 status = smbXsrv_client_global_init();
1954 if (!NT_STATUS_IS_OK(status)) {
1955 exit_daemon("Samba cannot init clients context", EACCES);
1958 status = smbXsrv_session_global_init(msg_ctx);
1959 if (!NT_STATUS_IS_OK(status)) {
1960 exit_daemon("Samba cannot init session context", EACCES);
1963 status = smbXsrv_tcon_global_init();
1964 if (!NT_STATUS_IS_OK(status)) {
1965 exit_daemon("Samba cannot init tcon context", EACCES);
1968 if (!locking_init())
1969 exit_daemon("Samba cannot init locking", EACCES);
1971 if (!leases_db_init(false)) {
1972 exit_daemon("Samba cannot init leases", EACCES);
1975 if (!smbd_notifyd_init(
1976 msg_ctx,
1977 cmdline_daemon_cfg->interactive,
1978 &parent->notifyd)) {
1979 exit_daemon("Samba cannot init notification", EACCES);
1982 if (!cleanupd_init(
1983 msg_ctx,
1984 cmdline_daemon_cfg->interactive,
1985 &parent->cleanupd)) {
1986 exit_daemon("Samba cannot init the cleanupd", EACCES);
1989 if (!messaging_parent_dgm_cleanup_init(msg_ctx)) {
1990 exit(1);
1993 if (!smbd_scavenger_init(NULL, msg_ctx, ev_ctx)) {
1994 exit_daemon("Samba cannot init scavenging", EACCES);
1997 if (!W_ERROR_IS_OK(registry_init_full()))
1998 exit_daemon("Samba cannot init registry", EACCES);
2000 /* Open the share_info.tdb here, so we don't have to open
2001 after the fork on every single connection. This is a small
2002 performance improvment and reduces the total number of system
2003 fds used. */
2004 status = share_info_db_init();
2005 if (!NT_STATUS_IS_OK(status)) {
2006 exit_daemon("ERROR: failed to load share info db.", EACCES);
2009 status = init_system_session_info(NULL);
2010 if (!NT_STATUS_IS_OK(status)) {
2011 DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
2012 nt_errstr(status)));
2013 return -1;
2016 if (!init_guest_session_info(NULL)) {
2017 DEBUG(0,("ERROR: failed to setup guest info.\n"));
2018 return -1;
2021 if (!file_init_global()) {
2022 DEBUG(0, ("ERROR: file_init_global() failed\n"));
2023 return -1;
2025 status = smbXsrv_open_global_init();
2026 if (!NT_STATUS_IS_OK(status)) {
2027 exit_daemon("Samba cannot init global open", map_errno_from_nt_status(status));
2030 if (lp_clustering() && !lp_allow_unsafe_cluster_upgrade()) {
2031 status = smbd_claim_version(msg_ctx, samba_version_string());
2032 if (!NT_STATUS_IS_OK(status)) {
2033 DBG_ERR("Could not claim version: %s\n",
2034 nt_errstr(status));
2035 return -1;
2039 /* This MUST be done before start_epmd() because otherwise
2040 * start_epmd() forks and races against dcesrv_ep_setup() to
2041 * call directory_create_or_exist() */
2042 if (!directory_create_or_exist(lp_ncalrpc_dir(), 0755)) {
2043 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
2044 lp_ncalrpc_dir(), strerror(errno)));
2045 return -1;
2048 np_dir = talloc_asprintf(talloc_tos(), "%s/np", lp_ncalrpc_dir());
2049 if (!np_dir) {
2050 DEBUG(0, ("%s: Out of memory\n", __location__));
2051 return -1;
2054 if (!directory_create_or_exist_strict(np_dir, geteuid(), 0700)) {
2055 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
2056 np_dir, strerror(errno)));
2057 return -1;
2060 if (!cmdline_daemon_cfg->interactive) {
2061 daemon_ready("smbd");
2064 if (!cmdline_daemon_cfg->daemon) {
2065 int ret, sock;
2067 /* inetd mode */
2068 TALLOC_FREE(frame);
2070 /* Started from inetd. fd 0 is the socket. */
2071 /* We will abort gracefully when the client or remote system
2072 goes away */
2073 sock = dup(0);
2075 /* close stdin, stdout (if not logging to it), but not stderr */
2076 ret = close_low_fd(0);
2077 if (ret != 0) {
2078 DBG_ERR("close_low_fd(0) failed: %s\n", strerror(ret));
2079 return 1;
2081 if (!debug_get_output_is_stdout()) {
2082 ret = close_low_fd(1);
2083 if (ret != 0) {
2084 DBG_ERR("close_low_fd(1) failed: %s\n",
2085 strerror(ret));
2086 return 1;
2090 #ifdef HAVE_ATEXIT
2091 atexit(killkids);
2092 #endif
2094 /* Stop zombies */
2095 smbd_setup_sig_chld_handler(parent);
2097 smbd_process(ev_ctx, msg_ctx, sock, true);
2099 exit_server_cleanly(NULL);
2100 return(0);
2103 if (!open_sockets_smbd(parent, ev_ctx, msg_ctx, ports))
2104 exit_server("open_sockets_smbd() failed");
2106 TALLOC_FREE(frame);
2107 /* make sure we always have a valid stackframe */
2108 frame = talloc_stackframe();
2110 if (!cmdline_daemon_cfg->fork) {
2111 /* if we are running in the foreground then look for
2112 EOF on stdin, and exit if it happens. This allows
2113 us to die if the parent process dies
2114 Only do this on a pipe or socket, no other device.
2116 struct stat st;
2117 if (fstat(0, &st) != 0) {
2118 return 1;
2120 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode)) {
2121 tevent_add_fd(ev_ctx,
2122 parent,
2124 TEVENT_FD_READ,
2125 smbd_stdin_handler,
2126 NULL);
2130 smbd_parent_loop(ev_ctx, parent);
2132 exit_server_cleanly(NULL);
2133 TALLOC_FREE(frame);
2134 return(0);