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