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