9a8820c908c8d7fed3329a186f3df411ce2fc106
[obnox/samba/samba-obnox.git] / source3 / smbd / server.c
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
9
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.
14
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.
19
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/>.
22 */
23
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 "smbd/notifyd/notifyd.h"
52 #include "smbd/smbd_cleanupd.h"
53 #include "lib/util/sys_rw.h"
54
55 #ifdef CLUSTER_SUPPORT
56 #include "ctdb_protocol.h"
57 #endif
58
59 struct smbd_open_socket;
60 struct smbd_child_pid;
61
62 struct smbd_parent_context {
63         bool interactive;
64
65         struct tevent_context *ev_ctx;
66         struct messaging_context *msg_ctx;
67
68         /* the list of listening sockets */
69         struct smbd_open_socket *sockets;
70
71         /* the list of current child processes */
72         struct smbd_child_pid *children;
73         size_t num_children;
74
75         struct server_id cleanupd;
76
77         struct tevent_timer *cleanup_te;
78 };
79
80 struct smbd_open_socket {
81         struct smbd_open_socket *prev, *next;
82         struct smbd_parent_context *parent;
83         int fd;
84         struct tevent_fd *fde;
85 };
86
87 struct smbd_child_pid {
88         struct smbd_child_pid *prev, *next;
89         pid_t pid;
90 };
91
92 extern void start_epmd(struct tevent_context *ev_ctx,
93                        struct messaging_context *msg_ctx);
94
95 extern void start_lsasd(struct tevent_context *ev_ctx,
96                         struct messaging_context *msg_ctx);
97
98 extern void start_fssd(struct tevent_context *ev_ctx,
99                        struct messaging_context *msg_ctx);
100
101 extern void start_mdssd(struct tevent_context *ev_ctx,
102                         struct messaging_context *msg_ctx);
103
104 /*******************************************************************
105  What to do when smb.conf is updated.
106  ********************************************************************/
107
108 static void smbd_parent_conf_updated(struct messaging_context *msg,
109                                      void *private_data,
110                                      uint32_t msg_type,
111                                      struct server_id server_id,
112                                      DATA_BLOB *data)
113 {
114         struct tevent_context *ev_ctx =
115                 talloc_get_type_abort(private_data, struct tevent_context);
116
117         DEBUG(10,("smbd_parent_conf_updated: Got message saying smb.conf was "
118                   "updated. Reloading.\n"));
119         change_to_root_user();
120         reload_services(NULL, NULL, false);
121         printing_subsystem_update(ev_ctx, msg, false);
122 }
123
124 /*******************************************************************
125  Delete a statcache entry.
126  ********************************************************************/
127
128 static void smb_stat_cache_delete(struct messaging_context *msg,
129                                   void *private_data,
130                                   uint32_t msg_tnype,
131                                   struct server_id server_id,
132                                   DATA_BLOB *data)
133 {
134         const char *name = (const char *)data->data;
135         DEBUG(10,("smb_stat_cache_delete: delete name %s\n", name));
136         stat_cache_delete(name);
137 }
138
139 /****************************************************************************
140   Send a SIGTERM to our process group.
141 *****************************************************************************/
142
143 static void  killkids(void)
144 {
145         if(am_parent) kill(0,SIGTERM);
146 }
147
148 static void msg_exit_server(struct messaging_context *msg,
149                             void *private_data,
150                             uint32_t msg_type,
151                             struct server_id server_id,
152                             DATA_BLOB *data)
153 {
154         DEBUG(3, ("got a SHUTDOWN message\n"));
155         exit_server_cleanly(NULL);
156 }
157
158 #ifdef DEVELOPER
159 static void msg_inject_fault(struct messaging_context *msg,
160                              void *private_data,
161                              uint32_t msg_type,
162                              struct server_id src,
163                              DATA_BLOB *data)
164 {
165         int sig;
166         struct server_id_buf tmp;
167
168         if (data->length != sizeof(sig)) {
169                 DEBUG(0, ("Process %s sent bogus signal injection request\n",
170                           server_id_str_buf(src, &tmp)));
171                 return;
172         }
173
174         sig = *(int *)data->data;
175         if (sig == -1) {
176                 exit_server("internal error injected");
177                 return;
178         }
179
180 #if HAVE_STRSIGNAL
181         DEBUG(0, ("Process %s requested injection of signal %d (%s)\n",
182                   server_id_str_buf(src, &tmp), sig, strsignal(sig)));
183 #else
184         DEBUG(0, ("Process %s requested injection of signal %d\n",
185                   server_id_str_buf(src, &tmp), sig));
186 #endif
187
188         kill(getpid(), sig);
189 }
190 #endif /* DEVELOPER */
191
192 static NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx,
193                                            uint32_t msg_type, DATA_BLOB* data)
194 {
195         NTSTATUS status;
196         struct smbd_parent_context *parent = am_parent;
197         struct smbd_child_pid *child;
198
199         if (parent == NULL) {
200                 return NT_STATUS_INTERNAL_ERROR;
201         }
202
203         for (child = parent->children; child != NULL; child = child->next) {
204                 status = messaging_send(parent->msg_ctx,
205                                         pid_to_procid(child->pid),
206                                         msg_type, data);
207                 if (!NT_STATUS_IS_OK(status)) {
208                         return status;
209                 }
210         }
211         return NT_STATUS_OK;
212 }
213
214 static void smb_parent_send_to_children(struct messaging_context *ctx,
215                                         void* data,
216                                         uint32_t msg_type,
217                                         struct server_id srv_id,
218                                         DATA_BLOB* msg_data)
219 {
220         messaging_send_to_children(ctx, msg_type, msg_data);
221 }
222
223 /*
224  * Parent smbd process sets its own debug level first and then
225  * sends a message to all the smbd children to adjust their debug
226  * level to that of the parent.
227  */
228
229 static void smbd_msg_debug(struct messaging_context *msg_ctx,
230                            void *private_data,
231                            uint32_t msg_type,
232                            struct server_id server_id,
233                            DATA_BLOB *data)
234 {
235         debug_message(msg_ctx, private_data, MSG_DEBUG, server_id, data);
236
237         messaging_send_to_children(msg_ctx, MSG_DEBUG, data);
238 }
239
240 static void smbd_parent_id_cache_kill(struct messaging_context *msg_ctx,
241                                       void *private_data,
242                                       uint32_t msg_type,
243                                       struct server_id server_id,
244                                       DATA_BLOB* data)
245 {
246         const char *msg = (data && data->data)
247                 ? (const char *)data->data : "<NULL>";
248         struct id_cache_ref id;
249
250         if (!id_cache_ref_parse(msg, &id)) {
251                 DEBUG(0, ("Invalid ?ID: %s\n", msg));
252                 return;
253         }
254
255         id_cache_delete_from_cache(&id);
256
257         messaging_send_to_children(msg_ctx, msg_type, data);
258 }
259
260 static void smbd_parent_id_cache_delete(struct messaging_context *ctx,
261                                         void* data,
262                                         uint32_t msg_type,
263                                         struct server_id srv_id,
264                                         DATA_BLOB* msg_data)
265 {
266         id_cache_delete_message(ctx, data, msg_type, srv_id, msg_data);
267
268         messaging_send_to_children(ctx, msg_type, msg_data);
269 }
270
271 #ifdef CLUSTER_SUPPORT
272 static int smbd_parent_ctdb_reconfigured(
273         uint32_t src_vnn, uint32_t dst_vnn, uint64_t dst_srvid,
274         const uint8_t *msg, size_t msglen, void *private_data)
275 {
276         struct messaging_context *msg_ctx = talloc_get_type_abort(
277                 private_data, struct messaging_context);
278
279         DEBUG(10, ("Got %s message\n", (dst_srvid == CTDB_SRVID_RECONFIGURE)
280                    ? "cluster reconfigure" : "SAMBA_NOTIFY"));
281
282         /*
283          * Someone from the family died, validate our locks
284          */
285
286         if (am_parent) {
287                 messaging_send_buf(msg_ctx, am_parent->cleanupd,
288                                    MSG_SMB_BRL_VALIDATE, NULL, 0);
289         }
290
291         return 0;
292 }
293 #endif
294
295 static void add_child_pid(struct smbd_parent_context *parent,
296                           pid_t pid)
297 {
298         struct smbd_child_pid *child;
299
300         child = talloc_zero(parent, struct smbd_child_pid);
301         if (child == NULL) {
302                 DEBUG(0, ("Could not add child struct -- malloc failed\n"));
303                 return;
304         }
305         child->pid = pid;
306         DLIST_ADD(parent->children, child);
307         parent->num_children += 1;
308 }
309
310 static void smb_tell_num_children(struct messaging_context *ctx, void *data,
311                                   uint32_t msg_type, struct server_id srv_id,
312                                   DATA_BLOB *msg_data)
313 {
314         uint8_t buf[sizeof(uint32_t)];
315
316         if (am_parent) {
317                 SIVAL(buf, 0, am_parent->num_children);
318                 messaging_send_buf(ctx, srv_id, MSG_SMB_NUM_CHILDREN,
319                                    buf, sizeof(buf));
320         }
321 }
322
323 static void notifyd_stopped(struct tevent_req *req);
324
325 static struct tevent_req *notifyd_req(struct messaging_context *msg_ctx,
326                                       struct tevent_context *ev)
327 {
328         struct tevent_req *req;
329         sys_notify_watch_fn sys_notify_watch = NULL;
330         struct sys_notify_context *sys_notify_ctx = NULL;
331
332         if (lp_kernel_change_notify()) {
333
334 #ifdef HAVE_INOTIFY
335                 if (lp_parm_bool(-1, "notify", "inotify", true)) {
336                         sys_notify_watch = inotify_watch;
337                 }
338 #endif
339
340 #ifdef HAVE_FAM
341                 if (lp_parm_bool(-1, "notify", "fam",
342                                  (sys_notify_watch == NULL))) {
343                         sys_notify_watch = fam_watch;
344                 }
345 #endif
346         }
347
348         if (sys_notify_watch != NULL) {
349                 sys_notify_ctx = sys_notify_context_create(msg_ctx, ev);
350                 if (sys_notify_ctx == NULL) {
351                         return NULL;
352                 }
353         }
354
355         req = notifyd_send(msg_ctx, ev, msg_ctx,
356                            messaging_ctdbd_connection(),
357                            sys_notify_watch, sys_notify_ctx);
358         if (req == NULL) {
359                 TALLOC_FREE(sys_notify_ctx);
360                 return NULL;
361         }
362         tevent_req_set_callback(req, notifyd_stopped, msg_ctx);
363
364         return req;
365 }
366
367 static void notifyd_stopped(struct tevent_req *req)
368 {
369         int ret;
370
371         ret = notifyd_recv(req);
372         TALLOC_FREE(req);
373         DEBUG(1, ("notifyd stopped: %s\n", strerror(ret)));
374 }
375
376 static bool smbd_notifyd_init(struct messaging_context *msg, bool interactive)
377 {
378         struct tevent_context *ev = messaging_tevent_context(msg);
379         struct tevent_req *req;
380         pid_t pid;
381         NTSTATUS status;
382
383         if (interactive) {
384                 req = notifyd_req(msg, ev);
385                 return (req != NULL);
386         }
387
388         pid = fork();
389         if (pid == -1) {
390                 DEBUG(1, ("%s: fork failed: %s\n", __func__,
391                           strerror(errno)));
392                 return false;
393         }
394
395         if (pid != 0) {
396                 return true;
397         }
398
399         status = reinit_after_fork(msg, ev, true, "smbd-notifyd");
400         if (!NT_STATUS_IS_OK(status)) {
401                 DEBUG(1, ("%s: reinit_after_fork failed: %s\n",
402                           __func__, nt_errstr(status)));
403                 exit(1);
404         }
405
406         req = notifyd_req(msg, ev);
407         if (req == NULL) {
408                 exit(1);
409         }
410         tevent_req_set_callback(req, notifyd_stopped, msg);
411         return tevent_req_poll(req, ev);
412 }
413
414 static void cleanupd_stopped(struct tevent_req *req);
415
416 static bool cleanupd_init(struct messaging_context *msg, bool interactive,
417                           struct server_id *ppid)
418 {
419         struct tevent_context *ev = messaging_tevent_context(msg);
420         struct server_id parent_id = messaging_server_id(msg);
421         struct tevent_req *req;
422         pid_t pid;
423         NTSTATUS status;
424         ssize_t rwret;
425         int ret;
426         bool ok;
427         char c;
428         int up_pipe[2];
429
430         if (interactive) {
431                 req = smbd_cleanupd_send(msg, ev, msg, parent_id.pid);
432                 *ppid = messaging_server_id(msg);
433                 return (req != NULL);
434         }
435
436         ret = pipe(up_pipe);
437         if (ret == -1) {
438                 DBG_WARNING("pipe failed: %s\n", strerror(errno));
439                 return false;
440         }
441
442         pid = fork();
443         if (pid == -1) {
444                 DBG_WARNING("fork failed: %s\n", strerror(errno));
445                 close(up_pipe[0]);
446                 close(up_pipe[1]);
447                 return false;
448         }
449
450         if (pid != 0) {
451
452                 close(up_pipe[1]);
453                 rwret = sys_read(up_pipe[0], &c, 1);
454                 close(up_pipe[0]);
455
456                 if (rwret == -1) {
457                         DBG_WARNING("sys_read failed: %s\n", strerror(errno));
458                         return false;
459                 }
460                 if (rwret == 0) {
461                         DBG_WARNING("cleanupd could not start\n");
462                         return false;
463                 }
464                 if (c != 0) {
465                         DBG_WARNING("cleanupd returned %d\n", (int)c);
466                         return false;
467                 }
468
469                 DBG_DEBUG("Started cleanupd pid=%d\n", (int)pid);
470
471                 *ppid = pid_to_procid(pid);
472                 return true;
473         }
474
475         close(up_pipe[0]);
476
477         status = reinit_after_fork(msg, ev, true, "cleanupd");
478         if (!NT_STATUS_IS_OK(status)) {
479                 DBG_WARNING("reinit_after_fork failed: %s\n",
480                             nt_errstr(status));
481                 c = 1;
482                 sys_write(up_pipe[1], &c, 1);
483
484                 exit(1);
485         }
486
487         req = smbd_cleanupd_send(msg, ev, msg, parent_id.pid);
488         if (req == NULL) {
489                 DBG_WARNING("smbd_cleanupd_send failed\n");
490                 c = 2;
491                 sys_write(up_pipe[1], &c, 1);
492
493                 exit(1);
494         }
495
496         tevent_req_set_callback(req, cleanupd_stopped, msg);
497
498         c = 0;
499         rwret = sys_write(up_pipe[1], &c, 1);
500         close(up_pipe[1]);
501
502         if (rwret == -1) {
503                 DBG_WARNING("sys_write failed: %s\n", strerror(errno));
504                 exit(1);
505         }
506         if (rwret != 1) {
507                 DBG_WARNING("sys_write could not write result\n");
508                 exit(1);
509         }
510
511         ok = tevent_req_poll(req, ev);
512         if (!ok) {
513                 DBG_WARNING("tevent_req_poll returned %s\n", strerror(errno));
514         }
515         exit(0);
516 }
517
518 static void cleanupd_stopped(struct tevent_req *req)
519 {
520         NTSTATUS status;
521
522         status = smbd_cleanupd_recv(req);
523         DBG_WARNING("cleanupd stopped: %s\n", nt_errstr(status));
524 }
525
526 /*
527   at most every smbd:cleanuptime seconds (default 20), we scan the BRL
528   and locking database for entries to cleanup. As a side effect this
529   also cleans up dead entries in the connections database (due to the
530   traversal in message_send_all()
531
532   Using a timer for this prevents a flood of traversals when a large
533   number of clients disconnect at the same time (perhaps due to a
534   network outage).  
535 */
536
537 static void cleanup_timeout_fn(struct tevent_context *event_ctx,
538                                 struct tevent_timer *te,
539                                 struct timeval now,
540                                 void *private_data)
541 {
542         struct smbd_parent_context *parent =
543                 talloc_get_type_abort(private_data,
544                 struct smbd_parent_context);
545
546         parent->cleanup_te = NULL;
547
548         DEBUG(1,("Cleaning up brl and lock database after unclean shutdown\n"));
549         message_send_all(parent->msg_ctx, MSG_SMB_UNLOCK, NULL, 0, NULL);
550
551         messaging_send_buf(parent->msg_ctx, parent->cleanupd,
552                            MSG_SMB_UNLOCK, NULL, 0);
553 }
554
555 static void remove_child_pid(struct smbd_parent_context *parent,
556                              pid_t pid,
557                              bool unclean_shutdown)
558 {
559         struct smbd_child_pid *child;
560         struct iovec iov[2];
561         NTSTATUS status;
562
563         iov[0] = (struct iovec) { .iov_base = (uint8_t *)&pid,
564                                   .iov_len = sizeof(pid) };
565         iov[1] = (struct iovec) { .iov_base = (uint8_t *)&unclean_shutdown,
566                                   .iov_len = sizeof(bool) };
567
568         status = messaging_send_iov(parent->msg_ctx, parent->cleanupd,
569                                     MSG_SMB_NOTIFY_CLEANUP,
570                                     iov, ARRAY_SIZE(iov), NULL, 0);
571         DEBUG(10, ("messaging_send_iov returned %s\n", nt_errstr(status)));
572
573         for (child = parent->children; child != NULL; child = child->next) {
574                 if (child->pid == pid) {
575                         struct smbd_child_pid *tmp = child;
576                         DLIST_REMOVE(parent->children, child);
577                         TALLOC_FREE(tmp);
578                         parent->num_children -= 1;
579                         break;
580                 }
581         }
582
583         if (child == NULL) {
584                 /* not all forked child processes are added to the children list */
585                 DEBUG(2, ("Could not find child %d -- ignoring\n", (int)pid));
586                 return;
587         }
588
589         if (unclean_shutdown) {
590                 /* a child terminated uncleanly so tickle all
591                    processes to see if they can grab any of the
592                    pending locks
593                 */
594                 DEBUG(3,(__location__ " Unclean shutdown of pid %u\n",
595                         (unsigned int)pid));
596                 if (parent->cleanup_te == NULL) {
597                         /* call the cleanup timer, but not too often */
598                         int cleanup_time = lp_parm_int(-1, "smbd", "cleanuptime", 20);
599                         parent->cleanup_te = tevent_add_timer(parent->ev_ctx,
600                                                 parent,
601                                                 timeval_current_ofs(cleanup_time, 0),
602                                                 cleanup_timeout_fn,
603                                                 parent);
604                         DEBUG(1,("Scheduled cleanup of brl and lock database after unclean shutdown\n"));
605                 }
606         }
607 }
608
609 /****************************************************************************
610  Have we reached the process limit ?
611 ****************************************************************************/
612
613 static bool allowable_number_of_smbd_processes(struct smbd_parent_context *parent)
614 {
615         int max_processes = lp_max_smbd_processes();
616
617         if (!max_processes)
618                 return True;
619
620         return parent->num_children < max_processes;
621 }
622
623 static void smbd_sig_chld_handler(struct tevent_context *ev,
624                                   struct tevent_signal *se,
625                                   int signum,
626                                   int count,
627                                   void *siginfo,
628                                   void *private_data)
629 {
630         pid_t pid;
631         int status;
632         struct smbd_parent_context *parent =
633                 talloc_get_type_abort(private_data,
634                 struct smbd_parent_context);
635
636         while ((pid = sys_waitpid(-1, &status, WNOHANG)) > 0) {
637                 bool unclean_shutdown = False;
638
639                 /* If the child terminated normally, assume
640                    it was an unclean shutdown unless the
641                    status is 0
642                 */
643                 if (WIFEXITED(status)) {
644                         unclean_shutdown = WEXITSTATUS(status);
645                 }
646                 /* If the child terminated due to a signal
647                    we always assume it was unclean.
648                 */
649                 if (WIFSIGNALED(status)) {
650                         unclean_shutdown = True;
651                 }
652                 remove_child_pid(parent, pid, unclean_shutdown);
653         }
654 }
655
656 static void smbd_setup_sig_chld_handler(struct smbd_parent_context *parent)
657 {
658         struct tevent_signal *se;
659
660         se = tevent_add_signal(parent->ev_ctx,
661                                parent, /* mem_ctx */
662                                SIGCHLD, 0,
663                                smbd_sig_chld_handler,
664                                parent);
665         if (!se) {
666                 exit_server("failed to setup SIGCHLD handler");
667         }
668 }
669
670 static void smbd_open_socket_close_fn(struct tevent_context *ev,
671                                       struct tevent_fd *fde,
672                                       int fd,
673                                       void *private_data)
674 {
675         /* this might be the socket_wrapper swrap_close() */
676         close(fd);
677 }
678
679 static void smbd_accept_connection(struct tevent_context *ev,
680                                    struct tevent_fd *fde,
681                                    uint16_t flags,
682                                    void *private_data)
683 {
684         struct smbd_open_socket *s = talloc_get_type_abort(private_data,
685                                      struct smbd_open_socket);
686         struct messaging_context *msg_ctx = s->parent->msg_ctx;
687         struct sockaddr_storage addr;
688         socklen_t in_addrlen = sizeof(addr);
689         int fd;
690         pid_t pid = 0;
691
692         fd = accept(s->fd, (struct sockaddr *)(void *)&addr,&in_addrlen);
693         if (fd == -1 && errno == EINTR)
694                 return;
695
696         if (fd == -1) {
697                 DEBUG(0,("accept: %s\n",
698                          strerror(errno)));
699                 return;
700         }
701
702         if (s->parent->interactive) {
703                 reinit_after_fork(msg_ctx, ev, true, NULL);
704                 smbd_process(ev, msg_ctx, fd, true);
705                 exit_server_cleanly("end of interactive mode");
706                 return;
707         }
708
709         if (!allowable_number_of_smbd_processes(s->parent)) {
710                 close(fd);
711                 return;
712         }
713
714         pid = fork();
715         if (pid == 0) {
716                 NTSTATUS status = NT_STATUS_OK;
717
718                 /*
719                  * Can't use TALLOC_FREE here. Nulling out the argument to it
720                  * would overwrite memory we've just freed.
721                  */
722                 talloc_free(s->parent);
723                 s = NULL;
724
725                 /* Stop zombies, the parent explicitly handles
726                  * them, counting worker smbds. */
727                 CatchChild();
728
729                 status = smbd_reinit_after_fork(msg_ctx, ev, true, NULL);
730                 if (!NT_STATUS_IS_OK(status)) {
731                         if (NT_STATUS_EQUAL(status,
732                                             NT_STATUS_TOO_MANY_OPENED_FILES)) {
733                                 DEBUG(0,("child process cannot initialize "
734                                          "because too many files are open\n"));
735                                 goto exit;
736                         }
737                         if (lp_clustering() &&
738                             NT_STATUS_EQUAL(status,
739                             NT_STATUS_INTERNAL_DB_ERROR)) {
740                                 DEBUG(1,("child process cannot initialize "
741                                          "because connection to CTDB "
742                                          "has failed\n"));
743                                 goto exit;
744                         }
745
746                         DEBUG(0,("reinit_after_fork() failed\n"));
747                         smb_panic("reinit_after_fork() failed");
748                 }
749
750                 smbd_process(ev, msg_ctx, fd, false);
751          exit:
752                 exit_server_cleanly("end of child");
753                 return;
754         }
755
756         if (pid < 0) {
757                 DEBUG(0,("smbd_accept_connection: fork() failed: %s\n",
758                          strerror(errno)));
759         }
760
761         /* The parent doesn't need this socket */
762         close(fd);
763
764         /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
765                 Clear the closed fd info out of server_fd --
766                 and more importantly, out of client_fd in
767                 util_sock.c, to avoid a possible
768                 getpeername failure if we reopen the logs
769                 and use %I in the filename.
770         */
771
772         if (pid != 0) {
773                 add_child_pid(s->parent, pid);
774         }
775
776         /* Force parent to check log size after
777          * spawning child.  Fix from
778          * klausr@ITAP.Physik.Uni-Stuttgart.De.  The
779          * parent smbd will log to logserver.smb.  It
780          * writes only two messages for each child
781          * started/finished. But each child writes,
782          * say, 50 messages also in logserver.smb,
783          * begining with the debug_count of the
784          * parent, before the child opens its own log
785          * file logserver.client. In a worst case
786          * scenario the size of logserver.smb would be
787          * checked after about 50*50=2500 messages
788          * (ca. 100kb).
789          * */
790         force_check_log_size();
791 }
792
793 static bool smbd_open_one_socket(struct smbd_parent_context *parent,
794                                  struct tevent_context *ev_ctx,
795                                  const struct sockaddr_storage *ifss,
796                                  uint16_t port)
797 {
798         struct smbd_open_socket *s;
799
800         s = talloc(parent, struct smbd_open_socket);
801         if (!s) {
802                 return false;
803         }
804
805         s->parent = parent;
806         s->fd = open_socket_in(SOCK_STREAM,
807                                port,
808                                parent->sockets == NULL ? 0 : 2,
809                                ifss,
810                                true);
811         if (s->fd == -1) {
812                 DEBUG(0,("smbd_open_one_socket: open_socket_in: "
813                         "%s\n", strerror(errno)));
814                 TALLOC_FREE(s);
815                 /*
816                  * We ignore an error here, as we've done before
817                  */
818                 return true;
819         }
820
821         /* ready to listen */
822         set_socket_options(s->fd, "SO_KEEPALIVE");
823         set_socket_options(s->fd, lp_socket_options());
824
825         /* Set server socket to
826          * non-blocking for the accept. */
827         set_blocking(s->fd, False);
828
829         if (listen(s->fd, SMBD_LISTEN_BACKLOG) == -1) {
830                 DEBUG(0,("smbd_open_one_socket: listen: "
831                         "%s\n", strerror(errno)));
832                         close(s->fd);
833                 TALLOC_FREE(s);
834                 return false;
835         }
836
837         s->fde = tevent_add_fd(ev_ctx,
838                                s,
839                                s->fd, TEVENT_FD_READ,
840                                smbd_accept_connection,
841                                s);
842         if (!s->fde) {
843                 DEBUG(0,("smbd_open_one_socket: "
844                          "tevent_add_fd: %s\n",
845                          strerror(errno)));
846                 close(s->fd);
847                 TALLOC_FREE(s);
848                 return false;
849         }
850         tevent_fd_set_close_fn(s->fde, smbd_open_socket_close_fn);
851
852         DLIST_ADD_END(parent->sockets, s, struct smbd_open_socket *);
853
854         return true;
855 }
856
857 /****************************************************************************
858  Open the socket communication.
859 ****************************************************************************/
860
861 static bool open_sockets_smbd(struct smbd_parent_context *parent,
862                               struct tevent_context *ev_ctx,
863                               struct messaging_context *msg_ctx,
864                               const char *smb_ports)
865 {
866         int num_interfaces = iface_count();
867         int i,j;
868         const char **ports;
869         unsigned dns_port = 0;
870
871 #ifdef HAVE_ATEXIT
872         atexit(killkids);
873 #endif
874
875         /* Stop zombies */
876         smbd_setup_sig_chld_handler(parent);
877
878         ports = lp_smb_ports();
879
880         /* use a reasonable default set of ports - listing on 445 and 139 */
881         if (smb_ports) {
882                 char **l;
883                 l = str_list_make_v3(talloc_tos(), smb_ports, NULL);
884                 ports = discard_const_p(const char *, l);
885         }
886
887         for (j = 0; ports && ports[j]; j++) {
888                 unsigned port = atoi(ports[j]);
889
890                 if (port == 0 || port > 0xffff) {
891                         exit_server_cleanly("Invalid port in the config or on "
892                                             "the commandline specified!");
893                 }
894         }
895
896         if (lp_interfaces() && lp_bind_interfaces_only()) {
897                 /* We have been given an interfaces line, and been
898                    told to only bind to those interfaces. Create a
899                    socket per interface and bind to only these.
900                 */
901
902                 /* Now open a listen socket for each of the
903                    interfaces. */
904                 for(i = 0; i < num_interfaces; i++) {
905                         const struct sockaddr_storage *ifss =
906                                         iface_n_sockaddr_storage(i);
907                         if (ifss == NULL) {
908                                 DEBUG(0,("open_sockets_smbd: "
909                                         "interface %d has NULL IP address !\n",
910                                         i));
911                                 continue;
912                         }
913
914                         for (j = 0; ports && ports[j]; j++) {
915                                 unsigned port = atoi(ports[j]);
916
917                                 /* Keep the first port for mDNS service
918                                  * registration.
919                                  */
920                                 if (dns_port == 0) {
921                                         dns_port = port;
922                                 }
923
924                                 if (!smbd_open_one_socket(parent,
925                                                           ev_ctx,
926                                                           ifss,
927                                                           port)) {
928                                         return false;
929                                 }
930                         }
931                 }
932         } else {
933                 /* Just bind to 0.0.0.0 - accept connections
934                    from anywhere. */
935
936                 const char *sock_addr;
937                 char *sock_tok;
938                 const char *sock_ptr;
939
940 #if HAVE_IPV6
941                 sock_addr = "::,0.0.0.0";
942 #else
943                 sock_addr = "0.0.0.0";
944 #endif
945
946                 for (sock_ptr=sock_addr;
947                      next_token_talloc(talloc_tos(), &sock_ptr, &sock_tok, " \t,"); ) {
948                         for (j = 0; ports && ports[j]; j++) {
949                                 struct sockaddr_storage ss;
950                                 unsigned port = atoi(ports[j]);
951
952                                 /* Keep the first port for mDNS service
953                                  * registration.
954                                  */
955                                 if (dns_port == 0) {
956                                         dns_port = port;
957                                 }
958
959                                 /* open an incoming socket */
960                                 if (!interpret_string_addr(&ss, sock_tok,
961                                                 AI_NUMERICHOST|AI_PASSIVE)) {
962                                         continue;
963                                 }
964
965                                 /*
966                                  * If we fail to open any sockets
967                                  * in this loop the parent-sockets == NULL
968                                  * case below will prevent us from starting.
969                                  */
970
971                                 (void)smbd_open_one_socket(parent,
972                                                   ev_ctx,
973                                                   &ss,
974                                                   port);
975                         }
976                 }
977         }
978
979         if (parent->sockets == NULL) {
980                 DEBUG(0,("open_sockets_smbd: No "
981                         "sockets available to bind to.\n"));
982                 return false;
983         }
984
985         /* Setup the main smbd so that we can get messages. Note that
986            do this after starting listening. This is needed as when in
987            clustered mode, ctdb won't allow us to start doing database
988            operations until it has gone thru a full startup, which
989            includes checking to see that smbd is listening. */
990
991         if (!serverid_register(messaging_server_id(msg_ctx),
992                                FLAG_MSG_GENERAL|FLAG_MSG_SMBD
993                                |FLAG_MSG_PRINT_GENERAL
994                                |FLAG_MSG_DBWRAP)) {
995                 DEBUG(0, ("open_sockets_smbd: Failed to register "
996                           "myself in serverid.tdb\n"));
997                 return false;
998         }
999
1000         /* Listen to messages */
1001
1002         messaging_register(msg_ctx, NULL, MSG_SHUTDOWN, msg_exit_server);
1003         messaging_register(msg_ctx, ev_ctx, MSG_SMB_CONF_UPDATED,
1004                            smbd_parent_conf_updated);
1005         messaging_register(msg_ctx, NULL, MSG_SMB_STAT_CACHE_DELETE,
1006                            smb_stat_cache_delete);
1007         messaging_register(msg_ctx, NULL, MSG_DEBUG, smbd_msg_debug);
1008         messaging_register(msg_ctx, NULL, MSG_SMB_FORCE_TDIS,
1009                            smb_parent_send_to_children);
1010         messaging_register(msg_ctx, NULL, MSG_SMB_KILL_CLIENT_IP,
1011                            smb_parent_send_to_children);
1012         messaging_register(msg_ctx, NULL, MSG_SMB_TELL_NUM_CHILDREN,
1013                            smb_tell_num_children);
1014
1015         messaging_register(msg_ctx, NULL,
1016                            ID_CACHE_DELETE, smbd_parent_id_cache_delete);
1017         messaging_register(msg_ctx, NULL,
1018                            ID_CACHE_KILL, smbd_parent_id_cache_kill);
1019
1020 #ifdef CLUSTER_SUPPORT
1021         if (lp_clustering()) {
1022                 struct ctdbd_connection *conn = messaging_ctdbd_connection();
1023
1024                 register_with_ctdbd(conn, CTDB_SRVID_RECONFIGURE,
1025                                     smbd_parent_ctdb_reconfigured, msg_ctx);
1026                 register_with_ctdbd(conn, CTDB_SRVID_SAMBA_NOTIFY,
1027                                     smbd_parent_ctdb_reconfigured, msg_ctx);
1028         }
1029 #endif
1030
1031 #ifdef DEVELOPER
1032         messaging_register(msg_ctx, NULL, MSG_SMB_INJECT_FAULT,
1033                            msg_inject_fault);
1034 #endif
1035
1036         if (lp_multicast_dns_register() && (dns_port != 0)) {
1037 #ifdef WITH_DNSSD_SUPPORT
1038                 smbd_setup_mdns_registration(ev_ctx,
1039                                              parent, dns_port);
1040 #endif
1041 #ifdef WITH_AVAHI_SUPPORT
1042                 void *avahi_conn;
1043
1044                 avahi_conn = avahi_start_register(ev_ctx,
1045                                                   ev_ctx,
1046                                                   dns_port);
1047                 if (avahi_conn == NULL) {
1048                         DEBUG(10, ("avahi_start_register failed\n"));
1049                 }
1050 #endif
1051         }
1052
1053         return true;
1054 }
1055
1056
1057 /*
1058   handle stdin becoming readable when we are in --foreground mode
1059  */
1060 static void smbd_stdin_handler(struct tevent_context *ev,
1061                                struct tevent_fd *fde,
1062                                uint16_t flags,
1063                                void *private_data)
1064 {
1065         char c;
1066         if (read(0, &c, 1) != 1) {
1067                 /* we have reached EOF on stdin, which means the
1068                    parent has exited. Shutdown the server */
1069                 exit_server_cleanly("EOF on stdin");
1070         }
1071 }
1072
1073 struct smbd_parent_tevent_trace_state {
1074         TALLOC_CTX *frame;
1075 };
1076
1077 static void smbd_parent_tevent_trace_callback(enum tevent_trace_point point,
1078                                               void *private_data)
1079 {
1080         struct smbd_parent_tevent_trace_state *state =
1081                 (struct smbd_parent_tevent_trace_state *)private_data;
1082
1083         switch (point) {
1084         case TEVENT_TRACE_BEFORE_WAIT:
1085                 break;
1086         case TEVENT_TRACE_AFTER_WAIT:
1087                 break;
1088         case TEVENT_TRACE_BEFORE_LOOP_ONCE:
1089                 TALLOC_FREE(state->frame);
1090                 state->frame = talloc_stackframe();
1091                 break;
1092         case TEVENT_TRACE_AFTER_LOOP_ONCE:
1093                 TALLOC_FREE(state->frame);
1094                 break;
1095         }
1096
1097         errno = 0;
1098 }
1099
1100 static void smbd_parent_loop(struct tevent_context *ev_ctx,
1101                              struct smbd_parent_context *parent)
1102 {
1103         struct smbd_parent_tevent_trace_state trace_state = {
1104                 .frame = NULL,
1105         };
1106         int ret = 0;
1107
1108         tevent_set_trace_callback(ev_ctx, smbd_parent_tevent_trace_callback,
1109                                   &trace_state);
1110
1111         /* now accept incoming connections - forking a new process
1112            for each incoming connection */
1113         DEBUG(2,("waiting for connections\n"));
1114
1115         ret = tevent_loop_wait(ev_ctx);
1116         if (ret != 0) {
1117                 DEBUG(0, ("tevent_loop_wait failed: %d, %s, exiting\n",
1118                           ret, strerror(errno)));
1119         }
1120
1121         TALLOC_FREE(trace_state.frame);
1122
1123 /* NOTREACHED   return True; */
1124 }
1125
1126
1127 /****************************************************************************
1128  Initialise connect, service and file structs.
1129 ****************************************************************************/
1130
1131 static bool init_structs(void )
1132 {
1133         /*
1134          * Set the machine NETBIOS name if not already
1135          * set from the config file.
1136          */
1137
1138         if (!init_names())
1139                 return False;
1140
1141         if (!secrets_init())
1142                 return False;
1143
1144         return True;
1145 }
1146
1147 static void smbd_parent_sig_term_handler(struct tevent_context *ev,
1148                                          struct tevent_signal *se,
1149                                          int signum,
1150                                          int count,
1151                                          void *siginfo,
1152                                          void *private_data)
1153 {
1154         exit_server_cleanly("termination signal");
1155 }
1156
1157 static void smbd_parent_sig_hup_handler(struct tevent_context *ev,
1158                                         struct tevent_signal *se,
1159                                         int signum,
1160                                         int count,
1161                                         void *siginfo,
1162                                         void *private_data)
1163 {
1164         struct smbd_parent_context *parent =
1165                 talloc_get_type_abort(private_data,
1166                 struct smbd_parent_context);
1167
1168         change_to_root_user();
1169         DEBUG(1,("parent: Reloading services after SIGHUP\n"));
1170         reload_services(NULL, NULL, false);
1171
1172         printing_subsystem_update(parent->ev_ctx, parent->msg_ctx, true);
1173 }
1174
1175 /****************************************************************************
1176  main program.
1177 ****************************************************************************/
1178
1179 /* Declare prototype for build_options() to avoid having to run it through
1180    mkproto.h.  Mixing $(builddir) and $(srcdir) source files in the current
1181    prototype generation system is too complicated. */
1182
1183 extern void build_options(bool screen);
1184
1185  int main(int argc,const char *argv[])
1186 {
1187         /* shall I run as a daemon */
1188         bool is_daemon = false;
1189         bool interactive = false;
1190         bool Fork = true;
1191         bool no_process_group = false;
1192         bool log_stdout = false;
1193         char *ports = NULL;
1194         char *profile_level = NULL;
1195         int opt;
1196         poptContext pc;
1197         bool print_build_options = False;
1198         enum {
1199                 OPT_DAEMON = 1000,
1200                 OPT_INTERACTIVE,
1201                 OPT_FORK,
1202                 OPT_NO_PROCESS_GROUP,
1203                 OPT_LOG_STDOUT
1204         };
1205         struct poptOption long_options[] = {
1206         POPT_AUTOHELP
1207         {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
1208         {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)"},
1209         {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools, etc.)" },
1210         {"no-process-group", '\0', POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
1211         {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
1212         {"build-options", 'b', POPT_ARG_NONE, NULL, 'b', "Print build options" },
1213         {"port", 'p', POPT_ARG_STRING, &ports, 0, "Listen on the specified ports"},
1214         {"profiling-level", 'P', POPT_ARG_STRING, &profile_level, 0, "Set profiling level","PROFILE_LEVEL"},
1215         POPT_COMMON_SAMBA
1216         POPT_TABLEEND
1217         };
1218         struct smbd_parent_context *parent = NULL;
1219         TALLOC_CTX *frame;
1220         NTSTATUS status;
1221         struct tevent_context *ev_ctx;
1222         struct messaging_context *msg_ctx;
1223         struct server_id server_id;
1224         struct tevent_signal *se;
1225         int profiling_level;
1226         char *np_dir = NULL;
1227         static const struct smbd_shim smbd_shim_fns =
1228         {
1229                 .cancel_pending_lock_requests_by_fid = smbd_cancel_pending_lock_requests_by_fid,
1230                 .send_stat_cache_delete_message = smbd_send_stat_cache_delete_message,
1231                 .change_to_root_user = smbd_change_to_root_user,
1232                 .become_authenticated_pipe_user = smbd_become_authenticated_pipe_user,
1233                 .unbecome_authenticated_pipe_user = smbd_unbecome_authenticated_pipe_user,
1234
1235                 .contend_level2_oplocks_begin = smbd_contend_level2_oplocks_begin,
1236                 .contend_level2_oplocks_end = smbd_contend_level2_oplocks_end,
1237
1238                 .become_root = smbd_become_root,
1239                 .unbecome_root = smbd_unbecome_root,
1240
1241                 .exit_server = smbd_exit_server,
1242                 .exit_server_cleanly = smbd_exit_server_cleanly,
1243         };
1244
1245         /*
1246          * Do this before any other talloc operation
1247          */
1248         talloc_enable_null_tracking();
1249         frame = talloc_stackframe();
1250
1251         setup_logging(argv[0], DEBUG_DEFAULT_STDOUT);
1252
1253         smb_init_locale();
1254
1255         set_smbd_shim(&smbd_shim_fns);
1256
1257         smbd_init_globals();
1258
1259         TimeInit();
1260
1261 #ifdef HAVE_SET_AUTH_PARAMETERS
1262         set_auth_parameters(argc,argv);
1263 #endif
1264
1265         pc = poptGetContext("smbd", argc, argv, long_options, 0);
1266         while((opt = poptGetNextOpt(pc)) != -1) {
1267                 switch (opt)  {
1268                 case OPT_DAEMON:
1269                         is_daemon = true;
1270                         break;
1271                 case OPT_INTERACTIVE:
1272                         interactive = true;
1273                         break;
1274                 case OPT_FORK:
1275                         Fork = false;
1276                         break;
1277                 case OPT_NO_PROCESS_GROUP:
1278                         no_process_group = true;
1279                         break;
1280                 case OPT_LOG_STDOUT:
1281                         log_stdout = true;
1282                         break;
1283                 case 'b':
1284                         print_build_options = True;
1285                         break;
1286                 default:
1287                         d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1288                                   poptBadOption(pc, 0), poptStrerror(opt));
1289                         poptPrintUsage(pc, stderr, 0);
1290                         exit(1);
1291                 }
1292         }
1293         poptFreeContext(pc);
1294
1295         if (interactive) {
1296                 Fork = False;
1297                 log_stdout = True;
1298         }
1299
1300         if (log_stdout) {
1301                 setup_logging(argv[0], DEBUG_STDOUT);
1302         } else {
1303                 setup_logging(argv[0], DEBUG_FILE);
1304         }
1305
1306         if (print_build_options) {
1307                 build_options(True); /* Display output to screen as well as debug */
1308                 exit(0);
1309         }
1310
1311 #ifdef HAVE_SETLUID
1312         /* needed for SecureWare on SCO */
1313         setluid(0);
1314 #endif
1315
1316         set_remote_machine_name("smbd", False);
1317
1318         if (interactive && (DEBUGLEVEL >= 9)) {
1319                 talloc_enable_leak_report();
1320         }
1321
1322         if (log_stdout && Fork) {
1323                 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
1324                 exit(1);
1325         }
1326
1327         /*
1328          * We want to die early if we can't open /dev/urandom
1329          */
1330         generate_random_buffer(NULL, 0);
1331
1332         /* get initial effective uid and gid */
1333         sec_init();
1334
1335         /* make absolutely sure we run as root - to handle cases where people
1336            are crazy enough to have it setuid */
1337         gain_root_privilege();
1338         gain_root_group_privilege();
1339
1340         fault_setup();
1341         dump_core_setup("smbd", lp_logfile(talloc_tos()));
1342
1343         /* we are never interested in SIGPIPE */
1344         BlockSignals(True,SIGPIPE);
1345
1346 #if defined(SIGFPE)
1347         /* we are never interested in SIGFPE */
1348         BlockSignals(True,SIGFPE);
1349 #endif
1350
1351 #if defined(SIGUSR2)
1352         /* We are no longer interested in USR2 */
1353         BlockSignals(True,SIGUSR2);
1354 #endif
1355
1356         /* POSIX demands that signals are inherited. If the invoking process has
1357          * these signals masked, we will have problems, as we won't recieve them. */
1358         BlockSignals(False, SIGHUP);
1359         BlockSignals(False, SIGUSR1);
1360         BlockSignals(False, SIGTERM);
1361
1362         /* Ensure we leave no zombies until we
1363          * correctly set up child handling below. */
1364
1365         CatchChild();
1366
1367         /* we want total control over the permissions on created files,
1368            so set our umask to 0 */
1369         umask(0);
1370
1371         reopen_logs();
1372
1373         DEBUG(0,("smbd version %s started.\n", samba_version_string()));
1374         DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1375
1376         DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
1377                  (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
1378
1379         /* Output the build options to the debug log */ 
1380         build_options(False);
1381
1382         if (sizeof(uint16_t) < 2 || sizeof(uint32_t) < 4) {
1383                 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
1384                 exit(1);
1385         }
1386
1387         if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1388                 DEBUG(0, ("error opening config file '%s'\n", get_dyn_CONFIGFILE()));
1389                 exit(1);
1390         }
1391
1392         if (!cluster_probe_ok()) {
1393                 exit(1);
1394         }
1395
1396         /* Init the security context and global current_user */
1397         init_sec_ctx();
1398
1399         /*
1400          * Initialize the event context. The event context needs to be
1401          * initialized before the messaging context, cause the messaging
1402          * context holds an event context.
1403          * FIXME: This should be s3_tevent_context_init()
1404          */
1405         ev_ctx = server_event_context();
1406         if (ev_ctx == NULL) {
1407                 exit(1);
1408         }
1409
1410         /*
1411          * Init the messaging context
1412          * FIXME: This should only call messaging_init()
1413          */
1414         msg_ctx = server_messaging_context();
1415         if (msg_ctx == NULL) {
1416                 exit(1);
1417         }
1418
1419         /*
1420          * Reloading of the printers will not work here as we don't have a
1421          * server info and rpc services set up. It will be called later.
1422          */
1423         if (!reload_services(NULL, NULL, false)) {
1424                 exit(1);
1425         }
1426
1427         if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC
1428             && !lp_parm_bool(-1, "server role check", "inhibit", false)) {
1429                 DEBUG(0, ("server role = 'active directory domain controller' not compatible with running smbd standalone. \n"));
1430                 DEBUGADD(0, ("You should start 'samba' instead, and it will control starting smbd if required\n"));
1431                 exit(1);
1432         }
1433
1434         /* ...NOTE... Log files are working from this point! */
1435
1436         DEBUG(3,("loaded services\n"));
1437
1438         init_structs();
1439
1440         if (!profile_setup(msg_ctx, False)) {
1441                 DEBUG(0,("ERROR: failed to setup profiling\n"));
1442                 return -1;
1443         }
1444
1445         if (profile_level != NULL) {
1446                 profiling_level = atoi(profile_level);
1447         } else {
1448                 profiling_level = lp_smbd_profiling_level();
1449         }
1450         set_profile_level(profiling_level, messaging_server_id(msg_ctx));
1451
1452         if (!is_daemon && !is_a_socket(0)) {
1453                 if (!interactive) {
1454                         DEBUG(3, ("Standard input is not a socket, "
1455                                   "assuming -D option\n"));
1456                 }
1457
1458                 /*
1459                  * Setting is_daemon here prevents us from eventually calling
1460                  * the open_sockets_inetd()
1461                  */
1462
1463                 is_daemon = True;
1464         }
1465
1466         if (is_daemon && !interactive) {
1467                 DEBUG(3, ("Becoming a daemon.\n"));
1468                 become_daemon(Fork, no_process_group, log_stdout);
1469         }
1470
1471 #if HAVE_SETPGID
1472         /*
1473          * If we're interactive we want to set our own process group for
1474          * signal management.
1475          */
1476         if (interactive && !no_process_group)
1477                 setpgid( (pid_t)0, (pid_t)0);
1478 #endif
1479
1480         if (!directory_exist(lp_lock_directory()))
1481                 mkdir(lp_lock_directory(), 0755);
1482
1483         if (!directory_exist(lp_pid_directory()))
1484                 mkdir(lp_pid_directory(), 0755);
1485
1486         if (is_daemon)
1487                 pidfile_create(lp_pid_directory(), "smbd");
1488
1489         status = reinit_after_fork(msg_ctx, ev_ctx, false, NULL);
1490         if (!NT_STATUS_IS_OK(status)) {
1491                 exit_daemon("reinit_after_fork() failed", map_errno_from_nt_status(status));
1492         }
1493
1494         if (!interactive) {
1495                 /*
1496                  * Do not initialize the parent-child-pipe before becoming a
1497                  * daemon: this is used to detect a died parent in the child
1498                  * process.
1499                  */
1500                 status = init_before_fork();
1501                 if (!NT_STATUS_IS_OK(status)) {
1502                         exit_daemon(nt_errstr(status), map_errno_from_nt_status(status));
1503                 }
1504         }
1505
1506         parent = talloc_zero(ev_ctx, struct smbd_parent_context);
1507         if (!parent) {
1508                 exit_server("talloc(struct smbd_parent_context) failed");
1509         }
1510         parent->interactive = interactive;
1511         parent->ev_ctx = ev_ctx;
1512         parent->msg_ctx = msg_ctx;
1513         am_parent = parent;
1514
1515         se = tevent_add_signal(parent->ev_ctx,
1516                                parent,
1517                                SIGTERM, 0,
1518                                smbd_parent_sig_term_handler,
1519                                parent);
1520         if (!se) {
1521                 exit_server("failed to setup SIGTERM handler");
1522         }
1523         se = tevent_add_signal(parent->ev_ctx,
1524                                parent,
1525                                SIGHUP, 0,
1526                                smbd_parent_sig_hup_handler,
1527                                parent);
1528         if (!se) {
1529                 exit_server("failed to setup SIGHUP handler");
1530         }
1531
1532         /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
1533
1534         if (smbd_memcache() == NULL) {
1535                 exit_daemon("no memcache available", EACCES);
1536         }
1537
1538         memcache_set_global(smbd_memcache());
1539
1540         /* Initialise the password backed before the global_sam_sid
1541            to ensure that we fetch from ldap before we make a domain sid up */
1542
1543         if(!initialize_password_db(false, ev_ctx))
1544                 exit(1);
1545
1546         if (!secrets_init()) {
1547                 exit_daemon("smbd can not open secrets.tdb", EACCES);
1548         }
1549
1550         if (lp_server_role() == ROLE_DOMAIN_BDC || lp_server_role() == ROLE_DOMAIN_PDC) {
1551                 struct loadparm_context *lp_ctx = loadparm_init_s3(NULL, loadparm_s3_helpers());
1552                 if (!open_schannel_session_store(NULL, lp_ctx)) {
1553                         exit_daemon("ERROR: Samba cannot open schannel store for secured NETLOGON operations.", EACCES);
1554                 }
1555                 TALLOC_FREE(lp_ctx);
1556         }
1557
1558         if(!get_global_sam_sid()) {
1559                 exit_daemon("Samba cannot create a SAM SID", EACCES);
1560         }
1561
1562         server_id = messaging_server_id(msg_ctx);
1563         status = smbXsrv_version_global_init(&server_id);
1564         if (!NT_STATUS_IS_OK(status)) {
1565                 exit_daemon("Samba cannot init server context", EACCES);
1566         }
1567
1568         status = smbXsrv_session_global_init();
1569         if (!NT_STATUS_IS_OK(status)) {
1570                 exit_daemon("Samba cannot init session context", EACCES);
1571         }
1572
1573         status = smbXsrv_tcon_global_init();
1574         if (!NT_STATUS_IS_OK(status)) {
1575                 exit_daemon("Samba cannot init tcon context", EACCES);
1576         }
1577
1578         if (!locking_init())
1579                 exit_daemon("Samba cannot init locking", EACCES);
1580
1581         if (!leases_db_init(false)) {
1582                 exit_daemon("Samba cannot init leases", EACCES);
1583         }
1584
1585         if (!smbd_notifyd_init(msg_ctx, interactive)) {
1586                 exit_daemon("Samba cannot init notification", EACCES);
1587         }
1588
1589         if (!cleanupd_init(msg_ctx, interactive, &parent->cleanupd)) {
1590                 exit_daemon("Samba cannot init the cleanupd", EACCES);
1591         }
1592
1593         if (!messaging_parent_dgm_cleanup_init(msg_ctx)) {
1594                 exit(1);
1595         }
1596
1597         if (!smbd_scavenger_init(NULL, msg_ctx, ev_ctx)) {
1598                 exit_daemon("Samba cannot init scavenging", EACCES);
1599         }
1600
1601         if (!serverid_parent_init(ev_ctx)) {
1602                 exit_daemon("Samba cannot init server id", EACCES);
1603         }
1604
1605         if (!W_ERROR_IS_OK(registry_init_full()))
1606                 exit_daemon("Samba cannot init registry", EACCES);
1607
1608         /* Open the share_info.tdb here, so we don't have to open
1609            after the fork on every single connection.  This is a small
1610            performance improvment and reduces the total number of system
1611            fds used. */
1612         if (!share_info_db_init()) {
1613                 exit_daemon("ERROR: failed to load share info db.", EACCES);
1614         }
1615
1616         status = init_system_session_info();
1617         if (!NT_STATUS_IS_OK(status)) {
1618                 DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
1619                           nt_errstr(status)));
1620                 return -1;
1621         }
1622
1623         if (!init_guest_info()) {
1624                 DEBUG(0,("ERROR: failed to setup guest info.\n"));
1625                 return -1;
1626         }
1627
1628         if (!file_init_global()) {
1629                 DEBUG(0, ("ERROR: file_init_global() failed\n"));
1630                 return -1;
1631         }
1632         status = smbXsrv_open_global_init();
1633         if (!NT_STATUS_IS_OK(status)) {
1634                 exit_daemon("Samba cannot init global open", map_errno_from_nt_status(status));
1635         }
1636
1637         /* This MUST be done before start_epmd() because otherwise
1638          * start_epmd() forks and races against dcesrv_ep_setup() to
1639          * call directory_create_or_exist() */
1640         if (!directory_create_or_exist(lp_ncalrpc_dir(), 0755)) {
1641                 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
1642                           lp_ncalrpc_dir(), strerror(errno)));
1643                 return -1;
1644         }
1645
1646         np_dir = talloc_asprintf(talloc_tos(), "%s/np", lp_ncalrpc_dir());
1647         if (!np_dir) {
1648                 DEBUG(0, ("%s: Out of memory\n", __location__));
1649                 return -1;
1650         }
1651
1652         if (!directory_create_or_exist_strict(np_dir, geteuid(), 0700)) {
1653                 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
1654                           np_dir, strerror(errno)));
1655                 return -1;
1656         }
1657
1658         if (is_daemon && !interactive) {
1659                 if (rpc_epmapper_daemon() == RPC_DAEMON_FORK) {
1660                         start_epmd(ev_ctx, msg_ctx);
1661                 }
1662         }
1663
1664         if (!dcesrv_ep_setup(ev_ctx, msg_ctx)) {
1665                 exit_daemon("Samba cannot setup ep pipe", EACCES);
1666         }
1667
1668         if (is_daemon && !interactive) {
1669                 daemon_ready("smbd");
1670         }
1671
1672         /* only start other daemons if we are running as a daemon
1673          * -- bad things will happen if smbd is launched via inetd
1674          *  and we fork a copy of ourselves here */
1675         if (is_daemon && !interactive) {
1676
1677                 if (rpc_lsasd_daemon() == RPC_DAEMON_FORK) {
1678                         start_lsasd(ev_ctx, msg_ctx);
1679                 }
1680
1681                 if (rpc_fss_daemon() == RPC_DAEMON_FORK) {
1682                         start_fssd(ev_ctx, msg_ctx);
1683                 }
1684
1685                 if (!lp__disable_spoolss() &&
1686                     (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1687                         bool bgq = lp_parm_bool(-1, "smbd", "backgroundqueue", true);
1688
1689                         if (!printing_subsystem_init(ev_ctx, msg_ctx, true, bgq)) {
1690                                 exit_daemon("Samba failed to init printing subsystem", EACCES);
1691                         }
1692                 }
1693
1694 #ifdef WITH_SPOTLIGHT
1695                 if ((rpc_mdssvc_mode() == RPC_SERVICE_MODE_EXTERNAL) &&
1696                     (rpc_mdssd_daemon() == RPC_DAEMON_FORK)) {
1697                         start_mdssd(ev_ctx, msg_ctx);
1698                 }
1699 #endif
1700         } else if (!lp__disable_spoolss() &&
1701                    (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1702                 if (!printing_subsystem_init(ev_ctx, msg_ctx, false, false)) {
1703                         exit(1);
1704                 }
1705         }
1706
1707         if (!is_daemon) {
1708                 int sock;
1709
1710                 /* inetd mode */
1711                 TALLOC_FREE(frame);
1712
1713                 /* Started from inetd. fd 0 is the socket. */
1714                 /* We will abort gracefully when the client or remote system
1715                    goes away */
1716                 sock = dup(0);
1717
1718                 /* close stdin, stdout (if not logging to it), but not stderr */
1719                 close_low_fds(true, !debug_get_output_is_stdout(), false);
1720
1721 #ifdef HAVE_ATEXIT
1722                 atexit(killkids);
1723 #endif
1724
1725                 /* Stop zombies */
1726                 smbd_setup_sig_chld_handler(parent);
1727
1728                 smbd_process(ev_ctx, msg_ctx, sock, true);
1729
1730                 exit_server_cleanly(NULL);
1731                 return(0);
1732         }
1733
1734         if (!open_sockets_smbd(parent, ev_ctx, msg_ctx, ports))
1735                 exit_server("open_sockets_smbd() failed");
1736
1737         /* do a printer update now that all messaging has been set up,
1738          * before we allow clients to start connecting */
1739         if (!lp__disable_spoolss() &&
1740             (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1741                 printing_subsystem_update(ev_ctx, msg_ctx, false);
1742         }
1743
1744         TALLOC_FREE(frame);
1745         /* make sure we always have a valid stackframe */
1746         frame = talloc_stackframe();
1747
1748         if (!Fork) {
1749                 /* if we are running in the foreground then look for
1750                    EOF on stdin, and exit if it happens. This allows
1751                    us to die if the parent process dies
1752                    Only do this on a pipe or socket, no other device.
1753                 */
1754                 struct stat st;
1755                 if (fstat(0, &st) != 0) {
1756                         return false;
1757                 }
1758                 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode)) {
1759                         tevent_add_fd(ev_ctx,
1760                                         parent,
1761                                         0,
1762                                         TEVENT_FD_READ,
1763                                         smbd_stdin_handler,
1764                                         NULL);
1765                 }
1766         }
1767
1768         smbd_parent_loop(ev_ctx, parent);
1769
1770         exit_server_cleanly(NULL);
1771         TALLOC_FREE(frame);
1772         return(0);
1773 }