2002-10-30 11:52:36 +00:00
/*
Unix SMB / CIFS implementation .
module loading system
Copyright ( C ) Jelmer Vernooij 2002
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"
# ifdef HAVE_DLOPEN
NTSTATUS smb_load_module ( const char * module_name )
{
void * handle ;
init_module_function * init ;
2002-10-30 12:07:49 +00:00
NTSTATUS nt_status ;
2003-01-17 21:23:14 +00:00
const char * error ;
2002-10-30 11:52:36 +00:00
/* Always try to use LAZY symbol resolving; if the plugin has
* backwards compatibility , there might be symbols in the
* plugin referencing to old ( removed ) functions
*/
2002-10-30 17:50:36 +00:00
handle = sys_dlopen ( module_name , RTLD_LAZY ) ;
2002-10-30 11:52:36 +00:00
if ( ! handle ) {
DEBUG ( 0 , ( " Error loading module '%s': %s \n " , module_name , sys_dlerror ( ) ) ) ;
return NT_STATUS_UNSUCCESSFUL ;
}
init = sys_dlsym ( handle , " init_module " ) ;
2003-01-17 21:23:14 +00:00
/* we must check sys_dlerror() to determine if it worked, because
sys_dlsym ( ) can validly return NULL */
error = sys_dlerror ( ) ;
if ( error ) {
DEBUG ( 0 , ( " Error trying to resolve symbol 'init_module' in %s: %s \n " , module_name , error ) ) ;
2002-10-30 11:52:36 +00:00
return NT_STATUS_UNSUCCESSFUL ;
}
2002-10-30 12:07:49 +00:00
nt_status = init ( ) ;
2002-10-30 11:52:36 +00:00
DEBUG ( 2 , ( " Module '%s' loaded \n " , module_name ) ) ;
2002-10-30 12:07:49 +00:00
return nt_status ;
2002-10-30 11:52:36 +00:00
}
2002-10-31 18:08:45 +00:00
/* Load all modules in list and return number of
* modules that has been successfully loaded */
int smb_load_modules ( const char * * modules )
{
int i ;
int success = 0 ;
for ( i = 0 ; modules [ i ] ; i + + ) {
if ( NT_STATUS_IS_OK ( smb_load_module ( modules [ i ] ) ) ) {
success + + ;
}
}
2002-11-13 13:47:12 +00:00
DEBUG ( 2 , ( " %d modules successfully loaded \n " , success ) ) ;
2002-10-31 18:08:45 +00:00
return success ;
}
2002-10-30 11:52:36 +00:00
# else /* HAVE_DLOPEN */
NTSTATUS smb_load_module ( const char * module_name )
{
DEBUG ( 0 , ( " This samba executable has not been build with plugin support " ) ) ;
return NT_STATUS_NOT_SUPPORTED ;
}
2002-10-31 18:08:45 +00:00
int smb_load_modules ( const char * * modules )
{
DEBUG ( 0 , ( " This samba executable has not been build with plugin support " ) ) ;
return - 1 ;
}
2002-10-30 11:52:36 +00:00
# endif /* HAVE_DLOPEN */