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 "system/filesys.h"
24 #include "popt_common.h"
25 #include "nmbd/nmbd.h"
31 int global_nmb_port
= -1;
33 extern bool rescan_listen_set
;
34 extern bool global_in_nmbd
;
36 extern bool override_logfile
;
38 /* have we found LanMan clients yet? */
39 bool found_lm_clients
= False
;
41 /* what server type are we currently */
43 time_t StartupTime
= 0;
45 struct event_context
*nmbd_event_context(void)
47 return server_event_context();
50 /**************************************************************************** **
51 Handle a SIGTERM in band.
52 **************************************************************************** */
54 static void terminate(struct messaging_context
*msg
)
56 DEBUG(0,("Got SIGTERM: going down...\n"));
58 /* Write out wins.dat file if samba is a WINS server */
59 wins_write_database(0,False
);
61 /* Remove all SELF registered names from WINS */
64 /* Announce all server entries as 0 time-to-live, 0 type. */
65 announce_my_servers_removed();
67 /* If there was an async dns child - kill it. */
68 kill_async_dns_child();
71 serverid_deregister(messaging_server_id(msg
));
73 pidfile_unlink_s3("nmbd");
78 static void nmbd_sig_term_handler(struct tevent_context
*ev
,
79 struct tevent_signal
*se
,
85 struct messaging_context
*msg
= talloc_get_type_abort(
86 private_data
, struct messaging_context
);
92 handle stdin becoming readable when we are in --foreground mode
94 static void nmbd_stdin_handler(struct tevent_context
*ev
,
95 struct tevent_fd
*fde
,
100 if (read(0, &c
, 1) != 1) {
101 struct messaging_context
*msg
= talloc_get_type_abort(
102 private_data
, struct messaging_context
);
104 DEBUG(0,("EOF on stdin\n"));
109 static bool nmbd_setup_sig_term_handler(struct messaging_context
*msg
)
111 struct tevent_signal
*se
;
113 se
= tevent_add_signal(nmbd_event_context(),
114 nmbd_event_context(),
116 nmbd_sig_term_handler
,
119 DEBUG(0,("failed to setup SIGTERM handler"));
126 static bool nmbd_setup_stdin_handler(struct messaging_context
*msg
, bool foreground
)
129 /* if we are running in the foreground then look for
130 EOF on stdin, and exit if it happens. This allows
131 us to die if the parent process dies
133 tevent_add_fd(nmbd_event_context(), nmbd_event_context(), 0, TEVENT_FD_READ
, nmbd_stdin_handler
, msg
);
139 static void msg_reload_nmbd_services(struct messaging_context
*msg
,
142 struct server_id server_id
,
145 static void nmbd_sig_hup_handler(struct tevent_context
*ev
,
146 struct tevent_signal
*se
,
152 struct messaging_context
*msg
= talloc_get_type_abort(
153 private_data
, struct messaging_context
);
155 DEBUG(0,("Got SIGHUP dumping debug info.\n"));
156 msg_reload_nmbd_services(msg
, NULL
, MSG_SMB_CONF_UPDATED
,
157 messaging_server_id(msg
), NULL
);
160 static bool nmbd_setup_sig_hup_handler(struct messaging_context
*msg
)
162 struct tevent_signal
*se
;
164 se
= tevent_add_signal(nmbd_event_context(),
165 nmbd_event_context(),
167 nmbd_sig_hup_handler
,
170 DEBUG(0,("failed to setup SIGHUP handler"));
177 /**************************************************************************** **
178 Handle a SHUTDOWN message from smbcontrol.
179 **************************************************************************** */
181 static void nmbd_terminate(struct messaging_context
*msg
,
184 struct server_id server_id
,
190 /**************************************************************************** **
191 Expire old names from the namelist and server list.
192 **************************************************************************** */
194 static void expire_names_and_servers(time_t t
)
196 static time_t lastrun
= 0;
200 if ( t
< (lastrun
+ 5) )
205 * Expire any timed out names on all the broadcast
206 * subnets and those registered with the WINS server.
207 * (nmbd_namelistdb.c)
213 * Go through all the broadcast subnets and for each
214 * workgroup known on that subnet remove any expired
215 * server names. If a workgroup has an empty serverlist
216 * and has itself timed out then remove the workgroup.
217 * (nmbd_workgroupdb.c)
220 expire_workgroups_and_servers(t
);
223 /************************************************************************** **
224 Reload the list of network interfaces.
225 Doesn't return until a network interface is up.
226 ************************************************************************** */
228 static void reload_interfaces(time_t t
)
232 bool print_waiting_msg
= true;
233 struct subnet_record
*subrec
;
235 if (t
&& ((t
- lastt
) < NMBD_INTERFACES_RELOAD
)) {
241 if (!interfaces_changed()) {
247 /* the list of probed interfaces has changed, we may need to add/remove
251 /* find any interfaces that need adding */
252 for (n
=iface_count() - 1; n
>= 0; n
--) {
253 char str
[INET6_ADDRSTRLEN
];
254 const struct interface
*iface
= get_interface(n
);
255 struct in_addr ip
, nmask
;
258 DEBUG(2,("reload_interfaces: failed to get interface %d\n", n
));
262 /* Ensure we're only dealing with IPv4 here. */
263 if (iface
->ip
.ss_family
!= AF_INET
) {
264 DEBUG(2,("reload_interfaces: "
265 "ignoring non IPv4 interface.\n"));
269 ip
= ((const struct sockaddr_in
*)(const void *)&iface
->ip
)->sin_addr
;
270 nmask
= ((const struct sockaddr_in
*)(const void *)
271 &iface
->netmask
)->sin_addr
;
274 * We don't want to add a loopback interface, in case
275 * someone has added 127.0.0.1 for smbd, nmbd needs to
276 * ignore it here. JRA.
279 if (is_loopback_addr((const struct sockaddr
*)(const void *)&iface
->ip
)) {
280 DEBUG(2,("reload_interfaces: Ignoring loopback "
282 print_sockaddr(str
, sizeof(str
), &iface
->ip
) ));
286 for (subrec
=subnetlist
; subrec
; subrec
=subrec
->next
) {
287 if (ip_equal_v4(ip
, subrec
->myip
) &&
288 ip_equal_v4(nmask
, subrec
->mask_ip
)) {
294 /* it wasn't found! add it */
295 DEBUG(2,("Found new interface %s\n",
297 sizeof(str
), &iface
->ip
) ));
298 subrec
= make_normal_subnet(iface
);
300 register_my_workgroup_one_subnet(subrec
);
304 /* find any interfaces that need deleting */
305 for (subrec
=subnetlist
; subrec
; subrec
=subrec
->next
) {
306 for (n
=iface_count() - 1; n
>= 0; n
--) {
307 struct interface
*iface
= get_interface(n
);
308 struct in_addr ip
, nmask
;
312 /* Ensure we're only dealing with IPv4 here. */
313 if (iface
->ip
.ss_family
!= AF_INET
) {
314 DEBUG(2,("reload_interfaces: "
315 "ignoring non IPv4 interface.\n"));
318 ip
= ((struct sockaddr_in
*)(void *)
319 &iface
->ip
)->sin_addr
;
320 nmask
= ((struct sockaddr_in
*)(void *)
321 &iface
->netmask
)->sin_addr
;
322 if (ip_equal_v4(ip
, subrec
->myip
) &&
323 ip_equal_v4(nmask
, subrec
->mask_ip
)) {
328 /* oops, an interface has disapeared. This is
329 tricky, we don't dare actually free the
330 interface as it could be being used, so
331 instead we just wear the memory leak and
332 remove it from the list of interfaces without
334 DEBUG(2,("Deleting dead interface %s\n",
335 inet_ntoa(subrec
->myip
)));
336 close_subnet(subrec
);
340 rescan_listen_set
= True
;
342 /* We need to wait if there are no subnets... */
343 if (FIRST_SUBNET
== NULL
) {
344 void (*saved_handler
)(int);
346 if (print_waiting_msg
) {
347 DEBUG(0,("reload_interfaces: "
348 "No subnets to listen to. Waiting..\n"));
349 print_waiting_msg
= false;
353 * Whilst we're waiting for an interface, allow SIGTERM to
356 saved_handler
= CatchSignal(SIGTERM
, SIG_DFL
);
358 /* We only count IPv4, non-loopback interfaces here. */
359 while (iface_count_v4_nl() == 0) {
364 CatchSignal(SIGTERM
, saved_handler
);
367 * We got an interface, go back to blocking term.
374 /**************************************************************************** **
375 Reload the services file.
376 **************************************************************************** */
378 static bool reload_nmbd_services(bool test
)
382 set_remote_machine_name("nmbd", False
);
385 char *fname
= lp_configfile(talloc_tos());
386 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
387 set_dyn_CONFIGFILE(fname
);
393 if ( test
&& !lp_file_list_changed() )
396 ret
= lp_load_global(get_dyn_CONFIGFILE());
398 /* perhaps the config filename is now set */
400 DEBUG( 3, ( "services not loaded\n" ) );
401 reload_nmbd_services( True
);
407 /**************************************************************************** **
408 * React on 'smbcontrol nmbd reload-config' in the same way as to SIGHUP
409 **************************************************************************** */
411 static void msg_reload_nmbd_services(struct messaging_context
*msg
,
414 struct server_id server_id
,
417 write_browse_list( 0, True
);
418 dump_all_namelists();
419 reload_nmbd_services( True
);
421 reload_interfaces(0);
424 static void msg_nmbd_send_packet(struct messaging_context
*msg
,
427 struct server_id src
,
430 struct packet_struct
*p
= (struct packet_struct
*)data
->data
;
431 struct subnet_record
*subrec
;
432 struct sockaddr_storage ss
;
433 const struct sockaddr_storage
*pss
;
434 const struct in_addr
*local_ip
;
436 DEBUG(10, ("Received send_packet from %u\n", (unsigned int)procid_to_pid(&src
)));
438 if (data
->length
!= sizeof(struct packet_struct
)) {
439 DEBUG(2, ("Discarding invalid packet length from %u\n",
440 (unsigned int)procid_to_pid(&src
)));
444 if ((p
->packet_type
!= NMB_PACKET
) &&
445 (p
->packet_type
!= DGRAM_PACKET
)) {
446 DEBUG(2, ("Discarding invalid packet type from %u: %d\n",
447 (unsigned int)procid_to_pid(&src
), p
->packet_type
));
451 in_addr_to_sockaddr_storage(&ss
, p
->ip
);
452 pss
= iface_ip((struct sockaddr
*)(void *)&ss
);
455 DEBUG(2, ("Could not find ip for packet from %u\n",
456 (unsigned int)procid_to_pid(&src
)));
460 local_ip
= &((const struct sockaddr_in
*)pss
)->sin_addr
;
461 subrec
= FIRST_SUBNET
;
464 p
->send_fd
= (p
->packet_type
== NMB_PACKET
) ?
465 subrec
->nmb_sock
: subrec
->dgram_sock
;
467 for (subrec
= FIRST_SUBNET
; subrec
!= NULL
;
468 subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
469 if (ip_equal_v4(*local_ip
, subrec
->myip
)) {
470 p
->send_fd
= (p
->packet_type
== NMB_PACKET
) ?
471 subrec
->nmb_sock
: subrec
->dgram_sock
;
476 if (p
->packet_type
== DGRAM_PACKET
) {
478 p
->packet
.dgram
.header
.source_ip
.s_addr
= local_ip
->s_addr
;
479 p
->packet
.dgram
.header
.source_port
= 138;
485 /**************************************************************************** **
486 The main select loop.
487 **************************************************************************** */
489 static void process(struct messaging_context
*msg
)
494 time_t t
= time(NULL
);
495 TALLOC_CTX
*frame
= talloc_stackframe();
498 * Check all broadcast subnets to see if
499 * we need to run an election on any of them.
503 run_election
= check_elections();
506 * Read incoming UDP packets.
510 if (listen_for_packets(msg
, run_election
)) {
516 * Process all incoming packets
517 * read above. This calls the success and
518 * failure functions registered when response
519 * packets arrrive, and also deals with request
520 * packets from other sources.
527 * Run any elections - initiate becoming
528 * a local master browser if we have won.
535 * Send out any broadcast announcements
536 * of our server names. This also announces
537 * the workgroup name if we are a local
539 * (nmbd_sendannounce.c)
542 announce_my_server_names(t
);
545 * Send out any LanMan broadcast announcements
546 * of our server names.
547 * (nmbd_sendannounce.c)
550 announce_my_lm_server_names(t
);
553 * If we are a local master browser, periodically
554 * announce ourselves to the domain master browser.
555 * This also deals with syncronising the domain master
556 * browser server lists with ourselves as a local
558 * (nmbd_sendannounce.c)
561 announce_myself_to_domain_master_browser(t
);
564 * Fullfill any remote announce requests.
565 * (nmbd_sendannounce.c)
571 * Fullfill any remote browse sync announce requests.
572 * (nmbd_sendannounce.c)
575 browse_sync_remote(t
);
578 * Scan the broadcast subnets, and WINS client
579 * namelists and refresh any that need refreshing.
586 * Scan the subnet namelists and server lists and
587 * expire thos that have timed out.
591 expire_names_and_servers(t
);
594 * Write out a snapshot of our current browse list into
595 * the browse.dat file. This is used by smbd to service
596 * incoming NetServerEnum calls - used to synchronise
597 * browse lists over subnets.
598 * (nmbd_serverlistdb.c)
601 write_browse_list(t
, False
);
604 * If we are a domain master browser, we have a list of
605 * local master browsers we should synchronise browse
606 * lists with (these are added by an incoming local
607 * master browser announcement packet). Expire any of
608 * these that are no longer current, and pull the server
609 * lists from each of these known local master browsers.
610 * (nmbd_browsesync.c)
613 dmb_expire_and_sync_browser_lists(t
);
616 * Check that there is a local master browser for our
617 * workgroup for all our broadcast subnets. If one
618 * is not found, start an election (which we ourselves
619 * may or may not participate in, depending on the
620 * setting of the 'local master' parameter.
624 check_master_browser_exists(t
);
627 * If we are configured as a logon server, attempt to
628 * register the special NetBIOS names to become such
629 * (WORKGROUP<1c> name) on all broadcast subnets and
630 * with the WINS server (if used). If we are configured
631 * to become a domain master browser, attempt to register
632 * the special NetBIOS name (WORKGROUP<1b> name) to
634 * (nmbd_become_dmb.c)
640 * If we are a WINS server, do any timer dependent
641 * processing required.
642 * (nmbd_winsserver.c)
645 initiate_wins_processing(t
);
648 * If we are a domain master browser, attempt to contact the
649 * WINS server to get a list of all known WORKGROUPS/DOMAINS.
650 * This will only work to a Samba WINS server.
651 * (nmbd_browsesync.c)
654 if (lp_enhanced_browsing())
655 collect_all_workgroup_names_from_wins_server(t
);
658 * Go through the response record queue and time out or re-transmit
659 * and expired entries.
663 retransmit_or_expire_response_records(t
);
666 * check to see if any remote browse sync child processes have completed
669 sync_check_completion();
672 * regularly sync with any other DMBs we know about
675 if (lp_enhanced_browsing())
678 /* check for new network interfaces */
680 reload_interfaces(t
);
682 /* free up temp memory */
687 /**************************************************************************** **
688 Open the socket communication.
689 **************************************************************************** */
691 static bool open_sockets(bool isdaemon
, int port
)
693 struct sockaddr_storage ss
;
694 const char *sock_addr
= lp_socket_address();
697 * The sockets opened here will be used to receive broadcast
698 * packets *only*. Interface specific sockets are opened in
699 * make_subnet() in namedbsubnet.c. Thus we bind to the
700 * address "0.0.0.0". The parameter 'socket address' is
704 if (!interpret_string_addr(&ss
, sock_addr
,
705 AI_NUMERICHOST
|AI_PASSIVE
)) {
706 DEBUG(0,("open_sockets: unable to get socket address "
707 "from string %s", sock_addr
));
710 if (ss
.ss_family
!= AF_INET
) {
711 DEBUG(0,("open_sockets: unable to use IPv6 socket"
718 ClientNMB
= open_socket_in(SOCK_DGRAM
, port
,
725 if (ClientNMB
== -1) {
729 ClientDGRAM
= open_socket_in(SOCK_DGRAM
, DGRAM_PORT
,
733 if (ClientDGRAM
== -1) {
734 if (ClientNMB
!= 0) {
740 /* we are never interested in SIGPIPE */
741 BlockSignals(True
,SIGPIPE
);
743 set_socket_options( ClientNMB
, "SO_BROADCAST" );
744 set_socket_options( ClientDGRAM
, "SO_BROADCAST" );
746 /* Ensure we're non-blocking. */
747 set_blocking( ClientNMB
, False
);
748 set_blocking( ClientDGRAM
, False
);
750 DEBUG( 3, ( "open_sockets: Broadcast sockets opened.\n" ) );
754 /**************************************************************************** **
756 **************************************************************************** */
758 int main(int argc
, const char *argv
[])
760 bool is_daemon
= false;
761 bool opt_interactive
= false;
763 bool no_process_group
= false;
764 bool log_stdout
= false;
766 char *p_lmhosts
= NULL
;
768 struct messaging_context
*msg
;
773 OPT_NO_PROCESS_GROUP
,
776 struct poptOption long_options
[] = {
778 {"daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon(default)" },
779 {"interactive", 'i', POPT_ARG_NONE
, NULL
, OPT_INTERACTIVE
, "Run interactive (not a daemon)" },
780 {"foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Run daemon in foreground (for daemontools & etc)" },
781 {"no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
782 {"log-stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
783 {"hosts", 'H', POPT_ARG_STRING
, &p_lmhosts
, 0, "Load a netbios hosts file"},
784 {"port", 'p', POPT_ARG_INT
, &global_nmb_port
, 0, "Listen on the specified port" },
792 * Do this before any other talloc operation
794 talloc_enable_null_tracking();
795 frame
= talloc_stackframe();
797 setup_logging(argv
[0], DEBUG_DEFAULT_STDOUT
);
801 global_nmb_port
= NMB_PORT
;
803 pc
= poptGetContext("nmbd", argc
, argv
, long_options
, 0);
804 while ((opt
= poptGetNextOpt(pc
)) != -1) {
809 case OPT_INTERACTIVE
:
810 opt_interactive
= true;
815 case OPT_NO_PROCESS_GROUP
:
816 no_process_group
= true;
822 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
823 poptBadOption(pc
, 0), poptStrerror(opt
));
824 poptPrintUsage(pc
, stderr
, 0);
830 global_in_nmbd
= true;
832 StartupTime
= time(NULL
);
834 sys_srandom(time(NULL
) ^ getpid());
836 if (!override_logfile
) {
838 if (asprintf(&lfile
, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
841 lp_set_logfile(lfile
);
846 dump_core_setup("nmbd", lp_logfile(talloc_tos()));
848 /* POSIX demands that signals are inherited. If the invoking process has
849 * these signals masked, we will have problems, as we won't receive them. */
850 BlockSignals(False
, SIGHUP
);
851 BlockSignals(False
, SIGUSR1
);
852 BlockSignals(False
, SIGTERM
);
855 /* we are never interested in SIGFPE */
856 BlockSignals(True
,SIGFPE
);
859 /* We no longer use USR2... */
861 BlockSignals(True
, SIGUSR2
);
864 if ( opt_interactive
) {
869 if ( log_stdout
&& Fork
) {
870 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
875 setup_logging(argv
[0], DEBUG_STDOUT
);
877 setup_logging( argv
[0], DEBUG_FILE
);
882 DEBUG(0,("nmbd version %s started.\n", samba_version_string()));
883 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
885 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
886 DEBUG(0, ("error opening config file '%s'\n", get_dyn_CONFIGFILE()));
890 msg
= messaging_init(NULL
, server_event_context());
895 if ( !reload_nmbd_services(False
) )
901 reload_nmbd_services( True
);
903 if (strequal(lp_workgroup(),"*")) {
904 DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
910 if (!is_daemon
&& !is_a_socket(0)) {
911 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
915 if (is_daemon
&& !opt_interactive
) {
916 DEBUG( 2, ( "Becoming a daemon.\n" ) );
917 become_daemon(Fork
, no_process_group
, log_stdout
);
922 * If we're interactive we want to set our own process group for
925 if (opt_interactive
&& !no_process_group
)
926 setpgid( (pid_t
)0, (pid_t
)0 );
930 /* Setup the async dns. We do it here so it doesn't have all the other
931 stuff initialised and thus chewing memory and sockets */
932 if(lp_we_are_a_wins_server() && lp_wins_dns_proxy()) {
933 start_async_dns(msg
);
937 if (!directory_exist(lp_lockdir())) {
938 mkdir(lp_lockdir(), 0755);
941 if (!directory_exist(lp_piddir())) {
942 mkdir(lp_piddir(), 0755);
945 pidfile_create_s3("nmbd");
947 status
= reinit_after_fork(msg
, nmbd_event_context(),
950 if (!NT_STATUS_IS_OK(status
)) {
951 DEBUG(0,("reinit_after_fork() failed\n"));
956 * Do not initialize the parent-child-pipe before becoming
957 * a daemon: this is used to detect a died parent in the child
960 status
= init_before_fork();
961 if (!NT_STATUS_IS_OK(status
)) {
962 DEBUG(0, ("init_before_fork failed: %s\n", nt_errstr(status
)));
966 if (!nmbd_setup_sig_term_handler(msg
))
968 if (!nmbd_setup_stdin_handler(msg
, !Fork
))
970 if (!nmbd_setup_sig_hup_handler(msg
))
973 /* get broadcast messages */
975 if (!serverid_register(messaging_server_id(msg
),
979 DEBUG(1, ("Could not register myself in serverid.tdb\n"));
983 messaging_register(msg
, NULL
, MSG_FORCE_ELECTION
,
984 nmbd_message_election
);
986 /* Until winsrepl is done. */
987 messaging_register(msg
, NULL
, MSG_WINS_NEW_ENTRY
,
988 nmbd_wins_new_entry
);
990 messaging_register(msg
, NULL
, MSG_SHUTDOWN
,
992 messaging_register(msg
, NULL
, MSG_SMB_CONF_UPDATED
,
993 msg_reload_nmbd_services
);
994 messaging_register(msg
, NULL
, MSG_SEND_PACKET
,
995 msg_nmbd_send_packet
);
999 DEBUG( 3, ( "Opening sockets %d\n", global_nmb_port
) );
1001 if ( !open_sockets( is_daemon
, global_nmb_port
) ) {
1002 kill_async_dns_child();
1006 /* Determine all the IP addresses we have. */
1009 /* Create an nmbd subnet record for each of the above. */
1010 if( False
== create_subnets() ) {
1011 DEBUG(0,("ERROR: Failed when creating subnet lists. Exiting.\n"));
1012 kill_async_dns_child();
1016 /* Load in any static local names. */
1018 set_dyn_LMHOSTSFILE(p_lmhosts
);
1020 load_lmhosts_file(get_dyn_LMHOSTSFILE());
1021 DEBUG(3,("Loaded hosts file %s\n", get_dyn_LMHOSTSFILE()));
1023 /* If we are acting as a WINS server, initialise data structures. */
1024 if( !initialise_wins() ) {
1025 DEBUG( 0, ( "nmbd: Failed when initialising WINS server.\n" ) );
1026 kill_async_dns_child();
1031 * Register nmbd primary workgroup and nmbd names on all
1032 * the broadcast subnets, and on the WINS server (if specified).
1033 * Also initiate the startup of our primary workgroup (start
1034 * elections if we are setup as being able to be a local
1038 if( False
== register_my_workgroup_and_names() ) {
1039 DEBUG(0,("ERROR: Failed when creating my my workgroup. Exiting.\n"));
1040 kill_async_dns_child();
1044 if (!initialize_nmbd_proxy_logon()) {
1045 DEBUG(0,("ERROR: Failed setup nmbd_proxy_logon.\n"));
1046 kill_async_dns_child();
1050 if (!nmbd_init_packet_server()) {
1051 kill_async_dns_child();
1058 kill_async_dns_child();