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
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
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
2003-11-12 04:51:10 +03:00
# include "includes.h"
2000-05-09 15:43:00 +04:00
# include "winbindd.h"
2002-07-15 14:35:28 +04:00
BOOL opt_nocache = False ;
2005-06-09 02:10:34 +04:00
static BOOL interactive = False ;
2000-05-09 15:43:00 +04:00
2004-09-21 13:07:42 +04:00
extern BOOL override_logfile ;
2000-05-09 15:43:00 +04:00
/* Reload configuration */
2004-01-29 03:10:40 +03:00
static BOOL reload_services_file ( void )
2000-05-09 15:43:00 +04:00
{
BOOL ret ;
2001-05-07 08:32:40 +04:00
if ( lp_loaded ( ) ) {
pstring fname ;
pstrcpy ( fname , lp_configfile ( ) ) ;
2001-11-19 05:49:53 +03:00
if ( file_exist ( fname , NULL ) & & ! strcsequal ( fname , dyn_CONFIGFILE ) ) {
pstrcpy ( dyn_CONFIGFILE , fname ) ;
2001-05-07 08:32:40 +04:00
}
}
2000-05-09 15:43:00 +04:00
reopen_logs ( ) ;
2001-11-19 05:49:53 +03:00
ret = lp_load ( dyn_CONFIGFILE , False , False , 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
# if DUMP_CORE
/**************************************************************************** **
Prepare to dump a core file - carefully !
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL dump_core ( void )
{
char * p ;
pstring dname ;
2001-12-21 01:27:05 +03:00
pstrcpy ( dname , lp_logfile ( ) ) ;
2001-11-23 14:18:20 +03:00
if ( ( p = strrchr ( dname , ' / ' ) ) )
* p = 0 ;
pstrcat ( dname , " /corefiles " ) ;
mkdir ( dname , 0700 ) ;
sys_chown ( dname , getuid ( ) , getgid ( ) ) ;
chmod ( dname , 0700 ) ;
if ( chdir ( dname ) )
return ( False ) ;
umask ( ~ ( 0700 ) ) ;
# ifdef HAVE_GETRLIMIT
# ifdef RLIMIT_CORE
{
struct rlimit rlp ;
getrlimit ( RLIMIT_CORE , & rlp ) ;
rlp . rlim_cur = MAX ( 4 * 1024 * 1024 , rlp . rlim_cur ) ;
setrlimit ( RLIMIT_CORE , & rlp ) ;
getrlimit ( RLIMIT_CORE , & rlp ) ;
DEBUG ( 3 , ( " Core limits now %d %d \n " , ( int ) rlp . rlim_cur , ( int ) rlp . rlim_max ) ) ;
}
# endif
# endif
DEBUG ( 0 , ( " Dumping core in %s \n " , dname ) ) ;
abort ( ) ;
return ( True ) ;
} /* dump_core */
# endif
/**************************************************************************** **
Handle a fault . .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void fault_quit ( void )
{
# if DUMP_CORE
dump_core ( ) ;
# endif
}
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 */
2002-11-02 04:36:42 +03:00
DEBUG ( 0 , ( " \t %d clients currently active \n " , winbindd_num_clients ( ) ) ) ;
2001-05-07 08:32:40 +04: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 ) {
2005-10-27 11:57:39 +04:00
DEBUG ( 2 , ( " \t \t pid %lu, sock %d \n " ,
( 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 . */
wcache_invalidate_cache ( ) ;
2000-05-09 15:43:00 +04:00
}
/* Handle the signal by unlinking socket and exiting */
2001-11-15 00:49:30 +03:00
static void terminate ( void )
2000-05-09 15:43:00 +04:00
{
2001-05-07 08:32:40 +04:00
pstring path ;
2002-01-19 23:21:29 +03:00
2003-05-12 22:12:31 +04:00
idmap_close ( ) ;
2001-05-07 08:32:40 +04:00
/* Remove socket file */
2003-07-23 16:33:59 +04:00
pstr_sprintf ( path , " %s/%s " ,
2001-05-07 08:32:40 +04:00
WINBINDD_SOCKET_DIR , WINBINDD_SOCKET_NAME ) ;
unlink ( path ) ;
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
2001-11-15 00:49:30 +03:00
static BOOL do_sigterm ;
static void termination_handler ( int signum )
{
do_sigterm = True ;
2005-06-09 19:20:11 +04:00
sys_select_signal ( signum ) ;
2001-11-15 00:49:30 +03:00
}
2002-01-10 09:20:03 +03:00
static BOOL do_sigusr2 ;
2000-05-09 15:43:00 +04:00
2002-01-10 09:20:03 +03:00
static void sigusr2_handler ( int signum )
2001-05-07 08:32:40 +04:00
{
2002-01-10 09:20:03 +03:00
do_sigusr2 = True ;
2005-06-09 19:20:11 +04:00
sys_select_signal ( SIGUSR2 ) ;
2000-05-09 15:43:00 +04:00
}
2001-05-07 08:32:40 +04:00
static BOOL do_sighup ;
2000-05-09 15:43:00 +04:00
static void sighup_handler ( int signum )
{
2001-05-07 08:32:40 +04:00
do_sighup = True ;
2005-06-09 19:20:11 +04:00
sys_select_signal ( SIGHUP ) ;
2000-05-09 15:43:00 +04:00
}
2005-06-09 02:10:34 +04:00
static BOOL do_sigchld ;
2004-07-21 08:24:30 +04:00
static void sigchld_handler ( int signum )
{
2005-06-09 02:10:34 +04:00
do_sigchld = True ;
2005-06-09 19:20:11 +04:00
sys_select_signal ( SIGCHLD ) ;
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*/
2005-09-30 21:13:37 +04:00
static void msg_reload_services ( int msg_type , struct process_id src , void * buf , size_t len )
2003-07-15 21:21:21 +04:00
{
/* Flush various caches */
flush_caches ( ) ;
2004-01-29 03:10:40 +03:00
reload_services_file ( ) ;
2003-07-15 21:21:21 +04:00
}
/* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
2005-09-30 21:13:37 +04:00
static void msg_shutdown ( int msg_type , struct process_id src , void * buf , size_t len )
2003-07-15 21:21:21 +04:00
{
2005-10-28 13:15:27 +04:00
do_sigterm = True ;
2003-07-15 21:21:21 +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 [ ] = {
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 " } ,
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 " } ,
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 " } ,
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 " } ,
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 " } ,
2004-04-07 16:43:44 +04:00
{ WINBINDD_ALLOCATE_RID , winbindd_allocate_rid , " ALLOCATE_RID " } ,
2005-06-09 02:10:34 +04:00
{ WINBINDD_ALLOCATE_RID_AND_GID , winbindd_allocate_rid_and_gid ,
" ALLOCATE_RID_AND_GID " } ,
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 " } ,
2000-05-09 15:43:00 +04:00
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 " } ,
2003-07-09 20:44:47 +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
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
2001-09-17 08:52:45 +04:00
SAFE_FREE ( state - > response . extra_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 ;
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
* loop . fd_event - > handler is called whenever the socket is readable / writable .
*/
static struct fd_event * fd_events = NULL ;
void add_fd_event ( struct fd_event * ev )
{
struct fd_event * match ;
/* only add unique fd_event structs */
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 ) ;
}
void remove_fd_event ( struct fd_event * ev )
{
DLIST_REMOVE ( fd_events , ev ) ;
}
/*
* Handler for fd_events to complete a read / write request , set up by
* setup_async_read / setup_async_write .
*/
static void rw_callback ( struct fd_event * event , int flags )
{
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
}
}
/*
* Request an async read / write on a fd_event structure . ( * finished ) is called
* when the request is completed or an error had occurred .
*/
void setup_async_read ( struct fd_event * event , void * data , size_t length ,
2005-06-25 00:25:18 +04:00
void ( * finished ) ( void * private_data , BOOL success ) ,
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 ;
}
void setup_async_write ( struct fd_event * event , void * data , size_t length ,
2005-06-25 00:25:18 +04:00
void ( * finished ) ( void * private_data , BOOL success ) ,
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 .
*/
2005-06-25 00:25:18 +04:00
static void request_len_recv ( void * private_data , BOOL success ) ;
static void request_recv ( void * private_data , BOOL success ) ;
2005-09-30 21:13:37 +04:00
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 ) ;
2005-06-25 00:25:18 +04:00
void request_finished_cont ( void * private_data , BOOL success ) ;
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
2005-06-25 00:25:18 +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
if ( state - > mem_ctx ! = NULL ) {
talloc_destroy ( state - > mem_ctx ) ;
state - > mem_ctx = NULL ;
}
if ( ! success ) {
state - > finished = True ;
return ;
}
2005-09-30 21:13:37 +04:00
SAFE_FREE ( state - > request . extra_data ) ;
2005-06-09 02:10:34 +04:00
SAFE_FREE ( state - > response . extra_data ) ;
setup_async_read ( & state - > fd_event , & state - > request , sizeof ( uint32 ) ,
request_len_recv , state ) ;
}
2005-06-25 00:25:18 +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 ) ) {
if ( state - > mem_ctx ! = NULL ) {
talloc_destroy ( state - > mem_ctx ) ;
state - > mem_ctx = NULL ;
}
setup_async_read ( & state - > fd_event , & state - > request ,
sizeof ( uint32 ) , request_len_recv , state ) ;
return ;
}
setup_async_write ( & state - > fd_event , state - > response . extra_data ,
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
{
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 ) ;
}
2005-06-25 00:25:18 +04:00
void request_finished_cont ( 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
2005-06-20 17:42:29 +04:00
if ( success )
request_ok ( state ) ;
else
request_error ( state ) ;
2005-06-09 02:10:34 +04:00
}
2005-09-30 21:13:37 +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 ) ) {
DEBUG ( 0 , ( " request_len_recv: Invalid request size received: %d \n " ,
* ( uint32 * ) ( & state - > request ) ) ) ;
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
}
2005-09-30 21:13:37 +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 ) {
state - > request . extra_data = NULL ;
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 ) ) ;
state - > request . extra_data = NULL ;
2005-06-09 02:10:34 +04:00
state - > finished = True ;
return ;
}
2000-05-09 15:43:00 +04:00
2005-09-30 21:13:37 +04:00
state - > request . extra_data =
SMB_MALLOC_ARRAY ( char , state - > request . extra_len + 1 ) ;
if ( state - > request . extra_data = = NULL ) {
DEBUG ( 0 , ( " malloc failed \n " ) ) ;
state - > finished = True ;
return ;
}
/* Ensure null termination */
state - > request . extra_data [ state - > request . extra_len ] = ' \0 ' ;
setup_async_read ( & state - > fd_event , state - > request . extra_data ,
state - > request . extra_len , request_recv , state ) ;
}
static void request_recv ( void * private_data , BOOL success )
{
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
2003-04-07 11:32:51 +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 ;
2001-05-07 08:32:40 +04:00
/* Accept connection */
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 ;
DEBUG ( 6 , ( " accepted socket %d \n " , sock ) ) ;
/* Create new connection structure */
2005-06-09 02:10:34 +04:00
if ( ( state = TALLOC_ZERO_P ( NULL , struct winbindd_cli_state ) ) = = NULL )
2001-05-07 08:32:40 +04:00
return ;
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 */
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 )
{
/* It's a dead client - hold a funeral */
if ( state ! = NULL ) {
/* Close socket */
close ( state - > sock ) ;
/* Free any getent state */
free_getent_state ( state - > getpwent_state ) ;
free_getent_state ( state - > getgrent_state ) ;
/* We may have some extra data that was not freed if the
client was killed unexpectedly */
2001-09-17 08:52:45 +04:00
SAFE_FREE ( state - > response . extra_data ) ;
2005-06-09 02:10:34 +04:00
if ( state - > mem_ctx ! = NULL ) {
talloc_destroy ( state - > mem_ctx ) ;
state - > mem_ctx = NULL ;
}
remove_fd_event ( & state - > fd_event ) ;
2001-05-07 08:32:40 +04:00
/* Remove from list and free */
2002-11-02 04:36:42 +03:00
winbindd_remove_client ( state ) ;
2005-06-09 02:10:34 +04:00
talloc_free ( state ) ;
2001-05-07 08:32:40 +04:00
}
}
2000-05-09 15:43:00 +04:00
2002-07-15 14:35:28 +04:00
2003-02-28 03:25:55 +03:00
/* Shutdown client connection which has been idle for the longest time */
static BOOL remove_idle_client ( void )
{
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
2002-11-02 04:36:42 +03: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 ;
struct fd_event * ev ;
fd_set r_fds , w_fds ;
int maxfd , listen_sock , listen_priv_sock , selret ;
struct timeval timeout ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
/* We'll be doing this a lot */
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
/* Handle messages */
2002-03-27 01:33:06 +03:00
2005-06-09 02:10:34 +04:00
message_dispatch ( ) ;
2002-03-27 01:33:06 +03:00
2005-06-09 02:10:34 +04:00
/* refresh the trusted domain cache */
2003-08-09 03:53:13 +04: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
/* Free up temporary memory */
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
lp_talloc_free ( ) ;
main_loop_talloc_free ( ) ;
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
listen_sock = open_winbindd_socket ( ) ;
listen_priv_sock = open_winbindd_priv_socket ( ) ;
2002-11-02 04:36:42 +03:00
2005-06-09 02:10:34 +04:00
if ( listen_sock = = - 1 | | listen_priv_sock = = - 1 ) {
perror ( " open_winbind_socket " ) ;
exit ( 1 ) ;
}
2000-05-09 15:43:00 +04: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
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 */
2000-05-09 15:43:00 +04: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
2005-06-09 02:10:34 +04:00
if ( selret = = 0 )
goto no_fds_ready ;
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
if ( ( selret = = - 1 & & errno ! = EINTR ) | | selret = = 0 ) {
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
2005-06-09 02:10:34 +04:00
ev = fd_events ;
while ( ev ! = NULL ) {
struct fd_event * next = ev - > next ;
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 ) ;
}
2003-03-24 12:54:13 +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
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
2005-06-09 02:10:34 +04:00
/* Check signal handling things */
2001-11-15 00:49:30 +03:00
2005-06-09 02:10:34 +04:00
if ( do_sigterm )
terminate ( ) ;
2001-11-15 00:49:30 +03:00
2005-06-09 02:10:34 +04:00
if ( do_sighup ) {
2001-11-15 00:49:30 +03:00
2005-06-09 02:10:34 +04:00
DEBUG ( 3 , ( " got SIGHUP \n " ) ) ;
2001-11-15 00:49:30 +03:00
2005-09-30 21:13:37 +04:00
msg_reload_services ( MSG_SMB_CONF_UPDATED , pid_to_procid ( 0 ) , NULL , 0 ) ;
2005-06-09 02:10:34 +04:00
do_sighup = False ;
}
if ( do_sigusr2 ) {
print_winbindd_status ( ) ;
do_sigusr2 = False ;
}
2001-11-15 00:49:30 +03:00
2005-06-09 02:10:34 +04:00
if ( do_sigchld ) {
pid_t pid ;
do_sigchld = False ;
while ( ( pid = sys_waitpid ( - 1 , NULL , WNOHANG ) ) > 0 ) {
winbind_child_died ( pid ) ;
2001-11-15 00:49:30 +03:00
}
2001-05-07 08:32:40 +04:00
}
2000-05-09 15:43:00 +04:00
}
/* Main function */
struct winbindd_state server_state ; /* Server state information */
2003-04-14 07:53:58 +04:00
int main ( int argc , char * * argv )
2000-05-09 15:43:00 +04:00
{
2001-12-21 01:27:05 +03:00
pstring logfile ;
2003-04-14 07:53:58 +04:00
static BOOL Fork = True ;
static BOOL log_stdout = False ;
struct poptOption long_options [ ] = {
POPT_AUTOHELP
{ " stdout " , ' S ' , POPT_ARG_VAL , & log_stdout , True , " Log to stdout " } ,
{ " foreground " , ' F ' , POPT_ARG_VAL , & Fork , False , " Daemon in foreground mode " } ,
{ " interactive " , ' i ' , POPT_ARG_NONE , NULL , ' i ' , " Interactive mode " } ,
2004-03-16 21:54:09 +03:00
{ " no-caching " , ' n ' , POPT_ARG_VAL , & opt_nocache , True , " 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 ;
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 ) ;
2001-12-21 05:23:38 +03:00
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
2003-02-19 15:31:16 +03:00
setenv ( WINBINDD_DONT_ENV , " 1 " , 1 ) ;
2001-05-07 08:32:40 +04:00
/* Initialise samba/rpc client stuff */
2003-04-14 07:53:58 +04:00
pc = poptGetContext ( " winbindd " , argc , ( const char * * ) argv , long_options ,
POPT_CONTEXT_KEEP_FIRST ) ;
2001-05-07 08:32:40 +04:00
2003-04-14 07:53:58 +04:00
while ( ( opt = poptGetNextOpt ( pc ) ) ! = - 1 ) {
switch ( opt ) {
2001-12-10 02:59:42 +03:00
/* Don't become a daemon */
2000-05-09 15:43:00 +04:00
case ' i ' :
interactive = True ;
2003-01-03 20:39:30 +03:00
log_stdout = True ;
Fork = False ;
2000-05-09 15:43:00 +04:00
break ;
}
2001-05-07 08:32:40 +04:00
}
2000-05-09 15:43:00 +04:00
2003-04-14 07:53:58 +04:00
2003-01-03 20:39:30 +03:00
if ( log_stdout & & Fork ) {
printf ( " Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i) \n " ) ;
2003-04-14 07:53:58 +04:00
poptPrintUsage ( pc , stderr , 0 ) ;
2003-01-03 20:39:30 +03:00
exit ( 1 ) ;
}
2004-09-21 13:07:42 +04:00
if ( ! override_logfile ) {
pstr_sprintf ( logfile , " %s/log.winbindd " , dyn_LOGFILEBASE ) ;
lp_set_logfile ( logfile ) ;
}
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
2003-08-20 21:13:38 +04:00
DEBUG ( 1 , ( " winbindd version %s started. \n " , SAMBA_VERSION_STRING ) ) ;
2004-01-11 16:23:50 +03:00
DEBUGADD ( 1 , ( " Copyright The Samba Team 2000-2004 \n " ) ) ;
2001-12-20 21:37:43 +03:00
2004-01-29 03:10:40 +03:00
if ( ! reload_services_file ( ) ) {
2001-12-20 21:37:43 +03:00
DEBUG ( 0 , ( " error opening config file \n " ) ) ;
exit ( 1 ) ;
}
/* 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 ( ) ;
/* Check winbindd parameters are valid */
ZERO_STRUCT ( server_state ) ;
/* Winbind daemon initialisation */
2004-06-29 19:46:43 +04:00
if ( ( ! winbindd_param_init ( ) ) | | ( ! winbindd_upgrade_idmap ( ) ) | |
( ! idmap_init ( lp_idmap_backend ( ) ) ) ) {
DEBUG ( 1 , ( " Could not init idmap -- netlogon proxy only \n " ) ) ;
2005-06-09 02:10:34 +04:00
idmap_set_proxyonly ( ) ;
2004-06-29 19:46:43 +04:00
}
2003-05-06 06:32:47 +04:00
/* 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
/* Setup signal handlers */
CatchSignal ( SIGINT , termination_handler ) ; /* Exit on these sigs */
CatchSignal ( SIGQUIT , termination_handler ) ;
CatchSignal ( SIGTERM , termination_handler ) ;
2004-07-21 08:24:30 +04:00
CatchSignal ( SIGCHLD , sigchld_handler ) ;
2003-05-06 06:32:47 +04:00
CatchSignal ( SIGPIPE , SIG_IGN ) ; /* Ignore sigpipe */
CatchSignal ( SIGUSR2 , sigusr2_handler ) ; /* Debugging sigs */
CatchSignal ( SIGHUP , sighup_handler ) ;
2003-04-14 07:53:58 +04:00
if ( ! interactive )
2003-01-03 20:39:30 +03:00
become_daemon ( Fork ) ;
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 .
*/
if ( interactive )
setpgid ( ( pid_t ) 0 , ( pid_t ) 0 ) ;
# endif
2002-03-27 01:33:06 +03:00
/* Initialise messaging system */
if ( ! message_init ( ) ) {
DEBUG ( 0 , ( " unable to initialise messaging system \n " ) ) ;
exit ( 1 ) ;
}
2003-07-15 21:21:21 +04:00
/* React on 'smbcontrol winbindd reload-config' in the same way
as to SIGHUP signal */
message_register ( MSG_SMB_CONF_UPDATED , msg_reload_services ) ;
message_register ( MSG_SHUTDOWN , msg_shutdown ) ;
2003-04-14 07:53:58 +04:00
poptFreeContext ( pc ) ;
2002-03-27 01:33:06 +03:00
2004-01-08 11:19:18 +03:00
init_domain_list ( ) ;
2005-06-09 02:10:34 +04:00
init_idmap_child ( ) ;
2001-05-07 08:32:40 +04:00
/* Loop waiting for requests */
2000-05-09 15:43:00 +04:00
2005-06-09 02:10:34 +04:00
while ( 1 )
process_loop ( ) ;
2000-05-09 15:43:00 +04:00
2003-04-23 15:54:56 +04:00
trustdom_cache_shutdown ( ) ;
2001-05-07 08:32:40 +04:00
return 0 ;
2000-05-09 15:43:00 +04:00
}