Use rpccli_samr_LookupNames() in net.
[Samba/gebeck_regimport.git] / source3 / nmbd / nmbd.c
blob378b6f3dbe078627bc1b7779f73b6e7e8be6432b
1 /*
2 Unix SMB/CIFS implementation.
3 NBT netbios routines and daemon - version 2
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Jeremy Allison 1997-2002
6 Copyright (C) Jelmer Vernooij 2002,2003 (Conversion to popt)
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
25 int ClientNMB = -1;
26 int ClientDGRAM = -1;
27 int global_nmb_port = -1;
29 extern bool rescan_listen_set;
30 extern bool global_in_nmbd;
32 extern bool override_logfile;
34 /* have we found LanMan clients yet? */
35 bool found_lm_clients = False;
37 /* what server type are we currently */
39 time_t StartupTime = 0;
41 struct event_context *nmbd_event_context(void)
43 static struct event_context *ctx;
45 if (!ctx && !(ctx = event_context_init(NULL))) {
46 smb_panic("Could not init nmbd event context");
48 return ctx;
51 struct messaging_context *nmbd_messaging_context(void)
53 static struct messaging_context *ctx;
55 if (!ctx && !(ctx = messaging_init(NULL, server_id_self(),
56 nmbd_event_context()))) {
57 smb_panic("Could not init nmbd messaging context");
59 return ctx;
62 /**************************************************************************** **
63 Handle a SIGTERM in band.
64 **************************************************************************** */
66 static void terminate(void)
68 DEBUG(0,("Got SIGTERM: going down...\n"));
70 /* Write out wins.dat file if samba is a WINS server */
71 wins_write_database(0,False);
73 /* Remove all SELF registered names from WINS */
74 release_wins_names();
76 /* Announce all server entries as 0 time-to-live, 0 type. */
77 announce_my_servers_removed();
79 /* If there was an async dns child - kill it. */
80 kill_async_dns_child();
82 exit(0);
85 /**************************************************************************** **
86 Handle a SHUTDOWN message from smbcontrol.
87 **************************************************************************** */
89 static void nmbd_terminate(struct messaging_context *msg,
90 void *private_data,
91 uint32_t msg_type,
92 struct server_id server_id,
93 DATA_BLOB *data)
95 terminate();
98 /**************************************************************************** **
99 Catch a SIGTERM signal.
100 **************************************************************************** */
102 static SIG_ATOMIC_T got_sig_term;
104 static void sig_term(int sig)
106 got_sig_term = 1;
107 sys_select_signal(SIGTERM);
110 /**************************************************************************** **
111 Catch a SIGHUP signal.
112 **************************************************************************** */
114 static SIG_ATOMIC_T reload_after_sighup;
116 static void sig_hup(int sig)
118 reload_after_sighup = 1;
119 sys_select_signal(SIGHUP);
122 /**************************************************************************** **
123 Possibly continue after a fault.
124 **************************************************************************** */
126 static void fault_continue(void)
128 dump_core();
131 /**************************************************************************** **
132 Expire old names from the namelist and server list.
133 **************************************************************************** */
135 static void expire_names_and_servers(time_t t)
137 static time_t lastrun = 0;
139 if ( !lastrun )
140 lastrun = t;
141 if ( t < (lastrun + 5) )
142 return;
143 lastrun = t;
146 * Expire any timed out names on all the broadcast
147 * subnets and those registered with the WINS server.
148 * (nmbd_namelistdb.c)
151 expire_names(t);
154 * Go through all the broadcast subnets and for each
155 * workgroup known on that subnet remove any expired
156 * server names. If a workgroup has an empty serverlist
157 * and has itself timed out then remove the workgroup.
158 * (nmbd_workgroupdb.c)
161 expire_workgroups_and_servers(t);
164 /************************************************************************** **
165 Reload the list of network interfaces.
166 ************************************************************************** */
168 static bool reload_interfaces(time_t t)
170 static time_t lastt;
171 int n;
172 struct subnet_record *subrec;
174 if (t && ((t - lastt) < NMBD_INTERFACES_RELOAD)) return False;
175 lastt = t;
177 if (!interfaces_changed()) return False;
179 /* the list of probed interfaces has changed, we may need to add/remove
180 some subnets */
181 load_interfaces();
183 /* find any interfaces that need adding */
184 for (n=iface_count() - 1; n >= 0; n--) {
185 char str[INET6_ADDRSTRLEN];
186 const struct interface *iface = get_interface(n);
187 struct in_addr ip, nmask;
189 if (!iface) {
190 DEBUG(2,("reload_interfaces: failed to get interface %d\n", n));
191 continue;
194 /* Ensure we're only dealing with IPv4 here. */
195 if (iface->ip.ss_family != AF_INET) {
196 DEBUG(2,("reload_interfaces: "
197 "ignoring non IPv4 interface.\n"));
198 continue;
201 ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
202 nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
205 * We don't want to add a loopback interface, in case
206 * someone has added 127.0.0.1 for smbd, nmbd needs to
207 * ignore it here. JRA.
210 if (is_loopback_addr(&iface->ip)) {
211 DEBUG(2,("reload_interfaces: Ignoring loopback "
212 "interface %s\n",
213 print_sockaddr(str, sizeof(str), &iface->ip) ));
214 continue;
217 for (subrec=subnetlist; subrec; subrec=subrec->next) {
218 if (ip_equal_v4(ip, subrec->myip) &&
219 ip_equal_v4(nmask, subrec->mask_ip)) {
220 break;
224 if (!subrec) {
225 /* it wasn't found! add it */
226 DEBUG(2,("Found new interface %s\n",
227 print_sockaddr(str,
228 sizeof(str), &iface->ip) ));
229 subrec = make_normal_subnet(iface);
230 if (subrec)
231 register_my_workgroup_one_subnet(subrec);
235 /* find any interfaces that need deleting */
236 for (subrec=subnetlist; subrec; subrec=subrec->next) {
237 for (n=iface_count() - 1; n >= 0; n--) {
238 struct interface *iface = get_interface(n);
239 struct in_addr ip, nmask;
240 if (!iface) {
241 continue;
243 /* Ensure we're only dealing with IPv4 here. */
244 if (iface->ip.ss_family != AF_INET) {
245 DEBUG(2,("reload_interfaces: "
246 "ignoring non IPv4 interface.\n"));
247 continue;
249 ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
250 nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
251 if (ip_equal_v4(ip, subrec->myip) &&
252 ip_equal_v4(nmask, subrec->mask_ip)) {
253 break;
256 if (n == -1) {
257 /* oops, an interface has disapeared. This is
258 tricky, we don't dare actually free the
259 interface as it could be being used, so
260 instead we just wear the memory leak and
261 remove it from the list of interfaces without
262 freeing it */
263 DEBUG(2,("Deleting dead interface %s\n",
264 inet_ntoa(subrec->myip)));
265 close_subnet(subrec);
269 rescan_listen_set = True;
271 /* We need to shutdown if there are no subnets... */
272 if (FIRST_SUBNET == NULL) {
273 DEBUG(0,("reload_interfaces: No subnets to listen to. Shutting down...\n"));
274 return True;
276 return False;
279 /**************************************************************************** **
280 Reload the services file.
281 **************************************************************************** */
283 static bool reload_nmbd_services(bool test)
285 bool ret;
287 set_remote_machine_name("nmbd", False);
289 if ( lp_loaded() ) {
290 const char *fname = lp_configfile();
291 if (file_exist(fname,NULL) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
292 set_dyn_CONFIGFILE(fname);
293 test = False;
297 if ( test && !lp_file_list_changed() )
298 return(True);
300 ret = lp_load(get_dyn_CONFIGFILE(), True , False, False, True);
302 /* perhaps the config filename is now set */
303 if ( !test ) {
304 DEBUG( 3, ( "services not loaded\n" ) );
305 reload_nmbd_services( True );
308 return(ret);
311 /**************************************************************************** **
312 * React on 'smbcontrol nmbd reload-config' in the same way as to SIGHUP
313 * We use buf here to return bool result to process() when reload_interfaces()
314 * detects that there are no subnets.
315 **************************************************************************** */
317 static void msg_reload_nmbd_services(struct messaging_context *msg,
318 void *private_data,
319 uint32_t msg_type,
320 struct server_id server_id,
321 DATA_BLOB *data)
323 write_browse_list( 0, True );
324 dump_all_namelists();
325 reload_nmbd_services( True );
326 reopen_logs();
328 if (data->data) {
329 /* We were called from process() */
330 /* If reload_interfaces() returned True */
331 /* we need to shutdown if there are no subnets... */
332 /* pass this info back to process() */
333 *((bool *)data->data) = reload_interfaces(0);
337 static void msg_nmbd_send_packet(struct messaging_context *msg,
338 void *private_data,
339 uint32_t msg_type,
340 struct server_id src,
341 DATA_BLOB *data)
343 struct packet_struct *p = (struct packet_struct *)data->data;
344 struct subnet_record *subrec;
345 struct sockaddr_storage ss;
346 const struct sockaddr_storage *pss;
347 const struct in_addr *local_ip;
349 DEBUG(10, ("Received send_packet from %d\n", procid_to_pid(&src)));
351 if (data->length != sizeof(struct packet_struct)) {
352 DEBUG(2, ("Discarding invalid packet length from %d\n",
353 procid_to_pid(&src)));
354 return;
357 if ((p->packet_type != NMB_PACKET) &&
358 (p->packet_type != DGRAM_PACKET)) {
359 DEBUG(2, ("Discarding invalid packet type from %d: %d\n",
360 procid_to_pid(&src), p->packet_type));
361 return;
364 in_addr_to_sockaddr_storage(&ss, p->ip);
365 pss = iface_ip(&ss);
367 if (pss == NULL) {
368 DEBUG(2, ("Could not find ip for packet from %d\n",
369 procid_to_pid(&src)));
370 return;
373 local_ip = &((const struct sockaddr_in *)pss)->sin_addr;
374 subrec = FIRST_SUBNET;
376 p->fd = (p->packet_type == NMB_PACKET) ?
377 subrec->nmb_sock : subrec->dgram_sock;
379 for (subrec = FIRST_SUBNET; subrec != NULL;
380 subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec)) {
381 if (ip_equal_v4(*local_ip, subrec->myip)) {
382 p->fd = (p->packet_type == NMB_PACKET) ?
383 subrec->nmb_sock : subrec->dgram_sock;
384 break;
388 if (p->packet_type == DGRAM_PACKET) {
389 p->port = 138;
390 p->packet.dgram.header.source_ip.s_addr = local_ip->s_addr;
391 p->packet.dgram.header.source_port = 138;
394 send_packet(p);
397 /**************************************************************************** **
398 The main select loop.
399 **************************************************************************** */
401 static void process(void)
403 bool run_election;
404 bool no_subnets;
406 while( True ) {
407 time_t t = time(NULL);
408 TALLOC_CTX *frame = talloc_stackframe();
410 /* Check for internal messages */
412 message_dispatch(nmbd_messaging_context());
415 * Check all broadcast subnets to see if
416 * we need to run an election on any of them.
417 * (nmbd_elections.c)
420 run_election = check_elections();
423 * Read incoming UDP packets.
424 * (nmbd_packets.c)
427 if(listen_for_packets(run_election)) {
428 TALLOC_FREE(frame);
429 return;
433 * Handle termination inband.
436 if (got_sig_term) {
437 got_sig_term = 0;
438 terminate();
442 * Process all incoming packets
443 * read above. This calls the success and
444 * failure functions registered when response
445 * packets arrrive, and also deals with request
446 * packets from other sources.
447 * (nmbd_packets.c)
450 run_packet_queue();
453 * Run any elections - initiate becoming
454 * a local master browser if we have won.
455 * (nmbd_elections.c)
458 run_elections(t);
461 * Send out any broadcast announcements
462 * of our server names. This also announces
463 * the workgroup name if we are a local
464 * master browser.
465 * (nmbd_sendannounce.c)
468 announce_my_server_names(t);
471 * Send out any LanMan broadcast announcements
472 * of our server names.
473 * (nmbd_sendannounce.c)
476 announce_my_lm_server_names(t);
479 * If we are a local master browser, periodically
480 * announce ourselves to the domain master browser.
481 * This also deals with syncronising the domain master
482 * browser server lists with ourselves as a local
483 * master browser.
484 * (nmbd_sendannounce.c)
487 announce_myself_to_domain_master_browser(t);
490 * Fullfill any remote announce requests.
491 * (nmbd_sendannounce.c)
494 announce_remote(t);
497 * Fullfill any remote browse sync announce requests.
498 * (nmbd_sendannounce.c)
501 browse_sync_remote(t);
504 * Scan the broadcast subnets, and WINS client
505 * namelists and refresh any that need refreshing.
506 * (nmbd_mynames.c)
509 refresh_my_names(t);
512 * Scan the subnet namelists and server lists and
513 * expire thos that have timed out.
514 * (nmbd.c)
517 expire_names_and_servers(t);
520 * Write out a snapshot of our current browse list into
521 * the browse.dat file. This is used by smbd to service
522 * incoming NetServerEnum calls - used to synchronise
523 * browse lists over subnets.
524 * (nmbd_serverlistdb.c)
527 write_browse_list(t, False);
530 * If we are a domain master browser, we have a list of
531 * local master browsers we should synchronise browse
532 * lists with (these are added by an incoming local
533 * master browser announcement packet). Expire any of
534 * these that are no longer current, and pull the server
535 * lists from each of these known local master browsers.
536 * (nmbd_browsesync.c)
539 dmb_expire_and_sync_browser_lists(t);
542 * Check that there is a local master browser for our
543 * workgroup for all our broadcast subnets. If one
544 * is not found, start an election (which we ourselves
545 * may or may not participate in, depending on the
546 * setting of the 'local master' parameter.
547 * (nmbd_elections.c)
550 check_master_browser_exists(t);
553 * If we are configured as a logon server, attempt to
554 * register the special NetBIOS names to become such
555 * (WORKGROUP<1c> name) on all broadcast subnets and
556 * with the WINS server (if used). If we are configured
557 * to become a domain master browser, attempt to register
558 * the special NetBIOS name (WORKGROUP<1b> name) to
559 * become such.
560 * (nmbd_become_dmb.c)
563 add_domain_names(t);
566 * If we are a WINS server, do any timer dependent
567 * processing required.
568 * (nmbd_winsserver.c)
571 initiate_wins_processing(t);
574 * If we are a domain master browser, attempt to contact the
575 * WINS server to get a list of all known WORKGROUPS/DOMAINS.
576 * This will only work to a Samba WINS server.
577 * (nmbd_browsesync.c)
580 if (lp_enhanced_browsing())
581 collect_all_workgroup_names_from_wins_server(t);
584 * Go through the response record queue and time out or re-transmit
585 * and expired entries.
586 * (nmbd_packets.c)
589 retransmit_or_expire_response_records(t);
592 * check to see if any remote browse sync child processes have completed
595 sync_check_completion();
598 * regularly sync with any other DMBs we know about
601 if (lp_enhanced_browsing())
602 sync_all_dmbs(t);
605 * clear the unexpected packet queue
608 clear_unexpected(t);
611 * Reload the services file if we got a sighup.
614 if(reload_after_sighup) {
615 DATA_BLOB blob = data_blob_const(&no_subnets,
616 sizeof(no_subnets));
617 DEBUG( 0, ( "Got SIGHUP dumping debug info.\n" ) );
618 msg_reload_nmbd_services(nmbd_messaging_context(),
619 NULL, MSG_SMB_CONF_UPDATED,
620 procid_self(), &blob);
622 if(no_subnets) {
623 TALLOC_FREE(frame);
624 return;
626 reload_after_sighup = 0;
629 /* check for new network interfaces */
631 if(reload_interfaces(t)) {
632 TALLOC_FREE(frame);
633 return;
636 /* free up temp memory */
637 TALLOC_FREE(frame);
641 /**************************************************************************** **
642 Open the socket communication.
643 **************************************************************************** */
645 static bool open_sockets(bool isdaemon, int port)
647 struct sockaddr_storage ss;
648 const char *sock_addr = lp_socket_address();
651 * The sockets opened here will be used to receive broadcast
652 * packets *only*. Interface specific sockets are opened in
653 * make_subnet() in namedbsubnet.c. Thus we bind to the
654 * address "0.0.0.0". The parameter 'socket address' is
655 * now deprecated.
658 if (!interpret_string_addr(&ss, sock_addr,
659 AI_NUMERICHOST|AI_PASSIVE)) {
660 DEBUG(0,("open_sockets: unable to get socket address "
661 "from string %s", sock_addr));
662 return false;
664 if (ss.ss_family != AF_INET) {
665 DEBUG(0,("open_sockets: unable to use IPv6 socket"
666 "%s in nmbd\n",
667 sock_addr));
668 return false;
671 if (isdaemon) {
672 ClientNMB = open_socket_in(SOCK_DGRAM, port,
673 0, &ss,
674 true);
675 } else {
676 ClientNMB = 0;
679 if (ClientNMB == -1) {
680 return false;
683 ClientDGRAM = open_socket_in(SOCK_DGRAM, DGRAM_PORT,
684 3, &ss,
685 true);
687 if (ClientDGRAM == -1) {
688 if (ClientNMB != 0) {
689 close(ClientNMB);
691 return false;
694 /* we are never interested in SIGPIPE */
695 BlockSignals(True,SIGPIPE);
697 set_socket_options( ClientNMB, "SO_BROADCAST" );
698 set_socket_options( ClientDGRAM, "SO_BROADCAST" );
700 /* Ensure we're non-blocking. */
701 set_blocking( ClientNMB, False);
702 set_blocking( ClientDGRAM, False);
704 DEBUG( 3, ( "open_sockets: Broadcast sockets opened.\n" ) );
705 return( True );
708 /**************************************************************************** **
709 main program
710 **************************************************************************** */
712 int main(int argc, const char *argv[])
714 static bool is_daemon;
715 static bool opt_interactive;
716 static bool Fork = true;
717 static bool no_process_group;
718 static bool log_stdout;
719 poptContext pc;
720 char *p_lmhosts = NULL;
721 int opt;
722 enum {
723 OPT_DAEMON = 1000,
724 OPT_INTERACTIVE,
725 OPT_FORK,
726 OPT_NO_PROCESS_GROUP,
727 OPT_LOG_STDOUT
729 struct poptOption long_options[] = {
730 POPT_AUTOHELP
731 {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon(default)" },
732 {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)" },
733 {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools & etc)" },
734 {"no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
735 {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
736 {"hosts", 'H', POPT_ARG_STRING, &p_lmhosts, 'H', "Load a netbios hosts file"},
737 {"port", 'p', POPT_ARG_INT, &global_nmb_port, NMB_PORT, "Listen on the specified port" },
738 POPT_COMMON_SAMBA
739 { NULL }
741 TALLOC_CTX *frame = talloc_stackframe(); /* Setup tos. */
743 load_case_tables();
745 global_nmb_port = NMB_PORT;
747 pc = poptGetContext("nmbd", argc, argv, long_options, 0);
748 while ((opt = poptGetNextOpt(pc)) != -1) {
749 switch (opt) {
750 case OPT_DAEMON:
751 is_daemon = true;
752 break;
753 case OPT_INTERACTIVE:
754 opt_interactive = true;
755 break;
756 case OPT_FORK:
757 Fork = false;
758 break;
759 case OPT_NO_PROCESS_GROUP:
760 no_process_group = true;
761 break;
762 case OPT_LOG_STDOUT:
763 log_stdout = true;
764 break;
765 default:
766 d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
767 poptBadOption(pc, 0), poptStrerror(opt));
768 poptPrintUsage(pc, stderr, 0);
769 exit(1);
772 poptFreeContext(pc);
774 global_in_nmbd = true;
776 StartupTime = time(NULL);
778 sys_srandom(time(NULL) ^ sys_getpid());
780 if (!override_logfile) {
781 char *logfile = NULL;
782 if (asprintf(&logfile, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
783 exit(1);
785 lp_set_logfile(logfile);
786 SAFE_FREE(logfile);
789 fault_setup((void (*)(void *))fault_continue );
790 dump_core_setup("nmbd");
792 /* POSIX demands that signals are inherited. If the invoking process has
793 * these signals masked, we will have problems, as we won't receive them. */
794 BlockSignals(False, SIGHUP);
795 BlockSignals(False, SIGUSR1);
796 BlockSignals(False, SIGTERM);
798 CatchSignal( SIGHUP, SIGNAL_CAST sig_hup );
799 CatchSignal( SIGTERM, SIGNAL_CAST sig_term );
801 #if defined(SIGFPE)
802 /* we are never interested in SIGFPE */
803 BlockSignals(True,SIGFPE);
804 #endif
806 /* We no longer use USR2... */
807 #if defined(SIGUSR2)
808 BlockSignals(True, SIGUSR2);
809 #endif
811 if ( opt_interactive ) {
812 Fork = False;
813 log_stdout = True;
816 if ( log_stdout && Fork ) {
817 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
818 exit(1);
821 setup_logging( argv[0], log_stdout );
823 reopen_logs();
825 DEBUG(0,("nmbd version %s started.\n", SAMBA_VERSION_STRING));
826 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
828 if ( !reload_nmbd_services(False) )
829 return(-1);
831 if(!init_names())
832 return -1;
834 reload_nmbd_services( True );
836 if (strequal(lp_workgroup(),"*")) {
837 DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
838 exit(1);
841 set_samba_nb_type();
843 if (!is_daemon && !is_a_socket(0)) {
844 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
845 is_daemon = True;
848 if (is_daemon && !opt_interactive) {
849 DEBUG( 2, ( "Becoming a daemon.\n" ) );
850 become_daemon(Fork, no_process_group);
853 #if HAVE_SETPGID
855 * If we're interactive we want to set our own process group for
856 * signal management.
858 if (opt_interactive && !no_process_group)
859 setpgid( (pid_t)0, (pid_t)0 );
860 #endif
862 if (nmbd_messaging_context() == NULL) {
863 return 1;
866 #ifndef SYNC_DNS
867 /* Setup the async dns. We do it here so it doesn't have all the other
868 stuff initialised and thus chewing memory and sockets */
869 if(lp_we_are_a_wins_server() && lp_dns_proxy()) {
870 start_async_dns();
872 #endif
874 if (!directory_exist(lp_lockdir(), NULL)) {
875 mkdir(lp_lockdir(), 0755);
878 pidfile_create("nmbd");
879 messaging_register(nmbd_messaging_context(), NULL,
880 MSG_FORCE_ELECTION, nmbd_message_election);
881 #if 0
882 /* Until winsrepl is done. */
883 messaging_register(nmbd_messaging_context(), NULL,
884 MSG_WINS_NEW_ENTRY, nmbd_wins_new_entry);
885 #endif
886 messaging_register(nmbd_messaging_context(), NULL,
887 MSG_SHUTDOWN, nmbd_terminate);
888 messaging_register(nmbd_messaging_context(), NULL,
889 MSG_SMB_CONF_UPDATED, msg_reload_nmbd_services);
890 messaging_register(nmbd_messaging_context(), NULL,
891 MSG_SEND_PACKET, msg_nmbd_send_packet);
893 TimeInit();
895 DEBUG( 3, ( "Opening sockets %d\n", global_nmb_port ) );
897 if ( !open_sockets( is_daemon, global_nmb_port ) ) {
898 kill_async_dns_child();
899 return 1;
902 /* Determine all the IP addresses we have. */
903 load_interfaces();
905 /* Create an nmbd subnet record for each of the above. */
906 if( False == create_subnets() ) {
907 DEBUG(0,("ERROR: Failed when creating subnet lists. Exiting.\n"));
908 kill_async_dns_child();
909 exit(1);
912 /* Load in any static local names. */
913 if (p_lmhosts) {
914 set_dyn_LMHOSTSFILE(p_lmhosts);
916 load_lmhosts_file(get_dyn_LMHOSTSFILE());
917 DEBUG(3,("Loaded hosts file %s\n", get_dyn_LMHOSTSFILE()));
919 /* If we are acting as a WINS server, initialise data structures. */
920 if( !initialise_wins() ) {
921 DEBUG( 0, ( "nmbd: Failed when initialising WINS server.\n" ) );
922 kill_async_dns_child();
923 exit(1);
927 * Register nmbd primary workgroup and nmbd names on all
928 * the broadcast subnets, and on the WINS server (if specified).
929 * Also initiate the startup of our primary workgroup (start
930 * elections if we are setup as being able to be a local
931 * master browser.
934 if( False == register_my_workgroup_and_names() ) {
935 DEBUG(0,("ERROR: Failed when creating my my workgroup. Exiting.\n"));
936 kill_async_dns_child();
937 exit(1);
940 /* We can only take signals in the select. */
941 BlockSignals( True, SIGTERM );
943 TALLOC_FREE(frame);
944 process();
946 if (dbf)
947 x_fclose(dbf);
948 kill_async_dns_child();
949 return(0);