0001-01-01 02:30:17 +02:30
/*
Unix SMB / Netbios implementation .
Version 1.9 .
NBT netbios routines and daemon - version 2
0001-01-01 02:30:17 +02:30
Copyright ( C ) Andrew Tridgell 1994 - 1998
0001-01-01 02:30:17 +02:30
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
the Free Software Foundation ; either version 2 of the License , or
( 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
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
Revision History :
14 jan 96 : lkcl @ pires . co . uk
added multiple workgroup domain master support
*/
# include "includes.h"
extern int DEBUGLEVEL ;
extern pstring debugf ;
pstring servicesf = CONFIGFILE ;
extern pstring scope ;
0001-01-01 02:30:17 +02:30
int ClientNMB = - 1 ;
int ClientDGRAM = - 1 ;
0001-01-01 02:30:17 +02:30
int global_nmb_port = - 1 ;
0001-01-01 02:30:17 +02:30
extern pstring myhostname ;
static pstring host_file ;
0001-01-01 02:30:17 +02:30
extern pstring global_myname ;
extern fstring global_myworkgroup ;
0001-01-01 02:30:17 +02:30
extern char * * my_netbios_names ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
extern BOOL global_in_nmbd ;
0001-01-01 02:30:17 +02:30
/* are we running as a daemon ? */
static BOOL is_daemon = False ;
0001-01-01 02:30:17 +02:30
/* have we found LanMan clients yet? */
BOOL found_lm_clients = False ;
0001-01-01 02:30:17 +02:30
/* what server type are we currently */
0001-01-01 02:30:17 +02:30
time_t StartupTime = 0 ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
extern struct in_addr ipzero ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
0001-01-01 02:30:17 +02:30
catch a sigterm
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static int sig_term ( void )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
BlockSignals ( True , SIGTERM ) ;
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " Got SIGTERM: going down... \n " ) ) ;
0001-01-01 02:30:17 +02:30
/* Write out wins.dat file if samba is a WINS server */
wins_write_database ( ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Remove all SELF registered names. */
release_my_names ( ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Announce all server entries as 0 time-to-live, 0 type. */
0001-01-01 02:30:17 +02:30
announce_my_servers_removed ( ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* If there was an async dns child - kill it. */
kill_async_dns_child ( ) ;
0001-01-01 02:30:17 +02:30
exit ( 0 ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Keep compiler happy.. */
return 0 ;
0001-01-01 02:30:17 +02:30
} /* sig_term */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
catch a sighup
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static int sig_hup ( void )
{
0001-01-01 02:30:17 +02:30
BlockSignals ( True , SIGHUP ) ;
DEBUG ( 0 , ( " Got SIGHUP dumping debug info. \n " ) ) ;
write_browse_list ( 0 , True ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
dump_all_namelists ( ) ;
reload_services ( True ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
set_samba_nb_type ( ) ;
0001-01-01 02:30:17 +02:30
BlockSignals ( False , SIGHUP ) ;
0001-01-01 02:30:17 +02:30
# ifndef DONT_REINSTALL_SIG
signal ( SIGHUP , SIGNAL_CAST sig_hup ) ;
# endif
return ( 0 ) ;
0001-01-01 02:30:17 +02:30
} /* sig_hup */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
catch a sigpipe
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static int sig_pipe ( void )
{
0001-01-01 02:30:17 +02:30
BlockSignals ( True , SIGPIPE ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " Got SIGPIPE \n " ) ) ;
if ( ! is_daemon )
0001-01-01 02:30:17 +02:30
exit ( 1 ) ;
0001-01-01 02:30:17 +02:30
BlockSignals ( False , SIGPIPE ) ;
0001-01-01 02:30:17 +02:30
return ( 0 ) ;
0001-01-01 02:30:17 +02:30
} /* sig_pipe */
0001-01-01 02:30:17 +02:30
# if DUMP_CORE
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
prepare to dump a core file - carefully !
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static BOOL dump_core ( void )
{
char * p ;
pstring dname ;
0001-01-01 02:30:17 +02:30
pstrcpy ( dname , debugf ) ;
if ( ( p = strrchr ( dname , ' / ' ) ) )
* p = 0 ;
strcat ( dname , " /corefiles " ) ;
mkdir ( dname , 0700 ) ;
sys_chown ( dname , getuid ( ) , getgid ( ) ) ;
chmod ( dname , 0700 ) ;
if ( chdir ( dname ) )
return ( False ) ;
umask ( ~ ( 0700 ) ) ;
0001-01-01 02:30:17 +02:30
# ifndef NO_GETRLIMIT
# ifdef RLIMIT_CORE
{
struct rlimit rlp ;
0001-01-01 02:30:17 +02:30
getrlimit ( RLIMIT_CORE , & rlp ) ;
rlp . rlim_cur = MAX ( 4 * 1024 * 1024 , rlp . rlim_cur ) ;
setrlimit ( RLIMIT_CORE , & rlp ) ;
getrlimit ( RLIMIT_CORE , & rlp ) ;
DEBUG ( 3 , ( " Core limits now %d %d \n " , rlp . rlim_cur , rlp . rlim_max ) ) ;
0001-01-01 02:30:17 +02:30
}
# endif
# endif
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " Dumping core in %s \n " , dname ) ) ;
return ( True ) ;
} /* dump_core */
0001-01-01 02:30:17 +02:30
# endif
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
possibly continue after a fault
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static void fault_continue ( void )
{
# if DUMP_CORE
dump_core ( ) ;
# endif
0001-01-01 02:30:17 +02:30
} /* fault_continue */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
expire old names from the namelist and server list
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static void expire_names_and_servers ( time_t t )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
static time_t lastrun = 0 ;
0001-01-01 02:30:17 +02:30
if ( ! lastrun )
lastrun = t ;
if ( t < ( lastrun + 5 ) )
return ;
0001-01-01 02:30:17 +02:30
lastrun = t ;
0001-01-01 02:30:17 +02:30
/*
* Expire any timed out names on all the broadcast
* subnets and those registered with the WINS server .
* ( nmbd_namelistdb . c )
*/
0001-01-01 02:30:17 +02:30
expire_names ( t ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/*
* 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 ) ;
} /* expire_names_and_servers */
/**************************************************************************** **
0001-01-01 02:30:17 +02:30
reload the services file
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
BOOL reload_services ( BOOL test )
{
BOOL ret ;
extern fstring remote_machine ;
0001-01-01 02:30:17 +02:30
strcpy ( remote_machine , " nmb " ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( lp_loaded ( ) )
{
pstring fname ;
pstrcpy ( fname , lp_configfile ( ) ) ;
if ( file_exist ( fname , NULL ) & & ! strcsequal ( fname , servicesf ) )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
pstrcpy ( servicesf , fname ) ;
test = False ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( test & & ! lp_file_list_changed ( ) )
0001-01-01 02:30:17 +02:30
return ( True ) ;
0001-01-01 02:30:17 +02:30
ret = lp_load ( servicesf , True , False , False ) ;
0001-01-01 02:30:17 +02:30
/* perhaps the config filename is now set */
0001-01-01 02:30:17 +02:30
if ( ! test )
{
DEBUG ( 3 , ( " services not loaded \n " ) ) ;
reload_services ( True ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
/* Do a sanity check for a misconfigured nmbd */
0001-01-01 02:30:17 +02:30
if ( lp_wins_support ( ) & & * lp_wins_server ( ) )
{
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " ERROR: both 'wins support = true' and 'wins server = <server>' \
cannot be set in the smb . conf file . nmbd aborting . \ n " ));
exit ( 10 ) ;
}
0001-01-01 02:30:17 +02:30
return ( ret ) ;
0001-01-01 02:30:17 +02:30
} /* reload_services */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
The main select loop .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static void process ( void )
{
BOOL run_election ;
0001-01-01 02:30:17 +02:30
while ( True )
{
time_t t = time ( NULL ) ;
/*
* Check all broadcast subnets to see if
* we need to run an election on any of them .
* ( nmbd_elections . c )
*/
run_election = check_elections ( ) ;
/*
* Read incoming UDP packets .
* ( nmbd_packets . c )
*/
if ( listen_for_packets ( run_election ) )
return ;
/*
* 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 ) ;
0001-01-01 02:30:17 +02:30
/*
* Send out any LanMan broadcast announcements
* of our server names .
* ( nmbd_sendannounce . c )
*/
announce_my_lm_server_names ( t ) ;
0001-01-01 02:30:17 +02:30
/*
* 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 ) ;
0001-01-01 02:30:17 +02:30
/*
* 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 )
*/
collect_all_workgroup_names_from_wins_server ( t ) ;
0001-01-01 02:30:17 +02:30
/*
0001-01-01 02:30:17 +02:30
* Go through the response record queue and time out or re - transmit
0001-01-01 02:30:17 +02:30
* and expired entries .
* ( nmbd_packets . c )
*/
retransmit_or_expire_response_records ( t ) ;
}
} /* process */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
open the socket communication
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static BOOL open_sockets ( BOOL isdaemon , int port )
{
0001-01-01 02:30:17 +02:30
/* 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 .
*/
0001-01-01 02:30:17 +02:30
if ( isdaemon )
0001-01-01 02:30:17 +02:30
ClientNMB = open_socket_in ( SOCK_DGRAM , port , 0 , 0 ) ;
0001-01-01 02:30:17 +02:30
else
ClientNMB = 0 ;
0001-01-01 02:30:17 +02:30
ClientDGRAM = open_socket_in ( SOCK_DGRAM , DGRAM_PORT , 3 , 0 ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ClientNMB = = - 1 )
return ( False ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
signal ( SIGPIPE , SIGNAL_CAST sig_pipe ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
set_socket_options ( ClientNMB , " SO_BROADCAST " ) ;
set_socket_options ( ClientDGRAM , " SO_BROADCAST " ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
DEBUG ( 3 , ( " open_sockets: Broadcast sockets opened. \n " ) ) ;
return ( True ) ;
} /* open_sockets */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
initialise connect , service and file structs
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static BOOL init_structs ( void )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
extern fstring local_machine ;
0001-01-01 02:30:17 +02:30
char * p , * ptr ;
int namecount ;
int n ;
int nodup ;
pstring nbname ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! * global_myname )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
fstrcpy ( global_myname , myhostname ) ;
p = strchr ( global_myname , ' . ' ) ;
0001-01-01 02:30:17 +02:30
if ( p )
* p = 0 ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
strupper ( global_myname ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Add any NETBIOS name aliases. Ensure that the first entry
0001-01-01 02:30:17 +02:30
is equal to global_myname .
0001-01-01 02:30:17 +02:30
*/
0001-01-01 02:30:17 +02:30
/* Work out the max number of netbios aliases that we have */
0001-01-01 02:30:17 +02:30
ptr = lp_netbios_aliases ( ) ;
for ( namecount = 0 ; next_token ( & ptr , nbname , NULL ) ; namecount + + )
0001-01-01 02:30:17 +02:30
;
0001-01-01 02:30:17 +02:30
if ( * global_myname )
0001-01-01 02:30:17 +02:30
namecount + + ;
0001-01-01 02:30:17 +02:30
/* Allocate space for the netbios aliases */
0001-01-01 02:30:17 +02:30
my_netbios_names = ( char * * ) malloc ( sizeof ( char * ) * ( namecount + 1 ) ) ;
if ( NULL = = my_netbios_names )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " init_structs: malloc fail. \n " ) ) ;
return ( False ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
/* Use the global_myname string first */
0001-01-01 02:30:17 +02:30
namecount = 0 ;
0001-01-01 02:30:17 +02:30
if ( * global_myname )
my_netbios_names [ namecount + + ] = global_myname ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
ptr = lp_netbios_aliases ( ) ;
while ( next_token ( & ptr , nbname , NULL ) )
{
strupper ( nbname ) ;
0001-01-01 02:30:17 +02:30
/* Look for duplicates */
nodup = 1 ;
0001-01-01 02:30:17 +02:30
for ( n = 0 ; n < namecount ; n + + )
{
if ( 0 = = strcmp ( nbname , my_netbios_names [ n ] ) )
0001-01-01 02:30:17 +02:30
nodup = 0 ;
}
if ( nodup )
0001-01-01 02:30:17 +02:30
my_netbios_names [ namecount + + ] = strdup ( nbname ) ;
0001-01-01 02:30:17 +02:30
}
/* Check the strdups succeeded. */
0001-01-01 02:30:17 +02:30
for ( n = 0 ; n < namecount ; n + + )
if ( NULL = = my_netbios_names [ n ] )
0001-01-01 02:30:17 +02:30
{
DEBUG ( 0 , ( " init_structs: malloc fail when allocating names. \n " ) ) ;
return False ;
}
/* Terminate name list */
0001-01-01 02:30:17 +02:30
my_netbios_names [ namecount + + ] = NULL ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
fstrcpy ( local_machine , global_myname ) ;
0001-01-01 02:30:17 +02:30
trim_string ( local_machine , " " , " " ) ;
p = strchr ( local_machine , ' ' ) ;
if ( p )
0001-01-01 02:30:17 +02:30
* p = 0 ;
0001-01-01 02:30:17 +02:30
strlower ( local_machine ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
DEBUG ( 5 , ( " Netbios name list:- \n " ) ) ;
for ( n = 0 ; my_netbios_names [ n ] ; n + + )
DEBUG ( 5 , ( " my_netbios_names[%d]= \" %s \" \n " , n , my_netbios_names [ n ] ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
return ( True ) ;
} /* init_structs */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/**************************************************************************** **
usage on the program
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
static void usage ( char * pname )
{
DEBUG ( 0 , ( " Incorrect program usage - is the command line correct? \n " ) ) ;
0001-01-01 02:30:17 +02:30
printf ( " Usage: %s [-n name] [-D] [-p port] [-d debuglevel] " , pname ) ;
printf ( " [-l log basename] \n " ) ;
printf ( " Version %s \n " , VERSION ) ;
printf ( " \t -D become a daemon \n " ) ;
printf ( " \t -p port listen on the specified port \n " ) ;
printf ( " \t -d debuglevel set the debuglevel \n " ) ;
printf ( " \t -l log basename. Basename for log/debug files \n " ) ;
printf ( " \t -n netbiosname. " ) ;
printf ( " the netbios name to advertise for this host \n " ) ;
printf ( " \t -H hosts file load a netbios hosts file \n " ) ;
printf ( " \n " ) ;
} /* usage */
/**************************************************************************** **
main program
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int main ( int argc , char * argv [ ] )
0001-01-01 02:30:17 +02:30
{
int opt ;
extern FILE * dbf ;
extern char * optarg ;
0001-01-01 02:30:17 +02:30
global_nmb_port = NMB_PORT ;
0001-01-01 02:30:17 +02:30
* host_file = 0 ;
0001-01-01 02:30:17 +02:30
global_in_nmbd = True ;
0001-01-01 02:30:17 +02:30
StartupTime = time ( NULL ) ;
TimeInit ( ) ;
0001-01-01 02:30:17 +02:30
strcpy ( debugf , NMBLOGFILE ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
setup_logging ( argv [ 0 ] , False ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
charset_initialise ( ) ;
0001-01-01 02:30:17 +02:30
# ifdef LMHOSTSFILE
0001-01-01 02:30:17 +02:30
strcpy ( host_file , LMHOSTSFILE ) ;
0001-01-01 02:30:17 +02:30
# endif
/* this is for people who can't start the program correctly */
0001-01-01 02:30:17 +02:30
while ( argc > 1 & & ( * argv [ 1 ] ! = ' - ' ) )
{
0001-01-01 02:30:17 +02:30
argv + + ;
argc - - ;
}
0001-01-01 02:30:17 +02:30
fault_setup ( ( void ( * ) ( void * ) ) fault_continue ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
signal ( SIGHUP , SIGNAL_CAST sig_hup ) ;
signal ( SIGTERM , SIGNAL_CAST sig_term ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Setup the signals that allow the debug log level
to by dynamically changed . */
0001-01-01 02:30:17 +02:30
/* If we are using the malloc debug code we can't use
SIGUSR1 and SIGUSR2 to do debug level changes . */
# ifndef MEM_MAN
0001-01-01 02:30:17 +02:30
# if defined(SIGUSR1)
signal ( SIGUSR1 , SIGNAL_CAST sig_usr1 ) ;
# endif /* SIGUSR1 */
# if defined(SIGUSR2)
signal ( SIGUSR2 , SIGNAL_CAST sig_usr2 ) ;
# endif /* SIGUSR2 */
0001-01-01 02:30:17 +02:30
# endif /* MEM_MAN */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
while ( ( opt = getopt ( argc , argv , " as:T:I:C:bAi:B:N:Rn:l:d:Dp:hSH:G:f: " ) ) ! = EOF )
0001-01-01 02:30:17 +02:30
{
switch ( opt )
0001-01-01 02:30:17 +02:30
{
case ' s ' :
pstrcpy ( servicesf , optarg ) ;
break ;
case ' N ' :
case ' B ' :
case ' I ' :
case ' C ' :
case ' G ' :
DEBUG ( 0 , ( " Obsolete option '%c' used \n " , opt ) ) ;
break ;
case ' H ' :
pstrcpy ( host_file , optarg ) ;
break ;
case ' n ' :
0001-01-01 02:30:17 +02:30
pstrcpy ( global_myname , optarg ) ;
strupper ( global_myname ) ;
0001-01-01 02:30:17 +02:30
break ;
case ' l ' :
sprintf ( debugf , " %s.nmb " , optarg ) ;
break ;
case ' i ' :
pstrcpy ( scope , optarg ) ;
strupper ( scope ) ;
break ;
case ' a ' :
{
extern BOOL append_log ;
append_log = ! append_log ;
}
break ;
case ' D ' :
is_daemon = True ;
break ;
case ' d ' :
DEBUGLEVEL = atoi ( optarg ) ;
break ;
case ' p ' :
global_nmb_port = atoi ( optarg ) ;
break ;
case ' h ' :
usage ( argv [ 0 ] ) ;
exit ( 0 ) ;
break ;
default :
if ( ! is_a_socket ( 0 ) )
{
usage ( argv [ 0 ] ) ;
}
break ;
}
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
reopen_logs ( ) ;
0001-01-01 02:30:17 +02:30
DEBUG ( 1 , ( " %s netbios nameserver version %s started \n " , timestring ( ) , VERSION ) ) ;
0001-01-01 02:30:17 +02:30
DEBUG ( 1 , ( " Copyright Andrew Tridgell 1994-1997 \n " ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! get_myname ( myhostname , NULL ) )
0001-01-01 02:30:17 +02:30
{
DEBUG ( 0 , ( " Unable to get my hostname - exiting. \n " ) ) ;
return - 1 ;
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! reload_services ( False ) )
return ( - 1 ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
codepage_initialise ( lp_client_code_page ( ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! init_structs ( ) )
return - 1 ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
reload_services ( True ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
fstrcpy ( global_myworkgroup , lp_workgroup ( ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( strequal ( global_myworkgroup , " * " ) )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " ERROR: a workgroup name of * is no longer supported \n " ) ) ;
exit ( 1 ) ;
}
0001-01-01 02:30:17 +02:30
set_samba_nb_type ( ) ;
0001-01-01 02:30:17 +02:30
if ( ! is_daemon & & ! is_a_socket ( 0 ) )
{
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " standard input is not a socket, assuming -D option \n " ) ) ;
is_daemon = True ;
}
0001-01-01 02:30:17 +02:30
if ( is_daemon )
{
0001-01-01 02:30:17 +02:30
DEBUG ( 2 , ( " %s becoming a daemon \n " , timestring ( ) ) ) ;
become_daemon ( ) ;
}
0001-01-01 02:30:17 +02:30
if ( ! directory_exist ( lp_lockdir ( ) , NULL ) ) {
mkdir ( lp_lockdir ( ) , 0755 ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
pidfile_create ( " nmbd " ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
DEBUG ( 3 , ( " Opening sockets %d \n " , global_nmb_port ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! open_sockets ( is_daemon , global_nmb_port ) )
return 1 ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Determine all the IP addresses we have. */
0001-01-01 02:30:17 +02:30
load_interfaces ( ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Create an nmbd subnet record for each of the above. */
if ( False = = create_subnets ( ) )
{
DEBUG ( 0 , ( " ERROR: Failed when creating subnet lists. Exiting. \n " ) ) ;
exit ( 1 ) ;
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* Load in any static local names. */
if ( * host_file )
{
load_lmhosts_file ( host_file ) ;
0001-01-01 02:30:17 +02:30
DEBUG ( 3 , ( " Loaded hosts file \n " ) ) ;
}
0001-01-01 02:30:17 +02:30
/* If we are acting as a WINS server, initialise data structures. */
if ( ! initialise_wins ( ) )
{
DEBUG ( 0 , ( " nmbd: Failed when initialising WINS server. \n " ) ) ;
exit ( 1 ) ;
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/*
* 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 " ) ) ;
exit ( 1 ) ;
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* We can only take signals in the select. */
0001-01-01 02:30:17 +02:30
BlockSignals ( True , SIGTERM ) ;
0001-01-01 02:30:17 +02:30
# if defined(SIGUSR1)
BlockSignals ( True , SIGUSR1 ) ;
# endif /* SIGUSR1 */
# if defined(SIGUSR2)
BlockSignals ( True , SIGUSR2 ) ;
# endif /* SIGUSR2 */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
process ( ) ;
close_sockets ( ) ;
if ( dbf )
fclose ( dbf ) ;
return ( 0 ) ;
0001-01-01 02:30:17 +02:30
} /* main */
/* ========================================================================== */