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