1997-10-22 15:02:00 +04:00
/*
Unix SMB / Netbios implementation .
a async DNS handler
1997-11-02 04:33:28 +03:00
Copyright ( C ) Andrew Tridgell 1997
1997-10-22 15:02:00 +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
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 .
1997-11-02 04:33:28 +03:00
*/
1997-10-22 15:02:00 +04:00
# include "includes.h"
extern int DEBUGLEVEL ;
/***************************************************************************
1997-12-13 17:16:07 +03:00
Add a DNS result to the name cache .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1997-10-22 15:02:00 +04:00
static struct name_record * add_dns_result ( struct nmb_name * question , struct in_addr addr )
{
1997-10-24 02:30:57 +04:00
int name_type = question - > name_type ;
char * qname = question - > name ;
1997-12-13 17:16:07 +03:00
1997-10-24 02:30:57 +04:00
if ( ! addr . s_addr ) {
/* add the fail to WINS cache of names. give it 1 hour in the cache */
1997-12-13 17:16:07 +03:00
DEBUG ( 3 , ( " add_dns_result: Negative DNS answer for %s \n " , qname ) ) ;
add_name_to_subnet ( wins_server_subnet , qname , name_type ,
NB_ACTIVE , 60 * 60 , DNSFAIL_NAME , 1 , & addr ) ;
1997-10-24 02:30:57 +04:00
return NULL ;
}
/* add it to our WINS cache of names. give it 2 hours in the cache */
1997-12-13 17:16:07 +03:00
DEBUG ( 3 , ( " add_dns_result: DNS gave answer for %s of %s \n " , qname , inet_ntoa ( addr ) ) ) ;
1997-10-24 02:30:57 +04:00
1997-12-13 17:16:07 +03:00
return add_name_to_subnet ( wins_server_subnet , qname , name_type ,
NB_ACTIVE , 2 * 60 * 60 , DNS_NAME , 1 , & addr ) ;
1997-10-22 15:02:00 +04:00
}
# ifndef SYNC_DNS
static int fd_in = - 1 , fd_out = - 1 ;
static int child_pid = - 1 ;
static int in_dns ;
/* this is the structure that is passed between the parent and child */
struct query_record {
struct nmb_name name ;
struct in_addr result ;
} ;
1997-11-02 04:25:50 +03:00
/* a queue of pending requests waiting to be sent to the DNS child */
1997-10-22 15:02:00 +04:00
static struct packet_struct * dns_queue ;
1997-11-02 04:25:50 +03:00
/* the packet currently being processed by the dns child */
static struct packet_struct * dns_current ;
1997-10-22 15:02:00 +04:00
/***************************************************************************
return the fd used to gather async dns replies . This is added to the select
loop
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int asyncdns_fd ( void )
{
return fd_in ;
}
/***************************************************************************
handle DNS queries arriving from the parent
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void asyncdns_process ( void )
{
struct query_record r ;
fstring qname ;
1997-11-02 02:42:28 +03:00
DEBUGLEVEL = - 1 ;
1997-10-22 15:02:00 +04:00
while ( 1 ) {
if ( read_data ( fd_in , ( char * ) & r , sizeof ( r ) ) ! = sizeof ( r ) )
break ;
fstrcpy ( qname , r . name . name ) ;
r . result . s_addr = interpret_addr ( qname ) ;
if ( write_data ( fd_out , ( char * ) & r , sizeof ( r ) ) ! = sizeof ( r ) )
break ;
}
1997-11-02 02:42:28 +03:00
_exit ( 0 ) ;
1997-10-22 15:02:00 +04:00
}
1997-12-13 17:16:07 +03:00
/**************************************************************************** **
catch a sigterm
We need a separate term handler here so we don ' t release any
names that our parent is going to release , or overwrite a
WINS db that our parent is going to write .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static int sig_term ( )
{
1997-12-26 12:57:40 +03:00
_exit ( 0 ) ;
1997-12-13 17:16:07 +03:00
/* Keep compiler happy.. */
return 0 ;
}
1997-10-22 15:02:00 +04:00
/***************************************************************************
create a child process to handle DNS lookups
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void start_async_dns ( void )
{
int fd1 [ 2 ] , fd2 [ 2 ] ;
signal ( SIGCLD , SIG_IGN ) ;
if ( pipe ( fd1 ) | | pipe ( fd2 ) ) {
return ;
}
child_pid = fork ( ) ;
if ( child_pid ) {
fd_in = fd1 [ 0 ] ;
fd_out = fd2 [ 1 ] ;
close ( fd1 [ 1 ] ) ;
close ( fd2 [ 0 ] ) ;
return ;
}
fd_in = fd2 [ 0 ] ;
fd_out = fd1 [ 1 ] ;
1997-12-04 13:58:40 +03:00
signal ( SIGUSR2 , SIG_IGN ) ;
signal ( SIGUSR1 , SIG_IGN ) ;
signal ( SIGHUP , SIG_IGN ) ;
1997-12-26 12:57:40 +03:00
signal ( SIGTERM , SIGNAL_CAST sig_term ) ;
1997-12-04 13:58:40 +03:00
1997-10-22 15:02:00 +04:00
asyncdns_process ( ) ;
}
/***************************************************************************
check if a particular name is already being queried
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1997-11-02 04:25:50 +03:00
static BOOL query_current ( struct query_record * r )
1997-10-22 15:02:00 +04:00
{
1997-11-02 04:25:50 +03:00
return dns_current & &
1997-12-13 17:16:07 +03:00
nmb_name_equal ( & r - > name ,
1997-11-02 04:25:50 +03:00
& dns_current - > packet . nmb . question . question_name ) ;
1997-10-22 15:02:00 +04:00
}
1997-11-02 04:25:50 +03:00
/***************************************************************************
write a query to the child process
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL write_child ( struct packet_struct * p )
{
struct query_record r ;
r . name = p - > packet . nmb . question . question_name ;
return write_data ( fd_out , ( char * ) & r , sizeof ( r ) ) = = sizeof ( r ) ;
}
1997-10-22 15:02:00 +04:00
/***************************************************************************
check the DNS queue
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void run_dns_queue ( void )
{
struct query_record r ;
struct packet_struct * p , * p2 ;
1997-12-13 17:16:07 +03:00
struct name_record * namerec ;
1997-12-04 11:10:49 +03:00
int size ;
1997-10-22 15:02:00 +04:00
if ( fd_in = = - 1 )
return ;
1997-12-04 13:58:40 +03:00
if ( ! process_exists ( child_pid ) ) {
close ( fd_in ) ;
start_async_dns ( ) ;
}
1997-12-04 11:10:49 +03:00
if ( ( size = read_data ( fd_in , ( char * ) & r , sizeof ( r ) ) ) ! = sizeof ( r ) ) {
if ( size ) {
DEBUG ( 0 , ( " Incomplete DNS answer from child! \n " ) ) ;
fd_in = - 1 ;
}
1997-10-22 15:02:00 +04:00
return ;
}
1997-12-13 17:16:07 +03:00
namerec = add_dns_result ( & r . name , r . result ) ;
1997-10-22 15:02:00 +04:00
1997-11-02 04:25:50 +03:00
if ( dns_current ) {
if ( query_current ( & r ) ) {
1997-12-13 17:16:07 +03:00
DEBUG ( 3 , ( " DNS calling send_wins_name_query_response \n " ) ) ;
1997-11-02 04:25:50 +03:00
in_dns = 1 ;
1997-12-13 17:16:07 +03:00
if ( namerec = = NULL )
send_wins_name_query_response ( NAM_ERR , dns_current , NULL ) ;
else
send_wins_name_query_response ( 0 , dns_current , namerec ) ;
1997-11-02 04:25:50 +03:00
in_dns = 0 ;
}
dns_current - > locked = False ;
free_packet ( dns_current ) ;
dns_current = NULL ;
}
1997-10-22 15:02:00 +04:00
/* loop over the whole dns queue looking for entries that
match the result we just got */
for ( p = dns_queue ; p ; ) {
struct nmb_packet * nmb = & p - > packet . nmb ;
struct nmb_name * question = & nmb - > question . question_name ;
1997-12-13 17:16:07 +03:00
if ( nmb_name_equal ( question , & r . name ) ) {
DEBUG ( 3 , ( " DNS calling send_wins_name_query_response \n " ) ) ;
1997-10-22 15:02:00 +04:00
in_dns = 1 ;
1997-12-13 17:16:07 +03:00
if ( namerec = = NULL )
send_wins_name_query_response ( NAM_ERR , p , NULL ) ;
else
send_wins_name_query_response ( 0 , p , namerec ) ;
1997-10-22 15:02:00 +04:00
in_dns = 0 ;
p - > locked = False ;
if ( p - > prev )
p - > prev - > next = p - > next ;
else
dns_queue = p - > next ;
if ( p - > next )
p - > next - > prev = p - > prev ;
p2 = p - > next ;
free_packet ( p ) ;
p = p2 ;
} else {
p = p - > next ;
}
}
1997-11-02 04:25:50 +03:00
if ( dns_queue ) {
dns_current = dns_queue ;
dns_queue = dns_queue - > next ;
if ( dns_queue ) dns_queue - > prev = NULL ;
dns_current - > next = NULL ;
if ( ! write_child ( dns_current ) ) {
DEBUG ( 3 , ( " failed to send DNS query to child! \n " ) ) ;
return ;
}
}
1997-10-22 15:02:00 +04:00
}
/***************************************************************************
queue a DNS query
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL queue_dns_query ( struct packet_struct * p , struct nmb_name * question ,
struct name_record * * n )
{
if ( in_dns | | fd_in = = - 1 )
return False ;
1997-11-02 04:25:50 +03:00
if ( ! dns_current ) {
if ( ! write_child ( p ) ) {
DEBUG ( 3 , ( " failed to send DNS query to child! \n " ) ) ;
return False ;
}
dns_current = p ;
p - > locked = True ;
} else {
p - > locked = True ;
p - > next = dns_queue ;
p - > prev = NULL ;
if ( p - > next )
p - > next - > prev = p ;
dns_queue = p ;
1997-10-22 15:02:00 +04:00
}
DEBUG ( 3 , ( " added DNS query for %s \n " , namestr ( question ) ) ) ;
return True ;
}
# else
/***************************************************************************
we use this then we can ' t do async DNS lookups
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL queue_dns_query ( struct packet_struct * p , struct nmb_name * question ,
struct name_record * * n )
{
char * qname = question - > name ;
struct in_addr dns_ip ;
DEBUG ( 3 , ( " DNS search for %s - " , namestr ( question ) ) ) ;
dns_ip . s_addr = interpret_addr ( qname ) ;
* n = add_dns_result ( question , dns_ip ) ;
1997-12-13 17:16:07 +03:00
if ( * n = = NULL )
send_wins_name_query_response ( NAM_ERR , p , NULL ) ;
else
send_wins_name_query_response ( 0 , p , * n ) ;
1997-10-22 15:02:00 +04:00
return False ;
}
# endif