2000-05-09 15:43:00 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2000-05-09 15:43:00 +04:00
Winbind daemon for ntdom nss module
2002-11-07 10:17:09 +03:00
Copyright ( C ) by Tim Potter 2000 - 2002
2002-07-15 14:35:28 +04:00
Copyright ( C ) Andrew Tridgell 2002
2003-04-14 07:53:58 +04:00
Copyright ( C ) Jelmer Vernooij 2003
2005-06-09 02:10:34 +04:00
Copyright ( C ) Volker Lendecke 2004
2008-11-26 16:01:22 +03:00
2000-05-09 15:43: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
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2000-05-09 15:43:00 +04:00
( at your option ) any later version .
2008-11-26 16:01:22 +03:00
2000-05-09 15:43:00 +04: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-11-26 16:01:22 +03:00
2000-05-09 15:43:00 +04: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/>.
2000-05-09 15:43:00 +04:00
*/
2003-11-12 04:51:10 +03:00
# include "includes.h"
2000-05-09 15:43:00 +04:00
# include "winbindd.h"
2006-04-20 17:51:43 +04:00
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_WINBIND
2009-03-12 12:12:58 +03:00
static bool opt_nocache = False ;
2007-10-19 04:40:25 +04:00
static bool interactive = False ;
2000-05-09 15:43:00 +04:00
2007-10-19 04:40:25 +04:00
extern bool override_logfile ;
2004-09-21 13:07:42 +04:00
2007-01-17 15:59:14 +03:00
struct event_context * winbind_event_context ( void )
{
static struct event_context * ctx ;
if ( ! ctx & & ! ( ctx = event_context_init ( NULL ) ) ) {
2007-06-16 01:58:49 +04:00
smb_panic ( " Could not init winbind event context " ) ;
2007-01-17 15:59:14 +03:00
}
return ctx ;
}
2007-05-15 14:50:44 +04:00
struct messaging_context * winbind_messaging_context ( void )
{
static struct messaging_context * ctx ;
2008-06-24 14:30:38 +04:00
if ( ctx = = NULL ) {
ctx = messaging_init ( NULL , server_id_self ( ) ,
winbind_event_context ( ) ) ;
}
if ( ctx = = NULL ) {
2008-06-24 14:29:05 +04:00
DEBUG ( 0 , ( " Could not init winbind messaging context. \n " ) ) ;
2007-05-15 14:50:44 +04:00
}
return ctx ;
}
2000-05-09 15:43:00 +04:00
/* Reload configuration */
2008-11-03 23:36:34 +03:00
static bool reload_services_file ( const char * lfile )
2000-05-09 15:43:00 +04:00
{
2007-10-19 04:40:25 +04:00
bool ret ;
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
if ( lp_loaded ( ) ) {
2007-11-21 04:18:16 +03:00
const char * fname = lp_configfile ( ) ;
2001-05-07 08:32:40 +04:00
2008-10-17 14:48:19 +04:00
if ( file_exist ( fname ) & & ! strcsequal ( fname , get_dyn_CONFIGFILE ( ) ) ) {
2007-12-10 22:30:37 +03:00
set_dyn_CONFIGFILE ( fname ) ;
2001-05-07 08:32:40 +04:00
}
}
2008-07-18 07:10:18 +04:00
/* if this is a child, restore the logfile to the special
name - < domain > , idmap , etc . */
2008-11-03 23:36:34 +03:00
if ( lfile & & * lfile ) {
lp_set_logfile ( lfile ) ;
2008-07-18 07:10:18 +04:00
}
2000-05-09 15:43:00 +04:00
reopen_logs ( ) ;
2007-12-10 22:30:37 +03:00
ret = lp_load ( get_dyn_CONFIGFILE ( ) , False , False , True , True ) ;
2000-05-09 15:43:00 +04:00
reopen_logs ( ) ;
load_interfaces ( ) ;
return ( ret ) ;
}
2003-07-15 21:21:21 +04:00
2001-11-23 14:18:20 +03:00
/**************************************************************************** **
Handle a fault . .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void fault_quit ( void )
{
dump_core ( ) ;
}
2001-11-14 09:18:13 +03:00
static void winbindd_status ( void )
2000-05-09 15:43:00 +04:00
{
2001-05-07 08:32:40 +04:00
struct winbindd_cli_state * tmp ;
2001-11-14 09:18:13 +03:00
DEBUG ( 0 , ( " winbindd status: \n " ) ) ;
2001-05-07 08:32:40 +04:00
/* Print client state information */
2008-11-26 16:01:22 +03:00
2002-11-02 04:36:42 +03:00
DEBUG ( 0 , ( " \t %d clients currently active \n " , winbindd_num_clients ( ) ) ) ;
2008-11-26 16:01:22 +03:00
2002-11-02 04:36:42 +03:00
if ( DEBUGLEVEL > = 2 & & winbindd_num_clients ( ) ) {
2001-05-07 08:32:40 +04:00
DEBUG ( 2 , ( " \t client list: \n " ) ) ;
2002-11-02 04:36:42 +03:00
for ( tmp = winbindd_client_list ( ) ; tmp ; tmp = tmp - > next ) {
2006-02-04 01:19:41 +03:00
DEBUGADD ( 2 , ( " \t \t pid %lu, sock %d \n " ,
2005-10-27 11:57:39 +04:00
( unsigned long ) tmp - > pid , tmp - > sock ) ) ;
2001-05-07 08:32:40 +04:00
}
}
}
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* Print winbindd status to log file */
2000-05-09 15:43:00 +04:00
2001-11-15 06:23:15 +03:00
static void print_winbindd_status ( void )
2001-05-07 08:32:40 +04:00
{
2001-11-14 09:18:13 +03:00
winbindd_status ( ) ;
2000-05-09 15:43:00 +04:00
}
/* Flush client cache */
2001-11-15 06:23:15 +03:00
static void flush_caches ( void )
2000-05-09 15:43:00 +04:00
{
2003-06-21 08:05:01 +04:00
/* We need to invalidate cached user list entries on a SIGHUP
otherwise cached access denied errors due to restrict anonymous
hang around until the sequence number changes . */
2008-01-07 12:59:14 +03:00
if ( ! wcache_invalidate_cache ( ) ) {
2007-11-26 13:44:30 +03:00
DEBUG ( 0 , ( " invalidating the cache failed; revalidate the cache \n " ) ) ;
2008-04-10 13:53:53 +04:00
if ( ! winbindd_cache_validate_and_initialize ( ) ) {
2007-11-26 13:44:30 +03:00
exit ( 1 ) ;
}
}
2000-05-09 15:43:00 +04:00
}
/* Handle the signal by unlinking socket and exiting */
2008-05-31 04:52:54 +04:00
static void terminate ( bool is_parent )
2000-05-09 15:43:00 +04:00
{
2008-05-31 04:52:54 +04:00
if ( is_parent ) {
/* When parent goes away we should
* remove the socket file . Not so
* when children terminate .
*/
char * path = NULL ;
2007-10-11 00:34:30 +04:00
2008-05-31 04:52:54 +04:00
if ( asprintf ( & path , " %s/%s " ,
2007-11-21 04:18:16 +03:00
get_winbind_pipe_dir ( ) , WINBINDD_SOCKET_NAME ) > 0 ) {
2008-05-31 04:52:54 +04:00
unlink ( path ) ;
SAFE_FREE ( path ) ;
}
2007-11-21 04:18:16 +03:00
}
2005-06-09 02:10:34 +04:00
2007-02-20 22:57:14 +03:00
idmap_close ( ) ;
2008-11-26 16:01:22 +03:00
2007-02-20 22:57:14 +03:00
trustdom_cache_shutdown ( ) ;
2005-06-09 02:10:34 +04:00
#if 0
if ( interactive ) {
TALLOC_CTX * mem_ctx = talloc_init ( " end_description " ) ;
char * description = talloc_describe_all ( mem_ctx ) ;
DEBUG ( 3 , ( " tallocs left: \n %s \n " , description ) ) ;
talloc_destroy ( mem_ctx ) ;
}
# endif
2001-05-07 08:32:40 +04:00
exit ( 0 ) ;
}
2000-05-09 15:43:00 +04:00
2009-01-22 16:54:21 +03:00
static void winbindd_sig_term_handler ( struct tevent_context * ev ,
struct tevent_signal * se ,
int signum ,
int count ,
void * siginfo ,
void * private_data )
{
bool * is_parent = talloc_get_type_abort ( private_data , bool ) ;
DEBUG ( 0 , ( " Got sig[%d] terminate (is_parent=%d) \n " ,
signum , ( int ) * is_parent ) ) ;
terminate ( * is_parent ) ;
}
2001-11-15 00:49:30 +03:00
2009-01-22 16:54:21 +03:00
bool winbindd_setup_sig_term_handler ( bool parent )
2001-11-15 00:49:30 +03:00
{
2009-01-22 16:54:21 +03:00
struct tevent_signal * se ;
bool * is_parent ;
is_parent = talloc ( winbind_event_context ( ) , bool ) ;
if ( ! is_parent ) {
return false ;
}
* is_parent = parent ;
se = tevent_add_signal ( winbind_event_context ( ) ,
is_parent ,
SIGTERM , 0 ,
winbindd_sig_term_handler ,
is_parent ) ;
if ( ! se ) {
DEBUG ( 0 , ( " failed to setup SIGTERM handler " ) ) ;
talloc_free ( is_parent ) ;
return false ;
}
se = tevent_add_signal ( winbind_event_context ( ) ,
is_parent ,
SIGINT , 0 ,
winbindd_sig_term_handler ,
is_parent ) ;
if ( ! se ) {
DEBUG ( 0 , ( " failed to setup SIGINT handler " ) ) ;
talloc_free ( is_parent ) ;
return false ;
}
se = tevent_add_signal ( winbind_event_context ( ) ,
is_parent ,
SIGQUIT , 0 ,
winbindd_sig_term_handler ,
is_parent ) ;
if ( ! se ) {
DEBUG ( 0 , ( " failed to setup SIGINT handler " ) ) ;
talloc_free ( is_parent ) ;
return false ;
}
return true ;
2001-11-15 00:49:30 +03:00
}
2009-01-22 16:54:21 +03:00
static void winbindd_sig_hup_handler ( struct tevent_context * ev ,
struct tevent_signal * se ,
int signum ,
int count ,
void * siginfo ,
void * private_data )
{
const char * file = ( const char * ) private_data ;
DEBUG ( 1 , ( " Reloading services after SIGHUP \n " ) ) ;
flush_caches ( ) ;
reload_services_file ( file ) ;
}
2000-05-09 15:43:00 +04:00
2009-01-22 16:54:21 +03:00
bool winbindd_setup_sig_hup_handler ( const char * lfile )
2001-05-07 08:32:40 +04:00
{
2009-01-22 16:54:21 +03:00
struct tevent_signal * se ;
char * file = NULL ;
if ( lfile ) {
file = talloc_strdup ( winbind_event_context ( ) ,
lfile ) ;
if ( ! file ) {
return false ;
}
}
se = tevent_add_signal ( winbind_event_context ( ) ,
winbind_event_context ( ) ,
SIGHUP , 0 ,
winbindd_sig_hup_handler ,
file ) ;
if ( ! se ) {
return false ;
}
return true ;
2000-05-09 15:43:00 +04:00
}
2009-01-22 16:54:21 +03:00
static void winbindd_sig_chld_handler ( struct tevent_context * ev ,
struct tevent_signal * se ,
int signum ,
int count ,
void * siginfo ,
void * private_data )
{
pid_t pid ;
while ( ( pid = sys_waitpid ( - 1 , NULL , WNOHANG ) ) > 0 ) {
winbind_child_died ( pid ) ;
}
}
2000-05-09 15:43:00 +04:00
2009-01-22 16:54:21 +03:00
static bool winbindd_setup_sig_chld_handler ( void )
2000-05-09 15:43:00 +04:00
{
2009-01-22 16:54:21 +03:00
struct tevent_signal * se ;
se = tevent_add_signal ( winbind_event_context ( ) ,
winbind_event_context ( ) ,
SIGCHLD , 0 ,
winbindd_sig_chld_handler ,
NULL ) ;
if ( ! se ) {
return false ;
}
return true ;
2000-05-09 15:43:00 +04:00
}
2009-01-22 16:54:21 +03:00
static void winbindd_sig_usr2_handler ( struct tevent_context * ev ,
struct tevent_signal * se ,
int signum ,
int count ,
void * siginfo ,
void * private_data )
{
print_winbindd_status ( ) ;
}
2005-06-09 02:10:34 +04:00
2009-01-22 16:54:21 +03:00
static bool winbindd_setup_sig_usr2_handler ( void )
2004-07-21 08:24:30 +04:00
{
2009-01-22 16:54:21 +03:00
struct tevent_signal * se ;
se = tevent_add_signal ( winbind_event_context ( ) ,
winbind_event_context ( ) ,
2009-03-05 04:26:57 +03:00
SIGUSR2 , 0 ,
2009-01-22 16:54:21 +03:00
winbindd_sig_usr2_handler ,
NULL ) ;
if ( ! se ) {
return false ;
}
return true ;
2004-07-21 08:24:30 +04:00
}
2003-07-15 21:21:21 +04:00
/* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
2007-05-16 18:45:09 +04:00
static void msg_reload_services ( struct messaging_context * msg ,
void * private_data ,
uint32_t msg_type ,
struct server_id server_id ,
DATA_BLOB * data )
2003-07-15 21:21:21 +04:00
{
/* Flush various caches */
flush_caches ( ) ;
2008-07-18 07:10:18 +04:00
reload_services_file ( ( const char * ) private_data ) ;
2003-07-15 21:21:21 +04:00
}
/* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
2007-05-16 18:45:09 +04:00
static void msg_shutdown ( struct messaging_context * msg ,
void * private_data ,
uint32_t msg_type ,
struct server_id server_id ,
DATA_BLOB * data )
2003-07-15 21:21:21 +04:00
{
2009-01-22 16:54:21 +03:00
/* only the parent waits for this message */
DEBUG ( 0 , ( " Got shutdown message \n " ) ) ;
terminate ( true ) ;
2003-07-15 21:21:21 +04:00
}
2007-08-31 19:24:43 +04:00
static void winbind_msg_validate_cache ( struct messaging_context * msg_ctx ,
void * private_data ,
uint32_t msg_type ,
struct server_id server_id ,
DATA_BLOB * data )
{
uint8 ret ;
2007-09-02 04:32:57 +04:00
pid_t child_pid ;
struct sigaction act ;
struct sigaction oldact ;
2007-08-31 19:24:43 +04:00
DEBUG ( 10 , ( " winbindd_msg_validate_cache: got validate-cache "
" message. \n " ) ) ;
2007-09-02 04:32:57 +04:00
/*
* call the validation code from a child :
* so we don ' t block the main winbindd and the validation
* code can safely use fork / waitpid . . .
*/
CatchChild ( ) ;
child_pid = sys_fork ( ) ;
if ( child_pid = = - 1 ) {
DEBUG ( 1 , ( " winbind_msg_validate_cache: Could not fork: %s \n " ,
strerror ( errno ) ) ) ;
return ;
}
if ( child_pid ! = 0 ) {
/* parent */
DEBUG ( 5 , ( " winbind_msg_validate_cache: child created with "
2009-02-24 03:22:43 +03:00
" pid %d. \n " , ( int ) child_pid ) ) ;
2007-09-02 04:32:57 +04:00
return ;
}
/* child */
/* install default SIGCHLD handler: validation code uses fork/waitpid */
ZERO_STRUCT ( act ) ;
act . sa_handler = SIG_DFL ;
# ifdef SA_RESTART
/* We *want* SIGALRM to interrupt a system call. */
act . sa_flags = SA_RESTART ;
# endif
sigemptyset ( & act . sa_mask ) ;
sigaddset ( & act . sa_mask , SIGCHLD ) ;
sigaction ( SIGCHLD , & act , & oldact ) ;
2007-08-31 19:24:43 +04:00
ret = ( uint8 ) winbindd_validate_cache_nobackup ( ) ;
DEBUG ( 10 , ( " winbindd_msg_validata_cache: got return value %d \n " , ret ) ) ;
messaging_send_buf ( msg_ctx , server_id , MSG_WINBIND_VALIDATE_CACHE , & ret ,
( size_t ) 1 ) ;
2007-09-02 04:32:57 +04:00
_exit ( 0 ) ;
2007-08-31 19:24:43 +04:00
}
2005-06-20 17:42:29 +04:00
static struct winbindd_dispatch_table {
enum winbindd_cmd cmd ;
void ( * fn ) ( struct winbindd_cli_state * state ) ;
const char * winbindd_cmd_name ;
} dispatch_table [ ] = {
2008-11-26 16:01:22 +03:00
2001-05-07 08:32:40 +04:00
/* User functions */
2000-05-09 15:43:00 +04:00
2002-01-10 09:20:03 +03:00
{ WINBINDD_GETPWNAM , winbindd_getpwnam , " GETPWNAM " } ,
{ WINBINDD_GETPWUID , winbindd_getpwuid , " GETPWUID " } ,
2009-02-10 22:06:44 +03:00
{ WINBINDD_GETPWSID , winbindd_getpwsid , " GETPWSID " } ,
2001-10-05 04:20:06 +04:00
2001-11-14 07:44:36 +03:00
{ WINBINDD_SETPWENT , winbindd_setpwent , " SETPWENT " } ,
{ WINBINDD_ENDPWENT , winbindd_endpwent , " ENDPWENT " } ,
{ WINBINDD_GETPWENT , winbindd_getpwent , " GETPWENT " } ,
2001-10-05 04:20:06 +04:00
2001-11-14 07:44:36 +03:00
{ WINBINDD_GETGROUPS , winbindd_getgroups , " GETGROUPS " } ,
2003-11-19 11:11:14 +03:00
{ WINBINDD_GETUSERSIDS , winbindd_getusersids , " GETUSERSIDS " } ,
2005-06-09 02:10:34 +04:00
{ WINBINDD_GETUSERDOMGROUPS , winbindd_getuserdomgroups ,
" GETUSERDOMGROUPS " } ,
2009-02-11 00:59:10 +03:00
{ WINBINDD_GETSIDALIASES , winbindd_getsidaliases ,
" LOOKUPUSERALIASES " } ,
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* Group functions */
2000-05-09 15:43:00 +04:00
2002-01-10 09:20:03 +03:00
{ WINBINDD_GETGRNAM , winbindd_getgrnam , " GETGRNAM " } ,
{ WINBINDD_GETGRGID , winbindd_getgrgid , " GETGRGID " } ,
2001-11-14 07:44:36 +03:00
{ WINBINDD_SETGRENT , winbindd_setgrent , " SETGRENT " } ,
{ WINBINDD_ENDGRENT , winbindd_endgrent , " ENDGRENT " } ,
{ WINBINDD_GETGRENT , winbindd_getgrent , " GETGRENT " } ,
2002-07-15 14:35:28 +04:00
{ WINBINDD_GETGRLST , winbindd_getgrent , " GETGRLST " } ,
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* PAM auth functions */
2000-05-09 15:43:00 +04:00
2001-11-14 07:44:36 +03:00
{ WINBINDD_PAM_AUTH , winbindd_pam_auth , " PAM_AUTH " } ,
2005-06-10 07:26:39 +04:00
{ WINBINDD_PAM_AUTH_CRAP , winbindd_pam_auth_crap , " AUTH_CRAP " } ,
2001-11-14 07:44:36 +03:00
{ WINBINDD_PAM_CHAUTHTOK , winbindd_pam_chauthtok , " CHAUTHTOK " } ,
2006-02-04 01:19:41 +03:00
{ WINBINDD_PAM_LOGOFF , winbindd_pam_logoff , " PAM_LOGOFF " } ,
2006-07-13 13:29:25 +04:00
{ WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP , winbindd_pam_chng_pswd_auth_crap , " CHNG_PSWD_AUTH_CRAP " } ,
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* Enumeration functions */
2000-05-09 15:43:00 +04:00
2001-11-15 22:40:00 +03:00
{ WINBINDD_LIST_USERS , winbindd_list_users , " LIST_USERS " } ,
{ WINBINDD_LIST_GROUPS , winbindd_list_groups , " LIST_GROUPS " } ,
2005-06-09 02:10:34 +04:00
{ WINBINDD_LIST_TRUSTDOM , winbindd_list_trusted_domains ,
" LIST_TRUSTDOM " } ,
2002-01-31 14:49:29 +03:00
{ WINBINDD_SHOW_SEQUENCE , winbindd_show_sequence , " SHOW_SEQUENCE " } ,
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* SID related functions */
2000-05-09 15:43:00 +04:00
2001-11-14 07:44:36 +03:00
{ WINBINDD_LOOKUPSID , winbindd_lookupsid , " LOOKUPSID " } ,
{ WINBINDD_LOOKUPNAME , winbindd_lookupname , " LOOKUPNAME " } ,
2006-07-11 22:01:26 +04:00
{ WINBINDD_LOOKUPRIDS , winbindd_lookuprids , " LOOKUPRIDS " } ,
2000-05-09 15:43:00 +04:00
2001-11-15 22:40:00 +03:00
/* Lookup related functions */
2000-05-09 15:43:00 +04:00
2001-11-14 07:44:36 +03:00
{ WINBINDD_SID_TO_UID , winbindd_sid_to_uid , " SID_TO_UID " } ,
{ WINBINDD_SID_TO_GID , winbindd_sid_to_gid , " SID_TO_GID " } ,
{ WINBINDD_UID_TO_SID , winbindd_uid_to_sid , " UID_TO_SID " } ,
2005-06-09 02:10:34 +04:00
{ WINBINDD_GID_TO_SID , winbindd_gid_to_sid , " GID_TO_SID " } ,
2006-02-04 01:19:41 +03:00
{ WINBINDD_ALLOCATE_UID , winbindd_allocate_uid , " ALLOCATE_UID " } ,
2006-06-12 17:59:22 +04:00
{ WINBINDD_ALLOCATE_GID , winbindd_allocate_gid , " ALLOCATE_GID " } ,
2006-12-12 17:52:13 +03:00
{ WINBINDD_SET_MAPPING , winbindd_set_mapping , " SET_MAPPING " } ,
2008-10-28 09:37:55 +03:00
{ WINBINDD_REMOVE_MAPPING , winbindd_remove_mapping , " REMOVE_MAPPING " } ,
2006-12-12 17:52:13 +03:00
{ WINBINDD_SET_HWM , winbindd_set_hwm , " SET_HWMS " } ,
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* Miscellaneous */
2000-05-09 15:43:00 +04:00
2001-11-14 07:44:36 +03:00
{ WINBINDD_CHECK_MACHACC , winbindd_check_machine_acct , " CHECK_MACHACC " } ,
2002-01-10 13:23:54 +03:00
{ WINBINDD_PING , winbindd_ping , " PING " } ,
2002-01-10 14:28:14 +03:00
{ WINBINDD_INFO , winbindd_info , " INFO " } ,
2005-06-09 02:10:34 +04:00
{ WINBINDD_INTERFACE_VERSION , winbindd_interface_version ,
" INTERFACE_VERSION " } ,
2002-01-26 12:55:38 +03:00
{ WINBINDD_DOMAIN_NAME , winbindd_domain_name , " DOMAIN_NAME " } ,
2004-01-04 14:51:31 +03:00
{ WINBINDD_DOMAIN_INFO , winbindd_domain_info , " DOMAIN_INFO " } ,
2003-01-28 15:07:02 +03:00
{ WINBINDD_NETBIOS_NAME , winbindd_netbios_name , " NETBIOS_NAME " } ,
2005-06-09 02:10:34 +04:00
{ WINBINDD_PRIV_PIPE_DIR , winbindd_priv_pipe_dir ,
" WINBINDD_PRIV_PIPE_DIR " } ,
{ WINBINDD_GETDCNAME , winbindd_getdcname , " GETDCNAME " } ,
2007-08-28 19:20:54 +04:00
{ WINBINDD_DSGETDCNAME , winbindd_dsgetdcname , " DSGETDCNAME " } ,
2000-05-09 15:43:00 +04:00
2006-08-19 05:04:54 +04:00
/* Credential cache access */
{ WINBINDD_CCACHE_NTLMAUTH , winbindd_ccache_ntlm_auth , " NTLMAUTH " } ,
2002-03-29 18:37:39 +03:00
/* WINS functions */
{ WINBINDD_WINS_BYNAME , winbindd_wins_byname , " WINS_BYNAME " } ,
{ WINBINDD_WINS_BYIP , winbindd_wins_byip , " WINS_BYIP " } ,
2008-10-28 09:36:36 +03:00
2001-05-07 08:32:40 +04:00
/* End of list */
2000-05-09 15:43:00 +04:00
2001-11-14 07:44:36 +03:00
{ WINBINDD_NUM_CMDS , NULL , " NONE " }
2001-05-07 08:32:40 +04:00
} ;
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
static void process_request ( struct winbindd_cli_state * state )
2000-05-09 15:43:00 +04:00
{
2005-06-09 02:10:34 +04:00
struct winbindd_dispatch_table * table = dispatch_table ;
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* Free response data - we may be interrupted and receive another
command before being able to send this data off . */
2000-05-09 15:43:00 +04:00
2006-04-12 18:10:39 +04:00
SAFE_FREE ( state - > response . extra_data . data ) ;
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
ZERO_STRUCT ( state - > response ) ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
state - > response . result = WINBINDD_PENDING ;
2001-05-07 08:32:40 +04:00
state - > response . length = sizeof ( struct winbindd_response ) ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
state - > mem_ctx = talloc_init ( " winbind request " ) ;
if ( state - > mem_ctx = = NULL )
return ;
2007-06-05 03:51:19 +04:00
/* Remember who asked us. */
state - > pid = state - > request . pid ;
2001-05-07 08:32:40 +04:00
/* Process command */
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
for ( table = dispatch_table ; table - > fn ; table + + ) {
if ( state - > request . cmd = = table - > cmd ) {
2005-06-09 02:10:34 +04:00
DEBUG ( 10 , ( " process_request: request fn %s \n " ,
table - > winbindd_cmd_name ) ) ;
2005-06-20 17:42:29 +04:00
table - > fn ( state ) ;
2001-05-07 08:32:40 +04:00
break ;
}
}
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
if ( ! table - > fn ) {
DEBUG ( 10 , ( " process_request: unknown request fn number %d \n " ,
( int ) state - > request . cmd ) ) ;
2005-06-20 17:42:29 +04:00
request_error ( state ) ;
2005-06-09 02:10:34 +04:00
}
}
/*
* A list of file descriptors being monitored by select in the main processing
2009-01-05 13:50:17 +03:00
* loop . winbindd_fd_event - > handler is called whenever the socket is readable / writable .
2005-06-09 02:10:34 +04:00
*/
2009-01-05 13:50:17 +03:00
static struct winbindd_fd_event * fd_events = NULL ;
2005-06-09 02:10:34 +04:00
2009-01-05 13:50:17 +03:00
void add_fd_event ( struct winbindd_fd_event * ev )
2005-06-09 02:10:34 +04:00
{
2009-01-05 13:50:17 +03:00
struct winbindd_fd_event * match ;
2005-06-09 02:10:34 +04:00
2009-01-05 13:50:17 +03:00
/* only add unique winbindd_fd_event structs */
2005-06-09 02:10:34 +04:00
for ( match = fd_events ; match ; match = match - > next ) {
# ifdef DEVELOPER
SMB_ASSERT ( match ! = ev ) ;
# else
if ( match = = ev )
return ;
# endif
}
DLIST_ADD ( fd_events , ev ) ;
}
2009-01-05 13:50:17 +03:00
void remove_fd_event ( struct winbindd_fd_event * ev )
2005-06-09 02:10:34 +04:00
{
DLIST_REMOVE ( fd_events , ev ) ;
}
/*
2009-01-05 13:50:17 +03:00
* Handler for winbindd_fd_events to complete a read / write request , set up by
2005-06-09 02:10:34 +04:00
* setup_async_read / setup_async_write .
*/
2009-01-05 13:50:17 +03:00
static void rw_callback ( struct winbindd_fd_event * event , int flags )
2005-06-09 02:10:34 +04:00
{
size_t todo ;
ssize_t done = 0 ;
todo = event - > length - event - > done ;
if ( event - > flags & EVENT_FD_WRITE ) {
SMB_ASSERT ( flags = = EVENT_FD_WRITE ) ;
done = sys_write ( event - > fd ,
& ( ( char * ) event - > data ) [ event - > done ] ,
todo ) ;
if ( done < = 0 ) {
event - > flags = 0 ;
2005-06-25 00:25:18 +04:00
event - > finished ( event - > private_data , False ) ;
2005-06-09 02:10:34 +04:00
return ;
}
}
if ( event - > flags & EVENT_FD_READ ) {
SMB_ASSERT ( flags = = EVENT_FD_READ ) ;
done = sys_read ( event - > fd , & ( ( char * ) event - > data ) [ event - > done ] ,
todo ) ;
2001-11-14 07:44:36 +03:00
2005-06-09 02:10:34 +04:00
if ( done < = 0 ) {
event - > flags = 0 ;
2005-06-25 00:25:18 +04:00
event - > finished ( event - > private_data , False ) ;
2005-06-09 02:10:34 +04:00
return ;
}
}
event - > done + = done ;
if ( event - > done = = event - > length ) {
event - > flags = 0 ;
2005-06-25 00:25:18 +04:00
event - > finished ( event - > private_data , True ) ;
2005-06-09 02:10:34 +04:00
}
}
/*
2009-01-05 13:50:17 +03:00
* Request an async read / write on a winbindd_fd_event structure . ( * finished ) is called
2005-06-09 02:10:34 +04:00
* when the request is completed or an error had occurred .
*/
2009-01-05 13:50:17 +03:00
void setup_async_read ( struct winbindd_fd_event * event , void * data , size_t length ,
2007-10-19 04:40:25 +04:00
void ( * finished ) ( void * private_data , bool success ) ,
2005-06-25 00:25:18 +04:00
void * private_data )
2005-06-09 02:10:34 +04:00
{
SMB_ASSERT ( event - > flags = = 0 ) ;
event - > data = data ;
event - > length = length ;
event - > done = 0 ;
event - > handler = rw_callback ;
event - > finished = finished ;
2005-06-25 00:25:18 +04:00
event - > private_data = private_data ;
2005-06-09 02:10:34 +04:00
event - > flags = EVENT_FD_READ ;
}
2009-01-05 13:50:17 +03:00
void setup_async_write ( struct winbindd_fd_event * event , void * data , size_t length ,
2007-10-19 04:40:25 +04:00
void ( * finished ) ( void * private_data , bool success ) ,
2005-06-25 00:25:18 +04:00
void * private_data )
2005-06-09 02:10:34 +04:00
{
SMB_ASSERT ( event - > flags = = 0 ) ;
event - > data = data ;
event - > length = length ;
event - > done = 0 ;
event - > handler = rw_callback ;
event - > finished = finished ;
2005-06-25 00:25:18 +04:00
event - > private_data = private_data ;
2005-06-09 02:10:34 +04:00
event - > flags = EVENT_FD_WRITE ;
}
/*
* This is the main event loop of winbind requests . It goes through a
* state - machine of 3 read / write requests , 4 if you have extra data to send .
*
* An idle winbind client has a read request of 4 bytes outstanding ,
* finalizing function is request_len_recv , checking the length . request_recv
* then processes the packet . The processing function then at some point has
* to call request_finished which schedules sending the response .
*/
2007-10-19 04:40:25 +04:00
static void request_len_recv ( void * private_data , bool success ) ;
static void request_recv ( void * private_data , bool success ) ;
static void request_main_recv ( void * private_data , bool success ) ;
2005-06-20 17:42:29 +04:00
static void request_finished ( struct winbindd_cli_state * state ) ;
2007-10-19 04:40:25 +04:00
static void response_main_sent ( void * private_data , bool success ) ;
static void response_extra_sent ( void * private_data , bool success ) ;
2005-06-09 02:10:34 +04:00
2007-10-19 04:40:25 +04:00
static void response_extra_sent ( void * private_data , bool success )
2005-06-09 02:10:34 +04:00
{
struct winbindd_cli_state * state =
2005-06-25 00:25:18 +04:00
talloc_get_type_abort ( private_data , struct winbindd_cli_state ) ;
2005-06-09 02:10:34 +04:00
2008-07-24 16:46:43 +04:00
TALLOC_FREE ( state - > mem_ctx ) ;
2005-06-09 02:10:34 +04:00
if ( ! success ) {
state - > finished = True ;
return ;
}
2006-04-12 18:10:39 +04:00
SAFE_FREE ( state - > response . extra_data . data ) ;
2005-06-09 02:10:34 +04:00
setup_async_read ( & state - > fd_event , & state - > request , sizeof ( uint32 ) ,
request_len_recv , state ) ;
}
2007-10-19 04:40:25 +04:00
static void response_main_sent ( void * private_data , bool success )
2005-06-09 02:10:34 +04:00
{
struct winbindd_cli_state * state =
2005-06-25 00:25:18 +04:00
talloc_get_type_abort ( private_data , struct winbindd_cli_state ) ;
2005-06-09 02:10:34 +04:00
if ( ! success ) {
state - > finished = True ;
return ;
}
if ( state - > response . length = = sizeof ( state - > response ) ) {
2008-07-24 16:46:43 +04:00
TALLOC_FREE ( state - > mem_ctx ) ;
2005-06-09 02:10:34 +04:00
setup_async_read ( & state - > fd_event , & state - > request ,
sizeof ( uint32 ) , request_len_recv , state ) ;
return ;
}
2006-04-12 18:10:39 +04:00
setup_async_write ( & state - > fd_event , state - > response . extra_data . data ,
2005-06-09 02:10:34 +04:00
state - > response . length - sizeof ( state - > response ) ,
response_extra_sent , state ) ;
}
2005-06-20 17:42:29 +04:00
static void request_finished ( struct winbindd_cli_state * state )
2005-06-09 02:10:34 +04:00
{
2008-09-05 16:08:09 +04:00
/* Make sure request.extra_data is freed when finish processing a request */
SAFE_FREE ( state - > request . extra_data . data ) ;
2005-06-09 02:10:34 +04:00
setup_async_write ( & state - > fd_event , & state - > response ,
sizeof ( state - > response ) , response_main_sent , state ) ;
}
2005-06-20 17:42:29 +04:00
void request_error ( struct winbindd_cli_state * state )
{
SMB_ASSERT ( state - > response . result = = WINBINDD_PENDING ) ;
state - > response . result = WINBINDD_ERROR ;
request_finished ( state ) ;
}
void request_ok ( struct winbindd_cli_state * state )
{
SMB_ASSERT ( state - > response . result = = WINBINDD_PENDING ) ;
state - > response . result = WINBINDD_OK ;
request_finished ( state ) ;
}
2007-10-19 04:40:25 +04:00
static void request_len_recv ( void * private_data , bool success )
2005-06-09 02:10:34 +04:00
{
struct winbindd_cli_state * state =
2005-06-25 00:25:18 +04:00
talloc_get_type_abort ( private_data , struct winbindd_cli_state ) ;
2005-06-09 02:10:34 +04:00
if ( ! success ) {
state - > finished = True ;
return ;
}
2005-09-30 21:13:37 +04:00
if ( * ( uint32 * ) ( & state - > request ) ! = sizeof ( state - > request ) ) {
2007-10-19 15:03:44 +04:00
DEBUG ( 0 , ( " request_len_recv: Invalid request size received: %d (expected %u) \n " ,
* ( uint32_t * ) ( & state - > request ) , ( uint32_t ) sizeof ( state - > request ) ) ) ;
2005-09-30 21:13:37 +04:00
state - > finished = True ;
return ;
}
setup_async_read ( & state - > fd_event , ( uint32 * ) ( & state - > request ) + 1 ,
sizeof ( state - > request ) - sizeof ( uint32 ) ,
request_main_recv , state ) ;
2005-06-09 02:10:34 +04:00
}
2007-10-19 04:40:25 +04:00
static void request_main_recv ( void * private_data , bool success )
2005-06-09 02:10:34 +04:00
{
struct winbindd_cli_state * state =
2005-06-25 00:25:18 +04:00
talloc_get_type_abort ( private_data , struct winbindd_cli_state ) ;
2005-06-09 02:10:34 +04:00
if ( ! success ) {
state - > finished = True ;
return ;
}
2005-09-30 21:13:37 +04:00
if ( state - > request . extra_len = = 0 ) {
2006-04-12 18:10:39 +04:00
state - > request . extra_data . data = NULL ;
2005-09-30 21:13:37 +04:00
request_recv ( state , True ) ;
return ;
}
if ( ( ! state - > privileged ) & &
( state - > request . extra_len > WINBINDD_MAX_EXTRA_DATA ) ) {
DEBUG ( 3 , ( " Got request with %d bytes extra data on "
" unprivileged socket \n " , ( int ) state - > request . extra_len ) ) ;
2006-04-12 18:10:39 +04:00
state - > request . extra_data . data = NULL ;
2005-06-09 02:10:34 +04:00
state - > finished = True ;
return ;
}
2000-05-09 15:43:00 +04:00
2006-04-12 18:10:39 +04:00
state - > request . extra_data . data =
2005-09-30 21:13:37 +04:00
SMB_MALLOC_ARRAY ( char , state - > request . extra_len + 1 ) ;
2006-04-12 18:10:39 +04:00
if ( state - > request . extra_data . data = = NULL ) {
2005-09-30 21:13:37 +04:00
DEBUG ( 0 , ( " malloc failed \n " ) ) ;
state - > finished = True ;
return ;
}
/* Ensure null termination */
2006-04-12 18:10:39 +04:00
state - > request . extra_data . data [ state - > request . extra_len ] = ' \0 ' ;
2005-09-30 21:13:37 +04:00
2006-04-12 18:10:39 +04:00
setup_async_read ( & state - > fd_event , state - > request . extra_data . data ,
2005-09-30 21:13:37 +04:00
state - > request . extra_len , request_recv , state ) ;
}
2007-10-19 04:40:25 +04:00
static void request_recv ( void * private_data , bool success )
2005-09-30 21:13:37 +04:00
{
struct winbindd_cli_state * state =
talloc_get_type_abort ( private_data , struct winbindd_cli_state ) ;
if ( ! success ) {
state - > finished = True ;
return ;
}
process_request ( state ) ;
2000-05-09 15:43:00 +04:00
}
2001-05-07 08:32:40 +04:00
/* Process a new connection by adding it to the client connection list */
2000-05-09 15:43:00 +04:00
2007-10-19 04:40:25 +04:00
static void new_connection ( int listen_sock , bool privileged )
2000-05-09 15:43:00 +04:00
{
2001-05-07 08:32:40 +04:00
struct sockaddr_un sunaddr ;
struct winbindd_cli_state * state ;
2001-06-25 06:53:13 +04:00
socklen_t len ;
int sock ;
2008-11-26 16:01:22 +03:00
2001-05-07 08:32:40 +04:00
/* Accept connection */
2008-11-26 16:01:22 +03:00
2001-05-07 08:32:40 +04:00
len = sizeof ( sunaddr ) ;
2001-11-15 00:49:30 +03:00
do {
2002-11-02 04:36:42 +03:00
sock = accept ( listen_sock , ( struct sockaddr * ) & sunaddr , & len ) ;
2001-11-15 00:49:30 +03:00
} while ( sock = = - 1 & & errno = = EINTR ) ;
if ( sock = = - 1 )
2001-05-07 08:32:40 +04:00
return ;
2008-11-26 16:01:22 +03:00
2001-05-07 08:32:40 +04:00
DEBUG ( 6 , ( " accepted socket %d \n " , sock ) ) ;
2008-11-26 16:01:22 +03:00
2001-05-07 08:32:40 +04:00
/* Create new connection structure */
2008-11-26 16:01:22 +03:00
2007-02-08 03:28:25 +03:00
if ( ( state = TALLOC_ZERO_P ( NULL , struct winbindd_cli_state ) ) = = NULL ) {
close ( sock ) ;
2001-05-07 08:32:40 +04:00
return ;
2007-02-08 03:28:25 +03:00
}
2008-11-26 16:01:22 +03:00
2001-05-07 08:32:40 +04:00
state - > sock = sock ;
2003-02-28 03:25:55 +03:00
state - > last_access = time ( NULL ) ;
2003-04-07 11:32:51 +04:00
state - > privileged = privileged ;
2003-03-24 12:54:13 +03:00
2005-06-09 02:10:34 +04:00
state - > fd_event . fd = state - > sock ;
state - > fd_event . flags = 0 ;
add_fd_event ( & state - > fd_event ) ;
setup_async_read ( & state - > fd_event , & state - > request , sizeof ( uint32 ) ,
request_len_recv , state ) ;
2001-05-07 08:32:40 +04:00
/* Add to connection list */
2008-11-26 16:01:22 +03:00
2002-11-02 04:36:42 +03:00
winbindd_add_client ( state ) ;
2001-05-07 08:32:40 +04:00
}
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
/* Remove a client connection from client connection list */
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
static void remove_client ( struct winbindd_cli_state * state )
{
2008-10-27 16:28:44 +03:00
char c = 0 ;
2008-11-28 21:53:59 +03:00
int nwritten ;
2008-10-27 16:28:44 +03:00
2001-05-07 08:32:40 +04:00
/* It's a dead client - hold a funeral */
2008-11-26 16:01:22 +03:00
2006-10-04 20:18:36 +04:00
if ( state = = NULL ) {
return ;
}
2008-10-27 16:28:44 +03:00
/* tell client, we are closing ... */
2008-11-28 21:53:59 +03:00
nwritten = write ( state - > sock , & c , sizeof ( c ) ) ;
if ( nwritten = = - 1 ) {
DEBUG ( 2 , ( " final write to client failed: %s \n " ,
strerror ( errno ) ) ) ;
}
2008-10-27 16:28:44 +03:00
2006-10-04 20:18:36 +04:00
/* Close socket */
2008-11-26 16:01:22 +03:00
2006-10-04 20:18:36 +04:00
close ( state - > sock ) ;
2008-11-26 16:01:22 +03:00
2006-10-04 20:18:36 +04:00
/* Free any getent state */
2008-11-26 16:01:22 +03:00
2006-10-04 20:18:36 +04:00
free_getent_state ( state - > getpwent_state ) ;
free_getent_state ( state - > getgrent_state ) ;
2008-11-26 16:01:22 +03:00
2006-10-04 20:18:36 +04:00
/* We may have some extra data that was not freed if the client was
killed unexpectedly */
2001-05-07 08:32:40 +04:00
2006-10-04 20:18:36 +04:00
SAFE_FREE ( state - > response . extra_data . data ) ;
2005-06-09 02:10:34 +04:00
2008-07-24 16:46:43 +04:00
TALLOC_FREE ( state - > mem_ctx ) ;
2005-06-09 02:10:34 +04:00
2006-10-04 20:18:36 +04:00
remove_fd_event ( & state - > fd_event ) ;
2008-11-26 16:01:22 +03:00
2006-10-04 20:18:36 +04:00
/* Remove from list and free */
2008-11-26 16:01:22 +03:00
2006-10-04 20:18:36 +04:00
winbindd_remove_client ( state ) ;
TALLOC_FREE ( state ) ;
2001-05-07 08:32:40 +04:00
}
2000-05-09 15:43:00 +04:00
2003-02-28 03:25:55 +03:00
/* Shutdown client connection which has been idle for the longest time */
2007-10-19 04:40:25 +04:00
static bool remove_idle_client ( void )
2003-02-28 03:25:55 +03:00
{
struct winbindd_cli_state * state , * remove_state = NULL ;
time_t last_access = 0 ;
int nidle = 0 ;
for ( state = winbindd_client_list ( ) ; state ; state = state - > next ) {
2005-10-27 11:57:39 +04:00
if ( state - > response . result ! = WINBINDD_PENDING & &
2005-06-09 02:10:34 +04:00
! state - > getpwent_state & & ! state - > getgrent_state ) {
2003-02-28 03:25:55 +03:00
nidle + + ;
if ( ! last_access | | state - > last_access < last_access ) {
last_access = state - > last_access ;
remove_state = state ;
}
}
}
if ( remove_state ) {
DEBUG ( 5 , ( " Found %d idle client connections, shutting down sock %d, pid %u \n " ,
nidle , remove_state - > sock , ( unsigned int ) remove_state - > pid ) ) ;
remove_client ( remove_state ) ;
return True ;
}
return False ;
}
/* Process incoming clients on listen_sock. We use a tricky non-blocking,
2001-05-07 08:32:40 +04:00
non - forking , non - threaded model which allows us to handle many
simultaneous connections while remaining impervious to many denial of
service attacks . */
2000-05-09 15:43:00 +04:00
2007-10-11 00:34:30 +04:00
static void process_loop ( void )
2001-05-07 08:32:40 +04:00
{
2005-06-09 02:10:34 +04:00
struct winbindd_cli_state * state ;
2009-01-05 13:50:17 +03:00
struct winbindd_fd_event * ev ;
2005-06-09 02:10:34 +04:00
fd_set r_fds , w_fds ;
2007-10-11 00:34:30 +04:00
int maxfd , listen_sock , listen_priv_sock , selret ;
2006-12-20 07:50:46 +03:00
struct timeval timeout , ev_timeout ;
2000-05-09 15:43:00 +04:00
2007-10-11 00:34:30 +04:00
/* Open Sockets here to get stuff going ASAP */
listen_sock = open_winbindd_socket ( ) ;
listen_priv_sock = open_winbindd_priv_socket ( ) ;
if ( listen_sock = = - 1 | | listen_priv_sock = = - 1 ) {
perror ( " open_winbind_socket " ) ;
exit ( 1 ) ;
}
2007-01-17 15:59:14 +03:00
run_events ( winbind_event_context ( ) , 0 , NULL , NULL ) ;
2006-12-20 07:50:46 +03:00
2005-06-09 02:10:34 +04:00
/* refresh the trusted domain cache */
2006-12-20 07:50:46 +03:00
2005-06-09 02:10:34 +04:00
rescan_trusted_domains ( ) ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
/* Initialise fd lists for select() */
2002-12-20 04:25:27 +03:00
2005-06-09 02:10:34 +04:00
maxfd = MAX ( listen_sock , listen_priv_sock ) ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
FD_ZERO ( & r_fds ) ;
FD_ZERO ( & w_fds ) ;
FD_SET ( listen_sock , & r_fds ) ;
FD_SET ( listen_priv_sock , & r_fds ) ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
timeout . tv_sec = WINBINDD_ESTABLISH_LOOP ;
timeout . tv_usec = 0 ;
2000-05-09 15:43:00 +04:00
2006-12-20 07:50:46 +03:00
/* Check for any event timeouts. */
2009-01-05 13:53:29 +03:00
{
struct timeval now ;
GetTimeOfDay ( & now ) ;
event_add_to_select_args ( winbind_event_context ( ) , & now ,
& r_fds , & w_fds , & ev_timeout , & maxfd ) ;
}
2007-01-17 15:59:14 +03:00
if ( get_timed_events_timeout ( winbind_event_context ( ) , & ev_timeout ) ) {
2006-12-20 07:50:46 +03:00
timeout = timeval_min ( & timeout , & ev_timeout ) ;
}
2005-06-09 02:10:34 +04:00
/* Set up client readers and writers */
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
state = winbindd_client_list ( ) ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
while ( state ) {
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
struct winbindd_cli_state * next = state - > next ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
/* Dispose of client connection if it is marked as
finished */
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
if ( state - > finished )
remove_client ( state ) ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
state = next ;
}
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
for ( ev = fd_events ; ev ; ev = ev - > next ) {
if ( ev - > flags & EVENT_FD_READ ) {
FD_SET ( ev - > fd , & r_fds ) ;
maxfd = MAX ( ev - > fd , maxfd ) ;
}
if ( ev - > flags & EVENT_FD_WRITE ) {
FD_SET ( ev - > fd , & w_fds ) ;
maxfd = MAX ( ev - > fd , maxfd ) ;
2001-05-07 08:32:40 +04:00
}
2005-06-09 02:10:34 +04:00
}
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
/* Call select */
2008-11-26 16:01:22 +03:00
2005-06-09 02:10:34 +04:00
selret = sys_select ( maxfd + 1 , & r_fds , & w_fds , NULL , & timeout ) ;
2000-05-09 15:43:00 +04:00
2006-05-18 05:45:18 +04:00
if ( selret = = 0 ) {
2005-06-09 02:10:34 +04:00
goto no_fds_ready ;
2006-05-18 05:45:18 +04:00
}
2000-05-09 15:43:00 +04:00
2006-05-18 05:45:18 +04:00
if ( selret = = - 1 ) {
if ( errno = = EINTR ) {
goto no_fds_ready ;
}
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
/* Select error, something is badly wrong */
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
perror ( " select " ) ;
exit ( 1 ) ;
}
2000-05-09 15:43:00 +04:00
2006-05-18 05:45:18 +04:00
/* selret > 0 */
2009-01-05 13:53:29 +03:00
run_events ( winbind_event_context ( ) , selret , & r_fds , & w_fds ) ;
2005-06-09 02:10:34 +04:00
ev = fd_events ;
while ( ev ! = NULL ) {
2009-01-05 13:50:17 +03:00
struct winbindd_fd_event * next = ev - > next ;
2005-06-09 02:10:34 +04:00
int flags = 0 ;
if ( FD_ISSET ( ev - > fd , & r_fds ) )
flags | = EVENT_FD_READ ;
if ( FD_ISSET ( ev - > fd , & w_fds ) )
flags | = EVENT_FD_WRITE ;
if ( flags )
ev - > handler ( ev , flags ) ;
ev = next ;
}
2002-07-15 14:35:28 +04:00
2005-06-09 02:10:34 +04:00
if ( FD_ISSET ( listen_sock , & r_fds ) ) {
while ( winbindd_num_clients ( ) >
WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1 ) {
DEBUG ( 5 , ( " winbindd: Exceeding %d client "
" connections, removing idle "
" connection. \n " ,
WINBINDD_MAX_SIMULTANEOUS_CLIENTS ) ) ;
if ( ! remove_idle_client ( ) ) {
DEBUG ( 0 , ( " winbindd: Exceeding %d "
" client connections, no idle "
" connection found \n " ,
WINBINDD_MAX_SIMULTANEOUS_CLIENTS ) ) ;
break ;
2003-03-24 12:54:13 +03:00
}
2005-06-09 02:10:34 +04:00
}
/* new, non-privileged connection */
new_connection ( listen_sock , False ) ;
}
2008-11-26 16:01:22 +03:00
2005-06-09 02:10:34 +04:00
if ( FD_ISSET ( listen_priv_sock , & r_fds ) ) {
while ( winbindd_num_clients ( ) >
WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1 ) {
DEBUG ( 5 , ( " winbindd: Exceeding %d client "
" connections, removing idle "
" connection. \n " ,
WINBINDD_MAX_SIMULTANEOUS_CLIENTS ) ) ;
if ( ! remove_idle_client ( ) ) {
DEBUG ( 0 , ( " winbindd: Exceeding %d "
" client connections, no idle "
" connection found \n " ,
WINBINDD_MAX_SIMULTANEOUS_CLIENTS ) ) ;
break ;
2001-05-07 08:32:40 +04:00
}
}
2005-06-09 02:10:34 +04:00
/* new, privileged connection */
new_connection ( listen_priv_sock , True ) ;
}
no_fds_ready :
2001-11-15 00:49:30 +03:00
2009-01-20 06:14:20 +03:00
run_events ( winbind_event_context ( ) , selret , & r_fds , & w_fds ) ;
2002-04-04 07:03:39 +04:00
#if 0
2005-06-09 02:10:34 +04:00
winbindd_check_cache_size ( time ( NULL ) ) ;
2002-04-04 07:03:39 +04:00
# endif
2000-05-09 15:43:00 +04:00
}
2009-03-12 12:12:58 +03:00
bool winbindd_use_idmap_cache ( void )
{
return ! opt_nocache ;
}
bool winbindd_use_cache ( void )
{
return ! opt_nocache ;
}
2000-05-09 15:43:00 +04:00
/* Main function */
2006-11-30 02:20:22 +03:00
int main ( int argc , char * * argv , char * * envp )
2000-05-09 15:43:00 +04:00
{
2007-10-19 22:38:36 +04:00
static bool is_daemon = False ;
static bool Fork = True ;
static bool log_stdout = False ;
static bool no_process_group = False ;
enum {
OPT_DAEMON = 1000 ,
OPT_FORK ,
OPT_NO_PROCESS_GROUP ,
OPT_LOG_STDOUT
} ;
2003-04-14 07:53:58 +04:00
struct poptOption long_options [ ] = {
POPT_AUTOHELP
2007-10-19 22:38:36 +04:00
{ " stdout " , ' S ' , POPT_ARG_NONE , NULL , OPT_LOG_STDOUT , " Log to stdout " } ,
{ " foreground " , ' F ' , POPT_ARG_NONE , NULL , OPT_FORK , " Daemon in foreground mode " } ,
{ " no-process-group " , 0 , POPT_ARG_NONE , NULL , OPT_NO_PROCESS_GROUP , " Don't create a new process group " } ,
{ " daemon " , ' D ' , POPT_ARG_NONE , NULL , OPT_DAEMON , " Become a daemon (default) " } ,
2007-10-11 00:34:30 +04:00
{ " interactive " , ' i ' , POPT_ARG_NONE , NULL , ' i ' , " Interactive mode " } ,
2007-10-19 22:38:36 +04:00
{ " no-caching " , ' n ' , POPT_ARG_NONE , NULL , ' n ' , " Disable caching " } ,
2003-04-14 07:53:58 +04:00
POPT_COMMON_SAMBA
POPT_TABLEEND
} ;
poptContext pc ;
2002-03-14 05:15:08 +03:00
int opt ;
2007-11-16 01:19:52 +03:00
TALLOC_CTX * frame = talloc_stackframe ( ) ;
2001-05-07 08:32:40 +04:00
2001-11-22 02:00:59 +03:00
/* glibc (?) likes to print "User defined signal 1" and exit if a
2002-03-27 01:33:06 +03:00
SIGUSR [ 12 ] is received before a handler is installed */
2001-11-15 06:23:15 +03:00
2002-03-27 01:33:06 +03:00
CatchSignal ( SIGUSR1 , SIG_IGN ) ;
2002-01-10 09:20:03 +03:00
CatchSignal ( SIGUSR2 , SIG_IGN ) ;
2001-11-15 06:23:15 +03:00
2001-11-23 14:18:20 +03:00
fault_setup ( ( void ( * ) ( void * ) ) fault_quit ) ;
2006-04-04 04:27:50 +04:00
dump_core_setup ( " winbindd " ) ;
2001-12-21 05:23:38 +03:00
2005-12-29 00:10:11 +03:00
load_case_tables ( ) ;
2001-11-15 00:49:30 +03:00
/* Initialise for running in non-root mode */
2001-10-05 04:20:06 +04:00
2001-07-08 22:25:19 +04:00
sec_init ( ) ;
2001-05-08 07:52:07 +04:00
2003-04-14 07:53:58 +04:00
set_remote_machine_name ( " winbindd " , False ) ;
2001-05-07 08:32:40 +04:00
/* Set environment variable so we don't recursively call ourselves.
This may also be useful interactively . */
2001-10-05 04:20:06 +04:00
2006-04-02 23:45:42 +04:00
if ( ! winbind_off ( ) ) {
2006-04-02 10:25:11 +04:00
DEBUG ( 0 , ( " Failed to disable recusive winbindd calls. Exiting. \n " ) ) ;
exit ( 1 ) ;
}
2001-05-07 08:32:40 +04:00
/* Initialise samba/rpc client stuff */
2007-08-21 18:22:16 +04:00
pc = poptGetContext ( " winbindd " , argc , ( const char * * ) argv , long_options , 0 ) ;
while ( ( opt = poptGetNextOpt ( pc ) ) ! = - 1 ) {
switch ( opt ) {
2007-10-11 00:34:30 +04:00
/* Don't become a daemon */
2007-10-19 22:38:36 +04:00
case OPT_DAEMON :
2007-10-11 00:34:30 +04:00
is_daemon = True ;
break ;
case ' i ' :
interactive = True ;
log_stdout = True ;
Fork = False ;
break ;
2007-10-19 22:38:36 +04:00
case OPT_FORK :
Fork = false ;
break ;
case OPT_NO_PROCESS_GROUP :
no_process_group = true ;
break ;
case OPT_LOG_STDOUT :
log_stdout = true ;
break ;
case ' n ' :
opt_nocache = true ;
break ;
2007-08-21 18:22:16 +04:00
default :
2007-08-22 16:06:27 +04:00
d_fprintf ( stderr , " \n Invalid option %s: %s \n \n " ,
2007-08-21 18:22:16 +04:00
poptBadOption ( pc , 0 ) , poptStrerror ( opt ) ) ;
2007-08-22 16:06:27 +04:00
poptPrintUsage ( pc , stderr , 0 ) ;
2007-08-21 18:22:16 +04:00
exit ( 1 ) ;
}
}
2007-04-20 22:34:33 +04:00
2007-10-11 00:34:30 +04:00
if ( is_daemon & & interactive ) {
d_fprintf ( stderr , " \n ERROR: "
" Option -i|--interactive is not allowed together with -D|--daemon \n \n " ) ;
poptPrintUsage ( pc , stderr , 0 ) ;
exit ( 1 ) ;
2001-05-07 08:32:40 +04:00
}
2000-05-09 15:43:00 +04:00
2007-10-11 00:34:30 +04:00
if ( log_stdout & & Fork ) {
d_fprintf ( stderr , " \n ERROR: "
" Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i) \n \n " ) ;
2003-04-14 07:53:58 +04:00
poptPrintUsage ( pc , stderr , 0 ) ;
2003-01-03 20:39:30 +03:00
exit ( 1 ) ;
}
2007-08-22 16:06:27 +04:00
poptFreeContext ( pc ) ;
2004-09-21 13:07:42 +04:00
if ( ! override_logfile ) {
2008-11-03 23:36:34 +03:00
char * lfile = NULL ;
if ( asprintf ( & lfile , " %s/log.winbindd " ,
2007-12-10 22:30:37 +03:00
get_dyn_LOGFILEBASE ( ) ) > 0 ) {
2008-11-03 23:36:34 +03:00
lp_set_logfile ( lfile ) ;
SAFE_FREE ( lfile ) ;
2007-11-21 04:18:16 +03:00
}
2004-09-21 13:07:42 +04:00
}
2003-01-03 20:39:30 +03:00
setup_logging ( " winbindd " , log_stdout ) ;
2001-05-07 08:32:40 +04:00
reopen_logs ( ) ;
2000-05-09 15:43:00 +04:00
2009-01-16 00:27:52 +03:00
DEBUG ( 0 , ( " winbindd version %s started. \n " , samba_version_string ( ) ) ) ;
2007-10-30 17:44:27 +03:00
DEBUGADD ( 0 , ( " %s \n " , COPYRIGHT_STARTUP_MESSAGE ) ) ;
2001-12-20 21:37:43 +03:00
2008-04-15 12:57:16 +04:00
if ( ! lp_load_initial_only ( get_dyn_CONFIGFILE ( ) ) ) {
DEBUG ( 0 , ( " error opening config file \n " ) ) ;
exit ( 1 ) ;
}
/* Initialise messaging system */
if ( winbind_messaging_context ( ) = = NULL ) {
exit ( 1 ) ;
}
2008-07-18 07:10:18 +04:00
if ( ! reload_services_file ( NULL ) ) {
2001-12-20 21:37:43 +03:00
DEBUG ( 0 , ( " error opening config file \n " ) ) ;
exit ( 1 ) ;
}
2008-10-17 14:48:19 +04:00
if ( ! directory_exist ( lp_lockdir ( ) ) ) {
2006-09-02 06:04:41 +04:00
mkdir ( lp_lockdir ( ) , 0755 ) ;
}
2001-12-20 21:37:43 +03:00
/* Setup names. */
2002-01-22 03:35:05 +03:00
2002-11-13 02:20:50 +03:00
if ( ! init_names ( ) )
exit ( 1 ) ;
2000-05-09 15:43:00 +04:00
2003-05-06 06:32:47 +04:00
load_interfaces ( ) ;
if ( ! secrets_init ( ) ) {
DEBUG ( 0 , ( " Could not initialize domain trust account secrets. Giving up \n " ) ) ;
return False ;
}
/* Enable netbios namecache */
namecache_enable ( ) ;
/* Unblock all signals we are interested in as they may have been
blocked by the parent process . */
BlockSignals ( False , SIGINT ) ;
BlockSignals ( False , SIGQUIT ) ;
BlockSignals ( False , SIGTERM ) ;
BlockSignals ( False , SIGUSR1 ) ;
BlockSignals ( False , SIGUSR2 ) ;
BlockSignals ( False , SIGHUP ) ;
2004-07-21 08:24:30 +04:00
BlockSignals ( False , SIGCHLD ) ;
2003-05-06 06:32:47 +04:00
2007-10-11 00:34:30 +04:00
if ( ! interactive )
become_daemon ( Fork , no_process_group ) ;
2000-05-09 15:43:00 +04:00
2003-04-14 07:53:58 +04:00
pidfile_create ( " winbindd " ) ;
2002-09-25 19:19:00 +04:00
2001-12-30 04:46:38 +03:00
# if HAVE_SETPGID
/*
* If we ' re interactive we want to set our own process group for
* signal management .
*/
2007-10-11 00:34:30 +04:00
if ( interactive & & ! no_process_group )
2001-12-30 04:46:38 +03:00
setpgid ( ( pid_t ) 0 , ( pid_t ) 0 ) ;
# endif
2005-11-05 07:21:55 +03:00
TimeInit ( ) ;
2009-01-07 04:34:06 +03:00
/* Don't use winbindd_reinit_after_fork here as
* we ' re just starting up and haven ' t created any
* winbindd - specific resources we must free yet . JRA .
*/
2009-01-05 14:47:45 +03:00
if ( ! reinit_after_fork ( winbind_messaging_context ( ) ,
winbind_event_context ( ) , false ) ) {
2008-04-15 12:57:16 +04:00
DEBUG ( 0 , ( " reinit_after_fork() failed \n " ) ) ;
2002-03-27 01:33:06 +03:00
exit ( 1 ) ;
}
2007-11-23 12:54:48 +03:00
2009-01-22 16:54:21 +03:00
/* Setup signal handlers */
if ( ! winbindd_setup_sig_term_handler ( true ) )
exit ( 1 ) ;
if ( ! winbindd_setup_sig_hup_handler ( NULL ) )
exit ( 1 ) ;
if ( ! winbindd_setup_sig_chld_handler ( ) )
exit ( 1 ) ;
if ( ! winbindd_setup_sig_usr2_handler ( ) )
exit ( 1 ) ;
CatchSignal ( SIGPIPE , SIG_IGN ) ; /* Ignore sigpipe */
2007-11-23 12:54:48 +03:00
/*
* Ensure all cache and idmap caches are consistent
2008-04-10 13:53:53 +04:00
* and initialized before we startup .
2007-11-23 12:54:48 +03:00
*/
2008-04-10 13:53:53 +04:00
if ( ! winbindd_cache_validate_and_initialize ( ) ) {
2007-04-14 02:29:50 +04:00
exit ( 1 ) ;
}
2008-04-01 16:01:28 +04:00
/* get broadcast messages */
claim_connection ( NULL , " " , FLAG_MSG_GENERAL | FLAG_MSG_DBWRAP ) ;
2003-07-15 21:21:21 +04:00
/* React on 'smbcontrol winbindd reload-config' in the same way
as to SIGHUP signal */
2007-05-16 18:45:09 +04:00
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_SMB_CONF_UPDATED , msg_reload_services ) ;
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_SHUTDOWN , msg_shutdown ) ;
2006-02-04 01:19:41 +03:00
/* Handle online/offline messages. */
2007-05-16 18:45:09 +04:00
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_OFFLINE , winbind_msg_offline ) ;
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_ONLINE , winbind_msg_online ) ;
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_ONLINESTATUS , winbind_msg_onlinestatus ) ;
2006-02-04 01:19:41 +03:00
2007-06-21 17:05:56 +04:00
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_DUMP_EVENT_LIST , winbind_msg_dump_event_list ) ;
2007-08-31 19:24:43 +04:00
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_VALIDATE_CACHE ,
winbind_msg_validate_cache ) ;
2008-01-24 18:19:58 +03:00
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_DUMP_DOMAIN_LIST ,
winbind_msg_dump_domain_list ) ;
2008-07-01 22:37:13 +04:00
/* Register handler for MSG_DEBUG. */
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_DEBUG ,
winbind_msg_debug ) ;
2008-11-26 16:01:22 +03:00
2005-11-10 23:28:23 +03:00
netsamlogon_cache_init ( ) ; /* Non-critical */
2008-11-26 16:01:22 +03:00
2007-05-06 23:17:30 +04:00
/* clear the cached list of trusted domains */
wcache_tdc_clear ( ) ;
2008-11-26 16:01:22 +03:00
2006-03-16 18:21:41 +03:00
if ( ! init_domain_list ( ) ) {
2008-03-25 23:35:41 +03:00
DEBUG ( 0 , ( " unable to initialize domain list \n " ) ) ;
2006-03-16 14:32:01 +03:00
exit ( 1 ) ;
}
2004-01-08 11:19:18 +03:00
2005-06-09 02:10:34 +04:00
init_idmap_child ( ) ;
2007-08-29 16:43:23 +04:00
init_locator_child ( ) ;
2005-06-09 02:10:34 +04:00
2006-09-20 04:15:50 +04:00
smb_nscd_flush_user_cache ( ) ;
smb_nscd_flush_group_cache ( ) ;
2006-03-16 16:37:23 +03:00
2001-05-07 08:32:40 +04:00
/* Loop waiting for requests */
2007-10-11 00:34:30 +04:00
2007-11-16 01:19:52 +03:00
TALLOC_FREE ( frame ) ;
2007-10-11 00:34:30 +04:00
while ( 1 ) {
2007-11-16 01:19:52 +03:00
frame = talloc_stackframe ( ) ;
2007-10-11 00:34:30 +04:00
process_loop ( ) ;
TALLOC_FREE ( frame ) ;
}
2000-05-09 15:43:00 +04:00
2001-05-07 08:32:40 +04:00
return 0 ;
2000-05-09 15:43:00 +04:00
}