1996-06-04 10:42:03 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1999-12-13 16:27:58 +03:00
NBT netbios routines and daemon - version 2
1998-01-22 16:27:43 +03:00
Copyright ( C ) Andrew Tridgell 1994 - 1998
2002-03-01 05:57:52 +03:00
Copyright ( C ) Jeremy Allison 1997 - 2002
2003-04-14 07:30:20 +04:00
Copyright ( C ) Jelmer Vernooij 2002 , 2003 ( Conversion to popt )
1996-06-04 10:42:03 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1996-06-04 10:42:03 +04:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1996-06-04 10:42:03 +04:00
*/
# include "includes.h"
1997-12-13 17:16:07 +03:00
int ClientNMB = - 1 ;
int ClientDGRAM = - 1 ;
1997-10-18 03:08:07 +04:00
int global_nmb_port = - 1 ;
1996-06-04 10:42:03 +04:00
2005-04-06 20:28:04 +04:00
extern BOOL rescan_listen_set ;
extern struct in_addr loopback_ip ;
1998-03-16 23:59:47 +03:00
extern BOOL global_in_nmbd ;
2004-09-21 13:07:42 +04:00
extern BOOL override_logfile ;
1997-12-16 12:20:34 +03:00
/* have we found LanMan clients yet? */
BOOL found_lm_clients = False ;
1996-06-04 10:42:03 +04:00
/* what server type are we currently */
1997-12-13 17:16:07 +03:00
time_t StartupTime = 0 ;
1996-06-04 10:42:03 +04:00
2007-05-15 17:44:11 +04:00
struct event_context * nmbd_event_context ( void )
{
static struct event_context * ctx ;
if ( ! ctx & & ! ( ctx = event_context_init ( NULL ) ) ) {
2007-06-16 01:58:49 +04:00
smb_panic ( " Could not init nmbd event context " ) ;
2007-05-15 17:44:11 +04:00
}
return ctx ;
}
struct messaging_context * nmbd_messaging_context ( void )
{
static struct messaging_context * ctx ;
if ( ! ctx & & ! ( ctx = messaging_init ( NULL , server_id_self ( ) ,
nmbd_event_context ( ) ) ) ) {
2007-06-16 01:58:49 +04:00
smb_panic ( " Could not init nmbd messaging context " ) ;
2007-05-15 17:44:11 +04:00
}
return ctx ;
}
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
2002-03-01 05:57:52 +03:00
Handle a SIGTERM in band .
1997-12-13 17:16:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-01 05:57:52 +03:00
static void terminate ( void )
1996-06-08 08:41:51 +04:00
{
2002-03-01 05:57:52 +03:00
DEBUG ( 0 , ( " Got SIGTERM: going down... \n " ) ) ;
1996-06-08 08:41:51 +04:00
2002-03-01 05:57:52 +03:00
/* Write out wins.dat file if samba is a WINS server */
2005-12-07 02:06:38 +03:00
wins_write_database ( 0 , False ) ;
1996-06-08 08:41:51 +04:00
2002-07-15 14:35:28 +04:00
/* Remove all SELF registered names from WINS */
release_wins_names ( ) ;
1996-06-08 08:41:51 +04:00
2002-03-01 05:57:52 +03:00
/* Announce all server entries as 0 time-to-live, 0 type. */
announce_my_servers_removed ( ) ;
1998-03-03 23:19:14 +03:00
2002-03-01 05:57:52 +03:00
/* If there was an async dns child - kill it. */
kill_async_dns_child ( ) ;
1997-12-24 12:30:56 +03:00
2002-03-01 05:57:52 +03:00
exit ( 0 ) ;
}
1996-06-08 08:41:51 +04:00
2002-03-29 16:58:32 +03:00
/**************************************************************************** **
Handle a SHUTDOWN message from smbcontrol .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-05-20 01:53:28 +04:00
static void nmbd_terminate ( struct messaging_context * msg ,
void * private_data ,
uint32_t msg_type ,
struct server_id server_id ,
DATA_BLOB * data )
2002-03-29 16:58:32 +03:00
{
terminate ( ) ;
}
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
2002-03-01 05:57:52 +03:00
Catch a SIGTERM signal .
1997-12-13 17:16:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-07-15 14:35:28 +04:00
static SIG_ATOMIC_T got_sig_term ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
static void sig_term ( int sig )
{
got_sig_term = 1 ;
2005-06-09 19:20:11 +04:00
sys_select_signal ( SIGTERM ) ;
2002-03-01 05:57:52 +03:00
}
1996-08-01 21:49:40 +04:00
2002-03-01 05:57:52 +03:00
/**************************************************************************** **
Catch a SIGHUP signal .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-07-29 07:08:05 +04:00
2002-07-15 14:35:28 +04:00
static SIG_ATOMIC_T reload_after_sighup ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
static void sig_hup ( int sig )
{
reload_after_sighup = 1 ;
2005-06-09 19:20:11 +04:00
sys_select_signal ( SIGHUP ) ;
2002-03-01 05:57:52 +03:00
}
1996-06-04 10:42:03 +04:00
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
2002-03-01 05:57:52 +03:00
Possibly continue after a fault .
1997-12-13 17:16:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-01 05:57:52 +03:00
1996-06-04 10:42:03 +04:00
static void fault_continue ( void )
{
2002-03-01 05:57:52 +03:00
dump_core ( ) ;
}
1996-06-04 10:42:03 +04:00
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
2002-03-01 05:57:52 +03:00
Expire old names from the namelist and server list .
1997-12-13 17:16:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-01 05:57:52 +03:00
1996-10-07 05:56:21 +04:00
static void expire_names_and_servers ( time_t t )
1996-06-04 10:42:03 +04:00
{
2002-03-01 05:57:52 +03:00
static time_t lastrun = 0 ;
1996-06-04 19:14:47 +04:00
2002-03-01 05:57:52 +03:00
if ( ! lastrun )
lastrun = t ;
if ( t < ( lastrun + 5 ) )
return ;
lastrun = t ;
1997-12-13 17:16:07 +03:00
2002-03-01 05:57:52 +03:00
/*
* Expire any timed out names on all the broadcast
* subnets and those registered with the WINS server .
* ( nmbd_namelistdb . c )
*/
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
expire_names ( t ) ;
1997-12-13 17:16:07 +03:00
2002-03-01 05:57:52 +03:00
/*
* Go through all the broadcast subnets and for each
* workgroup known on that subnet remove any expired
* server names . If a workgroup has an empty serverlist
* and has itself timed out then remove the workgroup .
* ( nmbd_workgroupdb . c )
*/
expire_workgroups_and_servers ( t ) ;
}
1999-12-13 16:27:58 +03:00
/************************************************************************** **
2002-03-01 05:57:52 +03:00
Reload the list of network interfaces .
1999-12-13 16:27:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-01 05:57:52 +03:00
2000-10-13 01:19:49 +04:00
static BOOL reload_interfaces ( time_t t )
1999-12-13 16:27:58 +03:00
{
static time_t lastt ;
int n ;
struct subnet_record * subrec ;
2000-10-13 01:19:49 +04:00
if ( t & & ( ( t - lastt ) < NMBD_INTERFACES_RELOAD ) ) return False ;
1999-12-13 16:27:58 +03:00
lastt = t ;
2000-10-13 01:19:49 +04:00
if ( ! interfaces_changed ( ) ) return False ;
1999-12-13 16:27:58 +03:00
/* the list of probed interfaces has changed, we may need to add/remove
some subnets */
load_interfaces ( ) ;
/* find any interfaces that need adding */
for ( n = iface_count ( ) - 1 ; n > = 0 ; n - - ) {
struct interface * iface = get_interface ( n ) ;
2000-03-30 01:30:52 +04:00
2006-06-28 04:01:28 +04:00
if ( ! iface ) {
DEBUG ( 2 , ( " reload_interfaces: failed to get interface %d \n " , n ) ) ;
continue ;
}
2000-03-30 01:30:52 +04:00
/*
* We don ' t want to add a loopback interface , in case
* someone has added 127.0 .0 .1 for smbd , nmbd needs to
* ignore it here . JRA .
*/
if ( ip_equal ( iface - > ip , loopback_ip ) ) {
DEBUG ( 2 , ( " reload_interfaces: Ignoring loopback interface %s \n " , inet_ntoa ( iface - > ip ) ) ) ;
continue ;
}
1999-12-13 16:27:58 +03:00
for ( subrec = subnetlist ; subrec ; subrec = subrec - > next ) {
if ( ip_equal ( iface - > ip , subrec - > myip ) & &
ip_equal ( iface - > nmask , subrec - > mask_ip ) ) break ;
}
2000-03-30 01:30:52 +04:00
1999-12-13 16:27:58 +03:00
if ( ! subrec ) {
/* it wasn't found! add it */
DEBUG ( 2 , ( " Found new interface %s \n " ,
inet_ntoa ( iface - > ip ) ) ) ;
subrec = make_normal_subnet ( iface ) ;
2003-08-27 05:25:01 +04:00
if ( subrec )
register_my_workgroup_one_subnet ( subrec ) ;
1999-12-13 16:27:58 +03:00
}
}
/* find any interfaces that need deleting */
for ( subrec = subnetlist ; subrec ; subrec = subrec - > next ) {
for ( n = iface_count ( ) - 1 ; n > = 0 ; n - - ) {
struct interface * iface = get_interface ( n ) ;
if ( ip_equal ( iface - > ip , subrec - > myip ) & &
ip_equal ( iface - > nmask , subrec - > mask_ip ) ) break ;
}
if ( n = = - 1 ) {
/* oops, an interface has disapeared. This is
tricky , we don ' t dare actually free the
interface as it could be being used , so
instead we just wear the memory leak and
remove it from the list of interfaces without
freeing it */
DEBUG ( 2 , ( " Deleting dead interface %s \n " ,
inet_ntoa ( subrec - > myip ) ) ) ;
close_subnet ( subrec ) ;
}
}
rescan_listen_set = True ;
2000-10-13 01:19:49 +04:00
/* We need to shutdown if there are no subnets... */
if ( FIRST_SUBNET = = NULL ) {
DEBUG ( 0 , ( " reload_interfaces: No subnets to listen to. Shutting down... \n " ) ) ;
return True ;
}
return False ;
1999-12-13 16:27:58 +03:00
}
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
2002-03-01 05:57:52 +03:00
Reload the services file .
1997-12-13 17:16:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-01 05:57:52 +03:00
2000-03-27 04:52:33 +04:00
static BOOL reload_nmbd_services ( BOOL test )
1996-06-04 10:42:03 +04:00
{
2002-03-01 05:57:52 +03:00
BOOL ret ;
1996-06-04 10:42:03 +04:00
2003-03-18 12:52:55 +03:00
set_remote_machine_name ( " nmbd " , False ) ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
if ( lp_loaded ( ) ) {
pstring fname ;
pstrcpy ( fname , lp_configfile ( ) ) ;
if ( file_exist ( fname , NULL ) & & ! strcsequal ( fname , dyn_CONFIGFILE ) ) {
pstrcpy ( dyn_CONFIGFILE , fname ) ;
test = False ;
}
}
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
if ( test & & ! lp_file_list_changed ( ) )
return ( True ) ;
1996-06-04 10:42:03 +04:00
2006-01-29 01:53:04 +03:00
ret = lp_load ( dyn_CONFIGFILE , True , False , False , True ) ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
/* perhaps the config filename is now set */
if ( ! test ) {
DEBUG ( 3 , ( " services not loaded \n " ) ) ;
reload_nmbd_services ( True ) ;
}
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
return ( ret ) ;
}
1996-06-04 10:42:03 +04:00
2003-07-15 21:21:21 +04:00
/**************************************************************************** **
* React on ' smbcontrol nmbd reload - config ' in the same way as to SIGHUP
* We use buf here to return BOOL result to process ( ) when reload_interfaces ( )
* detects that there are no subnets .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-08-23 05:59:14 +04:00
2007-05-20 01:53:28 +04:00
static void msg_reload_nmbd_services ( struct messaging_context * msg ,
void * private_data ,
uint32_t msg_type ,
struct server_id server_id ,
DATA_BLOB * data )
2003-07-15 21:21:21 +04:00
{
write_browse_list ( 0 , True ) ;
dump_all_namelists ( ) ;
reload_nmbd_services ( True ) ;
reopen_logs ( ) ;
2007-05-20 01:53:28 +04:00
if ( data - > data ) {
2003-07-15 21:21:21 +04:00
/* We were called from process() */
/* If reload_interfaces() returned True */
/* we need to shutdown if there are no subnets... */
/* pass this info back to process() */
2007-05-20 01:53:28 +04:00
* ( ( BOOL * ) data - > data ) = reload_interfaces ( 0 ) ;
2003-07-15 21:21:21 +04:00
}
}
2007-05-20 01:53:28 +04:00
static void msg_nmbd_send_packet ( struct messaging_context * msg ,
void * private_data ,
uint32_t msg_type ,
struct server_id src ,
DATA_BLOB * data )
2005-06-09 02:10:34 +04:00
{
2007-05-20 01:53:28 +04:00
struct packet_struct * p = ( struct packet_struct * ) data - > data ;
2005-06-09 02:10:34 +04:00
struct subnet_record * subrec ;
struct in_addr * local_ip ;
2005-09-30 21:13:37 +04:00
DEBUG ( 10 , ( " Received send_packet from %d \n " , procid_to_pid ( & src ) ) ) ;
2005-06-09 02:10:34 +04:00
2007-05-20 01:53:28 +04:00
if ( data - > length ! = sizeof ( struct packet_struct ) ) {
2005-09-30 21:13:37 +04:00
DEBUG ( 2 , ( " Discarding invalid packet length from %d \n " ,
procid_to_pid ( & src ) ) ) ;
2005-06-09 02:10:34 +04:00
return ;
}
if ( ( p - > packet_type ! = NMB_PACKET ) & &
( p - > packet_type ! = DGRAM_PACKET ) ) {
DEBUG ( 2 , ( " Discarding invalid packet type from %d: %d \n " ,
2005-09-30 21:13:37 +04:00
procid_to_pid ( & src ) , p - > packet_type ) ) ;
2005-06-09 02:10:34 +04:00
return ;
}
local_ip = iface_ip ( p - > ip ) ;
if ( local_ip = = NULL ) {
2005-09-30 21:13:37 +04:00
DEBUG ( 2 , ( " Could not find ip for packet from %d \n " ,
procid_to_pid ( & src ) ) ) ;
2005-06-09 02:10:34 +04:00
return ;
}
subrec = FIRST_SUBNET ;
p - > fd = ( p - > packet_type = = NMB_PACKET ) ?
subrec - > nmb_sock : subrec - > dgram_sock ;
for ( subrec = FIRST_SUBNET ; subrec ! = NULL ;
subrec = NEXT_SUBNET_EXCLUDING_UNICAST ( subrec ) ) {
if ( ip_equal ( * local_ip , subrec - > myip ) ) {
p - > fd = ( p - > packet_type = = NMB_PACKET ) ?
subrec - > nmb_sock : subrec - > dgram_sock ;
break ;
}
}
if ( p - > packet_type = = DGRAM_PACKET ) {
p - > port = 138 ;
p - > packet . dgram . header . source_ip . s_addr = local_ip - > s_addr ;
p - > packet . dgram . header . source_port = 138 ;
}
send_packet ( p ) ;
}
2003-07-15 21:21:21 +04:00
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
The main select loop .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-01 05:57:52 +03:00
1996-06-04 10:42:03 +04:00
static void process ( void )
{
2002-03-01 05:57:52 +03:00
BOOL run_election ;
2003-07-15 21:21:21 +04:00
BOOL no_subnets ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
while ( True ) {
time_t t = time ( NULL ) ;
1997-12-24 10:10:04 +03:00
2002-03-01 05:57:52 +03:00
/* Check for internal messages */
2007-05-22 02:17:13 +04:00
message_dispatch ( nmbd_messaging_context ( ) ) ;
2002-03-01 05:57:52 +03:00
/*
* Check all broadcast subnets to see if
* we need to run an election on any of them .
* ( nmbd_elections . c )
*/
1999-12-13 16:27:58 +03:00
2002-03-01 05:57:52 +03:00
run_election = check_elections ( ) ;
2000-01-03 06:17:16 +03:00
2002-03-01 05:57:52 +03:00
/*
* Read incoming UDP packets .
* ( nmbd_packets . c )
*/
1999-12-13 16:27:58 +03:00
2002-03-01 05:57:52 +03:00
if ( listen_for_packets ( run_election ) )
2000-10-13 01:19:49 +04:00
return ;
1999-12-13 16:27:58 +03:00
2002-03-01 05:57:52 +03:00
/*
* Handle termination inband .
*/
2000-01-05 09:36:36 +03:00
2002-03-01 05:57:52 +03:00
if ( got_sig_term ) {
got_sig_term = 0 ;
terminate ( ) ;
}
/*
* Process all incoming packets
* read above . This calls the success and
* failure functions registered when response
* packets arrrive , and also deals with request
* packets from other sources .
* ( nmbd_packets . c )
*/
run_packet_queue ( ) ;
/*
* Run any elections - initiate becoming
* a local master browser if we have won .
* ( nmbd_elections . c )
*/
run_elections ( t ) ;
/*
* Send out any broadcast announcements
* of our server names . This also announces
* the workgroup name if we are a local
* master browser .
* ( nmbd_sendannounce . c )
*/
announce_my_server_names ( t ) ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
/*
* Send out any LanMan broadcast announcements
* of our server names .
* ( nmbd_sendannounce . c )
*/
announce_my_lm_server_names ( t ) ;
/*
* If we are a local master browser , periodically
* announce ourselves to the domain master browser .
* This also deals with syncronising the domain master
* browser server lists with ourselves as a local
* master browser .
* ( nmbd_sendannounce . c )
*/
announce_myself_to_domain_master_browser ( t ) ;
/*
* Fullfill any remote announce requests .
* ( nmbd_sendannounce . c )
*/
announce_remote ( t ) ;
/*
* Fullfill any remote browse sync announce requests .
* ( nmbd_sendannounce . c )
*/
browse_sync_remote ( t ) ;
/*
* Scan the broadcast subnets , and WINS client
* namelists and refresh any that need refreshing .
* ( nmbd_mynames . c )
*/
refresh_my_names ( t ) ;
/*
* Scan the subnet namelists and server lists and
* expire thos that have timed out .
* ( nmbd . c )
*/
expire_names_and_servers ( t ) ;
/*
* Write out a snapshot of our current browse list into
* the browse . dat file . This is used by smbd to service
* incoming NetServerEnum calls - used to synchronise
* browse lists over subnets .
* ( nmbd_serverlistdb . c )
*/
write_browse_list ( t , False ) ;
/*
* If we are a domain master browser , we have a list of
* local master browsers we should synchronise browse
* lists with ( these are added by an incoming local
* master browser announcement packet ) . Expire any of
* these that are no longer current , and pull the server
* lists from each of these known local master browsers .
* ( nmbd_browsesync . c )
*/
dmb_expire_and_sync_browser_lists ( t ) ;
/*
* Check that there is a local master browser for our
* workgroup for all our broadcast subnets . If one
* is not found , start an election ( which we ourselves
* may or may not participate in , depending on the
* setting of the ' local master ' parameter .
* ( nmbd_elections . c )
*/
check_master_browser_exists ( t ) ;
/*
* If we are configured as a logon server , attempt to
* register the special NetBIOS names to become such
* ( WORKGROUP < 1 c > name ) on all broadcast subnets and
* with the WINS server ( if used ) . If we are configured
* to become a domain master browser , attempt to register
* the special NetBIOS name ( WORKGROUP < 1 b > name ) to
* become such .
* ( nmbd_become_dmb . c )
*/
add_domain_names ( t ) ;
/*
* If we are a WINS server , do any timer dependent
* processing required .
* ( nmbd_winsserver . c )
*/
initiate_wins_processing ( t ) ;
/*
* If we are a domain master browser , attempt to contact the
* WINS server to get a list of all known WORKGROUPS / DOMAINS .
* This will only work to a Samba WINS server .
* ( nmbd_browsesync . c )
*/
if ( lp_enhanced_browsing ( ) )
collect_all_workgroup_names_from_wins_server ( t ) ;
/*
* Go through the response record queue and time out or re - transmit
* and expired entries .
* ( nmbd_packets . c )
*/
retransmit_or_expire_response_records ( t ) ;
/*
* check to see if any remote browse sync child processes have completed
*/
sync_check_completion ( ) ;
/*
* regularly sync with any other DMBs we know about
*/
if ( lp_enhanced_browsing ( ) )
sync_all_dmbs ( t ) ;
/*
* clear the unexpected packet queue
*/
clear_unexpected ( t ) ;
/*
* Reload the services file if we got a sighup .
*/
if ( reload_after_sighup ) {
2007-05-20 01:53:28 +04:00
DATA_BLOB blob = data_blob_const ( & no_subnets ,
sizeof ( no_subnets ) ) ;
2002-03-01 05:57:52 +03:00
DEBUG ( 0 , ( " Got SIGHUP dumping debug info. \n " ) ) ;
2007-05-20 01:53:28 +04:00
msg_reload_nmbd_services ( nmbd_messaging_context ( ) ,
NULL , MSG_SMB_CONF_UPDATED ,
procid_self ( ) , & blob ) ;
2003-07-15 21:21:21 +04:00
if ( no_subnets )
2002-03-01 05:57:52 +03:00
return ;
reload_after_sighup = 0 ;
}
/* check for new network interfaces */
if ( reload_interfaces ( t ) )
return ;
/* free up temp memory */
2006-02-20 20:59:58 +03:00
lp_TALLOC_FREE ( ) ;
2002-03-01 05:57:52 +03:00
}
}
1996-06-04 10:42:03 +04:00
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
2002-03-01 05:57:52 +03:00
Open the socket communication .
1997-12-13 17:16:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-01 05:57:52 +03:00
2007-04-20 22:34:33 +04:00
static BOOL open_sockets ( enum smb_server_mode server_mode , int port )
1996-06-04 10:42:03 +04:00
{
2002-03-01 05:57:52 +03:00
/*
* The sockets opened here will be used to receive broadcast
* packets * only * . Interface specific sockets are opened in
* make_subnet ( ) in namedbsubnet . c . Thus we bind to the
* address " 0.0.0.0 " . The parameter ' socket address ' is
* now deprecated .
*/
2007-04-20 22:34:33 +04:00
if ( server_mode = = SERVER_MODE_INETD ) {
ClientNMB = 0 ;
} else {
2003-04-25 16:42:32 +04:00
ClientNMB = open_socket_in ( SOCK_DGRAM , port ,
2003-11-01 20:41:16 +03:00
0 , interpret_addr ( lp_socket_address ( ) ) ,
True ) ;
2007-04-20 22:34:33 +04:00
}
1996-06-04 10:42:03 +04:00
2005-11-08 02:28:42 +03:00
ClientDGRAM = open_socket_in ( SOCK_DGRAM , DGRAM_PORT ,
3 , interpret_addr ( lp_socket_address ( ) ) ,
True ) ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
if ( ClientNMB = = - 1 )
return ( False ) ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
/* we are never interested in SIGPIPE */
BlockSignals ( True , SIGPIPE ) ;
1996-06-04 10:42:03 +04:00
2002-03-01 05:57:52 +03:00
set_socket_options ( ClientNMB , " SO_BROADCAST " ) ;
set_socket_options ( ClientDGRAM , " SO_BROADCAST " ) ;
1996-06-04 10:42:03 +04:00
2006-05-18 23:49:44 +04:00
/* Ensure we're non-blocking. */
set_blocking ( ClientNMB , False ) ;
set_blocking ( ClientDGRAM , False ) ;
2002-03-01 05:57:52 +03:00
DEBUG ( 3 , ( " open_sockets: Broadcast sockets opened. \n " ) ) ;
return ( True ) ;
}
1996-06-04 10:42:03 +04:00
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
main program
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-11-09 19:57:45 +03:00
int main ( int argc , const char * argv [ ] )
1996-06-04 10:42:03 +04:00
{
2003-04-16 18:25:56 +04:00
pstring logfile ;
2002-11-09 19:57:45 +03:00
poptContext pc ;
2007-04-20 22:34:33 +04:00
const char * p_lmhosts = dyn_LMHOSTSFILE ;
BOOL no_process_group = False ;
BOOL log_stdout = False ;
enum smb_server_mode server_mode = SERVER_MODE_DAEMON ;
2002-11-09 19:57:45 +03:00
struct poptOption long_options [ ] = {
POPT_AUTOHELP
2007-04-20 22:34:33 +04:00
{ " daemon " , ' D ' , POPT_ARG_VAL , & server_mode , SERVER_MODE_DAEMON ,
" Become a daemon(default) " } ,
{ " interactive " , ' i ' , POPT_ARG_VAL , & server_mode ,
SERVER_MODE_INTERACTIVE , " Run interactive (not a daemon) " } ,
{ " foreground " , ' F ' , POPT_ARG_VAL , & server_mode ,
SERVER_MODE_FOREGROUND , " Run daemon in foreground (for daemontools & etc) " } ,
2006-03-21 16:16:50 +03:00
{ " no-process-group " , 0 , POPT_ARG_VAL , & no_process_group , True , " Don't create a new process group " } ,
2003-01-03 20:39:30 +03:00
{ " log-stdout " , ' S ' , POPT_ARG_VAL , & log_stdout , True , " Log to stdout " } ,
2006-01-16 21:03:56 +03:00
{ " hosts " , ' H ' , POPT_ARG_STRING , & p_lmhosts , ' H ' , " Load a netbios hosts file " } ,
2002-11-09 19:57:45 +03:00
{ " port " , ' p ' , POPT_ARG_INT , & global_nmb_port , NMB_PORT , " Listen on the specified port " } ,
2003-04-14 07:30:20 +04:00
POPT_COMMON_SAMBA
2002-11-09 19:57:45 +03:00
{ NULL }
} ;
1998-08-31 10:59:23 +04:00
2005-12-29 16:10:33 +03:00
load_case_tables ( ) ;
2003-04-16 18:25:56 +04:00
global_nmb_port = NMB_PORT ;
1996-06-04 10:42:03 +04:00
2003-04-16 18:25:56 +04:00
pc = poptGetContext ( " nmbd " , argc , argv , long_options , 0 ) ;
2005-08-30 15:41:45 +04:00
while ( poptGetNextOpt ( pc ) ! = - 1 ) { } ;
2003-04-16 18:25:56 +04:00
poptFreeContext ( pc ) ;
1996-06-04 10:42:03 +04:00
2003-04-16 18:25:56 +04:00
global_in_nmbd = True ;
StartupTime = time ( NULL ) ;
sys_srandom ( time ( NULL ) ^ sys_getpid ( ) ) ;
2004-09-21 13:07:42 +04:00
if ( ! override_logfile ) {
slprintf ( logfile , sizeof ( logfile ) - 1 , " %s/log.nmbd " , dyn_LOGFILEBASE ) ;
lp_set_logfile ( logfile ) ;
}
2003-04-16 18:25:56 +04:00
fault_setup ( ( void ( * ) ( void * ) ) fault_continue ) ;
2006-04-04 04:27:50 +04:00
dump_core_setup ( " nmbd " ) ;
2003-04-16 18:25:56 +04:00
/* POSIX demands that signals are inherited. If the invoking process has
* these signals masked , we will have problems , as we won ' t receive them . */
BlockSignals ( False , SIGHUP ) ;
BlockSignals ( False , SIGUSR1 ) ;
BlockSignals ( False , SIGTERM ) ;
CatchSignal ( SIGHUP , SIGNAL_CAST sig_hup ) ;
CatchSignal ( SIGTERM , SIGNAL_CAST sig_term ) ;
1999-12-13 16:27:58 +03:00
# if defined(SIGFPE)
2003-04-16 18:25:56 +04:00
/* we are never interested in SIGFPE */
BlockSignals ( True , SIGFPE ) ;
1999-12-13 16:27:58 +03:00
# endif
2003-04-16 18:25:56 +04:00
/* We no longer use USR2... */
2000-10-13 01:19:49 +04:00
# if defined(SIGUSR2)
2003-04-16 18:25:56 +04:00
BlockSignals ( True , SIGUSR2 ) ;
2000-10-13 01:19:49 +04:00
# endif
2003-01-03 20:39:30 +03:00
2007-04-20 22:34:33 +04:00
if ( server_mode = = SERVER_MODE_INTERACTIVE ) {
2003-04-16 18:25:56 +04:00
log_stdout = True ;
}
2003-01-03 20:39:30 +03:00
2007-04-20 22:34:33 +04:00
if ( log_stdout & & server_mode = = SERVER_MODE_DAEMON ) {
2003-08-23 05:59:14 +04:00
DEBUG ( 0 , ( " ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i) \n " ) ) ;
exit ( 1 ) ;
}
2003-01-03 20:39:30 +03:00
2003-08-23 05:59:14 +04:00
setup_logging ( argv [ 0 ] , log_stdout ) ;
2001-11-27 06:40:06 +03:00
2003-08-23 05:59:14 +04:00
reopen_logs ( ) ;
1998-04-16 00:00:41 +04:00
2003-08-23 05:59:14 +04:00
DEBUG ( 0 , ( " Netbios nameserver version %s started. \n " , SAMBA_VERSION_STRING ) ) ;
2005-10-07 19:43:32 +04:00
DEBUGADD ( 0 , ( " %s \n " , COPYRIGHT_STARTUP_MESSAGE ) ) ;
1996-06-04 10:42:03 +04:00
2003-08-23 05:59:14 +04:00
if ( ! reload_nmbd_services ( False ) )
return ( - 1 ) ;
1996-10-02 19:41:30 +04:00
2003-08-23 05:59:14 +04:00
if ( ! init_names ( ) )
return - 1 ;
1996-08-19 15:17:29 +04:00
2003-08-23 05:59:14 +04:00
reload_nmbd_services ( True ) ;
1996-08-22 10:32:03 +04:00
2003-08-23 05:59:14 +04:00
if ( strequal ( lp_workgroup ( ) , " * " ) ) {
DEBUG ( 0 , ( " ERROR: a workgroup name of * is no longer supported \n " ) ) ;
exit ( 1 ) ;
}
1998-12-09 19:23:57 +03:00
2003-08-23 05:59:14 +04:00
set_samba_nb_type ( ) ;
1996-08-01 21:49:40 +04:00
2007-04-20 22:34:33 +04:00
if ( is_a_socket ( 0 ) ) {
if ( server_mode = = SERVER_MODE_DAEMON ) {
DEBUG ( 0 , ( " standard input is a socket, "
" assuming -F option \n " ) ) ;
}
server_mode = SERVER_MODE_INETD ;
2003-08-23 05:59:14 +04:00
}
2007-04-20 22:34:33 +04:00
if ( server_mode = = SERVER_MODE_DAEMON ) {
2003-08-23 05:59:14 +04:00
DEBUG ( 2 , ( " Becoming a daemon. \n " ) ) ;
2007-04-20 22:34:33 +04:00
become_daemon ( True , no_process_group ) ;
} else if ( server_mode = = SERVER_MODE_FOREGROUND ) {
become_daemon ( False , no_process_group ) ;
2003-08-23 05:59:14 +04:00
}
1996-06-04 10:42:03 +04:00
2001-12-30 04:46:38 +03:00
# if HAVE_SETPGID
2003-08-23 05:59:14 +04:00
/*
* If we ' re interactive we want to set our own process group for
* signal management .
*/
2007-04-20 22:34:33 +04:00
if ( server_mode = = SERVER_MODE_INTERACTIVE & & ! no_process_group )
2003-08-23 05:59:14 +04:00
setpgid ( ( pid_t ) 0 , ( pid_t ) 0 ) ;
2001-12-30 04:46:38 +03:00
# endif
2007-05-15 17:44:11 +04:00
if ( nmbd_messaging_context ( ) = = NULL ) {
return 1 ;
}
1999-12-13 16:27:58 +03:00
# ifndef SYNC_DNS
2003-08-23 05:59:14 +04:00
/* Setup the async dns. We do it here so it doesn't have all the other
stuff initialised and thus chewing memory and sockets */
if ( lp_we_are_a_wins_server ( ) & & lp_dns_proxy ( ) ) {
start_async_dns ( ) ;
}
1999-12-13 16:27:58 +03:00
# endif
2003-08-23 05:59:14 +04:00
if ( ! directory_exist ( lp_lockdir ( ) , NULL ) ) {
mkdir ( lp_lockdir ( ) , 0755 ) ;
}
pidfile_create ( " nmbd " ) ;
2007-05-20 01:53:28 +04:00
messaging_register ( nmbd_messaging_context ( ) , NULL ,
MSG_FORCE_ELECTION , nmbd_message_election ) ;
2005-12-07 02:06:38 +03:00
#if 0
/* Until winsrepl is done. */
2007-05-20 01:53:28 +04:00
messaging_register ( nmbd_messaging_context ( ) , NULL ,
MSG_WINS_NEW_ENTRY , nmbd_wins_new_entry ) ;
2005-12-07 02:06:38 +03:00
# endif
2007-05-20 01:53:28 +04:00
messaging_register ( nmbd_messaging_context ( ) , NULL ,
MSG_SHUTDOWN , nmbd_terminate ) ;
messaging_register ( nmbd_messaging_context ( ) , NULL ,
MSG_SMB_CONF_UPDATED , msg_reload_nmbd_services ) ;
messaging_register ( nmbd_messaging_context ( ) , NULL ,
MSG_SEND_PACKET , msg_nmbd_send_packet ) ;
2003-08-23 05:59:14 +04:00
2005-11-05 07:21:55 +03:00
TimeInit ( ) ;
2003-08-23 05:59:14 +04:00
DEBUG ( 3 , ( " Opening sockets %d \n " , global_nmb_port ) ) ;
2007-04-20 22:34:33 +04:00
if ( ! open_sockets ( server_mode , global_nmb_port ) ) {
2003-08-23 05:59:14 +04:00
kill_async_dns_child ( ) ;
return 1 ;
}
/* Determine all the IP addresses we have. */
load_interfaces ( ) ;
/* Create an nmbd subnet record for each of the above. */
if ( False = = create_subnets ( ) ) {
DEBUG ( 0 , ( " ERROR: Failed when creating subnet lists. Exiting. \n " ) ) ;
kill_async_dns_child ( ) ;
exit ( 1 ) ;
}
/* Load in any static local names. */
2006-01-16 21:03:56 +03:00
load_lmhosts_file ( p_lmhosts ) ;
DEBUG ( 3 , ( " Loaded hosts file %s \n " , p_lmhosts ) ) ;
2003-08-23 05:59:14 +04:00
/* If we are acting as a WINS server, initialise data structures. */
if ( ! initialise_wins ( ) ) {
DEBUG ( 0 , ( " nmbd: Failed when initialising WINS server. \n " ) ) ;
kill_async_dns_child ( ) ;
exit ( 1 ) ;
}
/*
* Register nmbd primary workgroup and nmbd names on all
* the broadcast subnets , and on the WINS server ( if specified ) .
* Also initiate the startup of our primary workgroup ( start
* elections if we are setup as being able to be a local
* master browser .
*/
if ( False = = register_my_workgroup_and_names ( ) ) {
DEBUG ( 0 , ( " ERROR: Failed when creating my my workgroup. Exiting. \n " ) ) ;
kill_async_dns_child ( ) ;
exit ( 1 ) ;
}
/* We can only take signals in the select. */
BlockSignals ( True , SIGTERM ) ;
process ( ) ;
if ( dbf )
x_fclose ( dbf ) ;
kill_async_dns_child ( ) ;
return ( 0 ) ;
2002-03-01 05:57:52 +03:00
}