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"
2010-08-05 12:49:53 +04:00
# include "popt_common.h"
2000-05-09 15:43:00 +04:00
# include "winbindd.h"
2010-08-18 14:42:49 +04:00
# include "nsswitch/winbind_client.h"
2011-02-17 02:43:05 +03:00
# include "nsswitch/wb_reqtrans.h"
2011-05-02 15:21:53 +04:00
# include "ntdomain.h"
2010-07-02 12:17:44 +04:00
# include "../librpc/gen_ndr/srv_lsa.h"
# include "../librpc/gen_ndr/srv_samr.h"
2010-08-05 04:25:37 +04:00
# include "secrets.h"
2010-08-18 20:13:42 +04:00
# include "idmap.h"
2011-01-31 19:25:55 +03:00
# include "lib/addrchange.h"
2011-02-25 01:05:57 +03:00
# include "serverid.h"
2011-03-25 04:28:05 +03:00
# include "auth.h"
2011-03-24 17:31:06 +03:00
# include "messages.h"
2000-05-09 15:43:00 +04:00
2006-04-20 17:51:43 +04:00
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_WINBIND
2010-08-23 03:53:40 +04:00
static bool client_is_idle ( struct winbindd_cli_state * state ) ;
2009-05-25 22:28:38 +04:00
static void remove_client ( struct winbindd_cli_state * state ) ;
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
2010-11-14 07:28:41 +03:00
struct messaging_context * winbind_messaging_context ( void )
{
struct messaging_context * msg_ctx = server_messaging_context ( ) ;
if ( likely ( msg_ctx ! = NULL ) ) {
return msg_ctx ;
}
smb_panic ( " Could not init winbindd's messaging context. \n " ) ;
return NULL ;
}
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 ( ) ;
2011-07-28 13:04:53 +04:00
ret = lp_load_global ( get_dyn_CONFIGFILE ( ) ) ;
2000-05-09 15:43:00 +04:00
reopen_logs ( ) ;
load_interfaces ( ) ;
return ( ret ) ;
}
2003-07-15 21:21:21 +04:00
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 ) {
2010-08-23 03:53:40 +04:00
DEBUGADD ( 2 , ( " \t \t pid %lu, sock %d (%s) \n " ,
( unsigned long ) tmp - > pid , tmp - > sock ,
client_is_idle ( tmp ) ? " idle " : " active " ) ) ;
2001-05-07 08:32:40 +04:00
}
}
}
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
}
2010-02-09 11:35:40 +03:00
static void flush_caches_noinit ( void )
{
/*
* 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 .
* NB
* Skip uninitialized domains when flush cache .
* If domain is not initialized , it means it is never
* used or never become online . look , wcache_invalidate_cache ( )
* - > get_cache ( ) - > init_dc_connection ( ) . It causes a lot of traffic
* for unused domains and large traffic for primay domain ' s DC if there
* are many domains . .
*/
if ( ! wcache_invalidate_cache_noinit ( ) ) {
DEBUG ( 0 , ( " invalidating the cache failed; revalidate the cache \n " ) ) ;
if ( ! winbindd_cache_validate_and_initialize ( ) ) {
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 ( ) ;
2009-07-13 19:04:29 +04:00
gencache_stabilize ( ) ;
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
2009-06-18 13:45:57 +04:00
if ( is_parent ) {
2010-07-04 18:08:03 +04:00
serverid_deregister ( procid_self ( ) ) ;
2009-06-18 13:45:57 +04:00
pidfile_unlink ( ) ;
}
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
2012-03-02 11:22:10 +04:00
/*
handle stdin becoming readable when we are in - - foreground mode
*/
static void winbindd_stdin_handler ( struct tevent_context * ev ,
struct tevent_fd * fde ,
uint16_t flags ,
void * private_data )
{
char c ;
if ( read ( 0 , & c , 1 ) ! = 1 ) {
bool * is_parent = talloc_get_type_abort ( private_data , bool ) ;
/* we have reached EOF on stdin, which means the
parent has exited . Shutdown the server */
DEBUG ( 0 , ( " EOF on stdin (is_parent=%d) \n " ,
( int ) * is_parent ) ) ;
terminate ( * is_parent ) ;
}
}
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
}
2012-03-02 11:22:10 +04:00
bool winbindd_setup_stdin_handler ( bool parent , bool foreground )
{
bool * is_parent ;
if ( foreground ) {
is_parent = talloc ( winbind_event_context ( ) , bool ) ;
if ( ! is_parent ) {
return false ;
}
* is_parent = parent ;
/* if we are running in the foreground then look for
EOF on stdin , and exit if it happens . This allows
us to die if the parent process dies
*/
tevent_add_fd ( winbind_event_context ( ) , is_parent , 0 , TEVENT_FD_READ , winbindd_stdin_handler , is_parent ) ;
}
return true ;
}
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 " ) ) ;
2010-02-09 11:35:40 +03:00
flush_caches_noinit ( ) ;
2009-01-22 16:54:21 +03:00
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 )
{
2010-08-23 03:53:39 +04:00
winbindd_status ( ) ;
2009-01-22 16:54:21 +03:00
}
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 ;
2011-04-29 14:53:13 +04:00
NTSTATUS status ;
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 . . .
*/
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 */
2011-04-29 14:53:13 +04:00
status = winbindd_reinit_after_fork ( NULL , NULL ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 1 , ( " winbindd_reinit_after_fork failed: %s \n " ,
nt_errstr ( status ) ) ) ;
2010-04-01 18:23:06 +04:00
_exit ( 0 ) ;
}
2007-09-02 04:32:57 +04:00
2010-04-08 14:45:54 +04:00
/* install default SIGCHLD handler: validation code uses fork/waitpid */
CatchSignal ( SIGCHLD , SIG_DFL ) ;
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
/* Enumeration functions */
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
{ WINBINDD_LIST_TRUSTDOM , winbindd_list_trusted_domains ,
" LIST_TRUSTDOM " } ,
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
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 " } ,
2011-01-10 19:25:00 +03:00
{ WINBINDD_DC_INFO , winbindd_dc_info , " DC_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 " } ,
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 " } ,
2010-01-09 22:20:36 +03:00
{ WINBINDD_CCACHE_SAVE , winbindd_ccache_save , " CCACHE_SAVE " } ,
2006-08-19 05:04:54 +04: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
2009-05-16 14:00:07 +04:00
struct winbindd_async_dispatch_table {
enum winbindd_cmd cmd ;
const char * cmd_name ;
struct tevent_req * ( * send_req ) ( TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
2009-08-16 14:46:55 +04:00
struct winbindd_cli_state * cli ,
2009-05-16 14:00:07 +04:00
struct winbindd_request * request ) ;
2009-07-31 18:16:24 +04:00
NTSTATUS ( * recv_req ) ( struct tevent_req * req ,
struct winbindd_response * presp ) ;
2009-05-16 14:00:07 +04:00
} ;
static struct winbindd_async_dispatch_table async_nonpriv_table [ ] = {
2009-05-16 14:00:34 +04:00
{ WINBINDD_PING , " PING " ,
wb_ping_send , wb_ping_recv } ,
2009-08-04 14:57:13 +04:00
{ WINBINDD_LOOKUPSID , " LOOKUPSID " ,
winbindd_lookupsid_send , winbindd_lookupsid_recv } ,
2011-03-08 16:31:44 +03:00
{ WINBINDD_LOOKUPSIDS , " LOOKUPSIDS " ,
winbindd_lookupsids_send , winbindd_lookupsids_recv } ,
2009-08-04 15:29:03 +04:00
{ WINBINDD_LOOKUPNAME , " LOOKUPNAME " ,
winbindd_lookupname_send , winbindd_lookupname_recv } ,
2009-08-04 21:33:56 +04:00
{ WINBINDD_SID_TO_UID , " SID_TO_UID " ,
winbindd_sid_to_uid_send , winbindd_sid_to_uid_recv } ,
2009-08-04 21:42:22 +04:00
{ WINBINDD_SID_TO_GID , " SID_TO_GID " ,
winbindd_sid_to_gid_send , winbindd_sid_to_gid_recv } ,
2009-08-04 22:07:44 +04:00
{ WINBINDD_UID_TO_SID , " UID_TO_SID " ,
winbindd_uid_to_sid_send , winbindd_uid_to_sid_recv } ,
2009-08-04 22:22:17 +04:00
{ WINBINDD_GID_TO_SID , " GID_TO_SID " ,
winbindd_gid_to_sid_send , winbindd_gid_to_sid_recv } ,
2011-03-23 20:29:45 +03:00
{ WINBINDD_SIDS_TO_XIDS , " SIDS_TO_XIDS " ,
winbindd_sids_to_xids_send , winbindd_sids_to_xids_recv } ,
2009-08-04 23:35:24 +04:00
{ WINBINDD_GETPWSID , " GETPWSID " ,
winbindd_getpwsid_send , winbindd_getpwsid_recv } ,
2009-08-04 23:37:54 +04:00
{ WINBINDD_GETPWNAM , " GETPWNAM " ,
winbindd_getpwnam_send , winbindd_getpwnam_recv } ,
2009-08-04 23:41:40 +04:00
{ WINBINDD_GETPWUID , " GETPWUID " ,
winbindd_getpwuid_send , winbindd_getpwuid_recv } ,
2009-08-04 23:58:45 +04:00
{ WINBINDD_GETSIDALIASES , " GETSIDALIASES " ,
winbindd_getsidaliases_send , winbindd_getsidaliases_recv } ,
2009-08-05 00:20:18 +04:00
{ WINBINDD_GETUSERDOMGROUPS , " GETUSERDOMGROUPS " ,
winbindd_getuserdomgroups_send , winbindd_getuserdomgroups_recv } ,
2009-08-05 00:26:07 +04:00
{ WINBINDD_GETGROUPS , " GETGROUPS " ,
winbindd_getgroups_send , winbindd_getgroups_recv } ,
2009-08-15 15:23:57 +04:00
{ WINBINDD_SHOW_SEQUENCE , " SHOW_SEQUENCE " ,
winbindd_show_sequence_send , winbindd_show_sequence_recv } ,
2009-08-16 14:13:00 +04:00
{ WINBINDD_GETGRGID , " GETGRGID " ,
winbindd_getgrgid_send , winbindd_getgrgid_recv } ,
2009-08-16 14:23:31 +04:00
{ WINBINDD_GETGRNAM , " GETGRNAM " ,
winbindd_getgrnam_send , winbindd_getgrnam_recv } ,
2009-08-27 16:55:41 +04:00
{ WINBINDD_GETUSERSIDS , " GETUSERSIDS " ,
winbindd_getusersids_send , winbindd_getusersids_recv } ,
2009-08-27 19:11:24 +04:00
{ WINBINDD_LOOKUPRIDS , " LOOKUPRIDS " ,
winbindd_lookuprids_send , winbindd_lookuprids_recv } ,
2009-08-18 01:13:48 +04:00
{ WINBINDD_SETPWENT , " SETPWENT " ,
winbindd_setpwent_send , winbindd_setpwent_recv } ,
{ WINBINDD_GETPWENT , " GETPWENT " ,
winbindd_getpwent_send , winbindd_getpwent_recv } ,
{ WINBINDD_ENDPWENT , " ENDPWENT " ,
winbindd_endpwent_send , winbindd_endpwent_recv } ,
2009-08-26 01:02:44 +04:00
{ WINBINDD_DSGETDCNAME , " DSGETDCNAME " ,
winbindd_dsgetdcname_send , winbindd_dsgetdcname_recv } ,
2009-08-26 14:27:32 +04:00
{ WINBINDD_GETDCNAME , " GETDCNAME " ,
winbindd_getdcname_send , winbindd_getdcname_recv } ,
2009-08-28 01:33:45 +04:00
{ WINBINDD_SETGRENT , " SETGRENT " ,
winbindd_setgrent_send , winbindd_setgrent_recv } ,
{ WINBINDD_GETGRENT , " GETGRENT " ,
winbindd_getgrent_send , winbindd_getgrent_recv } ,
{ WINBINDD_ENDGRENT , " ENDGRENT " ,
winbindd_endgrent_send , winbindd_endgrent_recv } ,
2009-08-29 18:05:02 +04:00
{ WINBINDD_LIST_USERS , " LIST_USERS " ,
winbindd_list_users_send , winbindd_list_users_recv } ,
2009-08-29 19:17:47 +04:00
{ WINBINDD_LIST_GROUPS , " LIST_GROUPS " ,
winbindd_list_groups_send , winbindd_list_groups_recv } ,
2009-09-06 11:32:34 +04:00
{ WINBINDD_CHECK_MACHACC , " CHECK_MACHACC " ,
winbindd_check_machine_acct_send , winbindd_check_machine_acct_recv } ,
2009-12-21 23:50:43 +03:00
{ WINBINDD_PING_DC , " PING_DC " ,
winbindd_ping_dc_send , winbindd_ping_dc_recv } ,
2010-03-29 19:52:38 +04:00
{ WINBINDD_PAM_AUTH , " PAM_AUTH " ,
winbindd_pam_auth_send , winbindd_pam_auth_recv } ,
2010-04-01 18:44:16 +04:00
{ WINBINDD_PAM_LOGOFF , " PAM_LOGOFF " ,
winbindd_pam_logoff_send , winbindd_pam_logoff_recv } ,
2010-04-01 14:35:14 +04:00
{ WINBINDD_PAM_CHAUTHTOK , " PAM_CHAUTHTOK " ,
winbindd_pam_chauthtok_send , winbindd_pam_chauthtok_recv } ,
2010-04-20 13:11:19 +04:00
{ WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP , " PAM_CHNG_PSWD_AUTH_CRAP " ,
winbindd_pam_chng_pswd_auth_crap_send ,
winbindd_pam_chng_pswd_auth_crap_recv } ,
2011-06-21 00:18:48 +04:00
{ WINBINDD_WINS_BYIP , " WINS_BYIP " ,
2011-06-05 13:30:43 +04:00
winbindd_wins_byip_send , winbindd_wins_byip_recv } ,
2011-06-15 01:51:10 +04:00
{ WINBINDD_WINS_BYNAME , " WINS_BYNAME " ,
winbindd_wins_byname_send , winbindd_wins_byname_recv } ,
2009-05-16 14:00:34 +04:00
2009-05-16 14:00:07 +04:00
{ 0 , NULL , NULL , NULL }
} ;
2009-08-30 11:41:43 +04:00
static struct winbindd_async_dispatch_table async_priv_table [ ] = {
{ WINBINDD_ALLOCATE_UID , " ALLOCATE_UID " ,
winbindd_allocate_uid_send , winbindd_allocate_uid_recv } ,
2009-08-30 11:46:34 +04:00
{ WINBINDD_ALLOCATE_GID , " ALLOCATE_GID " ,
winbindd_allocate_gid_send , winbindd_allocate_gid_recv } ,
2009-10-06 20:26:33 +04:00
{ WINBINDD_CHANGE_MACHACC , " CHANGE_MACHACC " ,
winbindd_change_machine_acct_send , winbindd_change_machine_acct_recv } ,
2010-03-31 01:02:36 +04:00
{ WINBINDD_PAM_AUTH_CRAP , " PAM_AUTH_CRAP " ,
winbindd_pam_auth_crap_send , winbindd_pam_auth_crap_recv } ,
2009-08-30 11:41:43 +04:00
{ 0 , NULL , NULL , NULL }
} ;
2009-05-16 14:00:07 +04:00
static void wb_request_done ( struct tevent_req * req ) ;
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 ;
2009-05-16 14:00:07 +04:00
struct winbindd_async_dispatch_table * atable ;
2000-05-09 15:43:00 +04:00
2010-05-24 04:11:23 +04:00
state - > mem_ctx = talloc_named ( state , 0 , " winbind request " ) ;
2005-06-09 02:10:34 +04:00
if ( state - > mem_ctx = = NULL )
return ;
2007-06-05 03:51:19 +04:00
/* Remember who asked us. */
2009-05-08 00:46:27 +04:00
state - > pid = state - > request - > pid ;
2007-06-05 03:51:19 +04:00
2010-03-05 13:16:12 +03:00
state - > cmd_name = " unknown request " ;
state - > recv_fn = NULL ;
2001-05-07 08:32:40 +04:00
/* Process command */
2000-05-09 15:43:00 +04:00
2009-05-16 14:00:07 +04:00
for ( atable = async_nonpriv_table ; atable - > send_req ; atable + = 1 ) {
if ( state - > request - > cmd = = atable - > cmd ) {
break ;
}
}
2009-08-30 11:41:43 +04:00
if ( ( atable - > send_req = = NULL ) & & state - > privileged ) {
for ( atable = async_priv_table ; atable - > send_req ;
atable + = 1 ) {
if ( state - > request - > cmd = = atable - > cmd ) {
break ;
}
}
}
2009-05-16 14:00:07 +04:00
if ( atable - > send_req ! = NULL ) {
struct tevent_req * req ;
2010-03-05 13:16:12 +03:00
state - > cmd_name = atable - > cmd_name ;
state - > recv_fn = atable - > recv_req ;
DEBUG ( 10 , ( " process_request: Handling async request %d:%s \n " ,
( int ) state - > pid , state - > cmd_name ) ) ;
2009-05-16 14:00:07 +04:00
req = atable - > send_req ( state - > mem_ctx , winbind_event_context ( ) ,
2009-08-16 14:46:55 +04:00
state , state - > request ) ;
2009-05-16 14:00:07 +04:00
if ( req = = NULL ) {
DEBUG ( 0 , ( " process_request: atable->send failed for "
" %s \n " , atable - > cmd_name ) ) ;
request_error ( state ) ;
return ;
}
tevent_req_set_callback ( req , wb_request_done , state ) ;
return ;
}
2009-06-14 14:58:19 +04:00
state - > response = talloc_zero ( state - > mem_ctx ,
struct winbindd_response ) ;
if ( state - > response = = NULL ) {
DEBUG ( 10 , ( " talloc failed \n " ) ) ;
remove_client ( state ) ;
return ;
}
state - > response - > result = WINBINDD_PENDING ;
state - > response - > length = sizeof ( struct winbindd_response ) ;
2001-05-07 08:32:40 +04:00
for ( table = dispatch_table ; table - > fn ; table + + ) {
2009-05-08 00:46:27 +04:00
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 ) ) ;
2010-03-05 13:16:12 +03:00
state - > cmd_name = 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 " ,
2009-05-08 00:46:27 +04:00
( int ) state - > request - > cmd ) ) ;
2005-06-20 17:42:29 +04:00
request_error ( state ) ;
2005-06-09 02:10:34 +04:00
}
}
2009-05-16 14:00:07 +04:00
static void wb_request_done ( struct tevent_req * req )
{
struct winbindd_cli_state * state = tevent_req_callback_data (
req , struct winbindd_cli_state ) ;
NTSTATUS status ;
2010-03-22 17:29:19 +03:00
state - > response = talloc_zero ( state - > mem_ctx ,
struct winbindd_response ) ;
2009-07-31 18:16:24 +04:00
if ( state - > response = = NULL ) {
2010-03-05 13:16:12 +03:00
DEBUG ( 0 , ( " wb_request_done[%d:%s]: talloc_zero failed - removing client \n " ,
( int ) state - > pid , state - > cmd_name ) ) ;
2009-07-31 18:16:24 +04:00
remove_client ( state ) ;
return ;
}
state - > response - > result = WINBINDD_PENDING ;
state - > response - > length = sizeof ( struct winbindd_response ) ;
status = state - > recv_fn ( req , state - > response ) ;
2009-05-16 14:00:07 +04:00
TALLOC_FREE ( req ) ;
2010-03-05 13:16:12 +03:00
DEBUG ( 10 , ( " wb_request_done[%d:%s]: %s \n " ,
( int ) state - > pid , state - > cmd_name , nt_errstr ( status ) ) ) ;
2009-05-16 14:00:07 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
request_error ( state ) ;
2009-07-31 18:16:24 +04:00
return ;
2009-05-16 14:00:07 +04:00
}
request_ok ( state ) ;
}
2005-06-09 02:10:34 +04:00
/*
* 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 .
*/
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
2009-05-09 22:04:27 +04:00
static void winbind_client_request_read ( struct tevent_req * req ) ;
static void winbind_client_response_written ( struct tevent_req * req ) ;
static void request_finished ( struct winbindd_cli_state * state )
2005-06-09 02:10:34 +04:00
{
2009-05-09 22:04:27 +04:00
struct tevent_req * req ;
2005-06-09 02:10:34 +04:00
2009-05-09 22:04:27 +04:00
TALLOC_FREE ( state - > request ) ;
2005-06-09 02:10:34 +04:00
2009-05-09 22:04:27 +04:00
req = wb_resp_write_send ( state , winbind_event_context ( ) ,
state - > out_queue , state - > sock ,
2009-06-14 14:41:46 +04:00
state - > response ) ;
2009-05-09 22:04:27 +04:00
if ( req = = NULL ) {
2010-03-05 13:16:12 +03:00
DEBUG ( 10 , ( " request_finished[%d:%s]: wb_resp_write_send() failed \n " ,
( int ) state - > pid , state - > cmd_name ) ) ;
2009-05-25 22:28:38 +04:00
remove_client ( state ) ;
2005-06-09 02:10:34 +04:00
return ;
}
2009-05-09 22:04:27 +04:00
tevent_req_set_callback ( req , winbind_client_response_written , state ) ;
2005-06-09 02:10:34 +04:00
}
2009-05-09 22:04:27 +04:00
static void winbind_client_response_written ( struct tevent_req * req )
2005-06-09 02:10:34 +04:00
{
2009-05-09 22:04:27 +04:00
struct winbindd_cli_state * state = tevent_req_callback_data (
req , struct winbindd_cli_state ) ;
ssize_t ret ;
int err ;
2005-06-09 02:10:34 +04:00
2009-05-09 22:04:27 +04:00
ret = wb_resp_write_recv ( req , & err ) ;
TALLOC_FREE ( req ) ;
if ( ret = = - 1 ) {
2009-09-21 04:42:35 +04:00
close ( state - > sock ) ;
state - > sock = - 1 ;
2010-03-05 13:16:12 +03:00
DEBUG ( 2 , ( " Could not write response[%d:%s] to client: %s \n " ,
( int ) state - > pid , state - > cmd_name , strerror ( err ) ) ) ;
2009-05-25 22:28:38 +04:00
remove_client ( state ) ;
2005-06-09 02:10:34 +04:00
return ;
}
2010-04-01 14:54:31 +04:00
DEBUG ( 10 , ( " winbind_client_response_written[%d:%s]: delivered response "
" to client \n " , ( int ) state - > pid , state - > cmd_name ) ) ;
2010-03-05 13:16:12 +03:00
2009-05-09 22:04:27 +04:00
TALLOC_FREE ( state - > mem_ctx ) ;
2009-07-26 22:20:50 +04:00
state - > response = NULL ;
2010-03-05 13:16:12 +03:00
state - > cmd_name = " no request " ;
state - > recv_fn = NULL ;
2005-06-09 02:10:34 +04:00
2009-05-09 22:04:27 +04:00
req = wb_req_read_send ( state , winbind_event_context ( ) , state - > sock ,
WINBINDD_MAX_EXTRA_DATA ) ;
if ( req = = NULL ) {
2009-05-25 22:28:38 +04:00
remove_client ( state ) ;
2005-06-09 02:10:34 +04:00
return ;
}
2009-05-09 22:04:27 +04:00
tevent_req_set_callback ( req , winbind_client_request_read , state ) ;
2005-06-09 02:10:34 +04:00
}
2005-06-20 17:42:29 +04:00
void request_error ( struct winbindd_cli_state * state )
{
2009-06-14 14:41:46 +04:00
SMB_ASSERT ( state - > response - > result = = WINBINDD_PENDING ) ;
state - > response - > result = WINBINDD_ERROR ;
2005-06-20 17:42:29 +04:00
request_finished ( state ) ;
}
void request_ok ( struct winbindd_cli_state * state )
{
2009-06-14 14:41:46 +04:00
SMB_ASSERT ( state - > response - > result = = WINBINDD_PENDING ) ;
state - > response - > result = WINBINDD_OK ;
2005-06-20 17:42:29 +04:00
request_finished ( state ) ;
}
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
2010-05-14 07:11:48 +04:00
static void new_connection ( int listen_sock , bool privileged )
2000-05-09 15:43:00 +04:00
{
2010-05-14 07:11:48 +04:00
struct sockaddr_un sunaddr ;
2001-05-07 08:32:40 +04:00
struct winbindd_cli_state * state ;
2009-05-09 22:04:27 +04:00
struct tevent_req * req ;
2010-05-14 07:11:48 +04:00
socklen_t len ;
int sock ;
/* Accept connection */
len = sizeof ( sunaddr ) ;
2011-03-03 17:31:04 +03:00
sock = accept ( listen_sock , ( struct sockaddr * ) ( void * ) & sunaddr , & len ) ;
2010-05-14 07:11:48 +04:00
2011-03-03 17:31:04 +03:00
if ( sock = = - 1 ) {
if ( errno ! = EINTR ) {
DEBUG ( 0 , ( " Faild to accept socket - %s \n " ,
strerror ( errno ) ) ) ;
}
2010-05-14 07:11:48 +04:00
return ;
2011-03-03 17:31:04 +03:00
}
2010-05-14 07:11:48 +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
2011-06-07 05:44:43 +04:00
if ( ( state = talloc_zero ( NULL , struct winbindd_cli_state ) ) = = NULL ) {
2010-05-14 07:11:48 +04:00
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
2010-05-14 07:11:48 +04:00
state - > sock = sock ;
2003-02-28 03:25:55 +03:00
2009-05-09 22:04:27 +04:00
state - > out_queue = tevent_queue_create ( state , " winbind client reply " ) ;
if ( state - > out_queue = = NULL ) {
2010-05-14 07:11:48 +04:00
close ( sock ) ;
2009-05-09 22:04:27 +04:00
TALLOC_FREE ( state ) ;
return ;
}
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
2009-05-09 22:04:27 +04:00
req = wb_req_read_send ( state , winbind_event_context ( ) , state - > sock ,
WINBINDD_MAX_EXTRA_DATA ) ;
if ( req = = NULL ) {
TALLOC_FREE ( state ) ;
2010-05-14 07:11:48 +04:00
close ( sock ) ;
2009-05-09 22:04:27 +04:00
return ;
}
tevent_req_set_callback ( req , winbind_client_request_read , state ) ;
2005-06-09 02:10:34 +04:00
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
2009-05-09 22:04:27 +04:00
static void winbind_client_request_read ( struct tevent_req * req )
{
struct winbindd_cli_state * state = tevent_req_callback_data (
req , struct winbindd_cli_state ) ;
ssize_t ret ;
int err ;
ret = wb_req_read_recv ( req , state , & state - > request , & err ) ;
2009-07-25 03:03:45 +04:00
TALLOC_FREE ( req ) ;
2009-05-09 22:04:27 +04:00
if ( ret = = - 1 ) {
2009-12-26 20:00:32 +03:00
if ( err = = EPIPE ) {
DEBUG ( 6 , ( " closing socket %d, client exited \n " ,
state - > sock ) ) ;
} else {
DEBUG ( 2 , ( " Could not read client request from fd %d: "
" %s \n " , state - > sock , strerror ( err ) ) ) ;
}
2009-09-21 04:42:35 +04:00
close ( state - > sock ) ;
state - > sock = - 1 ;
2009-05-25 22:28:38 +04:00
remove_client ( state ) ;
2009-05-09 22:04:27 +04:00
return ;
}
process_request ( state ) ;
}
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
2009-09-21 04:42:35 +04:00
if ( state - > sock ! = - 1 ) {
/* tell client, we are closing ... */
nwritten = write ( state - > sock , & c , sizeof ( c ) ) ;
if ( nwritten = = - 1 ) {
2009-05-21 23:22:52 +04:00
DEBUG ( 2 , ( " final write to client failed: %s \n " ,
2009-09-21 04:42:35 +04:00
strerror ( errno ) ) ) ;
2009-05-21 23:22:52 +04:00
}
2008-10-27 16:28:44 +03:00
2009-09-21 04:42:35 +04:00
/* Close socket */
2008-11-26 16:01:22 +03:00
2009-09-21 04:42:35 +04:00
close ( state - > sock ) ;
state - > sock = - 1 ;
}
2008-11-26 16:01:22 +03: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 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
2010-08-23 03:53:40 +04:00
/* Is a client idle? */
static bool client_is_idle ( struct winbindd_cli_state * state ) {
return ( state - > response = = NULL & &
! state - > pwent_state & & ! state - > grent_state ) ;
}
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 ) {
2010-08-23 03:53:40 +04:00
if ( client_is_idle ( 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 ;
}
2009-03-16 19:27:30 +03:00
struct winbindd_listen_state {
bool privileged ;
int fd ;
} ;
static void winbindd_listen_fde_handler ( struct tevent_context * ev ,
struct tevent_fd * fde ,
uint16_t flags ,
void * private_data )
{
struct winbindd_listen_state * s = talloc_get_type_abort ( private_data ,
struct winbindd_listen_state ) ;
2010-09-15 03:43:39 +04:00
while ( winbindd_num_clients ( ) > lp_winbind_max_clients ( ) - 1 ) {
2009-03-16 19:27:30 +03:00
DEBUG ( 5 , ( " winbindd: Exceeding %d client "
" connections, removing idle "
2010-09-15 03:43:39 +04:00
" connection. \n " , lp_winbind_max_clients ( ) ) ) ;
2009-03-16 19:27:30 +03:00
if ( ! remove_idle_client ( ) ) {
DEBUG ( 0 , ( " winbindd: Exceeding %d "
" client connections, no idle "
" connection found \n " ,
2010-09-15 03:43:39 +04:00
lp_winbind_max_clients ( ) ) ) ;
2009-03-16 19:27:30 +03:00
break ;
}
}
new_connection ( s - > fd , s - > privileged ) ;
}
2010-05-17 13:34:32 +04:00
/*
* Winbindd socket accessor functions
*/
const char * get_winbind_pipe_dir ( void )
{
2011-04-27 10:45:39 +04:00
return lp_parm_const_string ( - 1 , " winbindd " , " socket dir " , get_dyn_WINBINDD_SOCKET_DIR ( ) ) ;
2010-05-17 13:34:32 +04:00
}
char * get_winbind_priv_pipe_dir ( void )
{
2011-06-20 04:13:09 +04:00
return state_path ( WINBINDD_PRIV_SOCKET_SUBDIR ) ;
2010-05-17 13:34:32 +04:00
}
2009-03-16 19:27:30 +03:00
static bool winbindd_setup_listeners ( void )
{
struct winbindd_listen_state * pub_state = NULL ;
struct winbindd_listen_state * priv_state = NULL ;
2009-05-25 22:31:59 +04:00
struct tevent_fd * fde ;
2011-08-29 11:49:22 +04:00
int rc ;
2009-03-16 19:27:30 +03:00
pub_state = talloc ( winbind_event_context ( ) ,
struct winbindd_listen_state ) ;
if ( ! pub_state ) {
goto failed ;
}
pub_state - > privileged = false ;
2010-05-17 13:34:32 +04:00
pub_state - > fd = create_pipe_sock (
get_winbind_pipe_dir ( ) , WINBINDD_SOCKET_NAME , 0755 ) ;
2009-03-16 19:27:30 +03:00
if ( pub_state - > fd = = - 1 ) {
goto failed ;
}
2011-08-29 11:49:22 +04:00
rc = listen ( pub_state - > fd , 5 ) ;
if ( rc < 0 ) {
goto failed ;
}
2009-03-16 19:27:30 +03:00
2009-05-25 22:31:59 +04:00
fde = tevent_add_fd ( winbind_event_context ( ) , pub_state , pub_state - > fd ,
TEVENT_FD_READ , winbindd_listen_fde_handler ,
pub_state ) ;
if ( fde = = NULL ) {
2009-03-16 19:27:30 +03:00
close ( pub_state - > fd ) ;
goto failed ;
}
2009-05-25 22:31:59 +04:00
tevent_fd_set_auto_close ( fde ) ;
2009-03-16 19:27:30 +03:00
priv_state = talloc ( winbind_event_context ( ) ,
struct winbindd_listen_state ) ;
if ( ! priv_state ) {
goto failed ;
}
priv_state - > privileged = true ;
2010-05-17 13:34:32 +04:00
priv_state - > fd = create_pipe_sock (
get_winbind_priv_pipe_dir ( ) , WINBINDD_SOCKET_NAME , 0750 ) ;
2009-03-16 19:27:30 +03:00
if ( priv_state - > fd = = - 1 ) {
goto failed ;
}
2011-08-29 11:49:22 +04:00
rc = listen ( priv_state - > fd , 5 ) ;
if ( rc < 0 ) {
goto failed ;
}
2009-03-16 19:27:30 +03:00
2009-05-25 22:31:59 +04:00
fde = tevent_add_fd ( winbind_event_context ( ) , priv_state ,
priv_state - > fd , TEVENT_FD_READ ,
winbindd_listen_fde_handler , priv_state ) ;
if ( fde = = NULL ) {
2009-03-16 19:27:30 +03:00
close ( priv_state - > fd ) ;
goto failed ;
}
2009-05-25 22:31:59 +04:00
tevent_fd_set_auto_close ( fde ) ;
2009-03-16 19:27:30 +03:00
return true ;
failed :
TALLOC_FREE ( pub_state ) ;
TALLOC_FREE ( priv_state ) ;
return false ;
}
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 ;
}
2012-03-02 11:22:10 +04:00
void winbindd_register_handlers ( bool foreground )
2010-05-11 15:37:30 +04:00
{
/* Setup signal handlers */
if ( ! winbindd_setup_sig_term_handler ( true ) )
exit ( 1 ) ;
2012-03-02 11:22:10 +04:00
if ( ! winbindd_setup_stdin_handler ( true , foreground ) )
exit ( 1 ) ;
2010-05-11 15:37:30 +04:00
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 */
/*
* Ensure all cache and idmap caches are consistent
* and initialized before we startup .
*/
if ( ! winbindd_cache_validate_and_initialize ( ) ) {
exit ( 1 ) ;
}
/* get broadcast messages */
2010-07-04 18:08:03 +04:00
if ( ! serverid_register ( procid_self ( ) ,
2011-08-11 07:10:48 +04:00
FLAG_MSG_GENERAL |
FLAG_MSG_WINBIND |
FLAG_MSG_DBWRAP ) ) {
2010-05-11 15:37:30 +04:00
DEBUG ( 1 , ( " Could not register myself in serverid.tdb \n " ) ) ;
exit ( 1 ) ;
}
/* React on 'smbcontrol winbindd reload-config' in the same way
as to SIGHUP signal */
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_SMB_CONF_UPDATED , msg_reload_services ) ;
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_SHUTDOWN , msg_shutdown ) ;
/* Handle online/offline messages. */
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 ) ;
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_DUMP_EVENT_LIST , winbind_msg_dump_event_list ) ;
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_VALIDATE_CACHE ,
winbind_msg_validate_cache ) ;
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_DUMP_DOMAIN_LIST ,
winbind_msg_dump_domain_list ) ;
2010-09-29 14:17:05 +04:00
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_WINBIND_IP_DROPPED ,
winbind_msg_ip_dropped_parent ) ;
2010-05-11 15:37:30 +04:00
/* Register handler for MSG_DEBUG. */
messaging_register ( winbind_messaging_context ( ) , NULL ,
MSG_DEBUG ,
winbind_msg_debug ) ;
netsamlogon_cache_init ( ) ; /* Non-critical */
/* clear the cached list of trusted domains */
wcache_tdc_clear ( ) ;
if ( ! init_domain_list ( ) ) {
DEBUG ( 0 , ( " unable to initialize domain list \n " ) ) ;
exit ( 1 ) ;
}
init_idmap_child ( ) ;
init_locator_child ( ) ;
smb_nscd_flush_user_cache ( ) ;
smb_nscd_flush_group_cache ( ) ;
2011-04-07 00:52:42 +04:00
if ( lp_allow_trusted_domains ( ) ) {
if ( tevent_add_timer ( winbind_event_context ( ) , NULL , timeval_zero ( ) ,
rescan_trusted_domains , NULL ) = = NULL ) {
DEBUG ( 0 , ( " Could not trigger rescan_trusted_domains() \n " ) ) ;
exit ( 1 ) ;
}
2010-05-11 15:37:30 +04:00
}
}
2011-01-31 19:25:55 +03:00
struct winbindd_addrchanged_state {
struct addrchange_context * ctx ;
struct tevent_context * ev ;
struct messaging_context * msg_ctx ;
} ;
static void winbindd_addr_changed ( struct tevent_req * req ) ;
static void winbindd_init_addrchange ( TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
struct messaging_context * msg_ctx )
{
struct winbindd_addrchanged_state * state ;
struct tevent_req * req ;
NTSTATUS status ;
state = talloc ( mem_ctx , struct winbindd_addrchanged_state ) ;
if ( state = = NULL ) {
DEBUG ( 10 , ( " talloc failed \n " ) ) ;
return ;
}
state - > ev = ev ;
state - > msg_ctx = msg_ctx ;
status = addrchange_context_create ( state , & state - > ctx ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 10 , ( " addrchange_context_create failed: %s \n " ,
nt_errstr ( status ) ) ) ;
TALLOC_FREE ( state ) ;
return ;
}
req = addrchange_send ( state , ev , state - > ctx ) ;
if ( req = = NULL ) {
2011-02-04 14:29:42 +03:00
DEBUG ( 0 , ( " addrchange_send failed \n " ) ) ;
2011-01-31 19:25:55 +03:00
TALLOC_FREE ( state ) ;
2011-02-04 14:29:42 +03:00
return ;
2011-01-31 19:25:55 +03:00
}
tevent_req_set_callback ( req , winbindd_addr_changed , state ) ;
}
static void winbindd_addr_changed ( struct tevent_req * req )
{
struct winbindd_addrchanged_state * state = tevent_req_callback_data (
req , struct winbindd_addrchanged_state ) ;
enum addrchange_type type ;
struct sockaddr_storage addr ;
NTSTATUS status ;
status = addrchange_recv ( req , & type , & addr ) ;
TALLOC_FREE ( req ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 10 , ( " addrchange_recv failed: %s, stop listening \n " ,
nt_errstr ( status ) ) ) ;
TALLOC_FREE ( state ) ;
2011-02-04 14:29:42 +03:00
return ;
2011-01-31 19:25:55 +03:00
}
if ( type = = ADDRCHANGE_DEL ) {
char addrstr [ INET6_ADDRSTRLEN ] ;
DATA_BLOB blob ;
print_sockaddr ( addrstr , sizeof ( addrstr ) , & addr ) ;
DEBUG ( 3 , ( " winbindd: kernel (AF_NETLINK) dropped ip %s \n " ,
addrstr ) ) ;
blob = data_blob_const ( addrstr , strlen ( addrstr ) + 1 ) ;
status = messaging_send ( state - > msg_ctx ,
messaging_server_id ( state - > msg_ctx ) ,
MSG_WINBIND_IP_DROPPED , & blob ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
2011-02-04 14:29:42 +03:00
DEBUG ( 10 , ( " messaging_send failed: %s - ignoring \n " ,
2011-01-31 19:25:55 +03:00
nt_errstr ( status ) ) ) ;
}
}
req = addrchange_send ( state , state - > ev , state - > ctx ) ;
if ( req = = NULL ) {
2011-02-04 14:29:42 +03:00
DEBUG ( 0 , ( " addrchange_send failed \n " ) ) ;
2011-01-31 19:25:55 +03:00
TALLOC_FREE ( state ) ;
2011-02-04 14:29:42 +03:00
return ;
2011-01-31 19:25:55 +03:00
}
tevent_req_set_callback ( req , winbindd_addr_changed , state ) ;
}
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 ;
2010-09-24 20:45:52 +04:00
TALLOC_CTX * frame ;
2010-07-04 18:28:13 +04:00
NTSTATUS status ;
2001-05-07 08:32:40 +04:00
2010-09-24 20:45:52 +04:00
/*
* Do this before any other talloc operation
*/
talloc_enable_null_tracking ( ) ;
frame = talloc_stackframe ( ) ;
2011-07-18 11:07:25 +04:00
setup_logging ( " winbindd " , DEBUG_DEFAULT_STDOUT ) ;
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
2011-03-22 06:05:23 +03:00
fault_setup ( ) ;
2011-03-22 08:17:39 +03:00
dump_core_setup ( " winbindd " , lp_logfile ( ) ) ;
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
}
2011-07-18 11:07:25 +04:00
2010-10-29 07:19:32 +04:00
if ( log_stdout ) {
setup_logging ( " winbindd " , DEBUG_STDOUT ) ;
} else {
setup_logging ( " winbindd " , DEBUG_FILE ) ;
}
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 ( ) ) ) {
2011-03-23 03:22:15 +03:00
DEBUG ( 0 , ( " error opening config file '%s' \n " , get_dyn_CONFIGFILE ( ) ) ) ;
2008-04-15 12:57:16 +04:00
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 ;
}
/* 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 )
2010-03-26 13:17:37 +03:00
become_daemon ( Fork , no_process_group , log_stdout ) ;
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 ( ) ;
2010-05-13 11:07:15 +04: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 .
*/
2010-07-04 18:28:13 +04:00
status = reinit_after_fork ( winbind_messaging_context ( ) ,
winbind_event_context ( ) ,
2011-12-12 17:55:54 +04:00
false ) ;
2010-07-04 18:28:13 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2010-05-13 11:07:15 +04:00
DEBUG ( 0 , ( " reinit_after_fork() failed \n " ) ) ;
exit ( 1 ) ;
}
2012-03-02 11:22:10 +04:00
winbindd_register_handlers ( ! Fork ) ;
2006-03-16 16:37:23 +03:00
2011-02-19 22:05:07 +03:00
status = init_system_info ( ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 1 , ( " ERROR: failed to setup system user info: %s. \n " ,
nt_errstr ( status ) ) ) ;
2010-05-27 14:06:24 +04:00
exit ( 1 ) ;
}
2010-10-15 19:58:39 +04:00
rpc_lsarpc_init ( NULL ) ;
rpc_samr_init ( NULL ) ;
2011-01-31 19:25:55 +03:00
winbindd_init_addrchange ( NULL , winbind_event_context ( ) ,
winbind_messaging_context ( ) ) ;
2009-03-16 19:27:30 +03:00
/* setup listen sockets */
if ( ! winbindd_setup_listeners ( ) ) {
DEBUG ( 0 , ( " winbindd_setup_listeners() failed \n " ) ) ;
exit ( 1 ) ;
}
2007-10-11 00:34:30 +04:00
2007-11-16 01:19:52 +03:00
TALLOC_FREE ( frame ) ;
2009-03-16 19:27:30 +03:00
/* Loop waiting for requests */
2007-10-11 00:34:30 +04:00
while ( 1 ) {
2007-11-16 01:19:52 +03:00
frame = talloc_stackframe ( ) ;
2009-03-16 18:14:20 +03:00
2009-05-26 00:40:09 +04:00
if ( tevent_loop_once ( winbind_event_context ( ) ) = = - 1 ) {
DEBUG ( 1 , ( " tevent_loop_once() failed: %s \n " ,
strerror ( errno ) ) ) ;
return 1 ;
}
2009-03-16 18:14:20 +03:00
2007-10-11 00:34:30 +04:00
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
}