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