s3:smbd: split smb_conf_updated into parent and child versions
[samba.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 "memcache.h"
33 #include "ctdbd_conn.h"
34 #include "printing/queue_process.h"
35 #include "rpc_server/rpc_service_setup.h"
36 #include "rpc_server/rpc_config.h"
37 #include "serverid.h"
38 #include "passdb.h"
39 #include "auth.h"
40 #include "messages.h"
41 #include "smbprofile.h"
42 #include "lib/id_cache.h"
43 #include "lib/param/param.h"
44
45 struct smbd_open_socket;
46 struct smbd_child_pid;
47
48 struct smbd_parent_context {
49         bool interactive;
50
51         struct tevent_context *ev_ctx;
52         struct messaging_context *msg_ctx;
53
54         /* the list of listening sockets */
55         struct smbd_open_socket *sockets;
56
57         /* the list of current child processes */
58         struct smbd_child_pid *children;
59         size_t num_children;
60
61         struct timed_event *cleanup_te;
62 };
63
64 struct smbd_open_socket {
65         struct smbd_open_socket *prev, *next;
66         struct smbd_parent_context *parent;
67         int fd;
68         struct tevent_fd *fde;
69 };
70
71 struct smbd_child_pid {
72         struct smbd_child_pid *prev, *next;
73         pid_t pid;
74 };
75
76 extern void start_epmd(struct tevent_context *ev_ctx,
77                        struct messaging_context *msg_ctx);
78
79 extern void start_lsasd(struct event_context *ev_ctx,
80                         struct messaging_context *msg_ctx);
81
82 #ifdef WITH_DFS
83 extern int dcelogin_atmost_once;
84 #endif /* WITH_DFS */
85
86 /*******************************************************************
87  What to do when smb.conf is updated.
88  ********************************************************************/
89
90 static void smbd_parent_conf_updated(struct messaging_context *msg,
91                                      void *private_data,
92                                      uint32_t msg_type,
93                                      struct server_id server_id,
94                                      DATA_BLOB *data)
95 {
96         struct tevent_context *ev_ctx =
97                 talloc_get_type_abort(private_data, struct tevent_context);
98
99         DEBUG(10,("smbd_parent_conf_updated: Got message saying smb.conf was "
100                   "updated. Reloading.\n"));
101         change_to_root_user();
102         reload_services(msg, -1, false);
103         printing_subsystem_update(ev_ctx, msg, false);
104 }
105
106 /*******************************************************************
107  What to do when printcap is updated.
108  ********************************************************************/
109
110 static void smb_pcap_updated(struct messaging_context *msg,
111                              void *private_data,
112                              uint32_t msg_type,
113                              struct server_id server_id,
114                              DATA_BLOB *data)
115 {
116         struct tevent_context *ev_ctx =
117                 talloc_get_type_abort(private_data, struct tevent_context);
118
119         DEBUG(10,("Got message saying pcap was updated. Reloading.\n"));
120         change_to_root_user();
121         delete_and_reload_printers(ev_ctx, msg);
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
167         if (data->length != sizeof(sig)) {
168                 DEBUG(0, ("Process %s sent bogus signal injection request\n",
169                           procid_str_static(&src)));
170                 return;
171         }
172
173         sig = *(int *)data->data;
174         if (sig == -1) {
175                 exit_server("internal error injected");
176                 return;
177         }
178
179 #if HAVE_STRSIGNAL
180         DEBUG(0, ("Process %s requested injection of signal %d (%s)\n",
181                   procid_str_static(&src), sig, strsignal(sig)));
182 #else
183         DEBUG(0, ("Process %s requested injection of signal %d\n",
184                   procid_str_static(&src), sig));
185 #endif
186
187         kill(sys_getpid(), sig);
188 }
189 #endif /* DEVELOPER */
190
191 NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx,
192                                     uint32_t msg_type, DATA_BLOB* data)
193 {
194         NTSTATUS status;
195         struct smbd_parent_context *parent = am_parent;
196         struct smbd_child_pid *child;
197
198         if (parent == NULL) {
199                 return NT_STATUS_INTERNAL_ERROR;
200         }
201
202         for (child = parent->children; child != NULL; child = child->next) {
203                 status = messaging_send(parent->msg_ctx,
204                                         pid_to_procid(child->pid),
205                                         msg_type, data);
206                 if (!NT_STATUS_IS_OK(status)) {
207                         return status;
208                 }
209         }
210         return NT_STATUS_OK;
211 }
212
213 /*
214  * Parent smbd process sets its own debug level first and then
215  * sends a message to all the smbd children to adjust their debug
216  * level to that of the parent.
217  */
218
219 static void smbd_msg_debug(struct messaging_context *msg_ctx,
220                            void *private_data,
221                            uint32_t msg_type,
222                            struct server_id server_id,
223                            DATA_BLOB *data)
224 {
225         debug_message(msg_ctx, private_data, MSG_DEBUG, server_id, data);
226
227         messaging_send_to_children(msg_ctx, MSG_DEBUG, data);
228 }
229
230 static void smbd_parent_id_cache_kill(struct messaging_context *msg_ctx,
231                                       void *private_data,
232                                       uint32_t msg_type,
233                                       struct server_id server_id,
234                                       DATA_BLOB* data)
235 {
236         const char *msg = (data && data->data)
237                 ? (const char *)data->data : "<NULL>";
238         struct id_cache_ref id;
239
240         if (!id_cache_ref_parse(msg, &id)) {
241                 DEBUG(0, ("Invalid ?ID: %s\n", msg));
242                 return;
243         }
244
245         id_cache_delete_from_cache(&id);
246
247         messaging_send_to_children(msg_ctx, msg_type, data);
248 }
249
250 static void smbd_parent_id_cache_flush(struct messaging_context *ctx,
251                                        void* data,
252                                        uint32_t msg_type,
253                                        struct server_id srv_id,
254                                        DATA_BLOB* msg_data)
255 {
256         id_cache_flush_message(ctx, data, msg_type, srv_id, msg_data);
257
258         messaging_send_to_children(ctx, msg_type, msg_data);
259 }
260
261 static void smbd_parent_id_cache_delete(struct messaging_context *ctx,
262                                         void* data,
263                                         uint32_t msg_type,
264                                         struct server_id srv_id,
265                                         DATA_BLOB* msg_data)
266 {
267         id_cache_delete_message(ctx, data, msg_type, srv_id, msg_data);
268
269         messaging_send_to_children(ctx, msg_type, msg_data);
270 }
271
272 static void add_child_pid(struct smbd_parent_context *parent,
273                           pid_t pid)
274 {
275         struct smbd_child_pid *child;
276
277         child = talloc_zero(parent, struct smbd_child_pid);
278         if (child == NULL) {
279                 DEBUG(0, ("Could not add child struct -- malloc failed\n"));
280                 return;
281         }
282         child->pid = pid;
283         DLIST_ADD(parent->children, child);
284         parent->num_children += 1;
285 }
286
287 /*
288   at most every smbd:cleanuptime seconds (default 20), we scan the BRL
289   and locking database for entries to cleanup. As a side effect this
290   also cleans up dead entries in the connections database (due to the
291   traversal in message_send_all()
292
293   Using a timer for this prevents a flood of traversals when a large
294   number of clients disconnect at the same time (perhaps due to a
295   network outage).  
296 */
297
298 static void cleanup_timeout_fn(struct event_context *event_ctx,
299                                 struct timed_event *te,
300                                 struct timeval now,
301                                 void *private_data)
302 {
303         struct smbd_parent_context *parent =
304                 talloc_get_type_abort(private_data,
305                 struct smbd_parent_context);
306
307         parent->cleanup_te = NULL;
308
309         DEBUG(1,("Cleaning up brl and lock database after unclean shutdown\n"));
310         message_send_all(parent->msg_ctx, MSG_SMB_UNLOCK, NULL, 0, NULL);
311         messaging_send_buf(parent->msg_ctx,
312                            messaging_server_id(parent->msg_ctx),
313                            MSG_SMB_BRL_VALIDATE, NULL, 0);
314 }
315
316 static void remove_child_pid(struct smbd_parent_context *parent,
317                              pid_t pid,
318                              bool unclean_shutdown)
319 {
320         struct smbd_child_pid *child;
321         struct server_id child_id;
322
323         if (unclean_shutdown) {
324                 /* a child terminated uncleanly so tickle all
325                    processes to see if they can grab any of the
326                    pending locks
327                 */
328                 DEBUG(3,(__location__ " Unclean shutdown of pid %u\n",
329                         (unsigned int)pid));
330                 if (parent->cleanup_te == NULL) {
331                         /* call the cleanup timer, but not too often */
332                         int cleanup_time = lp_parm_int(-1, "smbd", "cleanuptime", 20);
333                         parent->cleanup_te = tevent_add_timer(parent->ev_ctx,
334                                                 parent,
335                                                 timeval_current_ofs(cleanup_time, 0),
336                                                 cleanup_timeout_fn,
337                                                 parent);
338                         DEBUG(1,("Scheduled cleanup of brl and lock database after unclean shutdown\n"));
339                 }
340         }
341
342         child_id = pid_to_procid(pid);
343
344         if (!serverid_deregister(child_id)) {
345                 DEBUG(1, ("Could not remove pid %d from serverid.tdb\n",
346                           (int)pid));
347         }
348
349         for (child = parent->children; child != NULL; child = child->next) {
350                 if (child->pid == pid) {
351                         struct smbd_child_pid *tmp = child;
352                         DLIST_REMOVE(parent->children, child);
353                         TALLOC_FREE(tmp);
354                         parent->num_children -= 1;
355                         return;
356                 }
357         }
358
359         /* not all forked child processes are added to the children list */
360         DEBUG(1, ("Could not find child %d -- ignoring\n", (int)pid));
361 }
362
363 /****************************************************************************
364  Have we reached the process limit ?
365 ****************************************************************************/
366
367 static bool allowable_number_of_smbd_processes(struct smbd_parent_context *parent)
368 {
369         int max_processes = lp_max_smbd_processes();
370
371         if (!max_processes)
372                 return True;
373
374         return parent->num_children < max_processes;
375 }
376
377 static void smbd_sig_chld_handler(struct tevent_context *ev,
378                                   struct tevent_signal *se,
379                                   int signum,
380                                   int count,
381                                   void *siginfo,
382                                   void *private_data)
383 {
384         pid_t pid;
385         int status;
386         struct smbd_parent_context *parent =
387                 talloc_get_type_abort(private_data,
388                 struct smbd_parent_context);
389
390         while ((pid = sys_waitpid(-1, &status, WNOHANG)) > 0) {
391                 bool unclean_shutdown = False;
392
393                 /* If the child terminated normally, assume
394                    it was an unclean shutdown unless the
395                    status is 0
396                 */
397                 if (WIFEXITED(status)) {
398                         unclean_shutdown = WEXITSTATUS(status);
399                 }
400                 /* If the child terminated due to a signal
401                    we always assume it was unclean.
402                 */
403                 if (WIFSIGNALED(status)) {
404                         unclean_shutdown = True;
405                 }
406                 remove_child_pid(parent, pid, unclean_shutdown);
407         }
408 }
409
410 static void smbd_setup_sig_chld_handler(struct smbd_parent_context *parent)
411 {
412         struct tevent_signal *se;
413
414         se = tevent_add_signal(parent->ev_ctx,
415                                parent, /* mem_ctx */
416                                SIGCHLD, 0,
417                                smbd_sig_chld_handler,
418                                parent);
419         if (!se) {
420                 exit_server("failed to setup SIGCHLD handler");
421         }
422 }
423
424 static void smbd_open_socket_close_fn(struct tevent_context *ev,
425                                       struct tevent_fd *fde,
426                                       int fd,
427                                       void *private_data)
428 {
429         /* this might be the socket_wrapper swrap_close() */
430         close(fd);
431 }
432
433 static void smbd_accept_connection(struct tevent_context *ev,
434                                    struct tevent_fd *fde,
435                                    uint16_t flags,
436                                    void *private_data)
437 {
438         struct smbd_open_socket *s = talloc_get_type_abort(private_data,
439                                      struct smbd_open_socket);
440         struct messaging_context *msg_ctx = s->parent->msg_ctx;
441         struct smbd_server_connection *sconn = smbd_server_conn;
442         struct sockaddr_storage addr;
443         socklen_t in_addrlen = sizeof(addr);
444         int fd;
445         pid_t pid = 0;
446         uint64_t unique_id;
447
448         fd = accept(s->fd, (struct sockaddr *)(void *)&addr,&in_addrlen);
449         sconn->sock = fd;
450         if (fd == -1 && errno == EINTR)
451                 return;
452
453         if (fd == -1) {
454                 DEBUG(0,("open_sockets_smbd: accept: %s\n",
455                          strerror(errno)));
456                 return;
457         }
458
459         if (s->parent->interactive) {
460                 smbd_process(ev, sconn);
461                 exit_server_cleanly("end of interactive mode");
462                 return;
463         }
464
465         if (!allowable_number_of_smbd_processes(s->parent)) {
466                 close(fd);
467                 sconn->sock = -1;
468                 return;
469         }
470
471         /*
472          * Generate a unique id in the parent process so that we use
473          * the global random state in the parent.
474          */
475         generate_random_buffer((uint8_t *)&unique_id, sizeof(unique_id));
476
477         pid = sys_fork();
478         if (pid == 0) {
479                 NTSTATUS status = NT_STATUS_OK;
480
481                 /* Child code ... */
482                 am_parent = NULL;
483
484                 /*
485                  * Can't use TALLOC_FREE here. Nulling out the argument to it
486                  * would overwrite memory we've just freed.
487                  */
488                 talloc_free(s->parent);
489                 s = NULL;
490
491                 set_my_unique_id(unique_id);
492
493                 /* Stop zombies, the parent explicitly handles
494                  * them, counting worker smbds. */
495                 CatchChild();
496
497                 /* close our standard file
498                    descriptors */
499                 if (!debug_get_output_is_stdout()) {
500                         close_low_fds(False); /* Don't close stderr */
501                 }
502
503                 status = reinit_after_fork(msg_ctx,
504                                            ev,
505                                            true);
506                 if (!NT_STATUS_IS_OK(status)) {
507                         if (NT_STATUS_EQUAL(status,
508                                             NT_STATUS_TOO_MANY_OPENED_FILES)) {
509                                 DEBUG(0,("child process cannot initialize "
510                                          "because too many files are open\n"));
511                                 goto exit;
512                         }
513                         if (lp_clustering() &&
514                             NT_STATUS_EQUAL(status,
515                             NT_STATUS_INTERNAL_DB_ERROR)) {
516                                 DEBUG(1,("child process cannot initialize "
517                                          "because connection to CTDB "
518                                          "has failed\n"));
519                                 goto exit;
520                         }
521
522                         DEBUG(0,("reinit_after_fork() failed\n"));
523                         smb_panic("reinit_after_fork() failed");
524                 }
525
526                 smbd_setup_sig_term_handler(sconn);
527                 smbd_setup_sig_hup_handler(sconn);
528
529                 if (!serverid_register(messaging_server_id(msg_ctx),
530                                        FLAG_MSG_GENERAL|FLAG_MSG_SMBD
531                                        |FLAG_MSG_DBWRAP
532                                        |FLAG_MSG_PRINT_GENERAL)) {
533                         exit_server_cleanly("Could not register myself in "
534                                             "serverid.tdb");
535                 }
536
537                 smbd_process(ev, sconn);
538          exit:
539                 exit_server_cleanly("end of child");
540                 return;
541         }
542
543         if (pid < 0) {
544                 DEBUG(0,("smbd_accept_connection: sys_fork() failed: %s\n",
545                          strerror(errno)));
546         }
547
548         /* The parent doesn't need this socket */
549         close(fd);
550
551         /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
552                 Clear the closed fd info out of server_fd --
553                 and more importantly, out of client_fd in
554                 util_sock.c, to avoid a possible
555                 getpeername failure if we reopen the logs
556                 and use %I in the filename.
557         */
558         sconn->sock = -1;
559
560         if (pid != 0) {
561                 add_child_pid(s->parent, pid);
562         }
563
564         /* Force parent to check log size after
565          * spawning child.  Fix from
566          * klausr@ITAP.Physik.Uni-Stuttgart.De.  The
567          * parent smbd will log to logserver.smb.  It
568          * writes only two messages for each child
569          * started/finished. But each child writes,
570          * say, 50 messages also in logserver.smb,
571          * begining with the debug_count of the
572          * parent, before the child opens its own log
573          * file logserver.client. In a worst case
574          * scenario the size of logserver.smb would be
575          * checked after about 50*50=2500 messages
576          * (ca. 100kb).
577          * */
578         force_check_log_size();
579 }
580
581 static bool smbd_open_one_socket(struct smbd_parent_context *parent,
582                                  struct tevent_context *ev_ctx,
583                                  struct messaging_context *msg_ctx,
584                                  const struct sockaddr_storage *ifss,
585                                  uint16_t port)
586 {
587         struct smbd_open_socket *s;
588
589         s = talloc(parent, struct smbd_open_socket);
590         if (!s) {
591                 return false;
592         }
593
594         s->parent = parent;
595         s->fd = open_socket_in(SOCK_STREAM,
596                                port,
597                                parent->sockets == NULL ? 0 : 2,
598                                ifss,
599                                true);
600         if (s->fd == -1) {
601                 DEBUG(0,("smbd_open_once_socket: open_socket_in: "
602                         "%s\n", strerror(errno)));
603                 TALLOC_FREE(s);
604                 /*
605                  * We ignore an error here, as we've done before
606                  */
607                 return true;
608         }
609
610         /* ready to listen */
611         set_socket_options(s->fd, "SO_KEEPALIVE");
612         set_socket_options(s->fd, lp_socket_options());
613
614         /* Set server socket to
615          * non-blocking for the accept. */
616         set_blocking(s->fd, False);
617
618         if (listen(s->fd, SMBD_LISTEN_BACKLOG) == -1) {
619                 DEBUG(0,("open_sockets_smbd: listen: "
620                         "%s\n", strerror(errno)));
621                         close(s->fd);
622                 TALLOC_FREE(s);
623                 return false;
624         }
625
626         s->fde = tevent_add_fd(ev_ctx,
627                                s,
628                                s->fd, TEVENT_FD_READ,
629                                smbd_accept_connection,
630                                s);
631         if (!s->fde) {
632                 DEBUG(0,("open_sockets_smbd: "
633                          "tevent_add_fd: %s\n",
634                          strerror(errno)));
635                 close(s->fd);
636                 TALLOC_FREE(s);
637                 return false;
638         }
639         tevent_fd_set_close_fn(s->fde, smbd_open_socket_close_fn);
640
641         DLIST_ADD_END(parent->sockets, s, struct smbd_open_socket *);
642
643         return true;
644 }
645
646 /****************************************************************************
647  Open the socket communication.
648 ****************************************************************************/
649
650 static bool open_sockets_smbd(struct smbd_parent_context *parent,
651                               struct tevent_context *ev_ctx,
652                               struct messaging_context *msg_ctx,
653                               const char *smb_ports)
654 {
655         int num_interfaces = iface_count();
656         int i;
657         const char *ports;
658         unsigned dns_port = 0;
659
660 #ifdef HAVE_ATEXIT
661         atexit(killkids);
662 #endif
663
664         /* Stop zombies */
665         smbd_setup_sig_chld_handler(parent);
666
667         /* use a reasonable default set of ports - listing on 445 and 139 */
668         if (!smb_ports) {
669                 ports = lp_smb_ports();
670                 if (!ports || !*ports) {
671                         ports = talloc_strdup(talloc_tos(), SMB_PORTS);
672                 } else {
673                         ports = talloc_strdup(talloc_tos(), ports);
674                 }
675         } else {
676                 ports = talloc_strdup(talloc_tos(), smb_ports);
677         }
678
679         if (lp_interfaces() && lp_bind_interfaces_only()) {
680                 /* We have been given an interfaces line, and been
681                    told to only bind to those interfaces. Create a
682                    socket per interface and bind to only these.
683                 */
684
685                 /* Now open a listen socket for each of the
686                    interfaces. */
687                 for(i = 0; i < num_interfaces; i++) {
688                         const struct sockaddr_storage *ifss =
689                                         iface_n_sockaddr_storage(i);
690                         char *tok;
691                         const char *ptr;
692
693                         if (ifss == NULL) {
694                                 DEBUG(0,("open_sockets_smbd: "
695                                         "interface %d has NULL IP address !\n",
696                                         i));
697                                 continue;
698                         }
699
700                         for (ptr=ports;
701                              next_token_talloc(talloc_tos(),&ptr, &tok, " \t,");) {
702                                 unsigned port = atoi(tok);
703                                 if (port == 0 || port > 0xffff) {
704                                         continue;
705                                 }
706
707                                 /* Keep the first port for mDNS service
708                                  * registration.
709                                  */
710                                 if (dns_port == 0) {
711                                         dns_port = port;
712                                 }
713
714                                 if (!smbd_open_one_socket(parent,
715                                                           ev_ctx,
716                                                           msg_ctx,
717                                                           ifss,
718                                                           port)) {
719                                         return false;
720                                 }
721                         }
722                 }
723         } else {
724                 /* Just bind to 0.0.0.0 - accept connections
725                    from anywhere. */
726
727                 char *tok;
728                 const char *ptr;
729                 const char *sock_addr = lp_socket_address();
730                 char *sock_tok;
731                 const char *sock_ptr;
732
733                 if (strequal(sock_addr, "0.0.0.0") ||
734                     strequal(sock_addr, "::")) {
735 #if HAVE_IPV6
736                         sock_addr = "::,0.0.0.0";
737 #else
738                         sock_addr = "0.0.0.0";
739 #endif
740                 }
741
742                 for (sock_ptr=sock_addr;
743                      next_token_talloc(talloc_tos(), &sock_ptr, &sock_tok, " \t,"); ) {
744                         for (ptr=ports; next_token_talloc(talloc_tos(), &ptr, &tok, " \t,"); ) {
745                                 struct sockaddr_storage ss;
746
747                                 unsigned port = atoi(tok);
748                                 if (port == 0 || port > 0xffff) {
749                                         continue;
750                                 }
751
752                                 /* Keep the first port for mDNS service
753                                  * registration.
754                                  */
755                                 if (dns_port == 0) {
756                                         dns_port = port;
757                                 }
758
759                                 /* open an incoming socket */
760                                 if (!interpret_string_addr(&ss, sock_tok,
761                                                 AI_NUMERICHOST|AI_PASSIVE)) {
762                                         continue;
763                                 }
764
765                                 if (!smbd_open_one_socket(parent,
766                                                           ev_ctx,
767                                                           msg_ctx,
768                                                           &ss,
769                                                           port)) {
770                                         return false;
771                                 }
772                         }
773                 }
774         }
775
776         if (parent->sockets == NULL) {
777                 DEBUG(0,("open_sockets_smbd: No "
778                         "sockets available to bind to.\n"));
779                 return false;
780         }
781
782         /* Setup the main smbd so that we can get messages. Note that
783            do this after starting listening. This is needed as when in
784            clustered mode, ctdb won't allow us to start doing database
785            operations until it has gone thru a full startup, which
786            includes checking to see that smbd is listening. */
787
788         if (!serverid_register(messaging_server_id(msg_ctx),
789                                FLAG_MSG_GENERAL|FLAG_MSG_SMBD
790                                |FLAG_MSG_PRINT_GENERAL
791                                |FLAG_MSG_DBWRAP)) {
792                 DEBUG(0, ("open_sockets_smbd: Failed to register "
793                           "myself in serverid.tdb\n"));
794                 return false;
795         }
796
797         /* Listen to messages */
798
799         messaging_register(msg_ctx, NULL, MSG_SHUTDOWN, msg_exit_server);
800         messaging_register(msg_ctx, ev_ctx, MSG_SMB_CONF_UPDATED,
801                            smbd_parent_conf_updated);
802         messaging_register(msg_ctx, NULL, MSG_SMB_STAT_CACHE_DELETE,
803                            smb_stat_cache_delete);
804         messaging_register(msg_ctx, NULL, MSG_DEBUG, smbd_msg_debug);
805         messaging_register(msg_ctx, ev_ctx, MSG_PRINTER_PCAP,
806                            smb_pcap_updated);
807         messaging_register(msg_ctx, NULL, MSG_SMB_BRL_VALIDATE,
808                            brl_revalidate);
809
810         messaging_register(msg_ctx, NULL,
811                            ID_CACHE_FLUSH, smbd_parent_id_cache_flush);
812         messaging_register(msg_ctx, NULL,
813                            ID_CACHE_DELETE, smbd_parent_id_cache_delete);
814         messaging_register(msg_ctx, NULL,
815                            ID_CACHE_KILL, smbd_parent_id_cache_kill);
816
817 #ifdef CLUSTER_SUPPORT
818         if (lp_clustering()) {
819                 ctdbd_register_reconfigure(messaging_ctdbd_connection());
820         }
821 #endif
822
823 #ifdef DEVELOPER
824         messaging_register(msg_ctx, NULL, MSG_SMB_INJECT_FAULT,
825                            msg_inject_fault);
826 #endif
827
828         if (lp_multicast_dns_register() && (dns_port != 0)) {
829 #ifdef WITH_DNSSD_SUPPORT
830                 smbd_setup_mdns_registration(ev_ctx,
831                                              parent, dns_port);
832 #endif
833 #ifdef WITH_AVAHI_SUPPORT
834                 void *avahi_conn;
835
836                 avahi_conn = avahi_start_register(ev_ctx,
837                                                   ev_ctx,
838                                                   dns_port);
839                 if (avahi_conn == NULL) {
840                         DEBUG(10, ("avahi_start_register failed\n"));
841                 }
842 #endif
843         }
844
845         return true;
846 }
847
848 static void smbd_parent_loop(struct tevent_context *ev_ctx,
849                              struct smbd_parent_context *parent)
850 {
851         /* now accept incoming connections - forking a new process
852            for each incoming connection */
853         DEBUG(2,("waiting for connections\n"));
854         while (1) {
855                 int ret;
856                 TALLOC_CTX *frame = talloc_stackframe();
857
858                 ret = tevent_loop_once(ev_ctx);
859                 if (ret != 0) {
860                         exit_server_cleanly("tevent_loop_once() error");
861                 }
862
863                 TALLOC_FREE(frame);
864         } /* end while 1 */
865
866 /* NOTREACHED   return True; */
867 }
868
869
870 /****************************************************************************
871  Initialise connect, service and file structs.
872 ****************************************************************************/
873
874 static bool init_structs(void )
875 {
876         /*
877          * Set the machine NETBIOS name if not already
878          * set from the config file.
879          */
880
881         if (!init_names())
882                 return False;
883
884         if (!secrets_init())
885                 return False;
886
887         return True;
888 }
889
890 static void smbd_parent_sig_term_handler(struct tevent_context *ev,
891                                          struct tevent_signal *se,
892                                          int signum,
893                                          int count,
894                                          void *siginfo,
895                                          void *private_data)
896 {
897         exit_server_cleanly("termination signal");
898 }
899
900 static void smbd_parent_sig_hup_handler(struct tevent_context *ev,
901                                         struct tevent_signal *se,
902                                         int signum,
903                                         int count,
904                                         void *siginfo,
905                                         void *private_data)
906 {
907         struct smbd_parent_context *parent =
908                 talloc_get_type_abort(private_data,
909                 struct smbd_parent_context);
910
911         change_to_root_user();
912         DEBUG(1,("parent: Reloading services after SIGHUP\n"));
913         reload_services(parent->msg_ctx, -1, false);
914
915         printing_subsystem_update(parent->ev_ctx, parent->msg_ctx, true);
916 }
917
918 /****************************************************************************
919  main program.
920 ****************************************************************************/
921
922 /* Declare prototype for build_options() to avoid having to run it through
923    mkproto.h.  Mixing $(builddir) and $(srcdir) source files in the current
924    prototype generation system is too complicated. */
925
926 extern void build_options(bool screen);
927
928  int main(int argc,const char *argv[])
929 {
930         /* shall I run as a daemon */
931         bool is_daemon = false;
932         bool interactive = false;
933         bool Fork = true;
934         bool no_process_group = false;
935         bool log_stdout = false;
936         char *ports = NULL;
937         char *profile_level = NULL;
938         int opt;
939         poptContext pc;
940         bool print_build_options = False;
941         enum {
942                 OPT_DAEMON = 1000,
943                 OPT_INTERACTIVE,
944                 OPT_FORK,
945                 OPT_NO_PROCESS_GROUP,
946                 OPT_LOG_STDOUT
947         };
948         struct poptOption long_options[] = {
949         POPT_AUTOHELP
950         {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
951         {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)"},
952         {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools, etc.)" },
953         {"no-process-group", '\0', POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
954         {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
955         {"build-options", 'b', POPT_ARG_NONE, NULL, 'b', "Print build options" },
956         {"port", 'p', POPT_ARG_STRING, &ports, 0, "Listen on the specified ports"},
957         {"profiling-level", 'P', POPT_ARG_STRING, &profile_level, 0, "Set profiling level","PROFILE_LEVEL"},
958         POPT_COMMON_SAMBA
959         POPT_COMMON_DYNCONFIG
960         POPT_TABLEEND
961         };
962         struct smbd_parent_context *parent = NULL;
963         TALLOC_CTX *frame;
964         NTSTATUS status;
965         uint64_t unique_id;
966         struct tevent_context *ev_ctx;
967         struct messaging_context *msg_ctx;
968         struct tevent_signal *se;
969
970         /*
971          * Do this before any other talloc operation
972          */
973         talloc_enable_null_tracking();
974         frame = talloc_stackframe();
975
976         setup_logging(argv[0], DEBUG_DEFAULT_STDOUT);
977
978         load_case_tables();
979
980         smbd_init_globals();
981
982         TimeInit();
983
984 #ifdef HAVE_SET_AUTH_PARAMETERS
985         set_auth_parameters(argc,argv);
986 #endif
987
988         pc = poptGetContext("smbd", argc, argv, long_options, 0);
989         while((opt = poptGetNextOpt(pc)) != -1) {
990                 switch (opt)  {
991                 case OPT_DAEMON:
992                         is_daemon = true;
993                         break;
994                 case OPT_INTERACTIVE:
995                         interactive = true;
996                         break;
997                 case OPT_FORK:
998                         Fork = false;
999                         break;
1000                 case OPT_NO_PROCESS_GROUP:
1001                         no_process_group = true;
1002                         break;
1003                 case OPT_LOG_STDOUT:
1004                         log_stdout = true;
1005                         break;
1006                 case 'b':
1007                         print_build_options = True;
1008                         break;
1009                 default:
1010                         d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1011                                   poptBadOption(pc, 0), poptStrerror(opt));
1012                         poptPrintUsage(pc, stderr, 0);
1013                         exit(1);
1014                 }
1015         }
1016         poptFreeContext(pc);
1017
1018         if (interactive) {
1019                 Fork = False;
1020                 log_stdout = True;
1021         }
1022
1023         if (log_stdout) {
1024                 setup_logging(argv[0], DEBUG_STDOUT);
1025         } else {
1026                 setup_logging(argv[0], DEBUG_FILE);
1027         }
1028
1029         if (print_build_options) {
1030                 build_options(True); /* Display output to screen as well as debug */
1031                 exit(0);
1032         }
1033
1034 #ifdef HAVE_SETLUID
1035         /* needed for SecureWare on SCO */
1036         setluid(0);
1037 #endif
1038
1039         set_remote_machine_name("smbd", False);
1040
1041         if (interactive && (DEBUGLEVEL >= 9)) {
1042                 talloc_enable_leak_report();
1043         }
1044
1045         if (log_stdout && Fork) {
1046                 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
1047                 exit(1);
1048         }
1049
1050         /* we want to re-seed early to prevent time delays causing
1051            client problems at a later date. (tridge) */
1052         generate_random_buffer(NULL, 0);
1053
1054         /* get initial effective uid and gid */
1055         sec_init();
1056
1057         /* make absolutely sure we run as root - to handle cases where people
1058            are crazy enough to have it setuid */
1059         gain_root_privilege();
1060         gain_root_group_privilege();
1061
1062         fault_setup();
1063         dump_core_setup("smbd", lp_logfile());
1064
1065         /* we are never interested in SIGPIPE */
1066         BlockSignals(True,SIGPIPE);
1067
1068 #if defined(SIGFPE)
1069         /* we are never interested in SIGFPE */
1070         BlockSignals(True,SIGFPE);
1071 #endif
1072
1073 #if defined(SIGUSR2)
1074         /* We are no longer interested in USR2 */
1075         BlockSignals(True,SIGUSR2);
1076 #endif
1077
1078         /* POSIX demands that signals are inherited. If the invoking process has
1079          * these signals masked, we will have problems, as we won't recieve them. */
1080         BlockSignals(False, SIGHUP);
1081         BlockSignals(False, SIGUSR1);
1082         BlockSignals(False, SIGTERM);
1083
1084         /* Ensure we leave no zombies until we
1085          * correctly set up child handling below. */
1086
1087         CatchChild();
1088
1089         /* we want total control over the permissions on created files,
1090            so set our umask to 0 */
1091         umask(0);
1092
1093         reopen_logs();
1094
1095         DEBUG(0,("smbd version %s started.\n", samba_version_string()));
1096         DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1097
1098         DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
1099                  (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
1100
1101         /* Output the build options to the debug log */ 
1102         build_options(False);
1103
1104         if (sizeof(uint16) < 2 || sizeof(uint32) < 4) {
1105                 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
1106                 exit(1);
1107         }
1108
1109         if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1110                 DEBUG(0, ("error opening config file '%s'\n", get_dyn_CONFIGFILE()));
1111                 exit(1);
1112         }
1113
1114         /* Init the security context and global current_user */
1115         init_sec_ctx();
1116
1117         /*
1118          * Initialize the event context. The event context needs to be
1119          * initialized before the messaging context, cause the messaging
1120          * context holds an event context.
1121          * FIXME: This should be s3_tevent_context_init()
1122          */
1123         ev_ctx = server_event_context();
1124         if (ev_ctx == NULL) {
1125                 exit(1);
1126         }
1127
1128         /*
1129          * Init the messaging context
1130          * FIXME: This should only call messaging_init()
1131          */
1132         msg_ctx = server_messaging_context();
1133         if (msg_ctx == NULL) {
1134                 exit(1);
1135         }
1136
1137         /*
1138          * Reloading of the printers will not work here as we don't have a
1139          * server info and rpc services set up. It will be called later.
1140          */
1141         if (!reload_services(NULL, -1, False)) {
1142                 exit(1);
1143         }
1144
1145         /* ...NOTE... Log files are working from this point! */
1146
1147         DEBUG(3,("loaded services\n"));
1148
1149         init_structs();
1150
1151 #ifdef WITH_PROFILE
1152         if (!profile_setup(msg_ctx, False)) {
1153                 DEBUG(0,("ERROR: failed to setup profiling\n"));
1154                 return -1;
1155         }
1156         if (profile_level != NULL) {
1157                 int pl = atoi(profile_level);
1158                 struct server_id src;
1159
1160                 DEBUG(1, ("setting profiling level: %s\n",profile_level));
1161                 src.pid = getpid();
1162                 set_profile_level(pl, src);
1163         }
1164 #endif
1165
1166         if (!is_daemon && !is_a_socket(0)) {
1167                 if (!interactive)
1168                         DEBUG(0,("standard input is not a socket, assuming -D option\n"));
1169
1170                 /*
1171                  * Setting is_daemon here prevents us from eventually calling
1172                  * the open_sockets_inetd()
1173                  */
1174
1175                 is_daemon = True;
1176         }
1177
1178         if (is_daemon && !interactive) {
1179                 DEBUG( 3, ( "Becoming a daemon.\n" ) );
1180                 become_daemon(Fork, no_process_group, log_stdout);
1181         }
1182
1183         generate_random_buffer((uint8_t *)&unique_id, sizeof(unique_id));
1184         set_my_unique_id(unique_id);
1185
1186 #if HAVE_SETPGID
1187         /*
1188          * If we're interactive we want to set our own process group for
1189          * signal management.
1190          */
1191         if (interactive && !no_process_group)
1192                 setpgid( (pid_t)0, (pid_t)0);
1193 #endif
1194
1195         if (!directory_exist(lp_lockdir()))
1196                 mkdir(lp_lockdir(), 0755);
1197
1198         if (is_daemon)
1199                 pidfile_create("smbd");
1200
1201         status = reinit_after_fork(msg_ctx,
1202                                    ev_ctx,
1203                                    false);
1204         if (!NT_STATUS_IS_OK(status)) {
1205                 DEBUG(0,("reinit_after_fork() failed\n"));
1206                 exit(1);
1207         }
1208
1209         smbd_server_conn->msg_ctx = msg_ctx;
1210
1211         parent = talloc_zero(ev_ctx, struct smbd_parent_context);
1212         if (!parent) {
1213                 exit_server("talloc(struct smbd_parent_context) failed");
1214         }
1215         parent->interactive = interactive;
1216         parent->ev_ctx = ev_ctx;
1217         parent->msg_ctx = msg_ctx;
1218         am_parent = parent;
1219
1220         se = tevent_add_signal(parent->ev_ctx,
1221                                parent,
1222                                SIGTERM, 0,
1223                                smbd_parent_sig_term_handler,
1224                                parent);
1225         if (!se) {
1226                 exit_server("failed to setup SIGTERM handler");
1227         }
1228         se = tevent_add_signal(parent->ev_ctx,
1229                                parent,
1230                                SIGHUP, 0,
1231                                smbd_parent_sig_hup_handler,
1232                                parent);
1233         if (!se) {
1234                 exit_server("failed to setup SIGHUP handler");
1235         }
1236
1237         /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
1238
1239         if (smbd_memcache() == NULL) {
1240                 exit(1);
1241         }
1242
1243         memcache_set_global(smbd_memcache());
1244
1245         /* Initialise the password backed before the global_sam_sid
1246            to ensure that we fetch from ldap before we make a domain sid up */
1247
1248         if(!initialize_password_db(false, ev_ctx))
1249                 exit(1);
1250
1251         if (!secrets_init()) {
1252                 DEBUG(0, ("ERROR: smbd can not open secrets.tdb\n"));
1253                 exit(1);
1254         }
1255
1256         if (lp_server_role() == ROLE_DOMAIN_BDC || lp_server_role() == ROLE_DOMAIN_PDC) {
1257                 struct loadparm_context *lp_ctx = loadparm_init_s3(NULL, loadparm_s3_context());
1258                 if (!open_schannel_session_store(NULL, lp_ctx)) {
1259                         DEBUG(0,("ERROR: Samba cannot open schannel store for secured NETLOGON operations.\n"));
1260                         exit(1);
1261                 }
1262                 TALLOC_FREE(lp_ctx);
1263         }
1264
1265         if(!get_global_sam_sid()) {
1266                 DEBUG(0,("ERROR: Samba cannot create a SAM SID.\n"));
1267                 exit(1);
1268         }
1269
1270         if (!sessionid_init()) {
1271                 exit(1);
1272         }
1273
1274         if (!connections_init(True))
1275                 exit(1);
1276
1277         if (!locking_init())
1278                 exit(1);
1279
1280         if (!messaging_tdb_parent_init(ev_ctx)) {
1281                 exit(1);
1282         }
1283
1284         if (!notify_internal_parent_init(ev_ctx)) {
1285                 exit(1);
1286         }
1287
1288         if (!serverid_parent_init(ev_ctx)) {
1289                 exit(1);
1290         }
1291
1292         if (!W_ERROR_IS_OK(registry_init_full()))
1293                 exit(1);
1294
1295         /* Open the share_info.tdb here, so we don't have to open
1296            after the fork on every single connection.  This is a small
1297            performance improvment and reduces the total number of system
1298            fds used. */
1299         if (!share_info_db_init()) {
1300                 DEBUG(0,("ERROR: failed to load share info db.\n"));
1301                 exit(1);
1302         }
1303
1304         status = init_system_info();
1305         if (!NT_STATUS_IS_OK(status)) {
1306                 DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
1307                           nt_errstr(status)));
1308                 return -1;
1309         }
1310
1311         if (!init_guest_info()) {
1312                 DEBUG(0,("ERROR: failed to setup guest info.\n"));
1313                 return -1;
1314         }
1315
1316         if (!file_init(smbd_server_conn)) {
1317                 DEBUG(0, ("ERROR: file_init failed\n"));
1318                 return -1;
1319         }
1320
1321         /* This MUST be done before start_epmd() because otherwise
1322          * start_epmd() forks and races against dcesrv_ep_setup() to
1323          * call directory_create_or_exist() */
1324         if (!directory_create_or_exist(lp_ncalrpc_dir(), geteuid(), 0755)) {
1325                 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
1326                           lp_ncalrpc_dir(), strerror(errno)));
1327                 return -1;
1328         }
1329
1330         if (is_daemon && !interactive) {
1331                 if (rpc_epmapper_daemon() == RPC_DAEMON_FORK) {
1332                         start_epmd(ev_ctx, msg_ctx);
1333                 }
1334         }
1335
1336         if (!dcesrv_ep_setup(ev_ctx, msg_ctx)) {
1337                 exit(1);
1338         }
1339
1340         /* only start other daemons if we are running as a daemon
1341          * -- bad things will happen if smbd is launched via inetd
1342          *  and we fork a copy of ourselves here */
1343         if (is_daemon && !interactive) {
1344
1345                 if (rpc_lsasd_daemon() == RPC_DAEMON_FORK) {
1346                         start_lsasd(ev_ctx, msg_ctx);
1347                 }
1348
1349                 if (!_lp_disable_spoolss() &&
1350                     (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1351                         bool bgq = lp_parm_bool(-1, "smbd", "backgroundqueue", true);
1352
1353                         if (!printing_subsystem_init(ev_ctx, msg_ctx, true, bgq)) {
1354                                 exit(1);
1355                         }
1356                 }
1357         } else if (!_lp_disable_spoolss() &&
1358                    (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1359                 if (!printing_subsystem_init(ev_ctx, msg_ctx, false, false)) {
1360                         exit(1);
1361                 }
1362         }
1363
1364         if (!is_daemon) {
1365                 /* inetd mode */
1366                 TALLOC_FREE(frame);
1367
1368                 /* Started from inetd. fd 0 is the socket. */
1369                 /* We will abort gracefully when the client or remote system
1370                    goes away */
1371                 smbd_server_conn->sock = dup(0);
1372
1373                 /* close our standard file descriptors */
1374                 if (!debug_get_output_is_stdout()) {
1375                         close_low_fds(False); /* Don't close stderr */
1376                 }
1377
1378 #ifdef HAVE_ATEXIT
1379                 atexit(killkids);
1380 #endif
1381
1382                 /* Stop zombies */
1383                 smbd_setup_sig_chld_handler(parent);
1384
1385                 smbd_process(ev_ctx, smbd_server_conn);
1386
1387                 exit_server_cleanly(NULL);
1388                 return(0);
1389         }
1390
1391         if (!open_sockets_smbd(parent, ev_ctx, msg_ctx, ports))
1392                 exit_server("open_sockets_smbd() failed");
1393
1394         /* do a printer update now that all messaging has been set up,
1395          * before we allow clients to start connecting */
1396         printing_subsystem_update(ev_ctx, msg_ctx, false);
1397
1398         TALLOC_FREE(frame);
1399         /* make sure we always have a valid stackframe */
1400         frame = talloc_stackframe();
1401
1402         smbd_parent_loop(ev_ctx, parent);
1403
1404         exit_server_cleanly(NULL);
1405         TALLOC_FREE(frame);
1406         return(0);
1407 }