2008-12-16 11:30:16 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2008-12-16 11:30:16 +03:00
a WINS nsswitch module
1999-12-17 09:11:25 +03:00
Copyright ( C ) Andrew Tridgell 1999
2008-12-16 11:30:16 +03:00
1999-12-17 09:11:25 +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
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1999-12-17 09:11:25 +03:00
( at your option ) any later version .
2008-12-16 11:30:16 +03:00
1999-12-17 09:11:25 +03:00
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 .
2008-12-16 11:30:16 +03:00
1999-12-17 09:11:25 +03:00
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/>.
2008-12-16 11:30:16 +03:00
1999-12-17 09:11:25 +03:00
*/
# include "includes.h"
2010-08-18 14:42:49 +04:00
# include "nsswitch/winbind_nss.h"
2015-10-23 13:31:43 +03:00
# include "nsswitch/libwbclient/wbclient.h"
2010-08-18 14:42:49 +04:00
2001-12-12 19:08:32 +03:00
# ifdef HAVE_NS_API_H
# include <ns_daemon.h>
# endif
1999-12-17 09:11:25 +03:00
2008-11-19 22:22:50 +03:00
# if HAVE_PTHREAD_H
# include <pthread.h>
# endif
# if HAVE_PTHREAD
static pthread_mutex_t wins_nss_mutex = PTHREAD_MUTEX_INITIALIZER ;
# endif
1999-12-17 09:11:25 +03:00
# ifndef INADDRSZ
# define INADDRSZ 4
# endif
2016-09-19 17:17:11 +03:00
NSS_STATUS _nss_wins_gethostbyname_r ( const char * hostname ,
struct hostent * he ,
char * buffer ,
size_t buflen ,
int * errnop ,
int * h_errnop ) ;
NSS_STATUS _nss_wins_gethostbyname2_r ( const char * name ,
int af ,
struct hostent * he ,
char * buffer ,
size_t buflen ,
int * errnop ,
int * h_errnop ) ;
2006-12-20 04:10:04 +03:00
2015-10-23 13:31:43 +03:00
static char * lookup_byname_backend ( const char * name )
1999-12-17 09:11:25 +03:00
{
2015-01-30 16:29:26 +03:00
const char * p ;
2016-04-16 11:57:12 +03:00
char * ip , * ipp ;
2015-01-30 16:29:26 +03:00
size_t nbt_len ;
2015-10-23 13:31:43 +03:00
wbcErr result ;
1999-12-17 09:11:25 +03:00
2015-01-30 16:29:26 +03:00
nbt_len = strlen ( name ) ;
if ( nbt_len > MAX_NETBIOSNAME_LEN - 1 ) {
return NULL ;
}
p = strchr ( name , ' . ' ) ;
if ( p ! = NULL ) {
return NULL ;
}
2015-10-23 13:31:43 +03:00
result = wbcResolveWinsByName ( name , & ip ) ;
if ( result ! = WBC_ERR_SUCCESS ) {
return NULL ;
1999-12-17 09:11:25 +03:00
}
2016-04-16 11:57:12 +03:00
ipp = strchr ( ip , ' \t ' ) ;
if ( ipp ! = NULL ) {
* ipp = ' \0 ' ;
}
2015-10-23 13:31:43 +03:00
return ip ;
1999-12-17 09:11:25 +03:00
}
2001-12-12 19:08:32 +03:00
# ifdef HAVE_NS_API_H
2003-07-23 10:37:51 +04:00
2015-10-23 13:31:43 +03:00
static char * lookup_byaddr_backend ( const char * ip )
2003-07-23 10:37:51 +04:00
{
2015-10-23 13:31:43 +03:00
wbcErr result ;
char * name = NULL ;
2003-07-23 10:37:51 +04:00
2015-10-23 13:31:43 +03:00
result = wbcResolveWinsByIP ( ip , & name ) ;
if ( result ! = WBC_ERR_SUCCESS ) {
2011-03-02 12:44:14 +03:00
return NULL ;
}
2003-07-23 10:37:51 +04:00
2015-10-23 13:31:43 +03:00
return name ;
2003-07-23 10:37:51 +04:00
}
2001-12-12 19:08:32 +03:00
/* IRIX version */
int init ( void )
{
2015-10-23 13:31:43 +03:00
bool ok ;
2001-12-22 03:51:32 +03:00
nsd_logprintf ( NSD_LOG_MIN , " entering init (wins) \n " ) ;
2015-10-23 13:31:43 +03:00
ok = nss_wins_init ( ) ;
if ( ! ok ) {
return NSD_ERROR ;
}
2001-12-12 19:08:32 +03:00
return NSD_OK ;
}
int lookup ( nsd_file_t * rq )
{
char * map ;
char * key ;
2001-12-22 03:51:32 +03:00
char * addr ;
int i , count , len , size ;
char response [ 1024 ] ;
2007-10-19 04:40:25 +04:00
bool found = False ;
2001-12-12 19:08:32 +03:00
2001-12-22 03:51:32 +03:00
nsd_logprintf ( NSD_LOG_MIN , " entering lookup (wins) \n " ) ;
2008-12-16 11:30:16 +03:00
if ( ! rq )
2001-12-12 19:08:32 +03:00
return NSD_ERROR ;
map = nsd_attr_fetch_string ( rq - > f_attrs , " table " , ( char * ) 0 ) ;
if ( ! map ) {
rq - > f_status = NS_FATAL ;
return NSD_ERROR ;
}
key = nsd_attr_fetch_string ( rq - > f_attrs , " key " , ( char * ) 0 ) ;
if ( ! key | | ! * key ) {
rq - > f_status = NS_FATAL ;
return NSD_ERROR ;
}
2001-12-22 03:51:32 +03:00
response [ 0 ] = ' \0 ' ;
len = sizeof ( response ) - 2 ;
2008-12-16 11:30:16 +03:00
/*
2001-12-22 03:51:32 +03:00
* response needs to be a string of the following format
* ip_address [ ip_address ] * \ tname [ alias ] *
*/
2011-05-13 22:21:30 +04:00
if ( strcasecmp_m ( map , " hosts.byaddr " ) = = 0 ) {
2015-10-23 13:31:43 +03:00
char * name ;
name = lookup_byaddr_backend ( key ) ;
if ( name ! = NULL ) {
size = strlen ( key ) + 1 ;
if ( size > len ) {
return NSD_ERROR ;
2001-12-22 03:51:32 +03:00
}
2015-10-23 13:31:43 +03:00
len - = size ;
strncat ( response , key , size ) ;
strncat ( response , " \t " , 1 ) ;
size = strlen ( name ) + 1 ;
if ( size > len ) {
return NSD_ERROR ;
}
len - = size ;
strncat ( response , name , size ) ;
strncat ( response , " " , 1 ) ;
found = True ;
2001-12-22 03:51:32 +03:00
}
2015-10-23 13:31:43 +03:00
response [ strlen ( response ) - 1 ] = ' \n ' ;
2011-05-13 22:21:30 +04:00
} else if ( strcasecmp_m ( map , " hosts.byname " ) = = 0 ) {
2015-10-23 13:31:43 +03:00
char * ip ;
ip = lookup_byname_backend ( key ) ;
if ( ip ! = NULL ) {
size = strlen ( ip ) + 1 ;
if ( size > len ) {
wbcFreeMemory ( ip ) ;
return NSD_ERROR ;
}
len - = size ;
strncat ( response , ip , size ) ;
strncat ( response , " \t " , 1 ) ;
size = strlen ( key ) + 1 ;
wbcFreeMemory ( ip ) ;
if ( size > len ) {
return NSD_ERROR ;
}
strncat ( response , key , size ) ;
strncat ( response , " \n " , 1 ) ;
found = True ;
2008-12-16 11:30:16 +03:00
}
2001-12-12 19:08:32 +03:00
}
2001-12-22 03:51:32 +03:00
if ( found ) {
nsd_logprintf ( NSD_LOG_LOW , " lookup (wins %s) %s \n " , map , response ) ;
nsd_set_result ( rq , NS_SUCCESS , response , strlen ( response ) , VOLATILE ) ;
return NSD_OK ;
}
nsd_logprintf ( NSD_LOG_LOW , " lookup (wins) not found \n " ) ;
rq - > f_status = NS_NOTFOUND ;
return NSD_NEXT ;
2001-12-12 19:08:32 +03:00
}
# else
2003-09-08 09:51:57 +04:00
/* Allocate some space from the nss static buffer. The buffer and buflen
are the pointers passed in by the C library to the _nss_ * _ *
functions . */
2015-10-23 13:31:43 +03:00
static char * get_static ( char * * buffer , size_t * buflen , size_t len )
2003-09-08 09:51:57 +04:00
{
char * result ;
/* Error check. We return false if things aren't set up right, or
there isn ' t enough buffer space left . */
2008-12-16 11:30:16 +03:00
2003-09-08 09:51:57 +04:00
if ( ( buffer = = NULL ) | | ( buflen = = NULL ) | | ( * buflen < len ) ) {
return NULL ;
}
/* Return an index into the static buffer */
result = * buffer ;
* buffer + = len ;
* buflen - = len ;
return result ;
}
2001-12-22 03:51:32 +03:00
/****************************************************************************
gethostbyname ( ) - we ignore any domain portion of the name and only
handle names that are at most 15 characters long
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-12-12 19:08:32 +03:00
NSS_STATUS
2016-09-19 17:17:11 +03:00
_nss_wins_gethostbyname_r ( const char * hostname ,
struct hostent * he ,
char * buffer ,
size_t buflen ,
int * errnop ,
int * h_errnop )
1999-12-17 09:11:25 +03:00
{
2008-11-19 22:22:50 +03:00
NSS_STATUS nss_status = NSS_STATUS_SUCCESS ;
2015-10-23 13:31:43 +03:00
char * ip ;
struct in_addr in ;
int i ;
2003-09-08 09:51:57 +04:00
fstring name ;
size_t namelen ;
2015-10-23 13:31:43 +03:00
int rc ;
2008-12-16 11:30:16 +03:00
2008-11-19 22:22:50 +03:00
# if HAVE_PTHREAD
pthread_mutex_lock ( & wins_nss_mutex ) ;
# endif
2001-05-16 02:01:48 +04:00
memset ( he , ' \0 ' , sizeof ( * he ) ) ;
2003-09-08 09:51:57 +04:00
fstrcpy ( name , hostname ) ;
/* Do lookup */
2001-05-16 02:01:48 +04:00
2015-10-23 13:31:43 +03:00
ip = lookup_byname_backend ( name ) ;
if ( ip = = NULL ) {
2016-11-13 19:40:21 +03:00
* h_errnop = HOST_NOT_FOUND ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_NOTFOUND ;
goto out ;
}
1999-12-17 09:11:25 +03:00
2015-10-23 13:31:43 +03:00
rc = inet_pton ( AF_INET , ip , & in ) ;
wbcFreeMemory ( ip ) ;
if ( rc = = 0 ) {
2016-09-19 17:17:11 +03:00
* errnop = errno ;
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_INTERNAL ;
2015-10-23 13:31:43 +03:00
nss_status = NSS_STATUS_TRYAGAIN ;
goto out ;
}
2003-09-08 09:51:57 +04:00
/* Copy h_name */
1999-12-17 09:11:25 +03:00
2003-09-08 09:51:57 +04:00
namelen = strlen ( name ) + 1 ;
2007-09-08 09:18:08 +04:00
if ( ( he - > h_name = get_static ( & buffer , & buflen , namelen ) ) = = NULL ) {
2016-09-19 17:17:11 +03:00
* errnop = EAGAIN ;
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_INTERNAL ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_TRYAGAIN ;
goto out ;
2007-09-08 09:18:08 +04:00
}
2003-09-08 09:51:57 +04:00
memcpy ( he - > h_name , name , namelen ) ;
/* Copy h_addr_list, align to pointer boundary first */
1999-12-17 09:11:25 +03:00
2003-09-08 09:51:57 +04:00
if ( ( i = ( unsigned long ) ( buffer ) % sizeof ( char * ) ) ! = 0 )
i = sizeof ( char * ) - i ;
2007-09-08 09:18:08 +04:00
if ( get_static ( & buffer , & buflen , i ) = = NULL ) {
2016-09-19 17:17:11 +03:00
* errnop = EAGAIN ;
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_INTERNAL ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_TRYAGAIN ;
goto out ;
2007-09-08 09:18:08 +04:00
}
2003-09-08 09:51:57 +04:00
if ( ( he - > h_addr_list = ( char * * ) get_static (
2016-04-16 11:57:12 +03:00
& buffer , & buflen , 2 * sizeof ( char * ) ) ) = = NULL ) {
2016-09-19 17:17:11 +03:00
* errnop = EAGAIN ;
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_INTERNAL ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_TRYAGAIN ;
goto out ;
2007-09-08 09:18:08 +04:00
}
2003-09-08 09:51:57 +04:00
2015-10-23 13:31:43 +03:00
if ( ( he - > h_addr_list [ 0 ] = get_static ( & buffer , & buflen ,
INADDRSZ ) ) = = NULL ) {
2016-09-19 17:17:11 +03:00
* errnop = EAGAIN ;
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_INTERNAL ;
2015-10-23 13:31:43 +03:00
nss_status = NSS_STATUS_TRYAGAIN ;
goto out ;
1999-12-17 09:11:25 +03:00
}
2016-04-16 11:57:12 +03:00
memcpy ( he - > h_addr_list [ 0 ] , & in , INADDRSZ ) ;
2003-09-08 09:51:57 +04:00
2016-04-16 11:57:12 +03:00
he - > h_addr_list [ 1 ] = NULL ;
2001-05-16 01:53:19 +04:00
2003-09-08 09:51:57 +04:00
/* Set h_addr_type and h_length */
he - > h_addrtype = AF_INET ;
he - > h_length = INADDRSZ ;
/* Set h_aliases */
if ( ( i = ( unsigned long ) ( buffer ) % sizeof ( char * ) ) ! = 0 )
i = sizeof ( char * ) - i ;
2008-11-19 22:22:50 +03:00
if ( get_static ( & buffer , & buflen , i ) = = NULL ) {
2016-09-19 17:17:11 +03:00
* errnop = EAGAIN ;
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_INTERNAL ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_TRYAGAIN ;
goto out ;
}
2003-09-08 09:51:57 +04:00
if ( ( he - > h_aliases = ( char * * ) get_static (
2008-11-19 22:22:50 +03:00
& buffer , & buflen , sizeof ( char * ) ) ) = = NULL ) {
2016-09-19 17:17:11 +03:00
* errnop = EAGAIN ;
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_INTERNAL ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_TRYAGAIN ;
goto out ;
}
2003-09-08 09:51:57 +04:00
he - > h_aliases [ 0 ] = NULL ;
1999-12-17 09:11:25 +03:00
2016-09-20 14:26:52 +03:00
* h_errnop = NETDB_SUCCESS ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_SUCCESS ;
out :
# if HAVE_PTHREAD
pthread_mutex_unlock ( & wins_nss_mutex ) ;
# endif
return nss_status ;
1999-12-17 09:11:25 +03:00
}
2001-12-12 19:08:32 +03:00
2002-07-15 14:35:28 +04:00
NSS_STATUS
2016-09-19 17:17:11 +03:00
_nss_wins_gethostbyname2_r ( const char * name ,
int af ,
struct hostent * he ,
char * buffer ,
size_t buflen ,
int * errnop ,
int * h_errnop )
2002-07-15 14:35:28 +04:00
{
2008-11-19 22:22:50 +03:00
NSS_STATUS nss_status ;
2002-07-15 14:35:28 +04:00
if ( af ! = AF_INET ) {
2016-09-19 17:17:11 +03:00
* errnop = EAFNOSUPPORT ;
2002-07-15 14:35:28 +04:00
* h_errnop = NO_DATA ;
2008-11-19 22:22:50 +03:00
nss_status = NSS_STATUS_UNAVAIL ;
} else {
2016-09-19 17:17:11 +03:00
nss_status = _nss_wins_gethostbyname_r ( name ,
he ,
buffer ,
buflen ,
errnop ,
h_errnop ) ;
2002-07-15 14:35:28 +04:00
}
2008-11-19 22:22:50 +03:00
return nss_status ;
2002-07-15 14:35:28 +04:00
}
# endif