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/>.
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");
51 struct messaging_context
*nmbd_messaging_context(void)
53 static struct messaging_context
*ctx
;
56 ctx
= messaging_init(NULL
, server_id_self(),
57 nmbd_event_context());
60 DEBUG(0, ("Could not init nmbd messaging context.\n"));
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 */
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();
88 static void nmbd_sig_term_handler(struct tevent_context
*ev
,
89 struct tevent_signal
*se
,
98 static bool nmbd_setup_sig_term_handler(void)
100 struct tevent_signal
*se
;
102 se
= tevent_add_signal(nmbd_event_context(),
103 nmbd_event_context(),
105 nmbd_sig_term_handler
,
108 DEBUG(0,("failed to setup SIGTERM handler"));
115 static void msg_reload_nmbd_services(struct messaging_context
*msg
,
118 struct server_id server_id
,
121 static void nmbd_sig_hup_handler(struct tevent_context
*ev
,
122 struct tevent_signal
*se
,
128 DEBUG(0,("Got SIGHUP dumping debug info.\n"));
129 msg_reload_nmbd_services(nmbd_messaging_context(),
130 NULL
, MSG_SMB_CONF_UPDATED
,
131 procid_self(), NULL
);
134 static bool nmbd_setup_sig_hup_handler(void)
136 struct tevent_signal
*se
;
138 se
= tevent_add_signal(nmbd_event_context(),
139 nmbd_event_context(),
141 nmbd_sig_hup_handler
,
144 DEBUG(0,("failed to setup SIGHUP handler"));
151 /**************************************************************************** **
152 Handle a SHUTDOWN message from smbcontrol.
153 **************************************************************************** */
155 static void nmbd_terminate(struct messaging_context
*msg
,
158 struct server_id server_id
,
164 /**************************************************************************** **
165 Possibly continue after a fault.
166 **************************************************************************** */
168 static void fault_continue(void)
173 /**************************************************************************** **
174 Expire old names from the namelist and server list.
175 **************************************************************************** */
177 static void expire_names_and_servers(time_t t
)
179 static time_t lastrun
= 0;
183 if ( t
< (lastrun
+ 5) )
188 * Expire any timed out names on all the broadcast
189 * subnets and those registered with the WINS server.
190 * (nmbd_namelistdb.c)
196 * Go through all the broadcast subnets and for each
197 * workgroup known on that subnet remove any expired
198 * server names. If a workgroup has an empty serverlist
199 * and has itself timed out then remove the workgroup.
200 * (nmbd_workgroupdb.c)
203 expire_workgroups_and_servers(t
);
206 /************************************************************************** **
207 Reload the list of network interfaces.
208 Doesn't return until a network interface is up.
209 ************************************************************************** */
211 static void reload_interfaces(time_t t
)
215 bool print_waiting_msg
= true;
216 struct subnet_record
*subrec
;
218 if (t
&& ((t
- lastt
) < NMBD_INTERFACES_RELOAD
)) {
224 if (!interfaces_changed()) {
230 /* the list of probed interfaces has changed, we may need to add/remove
234 /* find any interfaces that need adding */
235 for (n
=iface_count() - 1; n
>= 0; n
--) {
236 char str
[INET6_ADDRSTRLEN
];
237 const struct interface
*iface
= get_interface(n
);
238 struct in_addr ip
, nmask
;
241 DEBUG(2,("reload_interfaces: failed to get interface %d\n", n
));
245 /* Ensure we're only dealing with IPv4 here. */
246 if (iface
->ip
.ss_family
!= AF_INET
) {
247 DEBUG(2,("reload_interfaces: "
248 "ignoring non IPv4 interface.\n"));
252 ip
= ((struct sockaddr_in
*)&iface
->ip
)->sin_addr
;
253 nmask
= ((struct sockaddr_in
*)&iface
->netmask
)->sin_addr
;
256 * We don't want to add a loopback interface, in case
257 * someone has added 127.0.0.1 for smbd, nmbd needs to
258 * ignore it here. JRA.
261 if (is_loopback_addr((struct sockaddr
*)&iface
->ip
)) {
262 DEBUG(2,("reload_interfaces: Ignoring loopback "
264 print_sockaddr(str
, sizeof(str
), &iface
->ip
) ));
268 for (subrec
=subnetlist
; subrec
; subrec
=subrec
->next
) {
269 if (ip_equal_v4(ip
, subrec
->myip
) &&
270 ip_equal_v4(nmask
, subrec
->mask_ip
)) {
276 /* it wasn't found! add it */
277 DEBUG(2,("Found new interface %s\n",
279 sizeof(str
), &iface
->ip
) ));
280 subrec
= make_normal_subnet(iface
);
282 register_my_workgroup_one_subnet(subrec
);
286 /* find any interfaces that need deleting */
287 for (subrec
=subnetlist
; subrec
; subrec
=subrec
->next
) {
288 for (n
=iface_count() - 1; n
>= 0; n
--) {
289 struct interface
*iface
= get_interface(n
);
290 struct in_addr ip
, nmask
;
294 /* Ensure we're only dealing with IPv4 here. */
295 if (iface
->ip
.ss_family
!= AF_INET
) {
296 DEBUG(2,("reload_interfaces: "
297 "ignoring non IPv4 interface.\n"));
300 ip
= ((struct sockaddr_in
*)&iface
->ip
)->sin_addr
;
301 nmask
= ((struct sockaddr_in
*)&iface
->netmask
)->sin_addr
;
302 if (ip_equal_v4(ip
, subrec
->myip
) &&
303 ip_equal_v4(nmask
, subrec
->mask_ip
)) {
308 /* oops, an interface has disapeared. This is
309 tricky, we don't dare actually free the
310 interface as it could be being used, so
311 instead we just wear the memory leak and
312 remove it from the list of interfaces without
314 DEBUG(2,("Deleting dead interface %s\n",
315 inet_ntoa(subrec
->myip
)));
316 close_subnet(subrec
);
320 rescan_listen_set
= True
;
322 /* We need to wait if there are no subnets... */
323 if (FIRST_SUBNET
== NULL
) {
324 void (*saved_handler
)(int);
326 if (print_waiting_msg
) {
327 DEBUG(0,("reload_interfaces: "
328 "No subnets to listen to. Waiting..\n"));
329 print_waiting_msg
= false;
333 * Whilst we're waiting for an interface, allow SIGTERM to
336 saved_handler
= CatchSignal( SIGTERM
, SIGNAL_CAST SIG_DFL
);
338 /* We only count IPv4, non-loopback interfaces here. */
339 while (iface_count_v4_nl() == 0) {
344 CatchSignal( SIGTERM
, SIGNAL_CAST saved_handler
);
347 * We got an interface, go back to blocking term.
354 /**************************************************************************** **
355 Reload the services file.
356 **************************************************************************** */
358 static bool reload_nmbd_services(bool test
)
362 set_remote_machine_name("nmbd", False
);
365 const char *fname
= lp_configfile();
366 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
367 set_dyn_CONFIGFILE(fname
);
372 if ( test
&& !lp_file_list_changed() )
375 ret
= lp_load(get_dyn_CONFIGFILE(), True
, False
, False
, True
);
377 /* perhaps the config filename is now set */
379 DEBUG( 3, ( "services not loaded\n" ) );
380 reload_nmbd_services( True
);
386 /**************************************************************************** **
387 * React on 'smbcontrol nmbd reload-config' in the same way as to SIGHUP
388 **************************************************************************** */
390 static void msg_reload_nmbd_services(struct messaging_context
*msg
,
393 struct server_id server_id
,
396 write_browse_list( 0, True
);
397 dump_all_namelists();
398 reload_nmbd_services( True
);
400 reload_interfaces(0);
403 static void msg_nmbd_send_packet(struct messaging_context
*msg
,
406 struct server_id src
,
409 struct packet_struct
*p
= (struct packet_struct
*)data
->data
;
410 struct subnet_record
*subrec
;
411 struct sockaddr_storage ss
;
412 const struct sockaddr_storage
*pss
;
413 const struct in_addr
*local_ip
;
415 DEBUG(10, ("Received send_packet from %u\n", (unsigned int)procid_to_pid(&src
)));
417 if (data
->length
!= sizeof(struct packet_struct
)) {
418 DEBUG(2, ("Discarding invalid packet length from %u\n",
419 (unsigned int)procid_to_pid(&src
)));
423 if ((p
->packet_type
!= NMB_PACKET
) &&
424 (p
->packet_type
!= DGRAM_PACKET
)) {
425 DEBUG(2, ("Discarding invalid packet type from %u: %d\n",
426 (unsigned int)procid_to_pid(&src
), p
->packet_type
));
430 in_addr_to_sockaddr_storage(&ss
, p
->ip
);
431 pss
= iface_ip((struct sockaddr
*)&ss
);
434 DEBUG(2, ("Could not find ip for packet from %u\n",
435 (unsigned int)procid_to_pid(&src
)));
439 local_ip
= &((const struct sockaddr_in
*)pss
)->sin_addr
;
440 subrec
= FIRST_SUBNET
;
442 p
->fd
= (p
->packet_type
== NMB_PACKET
) ?
443 subrec
->nmb_sock
: subrec
->dgram_sock
;
445 for (subrec
= FIRST_SUBNET
; subrec
!= NULL
;
446 subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
447 if (ip_equal_v4(*local_ip
, subrec
->myip
)) {
448 p
->fd
= (p
->packet_type
== NMB_PACKET
) ?
449 subrec
->nmb_sock
: subrec
->dgram_sock
;
454 if (p
->packet_type
== DGRAM_PACKET
) {
456 p
->packet
.dgram
.header
.source_ip
.s_addr
= local_ip
->s_addr
;
457 p
->packet
.dgram
.header
.source_port
= 138;
463 /**************************************************************************** **
464 The main select loop.
465 **************************************************************************** */
467 static void process(void)
472 time_t t
= time(NULL
);
473 TALLOC_CTX
*frame
= talloc_stackframe();
476 * Check all broadcast subnets to see if
477 * we need to run an election on any of them.
481 run_election
= check_elections();
484 * Read incoming UDP packets.
488 if(listen_for_packets(run_election
)) {
494 * Process all incoming packets
495 * read above. This calls the success and
496 * failure functions registered when response
497 * packets arrrive, and also deals with request
498 * packets from other sources.
505 * Run any elections - initiate becoming
506 * a local master browser if we have won.
513 * Send out any broadcast announcements
514 * of our server names. This also announces
515 * the workgroup name if we are a local
517 * (nmbd_sendannounce.c)
520 announce_my_server_names(t
);
523 * Send out any LanMan broadcast announcements
524 * of our server names.
525 * (nmbd_sendannounce.c)
528 announce_my_lm_server_names(t
);
531 * If we are a local master browser, periodically
532 * announce ourselves to the domain master browser.
533 * This also deals with syncronising the domain master
534 * browser server lists with ourselves as a local
536 * (nmbd_sendannounce.c)
539 announce_myself_to_domain_master_browser(t
);
542 * Fullfill any remote announce requests.
543 * (nmbd_sendannounce.c)
549 * Fullfill any remote browse sync announce requests.
550 * (nmbd_sendannounce.c)
553 browse_sync_remote(t
);
556 * Scan the broadcast subnets, and WINS client
557 * namelists and refresh any that need refreshing.
564 * Scan the subnet namelists and server lists and
565 * expire thos that have timed out.
569 expire_names_and_servers(t
);
572 * Write out a snapshot of our current browse list into
573 * the browse.dat file. This is used by smbd to service
574 * incoming NetServerEnum calls - used to synchronise
575 * browse lists over subnets.
576 * (nmbd_serverlistdb.c)
579 write_browse_list(t
, False
);
582 * If we are a domain master browser, we have a list of
583 * local master browsers we should synchronise browse
584 * lists with (these are added by an incoming local
585 * master browser announcement packet). Expire any of
586 * these that are no longer current, and pull the server
587 * lists from each of these known local master browsers.
588 * (nmbd_browsesync.c)
591 dmb_expire_and_sync_browser_lists(t
);
594 * Check that there is a local master browser for our
595 * workgroup for all our broadcast subnets. If one
596 * is not found, start an election (which we ourselves
597 * may or may not participate in, depending on the
598 * setting of the 'local master' parameter.
602 check_master_browser_exists(t
);
605 * If we are configured as a logon server, attempt to
606 * register the special NetBIOS names to become such
607 * (WORKGROUP<1c> name) on all broadcast subnets and
608 * with the WINS server (if used). If we are configured
609 * to become a domain master browser, attempt to register
610 * the special NetBIOS name (WORKGROUP<1b> name) to
612 * (nmbd_become_dmb.c)
618 * If we are a WINS server, do any timer dependent
619 * processing required.
620 * (nmbd_winsserver.c)
623 initiate_wins_processing(t
);
626 * If we are a domain master browser, attempt to contact the
627 * WINS server to get a list of all known WORKGROUPS/DOMAINS.
628 * This will only work to a Samba WINS server.
629 * (nmbd_browsesync.c)
632 if (lp_enhanced_browsing())
633 collect_all_workgroup_names_from_wins_server(t
);
636 * Go through the response record queue and time out or re-transmit
637 * and expired entries.
641 retransmit_or_expire_response_records(t
);
644 * check to see if any remote browse sync child processes have completed
647 sync_check_completion();
650 * regularly sync with any other DMBs we know about
653 if (lp_enhanced_browsing())
657 * clear the unexpected packet queue
662 /* check for new network interfaces */
664 reload_interfaces(t
);
666 /* free up temp memory */
671 /**************************************************************************** **
672 Open the socket communication.
673 **************************************************************************** */
675 static bool open_sockets(bool isdaemon
, int port
)
677 struct sockaddr_storage ss
;
678 const char *sock_addr
= lp_socket_address();
681 * The sockets opened here will be used to receive broadcast
682 * packets *only*. Interface specific sockets are opened in
683 * make_subnet() in namedbsubnet.c. Thus we bind to the
684 * address "0.0.0.0". The parameter 'socket address' is
688 if (!interpret_string_addr(&ss
, sock_addr
,
689 AI_NUMERICHOST
|AI_PASSIVE
)) {
690 DEBUG(0,("open_sockets: unable to get socket address "
691 "from string %s", sock_addr
));
694 if (ss
.ss_family
!= AF_INET
) {
695 DEBUG(0,("open_sockets: unable to use IPv6 socket"
702 ClientNMB
= open_socket_in(SOCK_DGRAM
, port
,
709 if (ClientNMB
== -1) {
713 ClientDGRAM
= open_socket_in(SOCK_DGRAM
, DGRAM_PORT
,
717 if (ClientDGRAM
== -1) {
718 if (ClientNMB
!= 0) {
724 /* we are never interested in SIGPIPE */
725 BlockSignals(True
,SIGPIPE
);
727 set_socket_options( ClientNMB
, "SO_BROADCAST" );
728 set_socket_options( ClientDGRAM
, "SO_BROADCAST" );
730 /* Ensure we're non-blocking. */
731 set_blocking( ClientNMB
, False
);
732 set_blocking( ClientDGRAM
, False
);
734 DEBUG( 3, ( "open_sockets: Broadcast sockets opened.\n" ) );
738 /**************************************************************************** **
740 **************************************************************************** */
742 int main(int argc
, const char *argv
[])
744 static bool is_daemon
;
745 static bool opt_interactive
;
746 static bool Fork
= true;
747 static bool no_process_group
;
748 static bool log_stdout
;
750 char *p_lmhosts
= NULL
;
756 OPT_NO_PROCESS_GROUP
,
759 struct poptOption long_options
[] = {
761 {"daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon(default)" },
762 {"interactive", 'i', POPT_ARG_NONE
, NULL
, OPT_INTERACTIVE
, "Run interactive (not a daemon)" },
763 {"foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Run daemon in foreground (for daemontools & etc)" },
764 {"no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
765 {"log-stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
766 {"hosts", 'H', POPT_ARG_STRING
, &p_lmhosts
, 'H', "Load a netbios hosts file"},
767 {"port", 'p', POPT_ARG_INT
, &global_nmb_port
, NMB_PORT
, "Listen on the specified port" },
771 TALLOC_CTX
*frame
= talloc_stackframe(); /* Setup tos. */
775 global_nmb_port
= NMB_PORT
;
777 pc
= poptGetContext("nmbd", argc
, argv
, long_options
, 0);
778 while ((opt
= poptGetNextOpt(pc
)) != -1) {
783 case OPT_INTERACTIVE
:
784 opt_interactive
= true;
789 case OPT_NO_PROCESS_GROUP
:
790 no_process_group
= true;
796 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
797 poptBadOption(pc
, 0), poptStrerror(opt
));
798 poptPrintUsage(pc
, stderr
, 0);
804 global_in_nmbd
= true;
806 StartupTime
= time(NULL
);
808 sys_srandom(time(NULL
) ^ sys_getpid());
810 if (!override_logfile
) {
812 if (asprintf(&lfile
, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
815 lp_set_logfile(lfile
);
819 fault_setup((void (*)(void *))fault_continue
);
820 dump_core_setup("nmbd");
822 /* POSIX demands that signals are inherited. If the invoking process has
823 * these signals masked, we will have problems, as we won't receive them. */
824 BlockSignals(False
, SIGHUP
);
825 BlockSignals(False
, SIGUSR1
);
826 BlockSignals(False
, SIGTERM
);
829 /* we are never interested in SIGFPE */
830 BlockSignals(True
,SIGFPE
);
833 /* We no longer use USR2... */
835 BlockSignals(True
, SIGUSR2
);
838 if ( opt_interactive
) {
843 if ( log_stdout
&& Fork
) {
844 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
848 setup_logging( argv
[0], log_stdout
);
852 DEBUG(0,("nmbd version %s started.\n", samba_version_string()));
853 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
855 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
856 DEBUG(0, ("error opening config file\n"));
860 if (nmbd_messaging_context() == NULL
) {
864 if ( !reload_nmbd_services(False
) )
870 reload_nmbd_services( True
);
872 if (strequal(lp_workgroup(),"*")) {
873 DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
879 if (!is_daemon
&& !is_a_socket(0)) {
880 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
884 if (is_daemon
&& !opt_interactive
) {
885 DEBUG( 2, ( "Becoming a daemon.\n" ) );
886 become_daemon(Fork
, no_process_group
);
891 * If we're interactive we want to set our own process group for
894 if (opt_interactive
&& !no_process_group
)
895 setpgid( (pid_t
)0, (pid_t
)0 );
898 if (nmbd_messaging_context() == NULL
) {
903 /* Setup the async dns. We do it here so it doesn't have all the other
904 stuff initialised and thus chewing memory and sockets */
905 if(lp_we_are_a_wins_server() && lp_dns_proxy()) {
910 if (!directory_exist(lp_lockdir())) {
911 mkdir(lp_lockdir(), 0755);
914 pidfile_create("nmbd");
916 if (!reinit_after_fork(nmbd_messaging_context(),
917 nmbd_event_context(), false)) {
918 DEBUG(0,("reinit_after_fork() failed\n"));
922 if (!nmbd_setup_sig_term_handler())
924 if (!nmbd_setup_sig_hup_handler())
927 /* get broadcast messages */
928 claim_connection(NULL
,"",FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
);
930 messaging_register(nmbd_messaging_context(), NULL
,
931 MSG_FORCE_ELECTION
, nmbd_message_election
);
933 /* Until winsrepl is done. */
934 messaging_register(nmbd_messaging_context(), NULL
,
935 MSG_WINS_NEW_ENTRY
, nmbd_wins_new_entry
);
937 messaging_register(nmbd_messaging_context(), NULL
,
938 MSG_SHUTDOWN
, nmbd_terminate
);
939 messaging_register(nmbd_messaging_context(), NULL
,
940 MSG_SMB_CONF_UPDATED
, msg_reload_nmbd_services
);
941 messaging_register(nmbd_messaging_context(), NULL
,
942 MSG_SEND_PACKET
, msg_nmbd_send_packet
);
946 DEBUG( 3, ( "Opening sockets %d\n", global_nmb_port
) );
948 if ( !open_sockets( is_daemon
, global_nmb_port
) ) {
949 kill_async_dns_child();
953 /* Determine all the IP addresses we have. */
956 /* Create an nmbd subnet record for each of the above. */
957 if( False
== create_subnets() ) {
958 DEBUG(0,("ERROR: Failed when creating subnet lists. Exiting.\n"));
959 kill_async_dns_child();
963 /* Load in any static local names. */
965 set_dyn_LMHOSTSFILE(p_lmhosts
);
967 load_lmhosts_file(get_dyn_LMHOSTSFILE());
968 DEBUG(3,("Loaded hosts file %s\n", get_dyn_LMHOSTSFILE()));
970 /* If we are acting as a WINS server, initialise data structures. */
971 if( !initialise_wins() ) {
972 DEBUG( 0, ( "nmbd: Failed when initialising WINS server.\n" ) );
973 kill_async_dns_child();
978 * Register nmbd primary workgroup and nmbd names on all
979 * the broadcast subnets, and on the WINS server (if specified).
980 * Also initiate the startup of our primary workgroup (start
981 * elections if we are setup as being able to be a local
985 if( False
== register_my_workgroup_and_names() ) {
986 DEBUG(0,("ERROR: Failed when creating my my workgroup. Exiting.\n"));
987 kill_async_dns_child();
996 kill_async_dns_child();