0001-01-01 02:30:17 +02:30
/*
Unix SMB / Netbios implementation .
Version 1.9 .
NBT netbios routines and daemon - version 2
Copyright ( C ) Andrew Tridgell 1994 - 1995
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 ;
int ClientNMB = - 1 ;
int ClientDGRAM = - 1 ;
extern pstring myhostname ;
static pstring host_file ;
extern pstring myname ;
/* are we running as a daemon ? */
static BOOL is_daemon = False ;
/* what server type are we currently */
time_t StartupTime = 0 ;
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
static int sig_term ( )
{
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 */
0001-01-01 02:30:17 +02:30
dump_names ( ) ;
/* remove all samba names, with wins server if necessary. */
remove_my_names ( ) ;
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
/* XXXX don't care if we never receive a response back... yet */
0001-01-01 02:30:17 +02:30
remove_my_servers ( ) ;
0001-01-01 02:30:17 +02:30
/* XXXX other things: if we are a master browser, force an election? */
exit ( 0 ) ;
}
0001-01-01 02:30:17 +02:30
/****************************************************************************
catch a sighup
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static int sig_hup ( void )
{
0001-01-01 02:30:17 +02:30
BlockSignals ( True , SIGHUP ) ;
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " Got SIGHUP (reload not implemented) \n " ) ) ;
dump_names ( ) ;
reload_services ( True ) ;
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 ) ;
}
/****************************************************************************
catch a sigpipe
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static int sig_pipe ( void )
{
0001-01-01 02:30:17 +02:30
BlockSignals ( True , SIGPIPE ) ;
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " Got SIGPIPE \n " ) ) ;
if ( ! is_daemon )
exit ( 1 ) ;
0001-01-01 02:30:17 +02:30
BlockSignals ( False , SIGPIPE ) ;
0001-01-01 02:30:17 +02:30
return ( 0 ) ;
}
# if DUMP_CORE
/*******************************************************************
prepare to dump a core file - carefully !
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL dump_core ( void )
{
char * p ;
pstring dname ;
strcpy ( 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 ) ) ;
# ifndef NO_GETRLIMIT
# ifdef RLIMIT_CORE
{
struct rlimit rlp ;
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 ) ) ;
}
# endif
# endif
DEBUG ( 0 , ( " Dumping core in %s \n " , dname ) ) ;
return ( True ) ;
}
# endif
/****************************************************************************
possibly continue after a fault
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void fault_continue ( void )
{
# if DUMP_CORE
dump_core ( ) ;
# endif
}
/*******************************************************************
expire old names from the namelist and server list
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void expire_names_and_servers ( void )
{
0001-01-01 02:30:17 +02:30
static time_t lastrun = 0 ;
time_t t = time ( NULL ) ;
if ( ! lastrun ) lastrun = t ;
if ( t < lastrun + 5 ) return ;
lastrun = t ;
expire_names ( t ) ;
expire_servers ( t ) ;
0001-01-01 02:30:17 +02:30
}
/*****************************************************************************
reload the services file
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL reload_services ( BOOL test )
{
BOOL ret ;
extern fstring remote_machine ;
strcpy ( remote_machine , " nmbd " ) ;
if ( lp_loaded ( ) )
{
pstring fname ;
strcpy ( fname , lp_configfile ( ) ) ;
if ( file_exist ( fname , NULL ) & & ! strcsequal ( fname , servicesf ) )
{
strcpy ( servicesf , fname ) ;
test = False ;
}
}
if ( test & & ! lp_file_list_changed ( ) )
return ( True ) ;
ret = lp_load ( servicesf , True ) ;
/* perhaps the config filename is now set */
if ( ! test ) {
DEBUG ( 3 , ( " services not loaded \n " ) ) ;
reload_services ( True ) ;
}
0001-01-01 02:30:17 +02:30
load_interfaces ( ) ;
0001-01-01 02:30:17 +02:30
add_subnet_interfaces ( ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
return ( ret ) ;
}
/****************************************************************************
load a netbios hosts file
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void load_hosts_file ( char * fname )
{
FILE * f = fopen ( fname , " r " ) ;
pstring line ;
if ( ! f ) {
DEBUG ( 2 , ( " Can't open lmhosts file %s \n " , fname ) ) ;
return ;
}
while ( ! feof ( f ) )
{
0001-01-01 02:30:17 +02:30
pstring ip , name , flags , extra ;
struct subnet_record * d ;
char * ptr ;
int count = 0 ;
struct in_addr ipaddr ;
enum name_source source = LMHOSTS ;
0001-01-01 02:30:17 +02:30
if ( ! fgets_slash ( line , sizeof ( pstring ) , f ) ) continue ;
if ( * line = = ' # ' ) continue ;
0001-01-01 02:30:17 +02:30
strcpy ( ip , " " ) ;
strcpy ( name , " " ) ;
strcpy ( flags , " " ) ;
ptr = line ;
if ( next_token ( & ptr , ip , NULL ) ) + + count ;
if ( next_token ( & ptr , name , NULL ) ) + + count ;
if ( next_token ( & ptr , flags , NULL ) ) + + count ;
if ( next_token ( & ptr , extra , NULL ) ) + + count ;
if ( count < = 0 ) continue ;
if ( count > 0 & & count < 2 ) {
DEBUG ( 0 , ( " Ill formed hosts line [%s] \n " , line ) ) ;
continue ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( count > = 4 ) {
DEBUG ( 0 , ( " too many columns in %s (obsolete syntax) \n " , fname ) ) ;
continue ;
}
DEBUG ( 4 , ( " lmhost entry: %s %s %s \n " , ip , name , flags ) ) ;
if ( strchr ( flags , ' G ' ) | | strchr ( flags , ' S ' ) ) {
DEBUG ( 0 , ( " group flag in %s ignored (obsolete) \n " , fname ) ) ;
continue ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( strchr ( flags , ' M ' ) ) {
source = SELF ;
strcpy ( myname , name ) ;
}
ipaddr = * interpret_addr2 ( ip ) ;
d = find_subnet ( ipaddr ) ;
if ( d ) {
add_netbios_entry ( d , name , 0x00 , NB_ACTIVE , 0 , source , ipaddr , True , True ) ;
add_netbios_entry ( d , name , 0x20 , NB_ACTIVE , 0 , source , ipaddr , True , True ) ;
}
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
fclose ( f ) ;
}
/****************************************************************************
The main select loop .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void process ( void )
{
BOOL run_election ;
while ( True )
{
0001-01-01 02:30:17 +02:30
time_t t = time ( NULL ) ;
0001-01-01 02:30:17 +02:30
run_election = check_elections ( ) ;
listen_for_packets ( run_election ) ;
run_packet_queue ( ) ;
run_elections ( ) ;
announce_host ( ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
announce_master ( ) ;
0001-01-01 02:30:17 +02:30
announce_remote ( ) ;
0001-01-01 02:30:17 +02:30
query_refresh_names ( ) ;
0001-01-01 02:30:17 +02:30
expire_names_and_servers ( ) ;
0001-01-01 02:30:17 +02:30
expire_netbios_response_entries ( ) ;
0001-01-01 02:30:17 +02:30
refresh_my_names ( t ) ;
0001-01-01 02:30:17 +02:30
write_browse_list ( ) ;
do_browser_lists ( ) ;
check_master_browser ( ) ;
}
}
/****************************************************************************
open the socket communication
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL open_sockets ( BOOL isdaemon , int port )
{
struct hostent * hp ;
/* get host info */
if ( ( hp = Get_Hostbyname ( myhostname ) ) = = 0 ) {
DEBUG ( 0 , ( " Get_Hostbyname: Unknown host. %s \n " , myhostname ) ) ;
return False ;
}
if ( isdaemon )
0001-01-01 02:30:17 +02:30
ClientNMB = open_socket_in ( SOCK_DGRAM , port , 0 , interpret_addr ( lp_socket_address ( ) ) ) ;
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 , interpret_addr ( lp_socket_address ( ) ) ) ;
0001-01-01 02:30:17 +02:30
if ( ClientNMB = = - 1 )
return ( False ) ;
signal ( SIGPIPE , SIGNAL_CAST sig_pipe ) ;
set_socket_options ( ClientNMB , " SO_BROADCAST " ) ;
set_socket_options ( ClientDGRAM , " SO_BROADCAST " ) ;
DEBUG ( 3 , ( " Sockets opened. \n " ) ) ;
return True ;
}
/****************************************************************************
initialise connect , service and file structs
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL init_structs ( )
{
0001-01-01 02:30:17 +02:30
if ( ! get_myname ( myhostname , NULL ) )
0001-01-01 02:30:17 +02:30
return ( False ) ;
if ( ! * myname ) {
char * p ;
strcpy ( myname , myhostname ) ;
p = strchr ( myname , ' . ' ) ;
if ( p ) * p = 0 ;
}
0001-01-01 02:30:17 +02:30
strupper ( myname ) ;
0001-01-01 02:30:17 +02:30
return True ;
}
/****************************************************************************
usage on the program
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
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] [-l log basename] \n " , pname ) ;
0001-01-01 02:30:17 +02:30
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. the netbios name to advertise for this host \n " ) ;
printf ( " \t -H hosts file load a netbios hosts file \n " ) ;
printf ( " \n " ) ;
}
/****************************************************************************
main program
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int main ( int argc , char * argv [ ] )
{
int port = NMB_PORT ;
int opt ;
extern FILE * dbf ;
extern char * optarg ;
* host_file = 0 ;
StartupTime = time ( NULL ) ;
TimeInit ( ) ;
strcpy ( debugf , NMBLOGFILE ) ;
setup_logging ( argv [ 0 ] , False ) ;
charset_initialise ( ) ;
# ifdef LMHOSTSFILE
strcpy ( host_file , LMHOSTSFILE ) ;
# endif
/* this is for people who can't start the program correctly */
while ( argc > 1 & & ( * argv [ 1 ] ! = ' - ' ) ) {
argv + + ;
argc - - ;
}
fault_setup ( fault_continue ) ;
0001-01-01 02:30:17 +02:30
signal ( SIGHUP , SIGNAL_CAST sig_hup ) ;
0001-01-01 02:30:17 +02:30
signal ( SIGTERM , SIGNAL_CAST sig_term ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
while ( ( opt = getopt ( argc , argv , " s:T:I:C:bAi:B:N:Rn:l:d:Dp:hSH:G: " ) ) ! = EOF )
0001-01-01 02:30:17 +02:30
{
switch ( opt )
{
case ' s ' :
strcpy ( servicesf , optarg ) ;
0001-01-01 02:30:17 +02:30
break ;
0001-01-01 02:30:17 +02:30
case ' N ' :
case ' B ' :
case ' I ' :
0001-01-01 02:30:17 +02:30
case ' C ' :
case ' G ' :
0001-01-01 02:30:17 +02:30
DEBUG ( 0 , ( " Obsolete option '%c' used \n " , opt ) ) ;
0001-01-01 02:30:17 +02:30
break ;
case ' H ' :
strcpy ( host_file , optarg ) ;
break ;
case ' n ' :
strcpy ( myname , optarg ) ;
0001-01-01 02:30:17 +02:30
strupper ( myname ) ;
0001-01-01 02:30:17 +02:30
break ;
case ' l ' :
sprintf ( debugf , " %s.nmb " , optarg ) ;
break ;
case ' i ' :
strcpy ( scope , optarg ) ;
strupper ( scope ) ;
break ;
case ' D ' :
is_daemon = True ;
break ;
case ' d ' :
DEBUGLEVEL = atoi ( optarg ) ;
break ;
case ' p ' :
port = atoi ( optarg ) ;
break ;
case ' h ' :
usage ( argv [ 0 ] ) ;
exit ( 0 ) ;
break ;
default :
if ( ! is_a_socket ( 0 ) ) {
usage ( argv [ 0 ] ) ;
}
break ;
}
}
DEBUG ( 1 , ( " %s netbios nameserver version %s started \n " , timestring ( ) , VERSION ) ) ;
DEBUG ( 1 , ( " Copyright Andrew Tridgell 1994 \n " ) ) ;
if ( ! reload_services ( False ) )
return ( - 1 ) ;
0001-01-01 02:30:17 +02:30
init_structs ( ) ;
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 ) ) {
DEBUG ( 0 , ( " standard input is not a socket, assuming -D option \n " ) ) ;
is_daemon = True ;
}
if ( is_daemon ) {
DEBUG ( 2 , ( " %s becoming a daemon \n " , timestring ( ) ) ) ;
become_daemon ( ) ;
}
DEBUG ( 3 , ( " Opening sockets %d \n " , port ) ) ;
if ( ! open_sockets ( is_daemon , port ) ) return 1 ;
if ( * host_file ) {
load_hosts_file ( host_file ) ;
DEBUG ( 3 , ( " Loaded hosts file \n " ) ) ;
}
add_my_names ( ) ;
0001-01-01 02:30:17 +02:30
if ( strequal ( lp_workgroup ( ) , " * " ) ) {
DEBUG ( 0 , ( " ERROR: a workgroup name of * is no longer supported \n " ) ) ;
}
0001-01-01 02:30:17 +02:30
add_my_subnets ( lp_workgroup ( ) ) ;
0001-01-01 02:30:17 +02:30
DEBUG ( 3 , ( " Checked names \n " ) ) ;
0001-01-01 02:30:17 +02:30
load_netbios_names ( ) ;
DEBUG ( 3 , ( " Loaded names \n " ) ) ;
0001-01-01 02:30:17 +02:30
write_browse_list ( ) ;
DEBUG ( 3 , ( " Dumped names \n " ) ) ;
process ( ) ;
close_sockets ( ) ;
if ( dbf )
fclose ( dbf ) ;
return ( 0 ) ;
}