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/>.
24 #include "librpc/gen_ndr/messaging.h"
28 int global_nmb_port
= -1;
30 extern bool rescan_listen_set
;
31 extern bool global_in_nmbd
;
33 extern bool override_logfile
;
35 /* have we found LanMan clients yet? */
36 bool found_lm_clients
= False
;
38 /* what server type are we currently */
40 time_t StartupTime
= 0;
42 struct event_context
*nmbd_event_context(void)
44 static struct event_context
*ctx
;
46 if (!ctx
&& !(ctx
= event_context_init(NULL
))) {
47 smb_panic("Could not init nmbd event context");
52 struct messaging_context
*nmbd_messaging_context(void)
54 static struct messaging_context
*ctx
;
57 ctx
= messaging_init(NULL
, procid_self(),
58 nmbd_event_context());
61 DEBUG(0, ("Could not init nmbd messaging context.\n"));
66 /**************************************************************************** **
67 Handle a SIGTERM in band.
68 **************************************************************************** */
70 static void terminate(void)
72 DEBUG(0,("Got SIGTERM: going down...\n"));
74 /* Write out wins.dat file if samba is a WINS server */
75 wins_write_database(0,False
);
77 /* Remove all SELF registered names from WINS */
80 /* Announce all server entries as 0 time-to-live, 0 type. */
81 announce_my_servers_removed();
83 /* If there was an async dns child - kill it. */
84 kill_async_dns_child();
87 serverid_deregister(procid_self());
94 static void nmbd_sig_term_handler(struct tevent_context
*ev
,
95 struct tevent_signal
*se
,
104 static bool nmbd_setup_sig_term_handler(void)
106 struct tevent_signal
*se
;
108 se
= tevent_add_signal(nmbd_event_context(),
109 nmbd_event_context(),
111 nmbd_sig_term_handler
,
114 DEBUG(0,("failed to setup SIGTERM handler"));
121 static void msg_reload_nmbd_services(struct messaging_context
*msg
,
124 struct server_id server_id
,
127 static void nmbd_sig_hup_handler(struct tevent_context
*ev
,
128 struct tevent_signal
*se
,
134 DEBUG(0,("Got SIGHUP dumping debug info.\n"));
135 msg_reload_nmbd_services(nmbd_messaging_context(),
136 NULL
, MSG_SMB_CONF_UPDATED
,
137 procid_self(), NULL
);
140 static bool nmbd_setup_sig_hup_handler(void)
142 struct tevent_signal
*se
;
144 se
= tevent_add_signal(nmbd_event_context(),
145 nmbd_event_context(),
147 nmbd_sig_hup_handler
,
150 DEBUG(0,("failed to setup SIGHUP handler"));
157 /**************************************************************************** **
158 Handle a SHUTDOWN message from smbcontrol.
159 **************************************************************************** */
161 static void nmbd_terminate(struct messaging_context
*msg
,
164 struct server_id server_id
,
170 /**************************************************************************** **
171 Possibly continue after a fault.
172 **************************************************************************** */
174 static void fault_continue(void)
179 /**************************************************************************** **
180 Expire old names from the namelist and server list.
181 **************************************************************************** */
183 static void expire_names_and_servers(time_t t
)
185 static time_t lastrun
= 0;
189 if ( t
< (lastrun
+ 5) )
194 * Expire any timed out names on all the broadcast
195 * subnets and those registered with the WINS server.
196 * (nmbd_namelistdb.c)
202 * Go through all the broadcast subnets and for each
203 * workgroup known on that subnet remove any expired
204 * server names. If a workgroup has an empty serverlist
205 * and has itself timed out then remove the workgroup.
206 * (nmbd_workgroupdb.c)
209 expire_workgroups_and_servers(t
);
212 /************************************************************************** **
213 Reload the list of network interfaces.
214 Doesn't return until a network interface is up.
215 ************************************************************************** */
217 static void reload_interfaces(time_t t
)
221 bool print_waiting_msg
= true;
222 struct subnet_record
*subrec
;
224 if (t
&& ((t
- lastt
) < NMBD_INTERFACES_RELOAD
)) {
230 if (!interfaces_changed()) {
236 /* the list of probed interfaces has changed, we may need to add/remove
240 /* find any interfaces that need adding */
241 for (n
=iface_count() - 1; n
>= 0; n
--) {
242 char str
[INET6_ADDRSTRLEN
];
243 const struct interface
*iface
= get_interface(n
);
244 struct in_addr ip
, nmask
;
247 DEBUG(2,("reload_interfaces: failed to get interface %d\n", n
));
251 /* Ensure we're only dealing with IPv4 here. */
252 if (iface
->ip
.ss_family
!= AF_INET
) {
253 DEBUG(2,("reload_interfaces: "
254 "ignoring non IPv4 interface.\n"));
258 ip
= ((struct sockaddr_in
*)(void *)&iface
->ip
)->sin_addr
;
259 nmask
= ((struct sockaddr_in
*)(void *)
260 &iface
->netmask
)->sin_addr
;
263 * We don't want to add a loopback interface, in case
264 * someone has added 127.0.0.1 for smbd, nmbd needs to
265 * ignore it here. JRA.
268 if (is_loopback_addr((struct sockaddr
*)(void *)&iface
->ip
)) {
269 DEBUG(2,("reload_interfaces: Ignoring loopback "
271 print_sockaddr(str
, sizeof(str
), &iface
->ip
) ));
275 for (subrec
=subnetlist
; subrec
; subrec
=subrec
->next
) {
276 if (ip_equal_v4(ip
, subrec
->myip
) &&
277 ip_equal_v4(nmask
, subrec
->mask_ip
)) {
283 /* it wasn't found! add it */
284 DEBUG(2,("Found new interface %s\n",
286 sizeof(str
), &iface
->ip
) ));
287 subrec
= make_normal_subnet(iface
);
289 register_my_workgroup_one_subnet(subrec
);
293 /* find any interfaces that need deleting */
294 for (subrec
=subnetlist
; subrec
; subrec
=subrec
->next
) {
295 for (n
=iface_count() - 1; n
>= 0; n
--) {
296 struct interface
*iface
= get_interface(n
);
297 struct in_addr ip
, nmask
;
301 /* Ensure we're only dealing with IPv4 here. */
302 if (iface
->ip
.ss_family
!= AF_INET
) {
303 DEBUG(2,("reload_interfaces: "
304 "ignoring non IPv4 interface.\n"));
307 ip
= ((struct sockaddr_in
*)(void *)
308 &iface
->ip
)->sin_addr
;
309 nmask
= ((struct sockaddr_in
*)(void *)
310 &iface
->netmask
)->sin_addr
;
311 if (ip_equal_v4(ip
, subrec
->myip
) &&
312 ip_equal_v4(nmask
, subrec
->mask_ip
)) {
317 /* oops, an interface has disapeared. This is
318 tricky, we don't dare actually free the
319 interface as it could be being used, so
320 instead we just wear the memory leak and
321 remove it from the list of interfaces without
323 DEBUG(2,("Deleting dead interface %s\n",
324 inet_ntoa(subrec
->myip
)));
325 close_subnet(subrec
);
329 rescan_listen_set
= True
;
331 /* We need to wait if there are no subnets... */
332 if (FIRST_SUBNET
== NULL
) {
333 void (*saved_handler
)(int);
335 if (print_waiting_msg
) {
336 DEBUG(0,("reload_interfaces: "
337 "No subnets to listen to. Waiting..\n"));
338 print_waiting_msg
= false;
342 * Whilst we're waiting for an interface, allow SIGTERM to
345 saved_handler
= CatchSignal(SIGTERM
, SIG_DFL
);
347 /* We only count IPv4, non-loopback interfaces here. */
348 while (iface_count_v4_nl() == 0) {
353 CatchSignal(SIGTERM
, saved_handler
);
356 * We got an interface, go back to blocking term.
363 /**************************************************************************** **
364 Reload the services file.
365 **************************************************************************** */
367 static bool reload_nmbd_services(bool test
)
371 set_remote_machine_name("nmbd", False
);
374 const char *fname
= lp_configfile();
375 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
376 set_dyn_CONFIGFILE(fname
);
381 if ( test
&& !lp_file_list_changed() )
384 ret
= lp_load(get_dyn_CONFIGFILE(), True
, False
, False
, True
);
386 /* perhaps the config filename is now set */
388 DEBUG( 3, ( "services not loaded\n" ) );
389 reload_nmbd_services( True
);
395 /**************************************************************************** **
396 * React on 'smbcontrol nmbd reload-config' in the same way as to SIGHUP
397 **************************************************************************** */
399 static void msg_reload_nmbd_services(struct messaging_context
*msg
,
402 struct server_id server_id
,
405 write_browse_list( 0, True
);
406 dump_all_namelists();
407 reload_nmbd_services( True
);
409 reload_interfaces(0);
412 static void msg_nmbd_send_packet(struct messaging_context
*msg
,
415 struct server_id src
,
418 struct packet_struct
*p
= (struct packet_struct
*)data
->data
;
419 struct subnet_record
*subrec
;
420 struct sockaddr_storage ss
;
421 const struct sockaddr_storage
*pss
;
422 const struct in_addr
*local_ip
;
424 DEBUG(10, ("Received send_packet from %u\n", (unsigned int)procid_to_pid(&src
)));
426 if (data
->length
!= sizeof(struct packet_struct
)) {
427 DEBUG(2, ("Discarding invalid packet length from %u\n",
428 (unsigned int)procid_to_pid(&src
)));
432 if ((p
->packet_type
!= NMB_PACKET
) &&
433 (p
->packet_type
!= DGRAM_PACKET
)) {
434 DEBUG(2, ("Discarding invalid packet type from %u: %d\n",
435 (unsigned int)procid_to_pid(&src
), p
->packet_type
));
439 in_addr_to_sockaddr_storage(&ss
, p
->ip
);
440 pss
= iface_ip((struct sockaddr
*)(void *)&ss
);
443 DEBUG(2, ("Could not find ip for packet from %u\n",
444 (unsigned int)procid_to_pid(&src
)));
448 local_ip
= &((const struct sockaddr_in
*)pss
)->sin_addr
;
449 subrec
= FIRST_SUBNET
;
452 p
->send_fd
= (p
->packet_type
== NMB_PACKET
) ?
453 subrec
->nmb_sock
: subrec
->dgram_sock
;
455 for (subrec
= FIRST_SUBNET
; subrec
!= NULL
;
456 subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
457 if (ip_equal_v4(*local_ip
, subrec
->myip
)) {
458 p
->send_fd
= (p
->packet_type
== NMB_PACKET
) ?
459 subrec
->nmb_sock
: subrec
->dgram_sock
;
464 if (p
->packet_type
== DGRAM_PACKET
) {
466 p
->packet
.dgram
.header
.source_ip
.s_addr
= local_ip
->s_addr
;
467 p
->packet
.dgram
.header
.source_port
= 138;
473 /**************************************************************************** **
474 The main select loop.
475 **************************************************************************** */
477 static void process(void)
482 time_t t
= time(NULL
);
483 TALLOC_CTX
*frame
= talloc_stackframe();
486 * Check all broadcast subnets to see if
487 * we need to run an election on any of them.
491 run_election
= check_elections();
494 * Read incoming UDP packets.
498 if(listen_for_packets(run_election
)) {
504 * Process all incoming packets
505 * read above. This calls the success and
506 * failure functions registered when response
507 * packets arrrive, and also deals with request
508 * packets from other sources.
515 * Run any elections - initiate becoming
516 * a local master browser if we have won.
523 * Send out any broadcast announcements
524 * of our server names. This also announces
525 * the workgroup name if we are a local
527 * (nmbd_sendannounce.c)
530 announce_my_server_names(t
);
533 * Send out any LanMan broadcast announcements
534 * of our server names.
535 * (nmbd_sendannounce.c)
538 announce_my_lm_server_names(t
);
541 * If we are a local master browser, periodically
542 * announce ourselves to the domain master browser.
543 * This also deals with syncronising the domain master
544 * browser server lists with ourselves as a local
546 * (nmbd_sendannounce.c)
549 announce_myself_to_domain_master_browser(t
);
552 * Fullfill any remote announce requests.
553 * (nmbd_sendannounce.c)
559 * Fullfill any remote browse sync announce requests.
560 * (nmbd_sendannounce.c)
563 browse_sync_remote(t
);
566 * Scan the broadcast subnets, and WINS client
567 * namelists and refresh any that need refreshing.
574 * Scan the subnet namelists and server lists and
575 * expire thos that have timed out.
579 expire_names_and_servers(t
);
582 * Write out a snapshot of our current browse list into
583 * the browse.dat file. This is used by smbd to service
584 * incoming NetServerEnum calls - used to synchronise
585 * browse lists over subnets.
586 * (nmbd_serverlistdb.c)
589 write_browse_list(t
, False
);
592 * If we are a domain master browser, we have a list of
593 * local master browsers we should synchronise browse
594 * lists with (these are added by an incoming local
595 * master browser announcement packet). Expire any of
596 * these that are no longer current, and pull the server
597 * lists from each of these known local master browsers.
598 * (nmbd_browsesync.c)
601 dmb_expire_and_sync_browser_lists(t
);
604 * Check that there is a local master browser for our
605 * workgroup for all our broadcast subnets. If one
606 * is not found, start an election (which we ourselves
607 * may or may not participate in, depending on the
608 * setting of the 'local master' parameter.
612 check_master_browser_exists(t
);
615 * If we are configured as a logon server, attempt to
616 * register the special NetBIOS names to become such
617 * (WORKGROUP<1c> name) on all broadcast subnets and
618 * with the WINS server (if used). If we are configured
619 * to become a domain master browser, attempt to register
620 * the special NetBIOS name (WORKGROUP<1b> name) to
622 * (nmbd_become_dmb.c)
628 * If we are a WINS server, do any timer dependent
629 * processing required.
630 * (nmbd_winsserver.c)
633 initiate_wins_processing(t
);
636 * If we are a domain master browser, attempt to contact the
637 * WINS server to get a list of all known WORKGROUPS/DOMAINS.
638 * This will only work to a Samba WINS server.
639 * (nmbd_browsesync.c)
642 if (lp_enhanced_browsing())
643 collect_all_workgroup_names_from_wins_server(t
);
646 * Go through the response record queue and time out or re-transmit
647 * and expired entries.
651 retransmit_or_expire_response_records(t
);
654 * check to see if any remote browse sync child processes have completed
657 sync_check_completion();
660 * regularly sync with any other DMBs we know about
663 if (lp_enhanced_browsing())
667 * clear the unexpected packet queue
672 /* check for new network interfaces */
674 reload_interfaces(t
);
676 /* free up temp memory */
681 /**************************************************************************** **
682 Open the socket communication.
683 **************************************************************************** */
685 static bool open_sockets(bool isdaemon
, int port
)
687 struct sockaddr_storage ss
;
688 const char *sock_addr
= lp_socket_address();
691 * The sockets opened here will be used to receive broadcast
692 * packets *only*. Interface specific sockets are opened in
693 * make_subnet() in namedbsubnet.c. Thus we bind to the
694 * address "0.0.0.0". The parameter 'socket address' is
698 if (!interpret_string_addr(&ss
, sock_addr
,
699 AI_NUMERICHOST
|AI_PASSIVE
)) {
700 DEBUG(0,("open_sockets: unable to get socket address "
701 "from string %s", sock_addr
));
704 if (ss
.ss_family
!= AF_INET
) {
705 DEBUG(0,("open_sockets: unable to use IPv6 socket"
712 ClientNMB
= open_socket_in(SOCK_DGRAM
, port
,
719 if (ClientNMB
== -1) {
723 ClientDGRAM
= open_socket_in(SOCK_DGRAM
, DGRAM_PORT
,
727 if (ClientDGRAM
== -1) {
728 if (ClientNMB
!= 0) {
734 /* we are never interested in SIGPIPE */
735 BlockSignals(True
,SIGPIPE
);
737 set_socket_options( ClientNMB
, "SO_BROADCAST" );
738 set_socket_options( ClientDGRAM
, "SO_BROADCAST" );
740 /* Ensure we're non-blocking. */
741 set_blocking( ClientNMB
, False
);
742 set_blocking( ClientDGRAM
, False
);
744 DEBUG( 3, ( "open_sockets: Broadcast sockets opened.\n" ) );
748 /**************************************************************************** **
750 **************************************************************************** */
752 int main(int argc
, const char *argv
[])
754 static bool is_daemon
;
755 static bool opt_interactive
;
756 static bool Fork
= true;
757 static bool no_process_group
;
758 static bool log_stdout
;
760 char *p_lmhosts
= NULL
;
766 OPT_NO_PROCESS_GROUP
,
769 struct poptOption long_options
[] = {
771 {"daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon(default)" },
772 {"interactive", 'i', POPT_ARG_NONE
, NULL
, OPT_INTERACTIVE
, "Run interactive (not a daemon)" },
773 {"foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Run daemon in foreground (for daemontools & etc)" },
774 {"no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
775 {"log-stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
776 {"hosts", 'H', POPT_ARG_STRING
, &p_lmhosts
, 'H', "Load a netbios hosts file"},
777 {"port", 'p', POPT_ARG_INT
, &global_nmb_port
, NMB_PORT
, "Listen on the specified port" },
781 TALLOC_CTX
*frame
= talloc_stackframe(); /* Setup tos. */
786 global_nmb_port
= NMB_PORT
;
788 pc
= poptGetContext("nmbd", argc
, argv
, long_options
, 0);
789 while ((opt
= poptGetNextOpt(pc
)) != -1) {
794 case OPT_INTERACTIVE
:
795 opt_interactive
= true;
800 case OPT_NO_PROCESS_GROUP
:
801 no_process_group
= true;
807 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
808 poptBadOption(pc
, 0), poptStrerror(opt
));
809 poptPrintUsage(pc
, stderr
, 0);
815 global_in_nmbd
= true;
817 StartupTime
= time(NULL
);
819 sys_srandom(time(NULL
) ^ sys_getpid());
821 if (!override_logfile
) {
823 if (asprintf(&lfile
, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
826 lp_set_logfile(lfile
);
830 fault_setup((void (*)(void *))fault_continue
);
831 dump_core_setup("nmbd");
833 /* POSIX demands that signals are inherited. If the invoking process has
834 * these signals masked, we will have problems, as we won't receive them. */
835 BlockSignals(False
, SIGHUP
);
836 BlockSignals(False
, SIGUSR1
);
837 BlockSignals(False
, SIGTERM
);
840 /* we are never interested in SIGFPE */
841 BlockSignals(True
,SIGFPE
);
844 /* We no longer use USR2... */
846 BlockSignals(True
, SIGUSR2
);
849 if ( opt_interactive
) {
854 if ( log_stdout
&& Fork
) {
855 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
859 setup_logging( argv
[0], log_stdout
);
863 DEBUG(0,("nmbd version %s started.\n", samba_version_string()));
864 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
866 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
867 DEBUG(0, ("error opening config file\n"));
871 if (nmbd_messaging_context() == NULL
) {
875 if ( !reload_nmbd_services(False
) )
881 reload_nmbd_services( True
);
883 if (strequal(lp_workgroup(),"*")) {
884 DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
890 if (!is_daemon
&& !is_a_socket(0)) {
891 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
895 if (is_daemon
&& !opt_interactive
) {
896 DEBUG( 2, ( "Becoming a daemon.\n" ) );
897 become_daemon(Fork
, no_process_group
, log_stdout
);
902 * If we're interactive we want to set our own process group for
905 if (opt_interactive
&& !no_process_group
)
906 setpgid( (pid_t
)0, (pid_t
)0 );
909 if (nmbd_messaging_context() == NULL
) {
914 /* Setup the async dns. We do it here so it doesn't have all the other
915 stuff initialised and thus chewing memory and sockets */
916 if(lp_we_are_a_wins_server() && lp_dns_proxy()) {
921 if (!directory_exist(lp_lockdir())) {
922 mkdir(lp_lockdir(), 0755);
925 pidfile_create("nmbd");
927 status
= reinit_after_fork(nmbd_messaging_context(),
928 nmbd_event_context(),
929 procid_self(), false);
931 if (!NT_STATUS_IS_OK(status
)) {
932 DEBUG(0,("reinit_after_fork() failed\n"));
936 if (!nmbd_setup_sig_term_handler())
938 if (!nmbd_setup_sig_hup_handler())
941 /* get broadcast messages */
943 if (!serverid_register(procid_self(),
944 FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
)) {
945 DEBUG(1, ("Could not register myself in serverid.tdb\n"));
949 messaging_register(nmbd_messaging_context(), NULL
,
950 MSG_FORCE_ELECTION
, nmbd_message_election
);
952 /* Until winsrepl is done. */
953 messaging_register(nmbd_messaging_context(), NULL
,
954 MSG_WINS_NEW_ENTRY
, nmbd_wins_new_entry
);
956 messaging_register(nmbd_messaging_context(), NULL
,
957 MSG_SHUTDOWN
, nmbd_terminate
);
958 messaging_register(nmbd_messaging_context(), NULL
,
959 MSG_SMB_CONF_UPDATED
, msg_reload_nmbd_services
);
960 messaging_register(nmbd_messaging_context(), NULL
,
961 MSG_SEND_PACKET
, msg_nmbd_send_packet
);
965 DEBUG( 3, ( "Opening sockets %d\n", global_nmb_port
) );
967 if ( !open_sockets( is_daemon
, global_nmb_port
) ) {
968 kill_async_dns_child();
972 /* Determine all the IP addresses we have. */
975 /* Create an nmbd subnet record for each of the above. */
976 if( False
== create_subnets() ) {
977 DEBUG(0,("ERROR: Failed when creating subnet lists. Exiting.\n"));
978 kill_async_dns_child();
982 /* Load in any static local names. */
984 set_dyn_LMHOSTSFILE(p_lmhosts
);
986 load_lmhosts_file(get_dyn_LMHOSTSFILE());
987 DEBUG(3,("Loaded hosts file %s\n", get_dyn_LMHOSTSFILE()));
989 /* If we are acting as a WINS server, initialise data structures. */
990 if( !initialise_wins() ) {
991 DEBUG( 0, ( "nmbd: Failed when initialising WINS server.\n" ) );
992 kill_async_dns_child();
997 * Register nmbd primary workgroup and nmbd names on all
998 * the broadcast subnets, and on the WINS server (if specified).
999 * Also initiate the startup of our primary workgroup (start
1000 * elections if we are setup as being able to be a local
1004 if( False
== register_my_workgroup_and_names() ) {
1005 DEBUG(0,("ERROR: Failed when creating my my workgroup. Exiting.\n"));
1006 kill_async_dns_child();
1010 if (!initialize_nmbd_proxy_logon()) {
1011 DEBUG(0,("ERROR: Failed setup nmbd_proxy_logon.\n"));
1012 kill_async_dns_child();
1021 kill_async_dns_child();