s3-nmbd: Remove obsolete signal type cast.
[ira/wip.git] / source3 / nmbd / nmbd.c
index ba05316d71278f2c1d9373f68f7d24bbd1cd0f19..148361f9f93484748d2031af7892b75c6a0ff20b 100644 (file)
@@ -7,7 +7,7 @@
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
@@ -16,8 +16,7 @@
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
 */
 
@@ -27,14 +26,13 @@ int ClientNMB       = -1;
 int ClientDGRAM     = -1;
 int global_nmb_port = -1;
 
-extern BOOL rescan_listen_set;
-extern struct in_addr loopback_ip;
-extern BOOL global_in_nmbd;
+extern bool rescan_listen_set;
+extern bool global_in_nmbd;
 
-extern BOOL override_logfile;
+extern bool override_logfile;
 
 /* have we found LanMan clients yet? */
-BOOL found_lm_clients = False;
+bool found_lm_clients = False;
 
 /* what server type are we currently */
 
@@ -45,7 +43,7 @@ struct event_context *nmbd_event_context(void)
        static struct event_context *ctx;
 
        if (!ctx && !(ctx = event_context_init(NULL))) {
-               smb_panic("Could not init nmbd event context\n");
+               smb_panic("Could not init nmbd event context");
        }
        return ctx;
 }
@@ -54,9 +52,12 @@ struct messaging_context *nmbd_messaging_context(void)
 {
        static struct messaging_context *ctx;
 
-       if (!ctx && !(ctx = messaging_init(NULL, server_id_self(),
-                                          nmbd_event_context()))) {
-               smb_panic("Could not init nmbd messaging context\n");
+       if (ctx == NULL) {
+               ctx = messaging_init(NULL, server_id_self(),
+                                    nmbd_event_context());
+       }
+       if (ctx == NULL) {
+               DEBUG(0, ("Could not init nmbd messaging context.\n"));
        }
        return ctx;
 }
@@ -81,41 +82,87 @@ static void terminate(void)
        /* If there was an async dns child - kill it. */
        kill_async_dns_child();
 
+       gencache_stabilize();
+
+       pidfile_unlink();
+
        exit(0);
 }
 
-/**************************************************************************** **
- Handle a SHUTDOWN message from smbcontrol.
- **************************************************************************** */
-
-static void nmbd_terminate(int msg_type, struct server_id src,
-                          void *buf, size_t len, void *private_data)
+static void nmbd_sig_term_handler(struct tevent_context *ev,
+                                 struct tevent_signal *se,
+                                 int signum,
+                                 int count,
+                                 void *siginfo,
+                                 void *private_data)
 {
        terminate();
 }
 
-/**************************************************************************** **
- Catch a SIGTERM signal.
- **************************************************************************** */
+static bool nmbd_setup_sig_term_handler(void)
+{
+       struct tevent_signal *se;
+
+       se = tevent_add_signal(nmbd_event_context(),
+                              nmbd_event_context(),
+                              SIGTERM, 0,
+                              nmbd_sig_term_handler,
+                              NULL);
+       if (!se) {
+               DEBUG(0,("failed to setup SIGTERM handler"));
+               return false;
+       }
 
-static SIG_ATOMIC_T got_sig_term;
+       return true;
+}
 
-static void sig_term(int sig)
+static void msg_reload_nmbd_services(struct messaging_context *msg,
+                                    void *private_data,
+                                    uint32_t msg_type,
+                                    struct server_id server_id,
+                                    DATA_BLOB *data);
+
+static void nmbd_sig_hup_handler(struct tevent_context *ev,
+                                struct tevent_signal *se,
+                                int signum,
+                                int count,
+                                void *siginfo,
+                                void *private_data)
 {
-       got_sig_term = 1;
-       sys_select_signal(SIGTERM);
+       DEBUG(0,("Got SIGHUP dumping debug info.\n"));
+       msg_reload_nmbd_services(nmbd_messaging_context(),
+                                NULL, MSG_SMB_CONF_UPDATED,
+                                procid_self(), NULL);
+}
+
+static bool nmbd_setup_sig_hup_handler(void)
+{
+       struct tevent_signal *se;
+
+       se = tevent_add_signal(nmbd_event_context(),
+                              nmbd_event_context(),
+                              SIGHUP, 0,
+                              nmbd_sig_hup_handler,
+                              NULL);
+       if (!se) {
+               DEBUG(0,("failed to setup SIGHUP handler"));
+               return false;
+       }
+
+       return true;
 }
 
 /**************************************************************************** **
Catch a SIGHUP signal.
Handle a SHUTDOWN message from smbcontrol.
  **************************************************************************** */
 
-static SIG_ATOMIC_T reload_after_sighup;
-
-static void sig_hup(int sig)
+static void nmbd_terminate(struct messaging_context *msg,
+                          void *private_data,
+                          uint32_t msg_type,
+                          struct server_id server_id,
+                          DATA_BLOB *data)
 {
-       reload_after_sighup = 1;
-       sys_select_signal(SIGHUP);
+       terminate();
 }
 
 /**************************************************************************** **
@@ -162,18 +209,27 @@ static void expire_names_and_servers(time_t t)
 
 /************************************************************************** **
  Reload the list of network interfaces.
+ Doesn't return until a network interface is up.
  ************************************************************************** */
 
-static BOOL reload_interfaces(time_t t)
+static void reload_interfaces(time_t t)
 {
        static time_t lastt;
        int n;
+       bool print_waiting_msg = true;
        struct subnet_record *subrec;
 
-       if (t && ((t - lastt) < NMBD_INTERFACES_RELOAD)) return False;
+       if (t && ((t - lastt) < NMBD_INTERFACES_RELOAD)) {
+               return;
+       }
+
        lastt = t;
 
-       if (!interfaces_changed()) return False;
+       if (!interfaces_changed()) {
+               return;
+       }
+
+  try_again:
 
        /* the list of probed interfaces has changed, we may need to add/remove
           some subnets */
@@ -181,33 +237,50 @@ static BOOL reload_interfaces(time_t t)
 
        /* find any interfaces that need adding */
        for (n=iface_count() - 1; n >= 0; n--) {
-               struct interface *iface = get_interface(n);
+               char str[INET6_ADDRSTRLEN];
+               const struct interface *iface = get_interface(n);
+               struct in_addr ip, nmask;
 
                if (!iface) {
                        DEBUG(2,("reload_interfaces: failed to get interface %d\n", n));
                        continue;
                }
 
+               /* Ensure we're only dealing with IPv4 here. */
+               if (iface->ip.ss_family != AF_INET) {
+                       DEBUG(2,("reload_interfaces: "
+                               "ignoring non IPv4 interface.\n"));
+                       continue;
+               }
+
+               ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
+               nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
+
                /*
                 * We don't want to add a loopback interface, in case
                 * someone has added 127.0.0.1 for smbd, nmbd needs to
                 * ignore it here. JRA.
                 */
 
-               if (ip_equal(iface->ip, loopback_ip)) {
-                       DEBUG(2,("reload_interfaces: Ignoring loopback interface %s\n", inet_ntoa(iface->ip)));
+               if (is_loopback_addr((struct sockaddr *)&iface->ip)) {
+                       DEBUG(2,("reload_interfaces: Ignoring loopback "
+                               "interface %s\n",
+                               print_sockaddr(str, sizeof(str), &iface->ip) ));
                        continue;
                }
 
                for (subrec=subnetlist; subrec; subrec=subrec->next) {
-                       if (ip_equal(iface->ip, subrec->myip) &&
-                           ip_equal(iface->nmask, subrec->mask_ip)) break;
+                       if (ip_equal_v4(ip, subrec->myip) &&
+                           ip_equal_v4(nmask, subrec->mask_ip)) {
+                               break;
+                       }
                }
 
                if (!subrec) {
                        /* it wasn't found! add it */
-                       DEBUG(2,("Found new interface %s\n", 
-                                inet_ntoa(iface->ip)));
+                       DEBUG(2,("Found new interface %s\n",
+                                print_sockaddr(str,
+                                        sizeof(str), &iface->ip) ));
                        subrec = make_normal_subnet(iface);
                        if (subrec)
                                register_my_workgroup_one_subnet(subrec);
@@ -218,8 +291,22 @@ static BOOL reload_interfaces(time_t t)
        for (subrec=subnetlist; subrec; subrec=subrec->next) {
                for (n=iface_count() - 1; n >= 0; n--) {
                        struct interface *iface = get_interface(n);
-                       if (ip_equal(iface->ip, subrec->myip) &&
-                           ip_equal(iface->nmask, subrec->mask_ip)) break;
+                       struct in_addr ip, nmask;
+                       if (!iface) {
+                               continue;
+                       }
+                       /* Ensure we're only dealing with IPv4 here. */
+                       if (iface->ip.ss_family != AF_INET) {
+                               DEBUG(2,("reload_interfaces: "
+                                       "ignoring non IPv4 interface.\n"));
+                               continue;
+                       }
+                       ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
+                       nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
+                       if (ip_equal_v4(ip, subrec->myip) &&
+                           ip_equal_v4(nmask, subrec->mask_ip)) {
+                               break;
+                       }
                }
                if (n == -1) {
                        /* oops, an interface has disapeared. This is
@@ -228,37 +315,60 @@ static BOOL reload_interfaces(time_t t)
                         instead we just wear the memory leak and
                         remove it from the list of interfaces without
                         freeing it */
-                       DEBUG(2,("Deleting dead interface %s\n", 
+                       DEBUG(2,("Deleting dead interface %s\n",
                                 inet_ntoa(subrec->myip)));
                        close_subnet(subrec);
                }
        }
-       
+
        rescan_listen_set = True;
 
-       /* We need to shutdown if there are no subnets... */
+       /* We need to wait if there are no subnets... */
        if (FIRST_SUBNET == NULL) {
-               DEBUG(0,("reload_interfaces: No subnets to listen to. Shutting down...\n"));
-               return True;
+               void (*saved_handler)(int);
+
+               if (print_waiting_msg) {
+                       DEBUG(0,("reload_interfaces: "
+                               "No subnets to listen to. Waiting..\n"));
+                       print_waiting_msg = false;
+               }
+
+               /*
+                * Whilst we're waiting for an interface, allow SIGTERM to
+                * cause us to exit.
+                */
+               saved_handler = CatchSignal(SIGTERM, SIG_DFL);
+
+               /* We only count IPv4, non-loopback interfaces here. */
+               while (iface_count_v4_nl() == 0) {
+                       sleep(5);
+                       load_interfaces();
+               }
+
+               CatchSignal(SIGTERM, saved_handler);
+
+               /*
+                * We got an interface, go back to blocking term.
+                */
+
+               goto try_again;
        }
-       return False;
 }
 
 /**************************************************************************** **
  Reload the services file.
  **************************************************************************** */
 
-static BOOL reload_nmbd_services(BOOL test)
+static bool reload_nmbd_services(bool test)
 {
-       BOOL ret;
+       bool ret;
 
        set_remote_machine_name("nmbd", False);
 
        if ( lp_loaded() ) {
-               pstring fname;
-               pstrcpy( fname,lp_configfile());
-               if (file_exist(fname,NULL) && !strcsequal(fname,dyn_CONFIGFILE)) {
-                       pstrcpy(dyn_CONFIGFILE,fname);
+               const char *fname = lp_configfile();
+               if (file_exist(fname) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
+                       set_dyn_CONFIGFILE(fname);
                        test = False;
                }
        }
@@ -266,7 +376,7 @@ static BOOL reload_nmbd_services(BOOL test)
        if ( test && !lp_file_list_changed() )
                return(True);
 
-       ret = lp_load( dyn_CONFIGFILE, True , False, False, True);
+       ret = lp_load(get_dyn_CONFIGFILE(), True , False, False, True);
 
        /* perhaps the config filename is now set */
        if ( !test ) {
@@ -279,66 +389,68 @@ static BOOL reload_nmbd_services(BOOL test)
 
 /**************************************************************************** **
  * React on 'smbcontrol nmbd reload-config' in the same way as to SIGHUP
- * We use buf here to return BOOL result to process() when reload_interfaces()
- * detects that there are no subnets.
  **************************************************************************** */
 
-static void msg_reload_nmbd_services(int msg_type, struct server_id src,
-                                    void *buf, size_t len, void *private_data)
+static void msg_reload_nmbd_services(struct messaging_context *msg,
+                                    void *private_data,
+                                    uint32_t msg_type,
+                                    struct server_id server_id,
+                                    DATA_BLOB *data)
 {
        write_browse_list( 0, True );
        dump_all_namelists();
        reload_nmbd_services( True );
        reopen_logs();
-       
-       if(buf) {
-               /* We were called from process() */
-               /* If reload_interfaces() returned True */
-               /* we need to shutdown if there are no subnets... */
-               /* pass this info back to process() */
-               *((BOOL*)buf) = reload_interfaces(0);  
-       }
+       reload_interfaces(0);
 }
 
-static void msg_nmbd_send_packet(int msg_type, struct server_id src,
-                                void *buf, size_t len, void *private_data)
+static void msg_nmbd_send_packet(struct messaging_context *msg,
+                                void *private_data,
+                                uint32_t msg_type,
+                                struct server_id src,
+                                DATA_BLOB *data)
 {
-       struct packet_struct *p = (struct packet_struct *)buf;
+       struct packet_struct *p = (struct packet_struct *)data->data;
        struct subnet_record *subrec;
-       struct in_addr *local_ip;
+       struct sockaddr_storage ss;
+       const struct sockaddr_storage *pss;
+       const struct in_addr *local_ip;
 
-       DEBUG(10, ("Received send_packet from %d\n", procid_to_pid(&src)));
+       DEBUG(10, ("Received send_packet from %u\n", (unsigned int)procid_to_pid(&src)));
 
-       if (len != sizeof(struct packet_struct)) {
-               DEBUG(2, ("Discarding invalid packet length from %d\n",
-                         procid_to_pid(&src)));
+       if (data->length != sizeof(struct packet_struct)) {
+               DEBUG(2, ("Discarding invalid packet length from %u\n",
+                         (unsigned int)procid_to_pid(&src)));
                return;
        }
 
        if ((p->packet_type != NMB_PACKET) &&
            (p->packet_type != DGRAM_PACKET)) {
-               DEBUG(2, ("Discarding invalid packet type from %d: %d\n",
-                         procid_to_pid(&src), p->packet_type));
+               DEBUG(2, ("Discarding invalid packet type from %u: %d\n",
+                         (unsigned int)procid_to_pid(&src), p->packet_type));
                return;
        }
 
-       local_ip = iface_ip(p->ip);
+       in_addr_to_sockaddr_storage(&ss, p->ip);
+       pss = iface_ip((struct sockaddr *)&ss);
 
-       if (local_ip == NULL) {
-               DEBUG(2, ("Could not find ip for packet from %d\n",
-                         procid_to_pid(&src)));
+       if (pss == NULL) {
+               DEBUG(2, ("Could not find ip for packet from %u\n",
+                         (unsigned int)procid_to_pid(&src)));
                return;
        }
 
+       local_ip = &((const struct sockaddr_in *)pss)->sin_addr;
        subrec = FIRST_SUBNET;
 
-       p->fd = (p->packet_type == NMB_PACKET) ?
+       p->recv_fd = -1;
+       p->send_fd = (p->packet_type == NMB_PACKET) ?
                subrec->nmb_sock : subrec->dgram_sock;
 
        for (subrec = FIRST_SUBNET; subrec != NULL;
             subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec)) {
-               if (ip_equal(*local_ip, subrec->myip)) {
-                       p->fd = (p->packet_type == NMB_PACKET) ?
+               if (ip_equal_v4(*local_ip, subrec->myip)) {
+                       p->send_fd = (p->packet_type == NMB_PACKET) ?
                                subrec->nmb_sock : subrec->dgram_sock;
                        break;
                }
@@ -359,15 +471,11 @@ static void msg_nmbd_send_packet(int msg_type, struct server_id src,
 
 static void process(void)
 {
-       BOOL run_election;
-       BOOL no_subnets;
+       bool run_election;
 
        while( True ) {
                time_t t = time(NULL);
-
-               /* Check for internal messages */
-
-               message_dispatch();
+               TALLOC_CTX *frame = talloc_stackframe();
 
                /*
                 * Check all broadcast subnets to see if
@@ -382,16 +490,9 @@ static void process(void)
                 * (nmbd_packets.c)
                 */
 
-               if(listen_for_packets(run_election))
+               if(listen_for_packets(run_election)) {
+                       TALLOC_FREE(frame);
                        return;
-
-               /*
-                * Handle termination inband.
-                */
-
-               if (got_sig_term) {
-                       got_sig_term = 0;
-                       terminate();
                }
 
                /*
@@ -563,26 +664,12 @@ static void process(void)
 
                clear_unexpected(t);
 
-               /*
-                * Reload the services file if we got a sighup.
-                */
-
-               if(reload_after_sighup) {
-                       DEBUG( 0, ( "Got SIGHUP dumping debug info.\n" ) );
-                       msg_reload_nmbd_services(MSG_SMB_CONF_UPDATED,
-                                                pid_to_procid(0), (void*) &no_subnets, 0, NULL);
-                       if(no_subnets)
-                               return;
-                       reload_after_sighup = 0;
-               }
-
                /* check for new network interfaces */
 
-               if(reload_interfaces(t))
-                       return;
+               reload_interfaces(t);
 
                /* free up temp memory */
-                       lp_TALLOC_FREE();
+               TALLOC_FREE(frame);
        }
 }
 
@@ -590,8 +677,11 @@ static void process(void)
  Open the socket communication.
  **************************************************************************** */
 
-static BOOL open_sockets(enum smb_server_mode server_mode, int port)
+static bool open_sockets(bool isdaemon, int port)
 {
+       struct sockaddr_storage ss;
+       const char *sock_addr = lp_socket_address();
+
        /*
         * The sockets opened here will be used to receive broadcast
         * packets *only*. Interface specific sockets are opened in
@@ -600,20 +690,41 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
         * now deprecated.
         */
 
-       if ( server_mode == SERVER_MODE_INETD ) {
-               ClientNMB = 0;
-       } else {
+       if (!interpret_string_addr(&ss, sock_addr,
+                               AI_NUMERICHOST|AI_PASSIVE)) {
+               DEBUG(0,("open_sockets: unable to get socket address "
+                       "from string %s", sock_addr));
+               return false;
+       }
+       if (ss.ss_family != AF_INET) {
+               DEBUG(0,("open_sockets: unable to use IPv6 socket"
+                       "%s in nmbd\n",
+                       sock_addr));
+               return false;
+       }
+
+       if (isdaemon) {
                ClientNMB = open_socket_in(SOCK_DGRAM, port,
-                                          0, interpret_addr(lp_socket_address()),
-                                          True);
+                                          0, &ss,
+                                          true);
+       } else {
+               ClientNMB = 0;
        }
-  
+
+       if (ClientNMB == -1) {
+               return false;
+       }
+
        ClientDGRAM = open_socket_in(SOCK_DGRAM, DGRAM_PORT,
-                                          3, interpret_addr(lp_socket_address()),
-                                          True);
+                                          3, &ss,
+                                          true);
 
-       if ( ClientNMB == -1 )
-               return( False );
+       if (ClientDGRAM == -1) {
+               if (ClientNMB != 0) {
+                       close(ClientNMB);
+               }
+               return false;
+       }
 
        /* we are never interested in SIGPIPE */
        BlockSignals(True,SIGPIPE);
@@ -632,48 +743,82 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
 /**************************************************************************** **
  main program
  **************************************************************************** */
+
  int main(int argc, const char *argv[])
 {
-       pstring logfile;
+       static bool is_daemon;
+       static bool opt_interactive;
+       static bool Fork = true;
+       static bool no_process_group;
+       static bool log_stdout;
        poptContext pc;
-       const char *p_lmhosts = dyn_LMHOSTSFILE;
-       BOOL no_process_group = False;
-       BOOL log_stdout = False;
-       enum smb_server_mode server_mode = SERVER_MODE_DAEMON;
-
+       char *p_lmhosts = NULL;
+       int opt;
+       enum {
+               OPT_DAEMON = 1000,
+               OPT_INTERACTIVE,
+               OPT_FORK,
+               OPT_NO_PROCESS_GROUP,
+               OPT_LOG_STDOUT
+       };
        struct poptOption long_options[] = {
        POPT_AUTOHELP
-       {"daemon", 'D', POPT_ARG_VAL, &server_mode, SERVER_MODE_DAEMON,
-               "Become a daemon(default)" },
-       {"interactive", 'i', POPT_ARG_VAL, &server_mode,
-               SERVER_MODE_INTERACTIVE, "Run interactive (not a daemon)" },
-       {"foreground", 'F', POPT_ARG_VAL, &server_mode,
-               SERVER_MODE_FOREGROUND, "Run daemon in foreground (for daemontools & etc)" },
-       {"no-process-group", 0, POPT_ARG_VAL, &no_process_group, True, "Don't create a new process group" },
-       {"log-stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" },
+       {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon(default)" },
+       {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)" },
+       {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools & etc)" },
+       {"no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
+       {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
        {"hosts", 'H', POPT_ARG_STRING, &p_lmhosts, 'H', "Load a netbios hosts file"},
        {"port", 'p', POPT_ARG_INT, &global_nmb_port, NMB_PORT, "Listen on the specified port" },
        POPT_COMMON_SAMBA
        { NULL }
        };
+       TALLOC_CTX *frame = talloc_stackframe(); /* Setup tos. */
 
        load_case_tables();
 
        global_nmb_port = NMB_PORT;
 
        pc = poptGetContext("nmbd", argc, argv, long_options, 0);
-       while (poptGetNextOpt(pc) != -1) {};
+       while ((opt = poptGetNextOpt(pc)) != -1) {
+               switch (opt) {
+               case OPT_DAEMON:
+                       is_daemon = true;
+                       break;
+               case OPT_INTERACTIVE:
+                       opt_interactive = true;
+                       break;
+               case OPT_FORK:
+                       Fork = false;
+                       break;
+               case OPT_NO_PROCESS_GROUP:
+                       no_process_group = true;
+                       break;
+               case OPT_LOG_STDOUT:
+                       log_stdout = true;
+                       break;
+               default:
+                       d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
+                                 poptBadOption(pc, 0), poptStrerror(opt));
+                       poptPrintUsage(pc, stderr, 0);
+                       exit(1);
+               }
+       };
        poptFreeContext(pc);
 
-       global_in_nmbd = True;
+       global_in_nmbd = true;
        
        StartupTime = time(NULL);
        
        sys_srandom(time(NULL) ^ sys_getpid());
        
        if (!override_logfile) {
-               slprintf(logfile, sizeof(logfile)-1, "%s/log.nmbd", dyn_LOGFILEBASE);
-               lp_set_logfile(logfile);
+               char *lfile = NULL;
+               if (asprintf(&lfile, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
+                       exit(1);
+               }
+               lp_set_logfile(lfile);
+               SAFE_FREE(lfile);
        }
        
        fault_setup((void (*)(void *))fault_continue );
@@ -684,10 +829,7 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
        BlockSignals(False, SIGHUP);
        BlockSignals(False, SIGUSR1);
        BlockSignals(False, SIGTERM);
-       
-       CatchSignal( SIGHUP,  SIGNAL_CAST sig_hup );
-       CatchSignal( SIGTERM, SIGNAL_CAST sig_term );
-       
+
 #if defined(SIGFPE)
        /* we are never interested in SIGFPE */
        BlockSignals(True,SIGFPE);
@@ -698,11 +840,12 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
        BlockSignals(True, SIGUSR2);
 #endif
 
-       if (server_mode == SERVER_MODE_INTERACTIVE) {
+       if ( opt_interactive ) {
+               Fork = False;
                log_stdout = True;
        }
 
-       if (log_stdout && server_mode == SERVER_MODE_DAEMON) {
+       if ( log_stdout && Fork ) {
                DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
                exit(1);
        }
@@ -711,8 +854,17 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
 
        reopen_logs();
 
-       DEBUG( 0, ( "Netbios nameserver version %s started.\n", SAMBA_VERSION_STRING) );
-       DEBUGADD( 0, ( "%s\n", COPYRIGHT_STARTUP_MESSAGE ) );
+       DEBUG(0,("nmbd version %s started.\n", samba_version_string()));
+       DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
+
+       if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
+               DEBUG(0, ("error opening config file\n"));
+               exit(1);
+       }
+
+       if (nmbd_messaging_context() == NULL) {
+               return 1;
+       }
 
        if ( !reload_nmbd_services(False) )
                return(-1);
@@ -729,19 +881,14 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
 
        set_samba_nb_type();
 
-       if (is_a_socket(0)) {
-               if (server_mode == SERVER_MODE_DAEMON) {
-                       DEBUG(0,("standard input is a socket, "
-                                   "assuming -F option\n"));
-               }
-               server_mode = SERVER_MODE_INETD;
+       if (!is_daemon && !is_a_socket(0)) {
+               DEBUG(0,("standard input is not a socket, assuming -D option\n"));
+               is_daemon = True;
        }
-
-       if (server_mode == SERVER_MODE_DAEMON) {
+  
+       if (is_daemon && !opt_interactive) {
                DEBUG( 2, ( "Becoming a daemon.\n" ) );
-               become_daemon(True, no_process_group);
-       } else if (server_mode == SERVER_MODE_FOREGROUND) {
-               become_daemon(False, no_process_group);
+               become_daemon(Fork, no_process_group);
        }
 
 #if HAVE_SETPGID
@@ -749,7 +896,7 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
         * If we're interactive we want to set our own process group for 
         * signal management.
         */
-       if (server_mode == SERVER_MODE_INTERACTIVE && !no_process_group)
+       if (opt_interactive && !no_process_group)
                setpgid( (pid_t)0, (pid_t)0 );
 #endif
 
@@ -765,25 +912,45 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
        }
 #endif
 
-       if (!directory_exist(lp_lockdir(), NULL)) {
+       if (!directory_exist(lp_lockdir())) {
                mkdir(lp_lockdir(), 0755);
        }
 
        pidfile_create("nmbd");
-       message_register(MSG_FORCE_ELECTION, nmbd_message_election, NULL);
+
+       if (!NT_STATUS_IS_OK(reinit_after_fork(nmbd_messaging_context(),
+                                              nmbd_event_context(), false))) {
+               DEBUG(0,("reinit_after_fork() failed\n"));
+               exit(1);
+       }
+
+       if (!nmbd_setup_sig_term_handler())
+               exit(1);
+       if (!nmbd_setup_sig_hup_handler())
+               exit(1);
+
+       /* get broadcast messages */
+       claim_connection(NULL,"",FLAG_MSG_GENERAL|FLAG_MSG_DBWRAP);
+
+       messaging_register(nmbd_messaging_context(), NULL,
+                          MSG_FORCE_ELECTION, nmbd_message_election);
 #if 0
        /* Until winsrepl is done. */
-       message_register(MSG_WINS_NEW_ENTRY, nmbd_wins_new_entry, NULL);
+       messaging_register(nmbd_messaging_context(), NULL,
+                          MSG_WINS_NEW_ENTRY, nmbd_wins_new_entry);
 #endif
-       message_register(MSG_SHUTDOWN, nmbd_terminate, NULL);
-       message_register(MSG_SMB_CONF_UPDATED, msg_reload_nmbd_services, NULL);
-       message_register(MSG_SEND_PACKET, msg_nmbd_send_packet, NULL);
+       messaging_register(nmbd_messaging_context(), NULL,
+                          MSG_SHUTDOWN, nmbd_terminate);
+       messaging_register(nmbd_messaging_context(), NULL,
+                          MSG_SMB_CONF_UPDATED, msg_reload_nmbd_services);
+       messaging_register(nmbd_messaging_context(), NULL,
+                          MSG_SEND_PACKET, msg_nmbd_send_packet);
 
        TimeInit();
 
        DEBUG( 3, ( "Opening sockets %d\n", global_nmb_port ) );
 
-       if ( !open_sockets( server_mode, global_nmb_port ) ) {
+       if ( !open_sockets( is_daemon, global_nmb_port ) ) {
                kill_async_dns_child();
                return 1;
        }
@@ -799,8 +966,11 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
        }
 
        /* Load in any static local names. */ 
-       load_lmhosts_file(p_lmhosts);
-       DEBUG(3,("Loaded hosts file %s\n", p_lmhosts));
+       if (p_lmhosts) {
+               set_dyn_LMHOSTSFILE(p_lmhosts);
+       }
+       load_lmhosts_file(get_dyn_LMHOSTSFILE());
+       DEBUG(3,("Loaded hosts file %s\n", get_dyn_LMHOSTSFILE()));
 
        /* If we are acting as a WINS server, initialise data structures. */
        if( !initialise_wins() ) {
@@ -823,9 +993,13 @@ static BOOL open_sockets(enum smb_server_mode server_mode, int port)
                exit(1);
        }
 
-       /* We can only take signals in the select. */
-       BlockSignals( True, SIGTERM );
+       if (!initialize_nmbd_proxy_logon()) {
+               DEBUG(0,("ERROR: Failed setup nmbd_proxy_logon.\n"));
+               kill_async_dns_child();
+               exit(1);
+       }
 
+       TALLOC_FREE(frame);
        process();
 
        if (dbf)