1997-12-13 17:16:07 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1997-12-13 17:16:07 +03:00
NBT netbios routines and daemon - version 2
1998-01-22 16:27:43 +03:00
Copyright ( C ) Andrew Tridgell 1994 - 1998
Copyright ( C ) Luke Kenneth Casson Leighton 1994 - 1998
Copyright ( C ) Jeremy Allison 1994 - 1998
1997-12-13 17:16:07 +03: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
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 .
*/
# include "includes.h"
uint16 samba_nb_type = 0 ; /* samba's NetBIOS name type */
1998-06-10 23:51:58 +04:00
/* ************************************************************************** **
* Set Samba ' s NetBIOS name type .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
1997-12-13 17:16:07 +03:00
void set_samba_nb_type ( void )
1998-06-10 23:51:58 +04:00
{
2001-08-26 10:43:39 +04:00
if ( lp_wins_support ( ) | | wins_srv_count ( ) )
2002-07-15 14:35:28 +04:00
samba_nb_type = NB_HFLAG ; /* samba is a 'hybrid' node type. */
1997-12-13 17:16:07 +03:00
else
1998-06-10 23:51:58 +04:00
samba_nb_type = NB_BFLAG ; /* samba is broadcast-only node type. */
} /* set_samba_nb_type */
/* ************************************************************************** **
* Convert a NetBIOS name to upper case .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
static void upcase_name ( struct nmb_name * target , struct nmb_name * source )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
int i ;
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
if ( NULL ! = source )
( void ) memcpy ( target , source , sizeof ( struct nmb_name ) ) ;
strupper ( target - > name ) ;
strupper ( target - > scope ) ;
/* fudge... We're using a byte-by-byte compare, so we must be sure that
* unused space doesn ' t have garbage in it .
*/
for ( i = strlen ( target - > name ) ; i < sizeof ( target - > name ) ; i + + )
target - > name [ i ] = ' \0 ' ;
for ( i = strlen ( target - > scope ) ; i < sizeof ( target - > scope ) ; i + + )
target - > scope [ i ] = ' \0 ' ;
} /* upcase_name */
/* ************************************************************************** **
* Add a new or overwrite an existing namelist entry .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
1998-06-27 04:27:44 +04:00
static void update_name_in_namelist ( struct subnet_record * subrec ,
1998-06-10 23:51:58 +04:00
struct name_record * namerec )
{
struct name_record * oldrec = NULL ;
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
( void ) ubi_trInsert ( subrec - > namelist , namerec , & ( namerec - > name ) , & oldrec ) ;
if ( oldrec )
{
2001-09-17 08:35:51 +04:00
SAFE_FREE ( oldrec - > data . ip ) ;
SAFE_FREE ( oldrec ) ;
1998-06-10 23:51:58 +04:00
}
} /* update_name_in_namelist */
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
/* ************************************************************************** **
* Remove a name from the namelist .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
1998-06-09 05:56:18 +04:00
void remove_name_from_namelist ( struct subnet_record * subrec ,
1998-06-10 23:51:58 +04:00
struct name_record * namerec )
{
( void ) ubi_trRemove ( subrec - > namelist , namerec ) ;
1997-12-13 17:16:07 +03:00
2001-09-17 08:35:51 +04:00
SAFE_FREE ( namerec - > data . ip ) ;
1998-08-30 08:27:26 +04:00
ZERO_STRUCTP ( namerec ) ;
2001-09-17 08:35:51 +04:00
SAFE_FREE ( namerec ) ;
1997-12-13 17:16:07 +03:00
subrec - > namelist_changed = True ;
1998-06-10 23:51:58 +04:00
} /* remove_name_from_namelist */
/* ************************************************************************** **
* Find a name in a subnet .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
struct name_record * find_name_on_subnet ( struct subnet_record * subrec ,
struct nmb_name * nmbname ,
BOOL self_only )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
struct nmb_name uc_name [ 1 ] ;
struct name_record * name_ret ;
upcase_name ( uc_name , nmbname ) ;
name_ret = ( struct name_record * ) ubi_trFind ( subrec - > namelist , uc_name ) ;
if ( name_ret )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
/* Self names only - these include permanent names. */
if ( self_only
& & ( name_ret - > data . source ! = SELF_NAME )
& & ( name_ret - > data . source ! = PERMANENT_NAME ) )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
DEBUG ( 9 ,
( " find_name_on_subnet: on subnet %s - self name %s NOT FOUND \n " ,
1998-11-14 04:04:13 +03:00
subrec - > subnet_name , nmb_namestr ( nmbname ) ) ) ;
1998-06-10 23:51:58 +04:00
return ( NULL ) ;
1997-12-13 17:16:07 +03:00
}
1998-06-10 23:51:58 +04:00
DEBUG ( 9 , ( " find_name_on_subnet: on subnet %s - found name %s source=%d \n " ,
1998-11-14 04:04:13 +03:00
subrec - > subnet_name , nmb_namestr ( nmbname ) , name_ret - > data . source ) ) ;
1998-06-10 23:51:58 +04:00
return ( name_ret ) ;
1997-12-13 17:16:07 +03:00
}
1998-06-10 23:51:58 +04:00
DEBUG ( 9 ,
( " find_name_on_subnet: on subnet %s - name %s NOT FOUND \n " ,
1998-11-14 04:04:13 +03:00
subrec - > subnet_name , nmb_namestr ( nmbname ) ) ) ;
1998-06-10 23:51:58 +04:00
return ( NULL ) ;
} /* find_name_on_subnet */
/* ************************************************************************** **
* Find a name over all known broadcast subnets .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
struct name_record * find_name_for_remote_broadcast_subnet (
struct nmb_name * nmbname ,
BOOL self_only )
{
1997-12-13 17:16:07 +03:00
struct subnet_record * subrec ;
1998-06-10 23:51:58 +04:00
struct name_record * namerec = NULL ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
for ( subrec = FIRST_SUBNET ;
subrec ;
subrec = NEXT_SUBNET_EXCLUDING_UNICAST ( subrec ) )
1998-06-10 23:51:58 +04:00
{
1998-06-09 05:56:18 +04:00
if ( NULL ! = ( namerec = find_name_on_subnet ( subrec , nmbname , self_only ) ) )
1997-12-13 17:16:07 +03:00
break ;
1998-06-10 23:51:58 +04:00
}
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
return ( namerec ) ;
} /* find_name_for_remote_broadcast_subnet */
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
/* ************************************************************************** **
* Update the ttl of an entry in a subnet name list .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
1998-06-09 05:56:18 +04:00
void update_name_ttl ( struct name_record * namerec , int ttl )
1997-12-13 17:16:07 +03:00
{
time_t time_now = time ( NULL ) ;
1998-06-10 23:51:58 +04:00
if ( namerec - > data . death_time ! = PERMANENT_TTL )
1998-06-09 05:56:18 +04:00
namerec - > data . death_time = time_now + ttl ;
1997-12-13 17:16:07 +03:00
1998-08-31 08:19:31 +04:00
namerec - > data . refresh_time = time_now + MIN ( ( ttl / 2 ) , MAX_REFRESH_TIME ) ;
1997-12-13 17:16:07 +03:00
namerec - > subnet - > namelist_changed = True ;
1998-06-10 23:51:58 +04:00
} /* update_name_ttl */
/* ************************************************************************** **
* Add an entry to a subnet name list .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
struct name_record * add_name_to_subnet ( struct subnet_record * subrec ,
char * name ,
int type ,
uint16 nb_flags ,
int ttl ,
enum name_source source ,
int num_ips ,
struct in_addr * iplist )
1997-12-13 17:16:07 +03:00
{
struct name_record * namerec ;
time_t time_now = time ( NULL ) ;
1998-06-10 23:51:58 +04:00
namerec = ( struct name_record * ) malloc ( sizeof ( * namerec ) ) ;
if ( NULL = = namerec )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
DEBUG ( 0 , ( " add_name_to_subnet: malloc fail. \n " ) ) ;
return ( NULL ) ;
1997-12-13 17:16:07 +03:00
}
1999-12-13 16:27:58 +03:00
memset ( ( char * ) namerec , ' \0 ' , sizeof ( * namerec ) ) ;
1998-06-09 05:56:18 +04:00
namerec - > data . ip = ( struct in_addr * ) malloc ( sizeof ( struct in_addr )
1998-06-10 23:51:58 +04:00
* num_ips ) ;
if ( NULL = = namerec - > data . ip )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
DEBUG ( 0 , ( " add_name_to_subnet: malloc fail when creating ip_flgs. \n " ) ) ;
1998-08-30 08:27:26 +04:00
ZERO_STRUCTP ( namerec ) ;
2001-09-17 08:35:51 +04:00
SAFE_FREE ( namerec ) ;
1997-12-13 17:16:07 +03:00
return NULL ;
}
1998-06-10 23:51:58 +04:00
namerec - > subnet = subrec ;
1997-12-13 17:16:07 +03:00
2000-01-07 09:55:36 +03:00
make_nmb_name ( & namerec - > name , name , type ) ;
upcase_name ( & namerec - > name , NULL ) ;
1997-12-13 17:16:07 +03:00
/* Enter the name as active. */
1998-06-09 05:56:18 +04:00
namerec - > data . nb_flags = nb_flags | NB_ACTIVE ;
2002-01-26 01:50:15 +03:00
namerec - > data . wins_flags = WINS_ACTIVE ;
1997-12-13 17:16:07 +03:00
/* If it's our primary name, flag it as so. */
2002-11-13 02:20:50 +03:00
if ( strequal ( my_netbios_names ( 0 ) , name ) )
1998-06-09 05:56:18 +04:00
namerec - > data . nb_flags | = NB_PERM ;
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
/* Copy the IPs. */
namerec - > data . num_ips = num_ips ;
memcpy ( ( namerec - > data . ip ) , iplist , num_ips * sizeof ( struct in_addr ) ) ;
/* Data source. */
1998-06-09 05:56:18 +04:00
namerec - > data . source = source ;
1998-06-10 23:51:58 +04:00
/* Setup the death_time and refresh_time. */
if ( ttl = = PERMANENT_TTL )
namerec - > data . death_time = PERMANENT_TTL ;
else
namerec - > data . death_time = time_now + ttl ;
1998-08-31 08:19:31 +04:00
namerec - > data . refresh_time = time_now + MIN ( ( ttl / 2 ) , MAX_REFRESH_TIME ) ;
1998-06-10 23:51:58 +04:00
/* Now add the record to the name list. */
update_name_in_namelist ( subrec , namerec ) ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
DEBUG ( 3 , ( " add_name_to_subnet: Added netbios name %s with first IP %s \
ttl = % d nb_flags = % 2 x to subnet % s \ n " ,
1998-11-14 04:04:13 +03:00
nmb_namestr ( & namerec - > name ) ,
1998-06-10 23:51:58 +04:00
inet_ntoa ( * iplist ) ,
1998-06-09 05:56:18 +04:00
ttl ,
( unsigned int ) nb_flags ,
1998-06-10 23:51:58 +04:00
subrec - > subnet_name ) ) ;
1997-12-13 17:16:07 +03:00
subrec - > namelist_changed = True ;
return ( namerec ) ;
}
/*******************************************************************
Utility function automatically called when a name refresh or register
succeeds . By definition this is a SELF_NAME ( or we wouldn ' t be registering
it ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void standard_success_register ( struct subnet_record * subrec ,
struct userdata_struct * userdata ,
struct nmb_name * nmbname , uint16 nb_flags , int ttl ,
struct in_addr registered_ip )
{
1998-06-09 05:56:18 +04:00
struct name_record * namerec ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
namerec = find_name_on_subnet ( subrec , nmbname , FIND_SELF_NAME ) ;
if ( NULL = = namerec )
1998-06-23 12:15:05 +04:00
( void ) add_name_to_subnet ( subrec , nmbname - > name , nmbname - > name_type ,
nb_flags , ttl , SELF_NAME , 1 , & registered_ip ) ;
1997-12-13 17:16:07 +03:00
else
1998-06-09 05:56:18 +04:00
update_name_ttl ( namerec , ttl ) ;
1997-12-13 17:16:07 +03:00
}
/*******************************************************************
Utility function automatically called when a name refresh or register
1998-06-30 02:50:49 +04:00
fails . Note that this is only ever called on a broadcast subnet with
one IP address per name . This is why it can just delete the name
without enumerating the IP adresses . JRA .
1997-12-13 17:16:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-06-09 05:56:18 +04:00
void standard_fail_register ( struct subnet_record * subrec ,
struct response_record * rrec ,
struct nmb_name * nmbname )
1997-12-13 17:16:07 +03:00
{
1998-06-09 05:56:18 +04:00
struct name_record * namerec ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
namerec = find_name_on_subnet ( subrec , nmbname , FIND_SELF_NAME ) ;
DEBUG ( 0 , ( " standard_fail_register: Failed to register/refresh name %s \
on subnet % s \ n " ,
1998-11-14 04:04:13 +03:00
nmb_namestr ( nmbname ) , subrec - > subnet_name ) ) ;
1997-12-13 17:16:07 +03:00
/* Remove the name from the subnet. */
1998-06-09 05:56:18 +04:00
if ( namerec )
1997-12-13 17:16:07 +03:00
remove_name_from_namelist ( subrec , namerec ) ;
}
/*******************************************************************
Utility function to remove an IP address from a name record .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void remove_nth_ip_in_record ( struct name_record * namerec , int ind )
{
1998-06-09 05:56:18 +04:00
if ( ind ! = namerec - > data . num_ips )
memmove ( ( char * ) ( & namerec - > data . ip [ ind ] ) ,
( char * ) ( & namerec - > data . ip [ ind + 1 ] ) ,
( namerec - > data . num_ips - ind - 1 ) * sizeof ( struct in_addr ) ) ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
namerec - > data . num_ips - - ;
1997-12-13 17:16:07 +03:00
namerec - > subnet - > namelist_changed = True ;
}
/*******************************************************************
Utility function to check if an IP address exists in a name record .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-06-09 05:56:18 +04:00
BOOL find_ip_in_name_record ( struct name_record * namerec , struct in_addr ip )
1997-12-13 17:16:07 +03:00
{
int i ;
1998-06-09 05:56:18 +04:00
for ( i = 0 ; i < namerec - > data . num_ips ; i + + )
if ( ip_equal ( namerec - > data . ip [ i ] , ip ) )
1997-12-13 17:16:07 +03:00
return True ;
return False ;
}
/*******************************************************************
Utility function to add an IP address to a name record .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-06-10 23:51:58 +04:00
void add_ip_to_name_record ( struct name_record * namerec , struct in_addr new_ip )
1997-12-13 17:16:07 +03:00
{
struct in_addr * new_list ;
/* Don't add one we already have. */
1998-06-10 23:51:58 +04:00
if ( find_ip_in_name_record ( namerec , new_ip ) )
1997-12-13 17:16:07 +03:00
return ;
1998-06-09 05:56:18 +04:00
new_list = ( struct in_addr * ) malloc ( ( namerec - > data . num_ips + 1 )
* sizeof ( struct in_addr ) ) ;
if ( NULL = = new_list )
1997-12-13 17:16:07 +03:00
{
DEBUG ( 0 , ( " add_ip_to_name_record: Malloc fail ! \n " ) ) ;
return ;
}
1998-06-09 05:56:18 +04:00
memcpy ( ( char * ) new_list ,
( char * ) namerec - > data . ip ,
namerec - > data . num_ips * sizeof ( struct in_addr ) ) ;
new_list [ namerec - > data . num_ips ] = new_ip ;
1997-12-13 17:16:07 +03:00
2001-09-17 08:35:51 +04:00
SAFE_FREE ( namerec - > data . ip ) ;
1998-06-09 05:56:18 +04:00
namerec - > data . ip = new_list ;
namerec - > data . num_ips + = 1 ;
1997-12-13 17:16:07 +03:00
namerec - > subnet - > namelist_changed = True ;
}
/*******************************************************************
Utility function to remove an IP address from a name record .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-06-09 05:56:18 +04:00
void remove_ip_from_name_record ( struct name_record * namerec ,
struct in_addr remove_ip )
1997-12-13 17:16:07 +03:00
{
/* Try and find the requested ip address - remove it. */
int i ;
1998-06-09 05:56:18 +04:00
int orig_num = namerec - > data . num_ips ;
1997-12-13 17:16:07 +03:00
for ( i = 0 ; i < orig_num ; i + + )
1998-06-09 05:56:18 +04:00
if ( ip_equal ( remove_ip , namerec - > data . ip [ i ] ) )
1997-12-13 17:16:07 +03:00
{
remove_nth_ip_in_record ( namerec , i ) ;
break ;
}
}
/*******************************************************************
Utility function that release_name callers can plug into as the
success function when a name release is successful . Used to save
duplication of success_function code .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-06-09 05:56:18 +04:00
void standard_success_release ( struct subnet_record * subrec ,
struct userdata_struct * userdata ,
struct nmb_name * nmbname ,
struct in_addr released_ip )
1997-12-13 17:16:07 +03:00
{
1998-06-09 05:56:18 +04:00
struct name_record * namerec ;
namerec = find_name_on_subnet ( subrec , nmbname , FIND_ANY_NAME ) ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
if ( namerec = = NULL )
1997-12-13 17:16:07 +03:00
{
1998-06-09 05:56:18 +04:00
DEBUG ( 0 , ( " standard_success_release: Name release for name %s IP %s \
on subnet % s . Name was not found on subnet . \ n " ,
1998-11-14 04:04:13 +03:00
nmb_namestr ( nmbname ) ,
1998-06-09 05:56:18 +04:00
inet_ntoa ( released_ip ) ,
subrec - > subnet_name ) ) ;
1997-12-13 17:16:07 +03:00
return ;
}
else
{
1998-06-09 05:56:18 +04:00
int orig_num = namerec - > data . num_ips ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
remove_ip_from_name_record ( namerec , released_ip ) ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
if ( namerec - > data . num_ips = = orig_num )
DEBUG ( 0 , ( " standard_success_release: Name release for name %s IP %s \
on subnet % s . This ip is not known for this name . \ n " ,
1998-11-14 04:04:13 +03:00
nmb_namestr ( nmbname ) ,
1998-06-09 05:56:18 +04:00
inet_ntoa ( released_ip ) ,
subrec - > subnet_name ) ) ;
1997-12-13 17:16:07 +03:00
}
1998-06-09 05:56:18 +04:00
if ( namerec - > data . num_ips = = 0 )
remove_name_from_namelist ( subrec , namerec ) ;
1997-12-13 17:16:07 +03:00
}
/*******************************************************************
Expires old names in a subnet namelist .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void expire_names_on_subnet ( struct subnet_record * subrec , time_t t )
{
struct name_record * namerec ;
struct name_record * next_namerec ;
1998-06-10 23:51:58 +04:00
for ( namerec = ( struct name_record * ) ubi_trFirst ( subrec - > namelist ) ;
namerec ;
namerec = next_namerec )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
next_namerec = ( struct name_record * ) ubi_trNext ( namerec ) ;
1998-06-09 05:56:18 +04:00
if ( ( namerec - > data . death_time ! = PERMANENT_TTL )
& & ( namerec - > data . death_time < t ) )
1997-12-13 17:16:07 +03:00
{
1998-06-10 23:51:58 +04:00
if ( namerec - > data . source = = SELF_NAME )
1997-12-13 17:16:07 +03:00
{
1998-06-09 05:56:18 +04:00
DEBUG ( 3 , ( " expire_names_on_subnet: Subnet %s not expiring SELF \
name % s \ n " ,
1998-11-14 04:04:13 +03:00
subrec - > subnet_name , nmb_namestr ( & namerec - > name ) ) ) ;
1998-06-09 05:56:18 +04:00
namerec - > data . death_time + = 300 ;
1997-12-13 17:16:07 +03:00
namerec - > subnet - > namelist_changed = True ;
continue ;
}
1998-06-09 05:56:18 +04:00
DEBUG ( 3 , ( " expire_names_on_subnet: Subnet %s - removing expired name %s \n " ,
1998-11-14 04:04:13 +03:00
subrec - > subnet_name , nmb_namestr ( & namerec - > name ) ) ) ;
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
remove_name_from_namelist ( subrec , namerec ) ;
1997-12-13 17:16:07 +03:00
}
}
}
/*******************************************************************
Expires old names in all subnet namelists .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void expire_names ( time_t t )
{
struct subnet_record * subrec ;
1998-06-09 05:56:18 +04:00
for ( subrec = FIRST_SUBNET ;
subrec ;
subrec = NEXT_SUBNET_INCLUDING_UNICAST ( subrec ) )
1997-12-13 17:16:07 +03:00
{
1998-06-09 05:56:18 +04:00
expire_names_on_subnet ( subrec , t ) ;
1997-12-13 17:16:07 +03:00
}
}
/****************************************************************************
Add the magic samba names , useful for finding samba servers .
These go directly into the name list for a particular subnet ,
without going through the normal registration process .
When adding them to the unicast subnet , add them as a list of
all broadcast subnet IP addresses .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-06-09 05:56:18 +04:00
void add_samba_names_to_subnet ( struct subnet_record * subrec )
1997-12-13 17:16:07 +03:00
{
struct in_addr * iplist = & subrec - > myip ;
int num_ips = 1 ;
/* These names are added permanently (ttl of zero) and will NOT be
refreshed . */
1998-06-10 23:51:58 +04:00
if ( ( subrec = = unicast_subnet )
| | ( subrec = = wins_server_subnet )
| | ( subrec = = remote_broadcast_subnet ) )
1997-12-13 17:16:07 +03:00
{
struct subnet_record * bcast_subrecs ;
int i ;
/* Create an IP list containing all our known subnets. */
num_ips = iface_count ( ) ;
1998-06-09 05:56:18 +04:00
iplist = ( struct in_addr * ) malloc ( num_ips * sizeof ( struct in_addr ) ) ;
if ( NULL = = iplist )
1997-12-13 17:16:07 +03:00
{
DEBUG ( 0 , ( " add_samba_names_to_subnet: Malloc fail ! \n " ) ) ;
return ;
}
1998-06-09 05:56:18 +04:00
for ( bcast_subrecs = FIRST_SUBNET , i = 0 ;
bcast_subrecs ;
bcast_subrecs = NEXT_SUBNET_EXCLUDING_UNICAST ( bcast_subrecs ) , i + + )
1997-12-13 17:16:07 +03:00
iplist [ i ] = bcast_subrecs - > myip ;
}
1998-06-10 23:51:58 +04:00
( void ) add_name_to_subnet ( subrec , " * " , 0x0 , samba_nb_type , PERMANENT_TTL ,
PERMANENT_NAME , num_ips , iplist ) ;
( void ) add_name_to_subnet ( subrec , " * " , 0x20 , samba_nb_type , PERMANENT_TTL ,
PERMANENT_NAME , num_ips , iplist ) ;
( void ) add_name_to_subnet ( subrec , " __SAMBA__ " , 0x20 , samba_nb_type , PERMANENT_TTL ,
PERMANENT_NAME , num_ips , iplist ) ;
( void ) add_name_to_subnet ( subrec , " __SAMBA__ " , 0x00 , samba_nb_type , PERMANENT_TTL ,
PERMANENT_NAME , num_ips , iplist ) ;
1997-12-13 17:16:07 +03:00
if ( iplist ! = & subrec - > myip )
2001-09-17 08:35:51 +04:00
SAFE_FREE ( iplist ) ;
1997-12-13 17:16:07 +03:00
}
/****************************************************************************
Dump the contents of the namelists on all the subnets ( including unicast )
into a file . Initiated by SIGHUP - used to debug the state of the namelists .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-09-10 17:09:54 +04:00
static void dump_subnet_namelist ( struct subnet_record * subrec , XFILE * fp )
1997-12-13 17:16:07 +03:00
{
struct name_record * namerec ;
char * src_type ;
struct tm * tm ;
int i ;
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " Subnet %s \n ---------------------- \n " , subrec - > subnet_name ) ;
1998-06-10 23:51:58 +04:00
for ( namerec = ( struct name_record * ) ubi_trFirst ( subrec - > namelist ) ;
namerec ;
namerec = ( struct name_record * ) ubi_trNext ( namerec ) )
1997-12-13 17:16:07 +03:00
{
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " \t Name = %s \t " , nmb_namestr ( & namerec - > name ) ) ;
1998-06-09 05:56:18 +04:00
switch ( namerec - > data . source )
1997-12-13 17:16:07 +03:00
{
case LMHOSTS_NAME :
src_type = " LMHOSTS_NAME " ;
break ;
case WINS_PROXY_NAME :
src_type = " WINS_PROXY_NAME " ;
break ;
case REGISTER_NAME :
src_type = " REGISTER_NAME " ;
break ;
case SELF_NAME :
src_type = " SELF_NAME " ;
break ;
case DNS_NAME :
src_type = " DNS_NAME " ;
break ;
case DNSFAIL_NAME :
src_type = " DNSFAIL_NAME " ;
break ;
case PERMANENT_NAME :
src_type = " PERMANENT_NAME " ;
break ;
default :
src_type = " unknown! " ;
break ;
}
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " Source = %s \n b_flags = %x \t " , src_type , namerec - > data . nb_flags ) ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
if ( namerec - > data . death_time ! = PERMANENT_TTL )
1997-12-13 17:16:07 +03:00
{
1998-06-09 05:56:18 +04:00
tm = LocalTime ( & namerec - > data . death_time ) ;
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " death_time = %s \t " , asctime ( tm ) ) ;
1997-12-13 17:16:07 +03:00
}
else
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " death_time = PERMANENT \t " ) ;
1997-12-13 17:16:07 +03:00
1998-06-09 05:56:18 +04:00
if ( namerec - > data . refresh_time ! = PERMANENT_TTL )
1997-12-13 17:16:07 +03:00
{
1998-06-09 05:56:18 +04:00
tm = LocalTime ( & namerec - > data . refresh_time ) ;
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " refresh_time = %s \n " , asctime ( tm ) ) ;
1997-12-13 17:16:07 +03:00
}
else
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " refresh_time = PERMANENT \n " ) ;
1997-12-13 17:16:07 +03:00
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " \t \t number of IPS = %d " , namerec - > data . num_ips ) ;
1998-06-09 05:56:18 +04:00
for ( i = 0 ; i < namerec - > data . num_ips ; i + + )
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " \t %s " , inet_ntoa ( namerec - > data . ip [ i ] ) ) ;
1997-12-13 17:16:07 +03:00
2001-09-10 17:09:54 +04:00
x_fprintf ( fp , " \n \n " ) ;
1997-12-13 17:16:07 +03:00
}
}
/****************************************************************************
Dump the contents of the namelists on all the subnets ( including unicast )
into a file . Initiated by SIGHUP - used to debug the state of the namelists .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1998-04-13 23:24:06 +04:00
void dump_all_namelists ( void )
1997-12-13 17:16:07 +03:00
{
2001-09-10 17:09:54 +04:00
XFILE * fp ;
1997-12-13 17:16:07 +03:00
struct subnet_record * subrec ;
2001-09-10 17:09:54 +04:00
fp = x_fopen ( lock_path ( " namelist.debug " ) , O_WRONLY | O_CREAT | O_TRUNC , 0644 ) ;
1997-12-13 17:16:07 +03:00
if ( ! fp )
{
DEBUG ( 0 , ( " dump_all_namelists: Can't open file %s. Error was %s \n " ,
2000-01-03 02:00:27 +03:00
" namelist.debug " , strerror ( errno ) ) ) ;
1997-12-13 17:16:07 +03:00
return ;
}
1998-06-09 05:56:18 +04:00
for ( subrec = FIRST_SUBNET ;
subrec ;
subrec = NEXT_SUBNET_INCLUDING_UNICAST ( subrec ) )
1998-06-10 23:51:58 +04:00
dump_subnet_namelist ( subrec , fp ) ;
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
if ( ! we_are_a_wins_client ( ) )
dump_subnet_namelist ( unicast_subnet , fp ) ;
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
if ( remote_broadcast_subnet - > namelist ! = NULL )
dump_subnet_namelist ( remote_broadcast_subnet , fp ) ;
1997-12-13 17:16:07 +03:00
1998-06-10 23:51:58 +04:00
if ( wins_server_subnet ! = NULL )
dump_subnet_namelist ( wins_server_subnet , fp ) ;
2001-09-10 17:09:54 +04:00
x_fclose ( fp ) ;
1997-12-13 17:16:07 +03:00
}