2003-08-13 05:53:07 +04:00
/*
Unix SMB / CIFS implementation .
2005-01-30 03:54:57 +03:00
2003-08-13 05:53:07 +04:00
process model : standard ( 1 process per client connection )
2005-01-30 03:54:57 +03:00
Copyright ( C ) Andrew Tridgell 1992 - 2005
2003-08-13 05:53:07 +04:00
Copyright ( C ) James J Myers 2003 < myersjj @ samba . org >
2004-07-14 01:04:56 +04:00
Copyright ( C ) Stefan ( metze ) Metzmacher 2004
2003-08-13 05:53:07 +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-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-13 05:53:07 +04:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 05:53:07 +04:00
*/
# include "includes.h"
2005-02-03 14:56:03 +03:00
# include "lib/events/events.h"
2006-03-26 05:23:40 +04:00
# include "smbd/process_model.h"
2006-11-07 15:03:01 +03:00
# include "system/filesys.h"
2007-01-10 13:52:09 +03:00
# include "cluster/cluster.h"
2007-12-07 00:34:56 +03:00
# include "param/param.h"
2010-06-16 15:43:38 +04:00
# include "ldb_wrap.h"
2006-11-07 15:03:01 +03:00
2006-03-09 20:48:41 +03:00
# ifdef HAVE_SETPROCTITLE
2006-04-24 20:01:33 +04:00
# ifdef HAVE_SETPROCTITLE_H
2006-03-09 20:48:41 +03:00
# include <setproctitle.h>
2006-04-24 20:01:33 +04:00
# endif
2006-03-09 20:48:41 +03:00
# else
2006-04-26 16:54:52 +04:00
# define setproctitle none_setproctitle
static int none_setproctitle ( const char * fmt , . . . ) PRINTF_ATTRIBUTE ( 1 , 2 ) ;
static int none_setproctitle ( const char * fmt , . . . )
2006-04-26 16:15:01 +04:00
{
return 0 ;
}
2006-03-09 20:48:41 +03:00
# endif
2009-08-07 11:21:54 +04:00
/* we hold a pipe open in the parent, and the any child
processes wait for EOF on that pipe . This ensures that
children die when the parent dies */
static int child_pipe [ 2 ] ;
2003-08-13 05:53:07 +04:00
/*
called when the process model is selected
*/
2010-10-30 04:24:15 +04:00
static void standard_model_init ( void )
2003-08-13 05:53:07 +04:00
{
2009-08-07 11:21:54 +04:00
pipe ( child_pipe ) ;
2004-04-07 11:17:11 +04:00
signal ( SIGCHLD , SIG_IGN ) ;
2005-01-14 04:32:56 +03:00
}
2009-08-07 11:21:54 +04:00
/*
handle EOF on the child pipe
*/
static void standard_pipe_handler ( struct tevent_context * event_ctx , struct tevent_fd * fde ,
uint16_t flags , void * private_data )
{
DEBUG ( 10 , ( " Child %d exiting \n " , ( int ) getpid ( ) ) ) ;
exit ( 0 ) ;
}
2003-08-13 05:53:07 +04:00
/*
2005-01-30 03:54:57 +03:00
called when a listening socket becomes readable .
2003-08-13 05:53:07 +04:00
*/
2008-12-29 22:24:57 +03:00
static void standard_accept_connection ( struct tevent_context * ev ,
2008-01-06 04:03:43 +03:00
struct loadparm_context * lp_ctx ,
2005-01-30 03:54:57 +03:00
struct socket_context * sock ,
2008-12-29 22:24:57 +03:00
void ( * new_conn ) ( struct tevent_context * ,
2008-01-06 04:03:43 +03:00
struct loadparm_context * , struct socket_context * ,
2007-01-10 13:52:09 +03:00
struct server_id , void * ) ,
2009-02-02 10:41:28 +03:00
void * private_data )
2003-08-13 05:53:07 +04:00
{
2004-09-20 16:31:07 +04:00
NTSTATUS status ;
2005-01-30 03:54:57 +03:00
struct socket_context * sock2 ;
2004-09-20 16:31:07 +04:00
pid_t pid ;
2006-03-09 20:48:41 +03:00
struct socket_address * c , * s ;
2004-07-14 01:04:56 +04:00
/* accept an incoming connection. */
2005-01-30 03:54:57 +03:00
status = socket_accept ( sock , & sock2 ) ;
2004-09-20 16:31:07 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2004-09-28 16:30:42 +04:00
DEBUG ( 0 , ( " standard_accept_connection: accept: %s \n " ,
2004-09-20 16:31:07 +04:00
nt_errstr ( status ) ) ) ;
2005-10-12 15:04:01 +04:00
/* this looks strange, but is correct. We need to throttle things until
the system clears enough resources to handle this new socket */
sleep ( 1 ) ;
2003-08-13 05:53:07 +04:00
return ;
}
pid = fork ( ) ;
if ( pid ! = 0 ) {
/* parent or error code ... */
2005-01-30 03:54:57 +03:00
talloc_free ( sock2 ) ;
2003-08-13 05:53:07 +04:00
/* go back to the event loop */
return ;
}
2006-03-09 20:48:41 +03:00
pid = getpid ( ) ;
2005-01-30 03:54:57 +03:00
/* This is now the child code. We need a completely new event_context to work with */
2003-08-13 05:53:07 +04:00
2010-05-14 15:51:48 +04:00
if ( tevent_re_initialise ( ev ) ! = 0 ) {
smb_panic ( " Failed to re-initialise tevent after fork " ) ;
}
2005-01-30 03:54:57 +03:00
/* this will free all the listening sockets and all state that
is not associated with this new connection */
talloc_free ( sock ) ;
2004-10-29 11:00:14 +04:00
/* we don't care if the dup fails, as its only a select()
speed optimisation */
2005-01-30 03:54:57 +03:00
socket_dup ( sock2 ) ;
2003-08-13 05:53:07 +04:00
/* tdb needs special fork handling */
2009-10-23 07:31:07 +04:00
ldb_wrap_fork_hook ( ) ;
2003-08-13 05:53:07 +04:00
2010-05-14 15:51:48 +04:00
tevent_add_fd ( ev , ev , child_pipe [ 0 ] , TEVENT_FD_READ ,
2009-08-07 11:21:54 +04:00
standard_pipe_handler , NULL ) ;
close ( child_pipe [ 1 ] ) ;
2004-07-14 16:14:07 +04:00
/* Ensure that the forked children do not expose identical random streams */
set_need_random_reseed ( ) ;
2006-03-09 20:48:41 +03:00
/* setup the process title */
2010-05-14 15:51:48 +04:00
c = socket_get_peer_addr ( sock2 , ev ) ;
s = socket_get_my_addr ( sock2 , ev ) ;
2006-03-09 20:48:41 +03:00
if ( s & & c ) {
2006-04-26 16:15:01 +04:00
setproctitle ( " conn c[%s:%u] s[%s:%u] server_id[%d] " ,
2010-12-12 14:33:08 +03:00
c - > addr , c - > port , s - > addr , s - > port , ( int ) pid ) ;
2006-03-09 20:48:41 +03:00
}
talloc_free ( c ) ;
talloc_free ( s ) ;
2008-02-04 09:59:16 +03:00
/* setup this new connection. Cluster ID is PID based for this process modal */
2010-05-14 15:51:48 +04:00
new_conn ( ev , lp_ctx , sock2 , cluster_id ( pid , 0 ) , private_data ) ;
2004-07-14 01:04:56 +04:00
2005-01-30 03:54:57 +03:00
/* we can't return to the top level here, as that event context is gone,
so we now process events in the new event context until there are no
more to process */
2010-05-14 15:51:48 +04:00
event_loop_wait ( ev ) ;
2004-09-26 07:05:04 +04:00
2010-05-14 15:51:48 +04:00
talloc_free ( ev ) ;
2005-01-30 03:54:57 +03:00
exit ( 0 ) ;
2003-08-13 05:53:07 +04:00
}
2005-01-30 05:55:30 +03:00
/*
called to create a new server task
*/
2008-12-29 22:24:57 +03:00
static void standard_new_task ( struct tevent_context * ev ,
2008-01-06 04:03:43 +03:00
struct loadparm_context * lp_ctx ,
2008-02-04 09:59:16 +03:00
const char * service_name ,
2010-07-16 08:32:42 +04:00
void ( * new_task ) ( struct tevent_context * , struct loadparm_context * lp_ctx , struct server_id , void * ) ,
2009-02-02 10:41:28 +03:00
void * private_data )
2005-01-30 05:55:30 +03:00
{
pid_t pid ;
pid = fork ( ) ;
if ( pid ! = 0 ) {
/* parent or error code ... go back to the event loop */
return ;
}
2006-03-09 20:48:41 +03:00
pid = getpid ( ) ;
2005-01-30 05:55:30 +03:00
/* this will free all the listening sockets and all state that
is not associated with this new connection */
2010-03-26 13:13:55 +03:00
if ( tevent_re_initialise ( ev ) ! = 0 ) {
smb_panic ( " Failed to re-initialise tevent after fork " ) ;
}
2005-01-30 05:55:30 +03:00
2009-10-23 07:50:56 +04:00
/* ldb/tdb need special fork handling */
2009-10-23 07:31:07 +04:00
ldb_wrap_fork_hook ( ) ;
2005-01-30 05:55:30 +03:00
2010-05-14 15:51:48 +04:00
tevent_add_fd ( ev , ev , child_pipe [ 0 ] , TEVENT_FD_READ ,
2009-08-07 11:21:54 +04:00
standard_pipe_handler , NULL ) ;
close ( child_pipe [ 1 ] ) ;
2005-01-30 05:55:30 +03:00
/* Ensure that the forked children do not expose identical random streams */
set_need_random_reseed ( ) ;
2010-12-12 14:33:08 +03:00
setproctitle ( " task %s server_id[%d] " , service_name , ( int ) pid ) ;
2006-03-09 20:48:41 +03:00
2008-02-04 09:59:16 +03:00
/* setup this new task. Cluster ID is PID based for this process modal */
2010-05-14 15:51:48 +04:00
new_task ( ev , lp_ctx , cluster_id ( pid , 0 ) , private_data ) ;
2005-01-30 05:55:30 +03:00
/* we can't return to the top level here, as that event context is gone,
so we now process events in the new event context until there are no
more to process */
2010-05-14 15:51:48 +04:00
event_loop_wait ( ev ) ;
2005-01-30 05:55:30 +03:00
2010-05-14 15:51:48 +04:00
talloc_free ( ev ) ;
2005-01-30 05:55:30 +03:00
exit ( 0 ) ;
}
2004-07-14 01:04:56 +04:00
2005-01-30 05:55:30 +03:00
/* called when a task goes down */
2010-07-16 08:32:42 +04:00
_NORETURN_ static void standard_terminate ( struct tevent_context * ev , struct loadparm_context * lp_ctx ,
2008-09-30 05:20:46 +04:00
const char * reason )
2003-12-14 02:25:15 +03:00
{
2005-01-30 05:55:30 +03:00
DEBUG ( 2 , ( " standard_terminate: reason[%s] \n " , reason ) ) ;
2004-07-15 13:43:32 +04:00
2010-02-13 15:09:59 +03:00
talloc_free ( ev ) ;
2007-12-04 03:51:44 +03:00
/* this reload_charcnv() has the effect of freeing the iconv context memory,
2004-09-26 10:44:08 +04:00
which makes leak checking easier */
2008-09-30 05:20:46 +04:00
reload_charcnv ( lp_ctx ) ;
2004-09-26 10:44:08 +04:00
2005-01-14 04:32:56 +03:00
/* terminate this process */
exit ( 0 ) ;
2004-02-02 16:43:03 +03:00
}
2006-03-09 20:48:41 +03:00
/* called to set a title of a task or connection */
2008-12-29 22:24:57 +03:00
static void standard_set_title ( struct tevent_context * ev , const char * title )
2006-03-09 20:48:41 +03:00
{
if ( title ) {
2006-04-26 16:15:01 +04:00
setproctitle ( " %s " , title ) ;
2006-03-09 20:48:41 +03:00
} else {
2006-04-26 16:15:01 +04:00
setproctitle ( NULL ) ;
2006-03-09 20:48:41 +03:00
}
}
2005-01-30 03:54:57 +03:00
2005-01-14 04:32:56 +03:00
static const struct model_ops standard_ops = {
. name = " standard " ,
. model_init = standard_model_init ,
. accept_connection = standard_accept_connection ,
2005-01-30 05:55:30 +03:00
. new_task = standard_new_task ,
. terminate = standard_terminate ,
2006-03-09 20:48:41 +03:00
. set_title = standard_set_title ,
2005-01-14 04:32:56 +03:00
} ;
2003-08-13 05:53:07 +04:00
/*
2004-02-02 16:43:03 +03:00
initialise the standard process model , registering ourselves with the process model subsystem
2003-08-13 05:53:07 +04:00
*/
2004-02-02 16:43:03 +03:00
NTSTATUS process_model_standard_init ( void )
2003-08-13 05:53:07 +04:00
{
2005-01-30 03:54:57 +03:00
return register_process_model ( & standard_ops ) ;
2003-08-13 05:53:07 +04:00
}