More warning fixes for Solaris.
[Samba.git] / source / nmbd / nmbd.c
blob7786bef948768ec543199220b7d98d60eab1d045
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 == NULL) {
56 ctx = messaging_init(NULL, server_id_self(),
57 nmbd_event_context());
59 if (ctx == NULL) {
60 DEBUG(0, ("Could not init nmbd messaging context.\n"));
62 return ctx;
65 /**************************************************************************** **
66 Handle a SIGTERM in band.
67 **************************************************************************** */
69 static void terminate(void)
71 DEBUG(0,("Got SIGTERM: going down...\n"));
73 /* Write out wins.dat file if samba is a WINS server */
74 wins_write_database(0,False);
76 /* Remove all SELF registered names from WINS */
77 release_wins_names();
79 /* Announce all server entries as 0 time-to-live, 0 type. */
80 announce_my_servers_removed();
82 /* If there was an async dns child - kill it. */
83 kill_async_dns_child();
85 exit(0);
88 /**************************************************************************** **
89 Handle a SHUTDOWN message from smbcontrol.
90 **************************************************************************** */
92 static void nmbd_terminate(struct messaging_context *msg,
93 void *private_data,
94 uint32_t msg_type,
95 struct server_id server_id,
96 DATA_BLOB *data)
98 terminate();
101 /**************************************************************************** **
102 Catch a SIGTERM signal.
103 **************************************************************************** */
105 static SIG_ATOMIC_T got_sig_term;
107 static void sig_term(int sig)
109 got_sig_term = 1;
110 sys_select_signal(SIGTERM);
113 /**************************************************************************** **
114 Catch a SIGHUP signal.
115 **************************************************************************** */
117 static SIG_ATOMIC_T reload_after_sighup;
119 static void sig_hup(int sig)
121 reload_after_sighup = 1;
122 sys_select_signal(SIGHUP);
125 /**************************************************************************** **
126 Possibly continue after a fault.
127 **************************************************************************** */
129 static void fault_continue(void)
131 dump_core();
134 /**************************************************************************** **
135 Expire old names from the namelist and server list.
136 **************************************************************************** */
138 static void expire_names_and_servers(time_t t)
140 static time_t lastrun = 0;
142 if ( !lastrun )
143 lastrun = t;
144 if ( t < (lastrun + 5) )
145 return;
146 lastrun = t;
149 * Expire any timed out names on all the broadcast
150 * subnets and those registered with the WINS server.
151 * (nmbd_namelistdb.c)
154 expire_names(t);
157 * Go through all the broadcast subnets and for each
158 * workgroup known on that subnet remove any expired
159 * server names. If a workgroup has an empty serverlist
160 * and has itself timed out then remove the workgroup.
161 * (nmbd_workgroupdb.c)
164 expire_workgroups_and_servers(t);
167 /************************************************************************** **
168 Reload the list of network interfaces.
169 Doesn't return until a network interface is up.
170 ************************************************************************** */
172 static void reload_interfaces(time_t t)
174 static time_t lastt;
175 int n;
176 bool print_waiting_msg = true;
177 struct subnet_record *subrec;
179 if (t && ((t - lastt) < NMBD_INTERFACES_RELOAD)) {
180 return;
183 lastt = t;
185 if (!interfaces_changed()) {
186 return;
189 try_again:
191 /* the list of probed interfaces has changed, we may need to add/remove
192 some subnets */
193 load_interfaces();
195 /* find any interfaces that need adding */
196 for (n=iface_count() - 1; n >= 0; n--) {
197 char str[INET6_ADDRSTRLEN];
198 const struct interface *iface = get_interface(n);
199 struct in_addr ip, nmask;
201 if (!iface) {
202 DEBUG(2,("reload_interfaces: failed to get interface %d\n", n));
203 continue;
206 /* Ensure we're only dealing with IPv4 here. */
207 if (iface->ip.ss_family != AF_INET) {
208 DEBUG(2,("reload_interfaces: "
209 "ignoring non IPv4 interface.\n"));
210 continue;
213 ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
214 nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
217 * We don't want to add a loopback interface, in case
218 * someone has added 127.0.0.1 for smbd, nmbd needs to
219 * ignore it here. JRA.
222 if (is_loopback_addr(&iface->ip)) {
223 DEBUG(2,("reload_interfaces: Ignoring loopback "
224 "interface %s\n",
225 print_sockaddr(str, sizeof(str), &iface->ip) ));
226 continue;
229 for (subrec=subnetlist; subrec; subrec=subrec->next) {
230 if (ip_equal_v4(ip, subrec->myip) &&
231 ip_equal_v4(nmask, subrec->mask_ip)) {
232 break;
236 if (!subrec) {
237 /* it wasn't found! add it */
238 DEBUG(2,("Found new interface %s\n",
239 print_sockaddr(str,
240 sizeof(str), &iface->ip) ));
241 subrec = make_normal_subnet(iface);
242 if (subrec)
243 register_my_workgroup_one_subnet(subrec);
247 /* find any interfaces that need deleting */
248 for (subrec=subnetlist; subrec; subrec=subrec->next) {
249 for (n=iface_count() - 1; n >= 0; n--) {
250 struct interface *iface = get_interface(n);
251 struct in_addr ip, nmask;
252 if (!iface) {
253 continue;
255 /* Ensure we're only dealing with IPv4 here. */
256 if (iface->ip.ss_family != AF_INET) {
257 DEBUG(2,("reload_interfaces: "
258 "ignoring non IPv4 interface.\n"));
259 continue;
261 ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
262 nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
263 if (ip_equal_v4(ip, subrec->myip) &&
264 ip_equal_v4(nmask, subrec->mask_ip)) {
265 break;
268 if (n == -1) {
269 /* oops, an interface has disapeared. This is
270 tricky, we don't dare actually free the
271 interface as it could be being used, so
272 instead we just wear the memory leak and
273 remove it from the list of interfaces without
274 freeing it */
275 DEBUG(2,("Deleting dead interface %s\n",
276 inet_ntoa(subrec->myip)));
277 close_subnet(subrec);
281 rescan_listen_set = True;
283 /* We need to wait if there are no subnets... */
284 if (FIRST_SUBNET == NULL) {
286 if (print_waiting_msg) {
287 DEBUG(0,("reload_interfaces: "
288 "No subnets to listen to. Waiting..\n"));
289 print_waiting_msg = false;
293 * Whilst we're waiting for an interface, allow SIGTERM to
294 * cause us to exit.
297 BlockSignals(false, SIGTERM);
299 /* We only count IPv4, non-loopback interfaces here. */
300 while (iface_count_v4_nl() == 0 && !got_sig_term) {
301 sleep(5);
302 load_interfaces();
306 * Handle termination inband.
309 if (got_sig_term) {
310 got_sig_term = 0;
311 terminate();
315 * We got an interface, go back to blocking term.
318 BlockSignals(true, SIGTERM);
319 goto try_again;
323 /**************************************************************************** **
324 Reload the services file.
325 **************************************************************************** */
327 static bool reload_nmbd_services(bool test)
329 bool ret;
331 set_remote_machine_name("nmbd", False);
333 if ( lp_loaded() ) {
334 const char *fname = lp_configfile();
335 if (file_exist(fname,NULL) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
336 set_dyn_CONFIGFILE(fname);
337 test = False;
341 if ( test && !lp_file_list_changed() )
342 return(True);
344 ret = lp_load(get_dyn_CONFIGFILE(), True , False, False, True);
346 /* perhaps the config filename is now set */
347 if ( !test ) {
348 DEBUG( 3, ( "services not loaded\n" ) );
349 reload_nmbd_services( True );
352 return(ret);
355 /**************************************************************************** **
356 * React on 'smbcontrol nmbd reload-config' in the same way as to SIGHUP
357 **************************************************************************** */
359 static void msg_reload_nmbd_services(struct messaging_context *msg,
360 void *private_data,
361 uint32_t msg_type,
362 struct server_id server_id,
363 DATA_BLOB *data)
365 write_browse_list( 0, True );
366 dump_all_namelists();
367 reload_nmbd_services( True );
368 reopen_logs();
369 reload_interfaces(0);
372 static void msg_nmbd_send_packet(struct messaging_context *msg,
373 void *private_data,
374 uint32_t msg_type,
375 struct server_id src,
376 DATA_BLOB *data)
378 struct packet_struct *p = (struct packet_struct *)data->data;
379 struct subnet_record *subrec;
380 struct sockaddr_storage ss;
381 const struct sockaddr_storage *pss;
382 const struct in_addr *local_ip;
384 DEBUG(10, ("Received send_packet from %u\n", (unsigned int)procid_to_pid(&src)));
386 if (data->length != sizeof(struct packet_struct)) {
387 DEBUG(2, ("Discarding invalid packet length from %u\n",
388 (unsigned int)procid_to_pid(&src)));
389 return;
392 if ((p->packet_type != NMB_PACKET) &&
393 (p->packet_type != DGRAM_PACKET)) {
394 DEBUG(2, ("Discarding invalid packet type from %u: %d\n",
395 (unsigned int)procid_to_pid(&src), p->packet_type));
396 return;
399 in_addr_to_sockaddr_storage(&ss, p->ip);
400 pss = iface_ip(&ss);
402 if (pss == NULL) {
403 DEBUG(2, ("Could not find ip for packet from %u\n",
404 (unsigned int)procid_to_pid(&src)));
405 return;
408 local_ip = &((const struct sockaddr_in *)pss)->sin_addr;
409 subrec = FIRST_SUBNET;
411 p->fd = (p->packet_type == NMB_PACKET) ?
412 subrec->nmb_sock : subrec->dgram_sock;
414 for (subrec = FIRST_SUBNET; subrec != NULL;
415 subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec)) {
416 if (ip_equal_v4(*local_ip, subrec->myip)) {
417 p->fd = (p->packet_type == NMB_PACKET) ?
418 subrec->nmb_sock : subrec->dgram_sock;
419 break;
423 if (p->packet_type == DGRAM_PACKET) {
424 p->port = 138;
425 p->packet.dgram.header.source_ip.s_addr = local_ip->s_addr;
426 p->packet.dgram.header.source_port = 138;
429 send_packet(p);
432 /**************************************************************************** **
433 The main select loop.
434 **************************************************************************** */
436 static void process(void)
438 bool run_election;
440 while( True ) {
441 time_t t = time(NULL);
442 TALLOC_CTX *frame = talloc_stackframe();
444 /* Check for internal messages */
446 message_dispatch(nmbd_messaging_context());
449 * Check all broadcast subnets to see if
450 * we need to run an election on any of them.
451 * (nmbd_elections.c)
454 run_election = check_elections();
457 * Read incoming UDP packets.
458 * (nmbd_packets.c)
461 if(listen_for_packets(run_election)) {
462 TALLOC_FREE(frame);
463 return;
467 * Handle termination inband.
470 if (got_sig_term) {
471 got_sig_term = 0;
472 terminate();
476 * Process all incoming packets
477 * read above. This calls the success and
478 * failure functions registered when response
479 * packets arrrive, and also deals with request
480 * packets from other sources.
481 * (nmbd_packets.c)
484 run_packet_queue();
487 * Run any elections - initiate becoming
488 * a local master browser if we have won.
489 * (nmbd_elections.c)
492 run_elections(t);
495 * Send out any broadcast announcements
496 * of our server names. This also announces
497 * the workgroup name if we are a local
498 * master browser.
499 * (nmbd_sendannounce.c)
502 announce_my_server_names(t);
505 * Send out any LanMan broadcast announcements
506 * of our server names.
507 * (nmbd_sendannounce.c)
510 announce_my_lm_server_names(t);
513 * If we are a local master browser, periodically
514 * announce ourselves to the domain master browser.
515 * This also deals with syncronising the domain master
516 * browser server lists with ourselves as a local
517 * master browser.
518 * (nmbd_sendannounce.c)
521 announce_myself_to_domain_master_browser(t);
524 * Fullfill any remote announce requests.
525 * (nmbd_sendannounce.c)
528 announce_remote(t);
531 * Fullfill any remote browse sync announce requests.
532 * (nmbd_sendannounce.c)
535 browse_sync_remote(t);
538 * Scan the broadcast subnets, and WINS client
539 * namelists and refresh any that need refreshing.
540 * (nmbd_mynames.c)
543 refresh_my_names(t);
546 * Scan the subnet namelists and server lists and
547 * expire thos that have timed out.
548 * (nmbd.c)
551 expire_names_and_servers(t);
554 * Write out a snapshot of our current browse list into
555 * the browse.dat file. This is used by smbd to service
556 * incoming NetServerEnum calls - used to synchronise
557 * browse lists over subnets.
558 * (nmbd_serverlistdb.c)
561 write_browse_list(t, False);
564 * If we are a domain master browser, we have a list of
565 * local master browsers we should synchronise browse
566 * lists with (these are added by an incoming local
567 * master browser announcement packet). Expire any of
568 * these that are no longer current, and pull the server
569 * lists from each of these known local master browsers.
570 * (nmbd_browsesync.c)
573 dmb_expire_and_sync_browser_lists(t);
576 * Check that there is a local master browser for our
577 * workgroup for all our broadcast subnets. If one
578 * is not found, start an election (which we ourselves
579 * may or may not participate in, depending on the
580 * setting of the 'local master' parameter.
581 * (nmbd_elections.c)
584 check_master_browser_exists(t);
587 * If we are configured as a logon server, attempt to
588 * register the special NetBIOS names to become such
589 * (WORKGROUP<1c> name) on all broadcast subnets and
590 * with the WINS server (if used). If we are configured
591 * to become a domain master browser, attempt to register
592 * the special NetBIOS name (WORKGROUP<1b> name) to
593 * become such.
594 * (nmbd_become_dmb.c)
597 add_domain_names(t);
600 * If we are a WINS server, do any timer dependent
601 * processing required.
602 * (nmbd_winsserver.c)
605 initiate_wins_processing(t);
608 * If we are a domain master browser, attempt to contact the
609 * WINS server to get a list of all known WORKGROUPS/DOMAINS.
610 * This will only work to a Samba WINS server.
611 * (nmbd_browsesync.c)
614 if (lp_enhanced_browsing())
615 collect_all_workgroup_names_from_wins_server(t);
618 * Go through the response record queue and time out or re-transmit
619 * and expired entries.
620 * (nmbd_packets.c)
623 retransmit_or_expire_response_records(t);
626 * check to see if any remote browse sync child processes have completed
629 sync_check_completion();
632 * regularly sync with any other DMBs we know about
635 if (lp_enhanced_browsing())
636 sync_all_dmbs(t);
639 * clear the unexpected packet queue
642 clear_unexpected(t);
645 * Reload the services file if we got a sighup.
648 if(reload_after_sighup) {
649 DEBUG( 0, ( "Got SIGHUP dumping debug info.\n" ) );
650 msg_reload_nmbd_services(nmbd_messaging_context(),
651 NULL, MSG_SMB_CONF_UPDATED,
652 procid_self(), NULL);
654 reload_after_sighup = 0;
657 /* check for new network interfaces */
659 reload_interfaces(t);
661 /* free up temp memory */
662 TALLOC_FREE(frame);
666 /**************************************************************************** **
667 Open the socket communication.
668 **************************************************************************** */
670 static bool open_sockets(bool isdaemon, int port)
672 struct sockaddr_storage ss;
673 const char *sock_addr = lp_socket_address();
676 * The sockets opened here will be used to receive broadcast
677 * packets *only*. Interface specific sockets are opened in
678 * make_subnet() in namedbsubnet.c. Thus we bind to the
679 * address "0.0.0.0". The parameter 'socket address' is
680 * now deprecated.
683 if (!interpret_string_addr(&ss, sock_addr,
684 AI_NUMERICHOST|AI_PASSIVE)) {
685 DEBUG(0,("open_sockets: unable to get socket address "
686 "from string %s", sock_addr));
687 return false;
689 if (ss.ss_family != AF_INET) {
690 DEBUG(0,("open_sockets: unable to use IPv6 socket"
691 "%s in nmbd\n",
692 sock_addr));
693 return false;
696 if (isdaemon) {
697 ClientNMB = open_socket_in(SOCK_DGRAM, port,
698 0, &ss,
699 true);
700 } else {
701 ClientNMB = 0;
704 if (ClientNMB == -1) {
705 return false;
708 ClientDGRAM = open_socket_in(SOCK_DGRAM, DGRAM_PORT,
709 3, &ss,
710 true);
712 if (ClientDGRAM == -1) {
713 if (ClientNMB != 0) {
714 close(ClientNMB);
716 return false;
719 /* we are never interested in SIGPIPE */
720 BlockSignals(True,SIGPIPE);
722 set_socket_options( ClientNMB, "SO_BROADCAST" );
723 set_socket_options( ClientDGRAM, "SO_BROADCAST" );
725 /* Ensure we're non-blocking. */
726 set_blocking( ClientNMB, False);
727 set_blocking( ClientDGRAM, False);
729 DEBUG( 3, ( "open_sockets: Broadcast sockets opened.\n" ) );
730 return( True );
733 /**************************************************************************** **
734 main program
735 **************************************************************************** */
737 int main(int argc, const char *argv[])
739 static bool is_daemon;
740 static bool opt_interactive;
741 static bool Fork = true;
742 static bool no_process_group;
743 static bool log_stdout;
744 poptContext pc;
745 char *p_lmhosts = NULL;
746 int opt;
747 enum {
748 OPT_DAEMON = 1000,
749 OPT_INTERACTIVE,
750 OPT_FORK,
751 OPT_NO_PROCESS_GROUP,
752 OPT_LOG_STDOUT
754 struct poptOption long_options[] = {
755 POPT_AUTOHELP
756 {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon(default)" },
757 {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)" },
758 {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools & etc)" },
759 {"no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
760 {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
761 {"hosts", 'H', POPT_ARG_STRING, &p_lmhosts, 'H', "Load a netbios hosts file"},
762 {"port", 'p', POPT_ARG_INT, &global_nmb_port, NMB_PORT, "Listen on the specified port" },
763 POPT_COMMON_SAMBA
764 { NULL }
766 TALLOC_CTX *frame = talloc_stackframe(); /* Setup tos. */
768 load_case_tables();
770 global_nmb_port = NMB_PORT;
772 pc = poptGetContext("nmbd", argc, argv, long_options, 0);
773 while ((opt = poptGetNextOpt(pc)) != -1) {
774 switch (opt) {
775 case OPT_DAEMON:
776 is_daemon = true;
777 break;
778 case OPT_INTERACTIVE:
779 opt_interactive = true;
780 break;
781 case OPT_FORK:
782 Fork = false;
783 break;
784 case OPT_NO_PROCESS_GROUP:
785 no_process_group = true;
786 break;
787 case OPT_LOG_STDOUT:
788 log_stdout = true;
789 break;
790 default:
791 d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
792 poptBadOption(pc, 0), poptStrerror(opt));
793 poptPrintUsage(pc, stderr, 0);
794 exit(1);
797 poptFreeContext(pc);
799 global_in_nmbd = true;
801 StartupTime = time(NULL);
803 sys_srandom(time(NULL) ^ sys_getpid());
805 if (!override_logfile) {
806 char *lfile = NULL;
807 if (asprintf(&lfile, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
808 exit(1);
810 lp_set_logfile(lfile);
811 SAFE_FREE(lfile);
814 fault_setup((void (*)(void *))fault_continue );
815 dump_core_setup("nmbd");
817 /* POSIX demands that signals are inherited. If the invoking process has
818 * these signals masked, we will have problems, as we won't receive them. */
819 BlockSignals(False, SIGHUP);
820 BlockSignals(False, SIGUSR1);
821 BlockSignals(False, SIGTERM);
823 CatchSignal( SIGHUP, SIGNAL_CAST sig_hup );
824 CatchSignal( SIGTERM, SIGNAL_CAST sig_term );
826 #if defined(SIGFPE)
827 /* we are never interested in SIGFPE */
828 BlockSignals(True,SIGFPE);
829 #endif
831 /* We no longer use USR2... */
832 #if defined(SIGUSR2)
833 BlockSignals(True, SIGUSR2);
834 #endif
836 if ( opt_interactive ) {
837 Fork = False;
838 log_stdout = True;
841 if ( log_stdout && Fork ) {
842 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
843 exit(1);
846 setup_logging( argv[0], log_stdout );
848 reopen_logs();
850 DEBUG(0,("nmbd version %s started.\n", SAMBA_VERSION_STRING));
851 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
853 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
854 DEBUG(0, ("error opening config file\n"));
855 exit(1);
858 if (nmbd_messaging_context() == NULL) {
859 return 1;
862 if ( !reload_nmbd_services(False) )
863 return(-1);
865 if(!init_names())
866 return -1;
868 reload_nmbd_services( True );
870 if (strequal(lp_workgroup(),"*")) {
871 DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
872 exit(1);
875 set_samba_nb_type();
877 if (!is_daemon && !is_a_socket(0)) {
878 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
879 is_daemon = True;
882 if (is_daemon && !opt_interactive) {
883 DEBUG( 2, ( "Becoming a daemon.\n" ) );
884 become_daemon(Fork, no_process_group);
887 #if HAVE_SETPGID
889 * If we're interactive we want to set our own process group for
890 * signal management.
892 if (opt_interactive && !no_process_group)
893 setpgid( (pid_t)0, (pid_t)0 );
894 #endif
896 if (nmbd_messaging_context() == NULL) {
897 return 1;
900 #ifndef SYNC_DNS
901 /* Setup the async dns. We do it here so it doesn't have all the other
902 stuff initialised and thus chewing memory and sockets */
903 if(lp_we_are_a_wins_server() && lp_dns_proxy()) {
904 start_async_dns();
906 #endif
908 if (!directory_exist(lp_lockdir(), NULL)) {
909 mkdir(lp_lockdir(), 0755);
912 pidfile_create("nmbd");
914 if (!reinit_after_fork(nmbd_messaging_context(),
915 nmbd_event_context(), false)) {
916 DEBUG(0,("reinit_after_fork() failed\n"));
917 exit(1);
920 /* get broadcast messages */
921 claim_connection(NULL,"",FLAG_MSG_GENERAL|FLAG_MSG_DBWRAP);
923 messaging_register(nmbd_messaging_context(), NULL,
924 MSG_FORCE_ELECTION, nmbd_message_election);
925 #if 0
926 /* Until winsrepl is done. */
927 messaging_register(nmbd_messaging_context(), NULL,
928 MSG_WINS_NEW_ENTRY, nmbd_wins_new_entry);
929 #endif
930 messaging_register(nmbd_messaging_context(), NULL,
931 MSG_SHUTDOWN, nmbd_terminate);
932 messaging_register(nmbd_messaging_context(), NULL,
933 MSG_SMB_CONF_UPDATED, msg_reload_nmbd_services);
934 messaging_register(nmbd_messaging_context(), NULL,
935 MSG_SEND_PACKET, msg_nmbd_send_packet);
937 TimeInit();
939 DEBUG( 3, ( "Opening sockets %d\n", global_nmb_port ) );
941 if ( !open_sockets( is_daemon, global_nmb_port ) ) {
942 kill_async_dns_child();
943 return 1;
946 /* Determine all the IP addresses we have. */
947 load_interfaces();
949 /* Create an nmbd subnet record for each of the above. */
950 if( False == create_subnets() ) {
951 DEBUG(0,("ERROR: Failed when creating subnet lists. Exiting.\n"));
952 kill_async_dns_child();
953 exit(1);
956 /* Load in any static local names. */
957 if (p_lmhosts) {
958 set_dyn_LMHOSTSFILE(p_lmhosts);
960 load_lmhosts_file(get_dyn_LMHOSTSFILE());
961 DEBUG(3,("Loaded hosts file %s\n", get_dyn_LMHOSTSFILE()));
963 /* If we are acting as a WINS server, initialise data structures. */
964 if( !initialise_wins() ) {
965 DEBUG( 0, ( "nmbd: Failed when initialising WINS server.\n" ) );
966 kill_async_dns_child();
967 exit(1);
971 * Register nmbd primary workgroup and nmbd names on all
972 * the broadcast subnets, and on the WINS server (if specified).
973 * Also initiate the startup of our primary workgroup (start
974 * elections if we are setup as being able to be a local
975 * master browser.
978 if( False == register_my_workgroup_and_names() ) {
979 DEBUG(0,("ERROR: Failed when creating my my workgroup. Exiting.\n"));
980 kill_async_dns_child();
981 exit(1);
984 /* We can only take signals in the select. */
985 BlockSignals( True, SIGTERM );
987 TALLOC_FREE(frame);
988 process();
990 if (dbf)
991 x_fclose(dbf);
992 kill_async_dns_child();
993 return(0);