Handle arbitrary new PAC types
[jra/samba/.git] / source3 / nmbd / nmbd.c
index 6fadefe682aeaf5a191868d5e4bdcf24caac4fbd..d9f2af4c10bdf2ec6e67ec9910fab6804c35646a 100644 (file)
@@ -52,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");
+       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;
 }
@@ -163,18 +166,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 */
@@ -268,12 +280,44 @@ static bool reload_interfaces(time_t t)
 
        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;
+
+               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.
+                */
+
+               BlockSignals(false, SIGTERM);
+
+               /* We only count IPv4, non-loopback interfaces here. */
+               while (iface_count_v4_nl() == 0 && !got_sig_term) {
+                       sleep(5);
+                       load_interfaces();
+               }
+
+               /*
+                * Handle termination inband.
+                */
+
+               if (got_sig_term) {
+                       got_sig_term = 0;
+                       terminate();
+               }
+
+               /*
+                * We got an interface, go back to blocking term.
+                */
+
+               BlockSignals(true, SIGTERM);
+               goto try_again;
        }
-       return False;
 }
 
 /**************************************************************************** **
@@ -287,10 +331,9 @@ static bool reload_nmbd_services(bool test)
        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,NULL) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
+                       set_dyn_CONFIGFILE(fname);
                        test = False;
                }
        }
@@ -298,7 +341,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 ) {
@@ -311,8 +354,6 @@ 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(struct messaging_context *msg,
@@ -325,14 +366,7 @@ static void msg_reload_nmbd_services(struct messaging_context *msg,
        dump_all_namelists();
        reload_nmbd_services( True );
        reopen_logs();
-       
-       if (data->data) {
-               /* 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 *)data->data) = reload_interfaces(0);  
-       }
+       reload_interfaces(0);
 }
 
 static void msg_nmbd_send_packet(struct messaging_context *msg,
@@ -402,7 +436,6 @@ static void msg_nmbd_send_packet(struct messaging_context *msg,
 static void process(void)
 {
        bool run_election;
-       bool no_subnets;
 
        while( True ) {
                time_t t = time(NULL);
@@ -613,26 +646,17 @@ static void process(void)
                 */
 
                if(reload_after_sighup) {
-                       DATA_BLOB blob = data_blob_const(&no_subnets,
-                                                        sizeof(no_subnets));
                        DEBUG( 0, ( "Got SIGHUP dumping debug info.\n" ) );
                        msg_reload_nmbd_services(nmbd_messaging_context(),
                                                 NULL, MSG_SMB_CONF_UPDATED,
-                                                procid_self(), &blob);
+                                                procid_self(), NULL);
 
-                       if(no_subnets) {
-                               TALLOC_FREE(frame);
-                               return;
-                       }
                        reload_after_sighup = 0;
                }
 
                /* check for new network interfaces */
 
-               if(reload_interfaces(t)) {
-                       TALLOC_FREE(frame);
-                       return;
-               }
+               reload_interfaces(t);
 
                /* free up temp memory */
                TALLOC_FREE(frame);
@@ -677,11 +701,18 @@ static bool open_sockets(bool isdaemon, int port)
                ClientNMB = 0;
        }
 
+       if (ClientNMB == -1) {
+               return false;
+       }
+
        ClientDGRAM = open_socket_in(SOCK_DGRAM, DGRAM_PORT,
                                           3, &ss,
                                           true);
 
-       if (ClientNMB == -1) {
+       if (ClientDGRAM == -1) {
+               if (ClientNMB != 0) {
+                       close(ClientNMB);
+               }
                return false;
        }
 
@@ -710,9 +741,8 @@ static bool open_sockets(bool isdaemon, int port)
        static bool Fork = true;
        static bool no_process_group;
        static bool log_stdout;
-       pstring logfile;
        poptContext pc;
-       static char *p_lmhosts = dyn_LMHOSTSFILE;
+       char *p_lmhosts = NULL;
        int opt;
        enum {
                OPT_DAEMON = 1000,
@@ -733,6 +763,7 @@ static bool open_sockets(bool isdaemon, int port)
        POPT_COMMON_SAMBA
        { NULL }
        };
+       TALLOC_CTX *frame = talloc_stackframe(); /* Setup tos. */
 
        load_case_tables();
 
@@ -772,8 +803,12 @@ static bool open_sockets(bool isdaemon, int port)
        sys_srandom(time(NULL) ^ sys_getpid());
        
        if (!override_logfile) {
-               slprintf(logfile, sizeof(logfile)-1, "%s/log.nmbd", dyn_LOGFILEBASE);
+               char *logfile = NULL;
+               if (asprintf(&logfile, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
+                       exit(1);
+               }
                lp_set_logfile(logfile);
+               SAFE_FREE(logfile);
        }
        
        fault_setup((void (*)(void *))fault_continue );
@@ -815,6 +850,15 @@ static bool open_sockets(bool isdaemon, int port)
        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);
 
@@ -866,6 +910,15 @@ static bool open_sockets(bool isdaemon, int port)
        }
 
        pidfile_create("nmbd");
+
+       if (!reinit_after_fork(nmbd_messaging_context(), false)) {
+               DEBUG(0,("reinit_after_fork() failed\n"));
+               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
@@ -900,8 +953,11 @@ static bool open_sockets(bool isdaemon, 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() ) {
@@ -927,6 +983,7 @@ static bool open_sockets(bool isdaemon, int port)
        /* We can only take signals in the select. */
        BlockSignals( True, SIGTERM );
 
+       TALLOC_FREE(frame);
        process();
 
        if (dbf)