2007-05-24 18:47:24 +04:00
/*
Unix SMB / CIFS implementation .
Samba internal messaging functions
Copyright ( C ) 2007 by Volker Lendecke
2010-03-25 17:43:47 +03:00
2007-05-24 18:47:24 +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
2007-05-24 18:47:24 +04:00
( at your option ) any later version .
2010-03-25 17:43:47 +03:00
2007-05-24 18:47:24 +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 .
2010-03-25 17:43:47 +03:00
2007-05-24 18:47:24 +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/>.
2007-05-24 18:47:24 +04:00
*/
/**
@ defgroup messages Internal messaging framework
@ {
@ file messages . c
2010-03-25 17:43:47 +03:00
2007-05-24 18:47:24 +04:00
@ brief Module for internal messaging between Samba daemons .
The idea is that if a part of Samba wants to do communication with
another Samba process then it will do a message_register ( ) of a
dispatch function , and use message_send_pid ( ) to send messages to
that process .
The dispatch function is given the pid of the sender , and it can
use that to reply by message_send_pid ( ) . See ping_message ( ) for a
simple example .
@ caution Dispatch functions must be able to cope with incoming
messages on an * odd * byte boundary .
This system doesn ' t have any inherent size limitations but is not
very efficient for large messages or when messages are sent in very
quick succession .
*/
# include "includes.h"
2011-02-26 01:20:06 +03:00
# include "system/filesys.h"
2011-03-24 17:31:06 +03:00
# include "messages.h"
2012-03-11 00:33:11 +04:00
# include "lib/tdb_wrap/tdb_wrap.h"
2011-10-12 16:01:08 +04:00
# include "lib/param/param.h"
2007-05-24 18:47:24 +04:00
2009-01-12 20:14:04 +03:00
struct messaging_tdb_context {
struct messaging_context * msg_ctx ;
struct tdb_wrap * tdb ;
struct tevent_signal * se ;
int received_messages ;
} ;
2007-05-24 18:47:24 +04:00
static NTSTATUS messaging_tdb_send ( struct messaging_context * msg_ctx ,
struct server_id pid , int msg_type ,
const DATA_BLOB * data ,
struct messaging_backend * backend ) ;
2009-01-21 09:39:56 +03:00
static void message_dispatch ( struct messaging_context * msg_ctx ) ;
2007-05-24 18:47:24 +04:00
2009-01-12 20:14:04 +03:00
static void messaging_tdb_signal_handler ( struct tevent_context * ev_ctx ,
struct tevent_signal * se ,
int signum , int count ,
void * _info , void * private_data )
2007-05-24 18:47:24 +04:00
{
2009-01-12 20:14:04 +03:00
struct messaging_tdb_context * ctx = talloc_get_type ( private_data ,
struct messaging_tdb_context ) ;
2007-05-24 18:47:24 +04:00
2009-01-12 20:14:04 +03:00
ctx - > received_messages + + ;
DEBUG ( 10 , ( " messaging_tdb_signal_handler: sig[%d] count[%d] msgs[%d] \n " ,
signum , count , ctx - > received_messages ) ) ;
message_dispatch ( ctx - > msg_ctx ) ;
2007-05-24 18:47:24 +04:00
}
2012-02-15 16:53:07 +04:00
void * messaging_tdb_event ( TALLOC_CTX * mem_ctx , struct messaging_context * msg ,
struct tevent_context * ev )
{
struct messaging_tdb_context * msg_tdb = talloc_get_type_abort (
msg - > local - > private_data , struct messaging_tdb_context ) ;
return tevent_add_signal ( ev , mem_ctx , SIGUSR1 , 0 ,
messaging_tdb_signal_handler , msg_tdb ) ;
}
2007-05-24 18:47:24 +04:00
/****************************************************************************
Initialise the messaging functions .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS messaging_tdb_init ( struct messaging_context * msg_ctx ,
TALLOC_CTX * mem_ctx ,
struct messaging_backend * * presult )
{
struct messaging_backend * result ;
2009-01-12 20:14:04 +03:00
struct messaging_tdb_context * ctx ;
2011-10-12 16:01:08 +04:00
struct loadparm_context * lp_ctx ;
2007-05-24 18:47:24 +04:00
2011-06-07 05:38:41 +04:00
if ( ! ( result = talloc ( mem_ctx , struct messaging_backend ) ) ) {
2007-05-24 18:47:24 +04:00
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
return NT_STATUS_NO_MEMORY ;
}
2011-10-12 16:01:08 +04:00
lp_ctx = loadparm_init_s3 ( result , loadparm_s3_context ( ) ) ;
if ( lp_ctx = = NULL ) {
DEBUG ( 0 , ( " loadparm_init_s3 failed \n " ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
2011-06-07 05:44:43 +04:00
ctx = talloc_zero ( result , struct messaging_tdb_context ) ;
2009-01-12 20:14:04 +03:00
if ( ! ctx ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
TALLOC_FREE ( result ) ;
return NT_STATUS_NO_MEMORY ;
}
result - > private_data = ctx ;
result - > send_fn = messaging_tdb_send ;
ctx - > msg_ctx = msg_ctx ;
2009-05-19 16:51:03 +04:00
ctx - > tdb = tdb_wrap_open ( ctx , lock_path ( " messages.tdb " ) , 0 ,
2010-09-27 16:46:07 +04:00
TDB_CLEAR_IF_FIRST | TDB_DEFAULT | TDB_VOLATILE | TDB_INCOMPATIBLE_HASH ,
2011-10-12 16:01:08 +04:00
O_RDWR | O_CREAT , 0600 , lp_ctx ) ;
talloc_unlink ( result , lp_ctx ) ;
2007-05-24 18:47:24 +04:00
2009-01-12 20:14:04 +03:00
if ( ! ctx - > tdb ) {
2007-06-04 23:50:30 +04:00
NTSTATUS status = map_nt_error_from_unix ( errno ) ;
2010-11-14 07:28:41 +03:00
DEBUG ( 2 , ( " ERROR: Failed to initialise messages database: "
2007-06-04 23:50:30 +04:00
" %s \n " , strerror ( errno ) ) ) ;
2007-05-24 18:47:24 +04:00
TALLOC_FREE ( result ) ;
2007-06-04 23:50:30 +04:00
return status ;
2007-05-24 18:47:24 +04:00
}
2009-01-12 20:14:04 +03:00
ctx - > se = tevent_add_signal ( msg_ctx - > event_ctx ,
ctx ,
SIGUSR1 , 0 ,
messaging_tdb_signal_handler ,
ctx ) ;
if ( ! ctx - > se ) {
NTSTATUS status = map_nt_error_from_unix ( errno ) ;
DEBUG ( 0 , ( " ERROR: Failed to initialise messages signal handler: "
" %s \n " , strerror ( errno ) ) ) ;
TALLOC_FREE ( result ) ;
return status ;
}
2007-05-24 18:47:24 +04:00
sec_init ( ) ;
* presult = result ;
return NT_STATUS_OK ;
}
2010-09-26 02:56:33 +04:00
bool messaging_tdb_parent_init ( TALLOC_CTX * mem_ctx )
2010-03-25 17:59:41 +03:00
{
struct tdb_wrap * db ;
2011-10-12 16:01:08 +04:00
struct loadparm_context * lp_ctx ;
lp_ctx = loadparm_init_s3 ( mem_ctx , loadparm_s3_context ( ) ) ;
if ( lp_ctx = = NULL ) {
DEBUG ( 0 , ( " loadparm_init_s3 failed \n " ) ) ;
return false ;
}
2010-03-25 17:59:41 +03:00
2010-03-25 18:44:02 +03:00
/*
* Open the tdb in the parent process ( smbd ) so that our
* CLEAR_IF_FIRST optimization in tdb_reopen_all can properly
* work .
*/
2010-09-26 02:56:33 +04:00
db = tdb_wrap_open ( mem_ctx , lock_path ( " messages.tdb " ) , 0 ,
2010-09-27 16:46:07 +04:00
TDB_CLEAR_IF_FIRST | TDB_DEFAULT | TDB_VOLATILE | TDB_INCOMPATIBLE_HASH ,
2011-10-12 16:01:08 +04:00
O_RDWR | O_CREAT , 0600 , lp_ctx ) ;
talloc_unlink ( mem_ctx , lp_ctx ) ;
2010-03-25 17:59:41 +03:00
if ( db = = NULL ) {
DEBUG ( 1 , ( " could not open messaging.tdb: %s \n " ,
strerror ( errno ) ) ) ;
return false ;
}
return true ;
}
2007-05-24 18:47:24 +04:00
/*******************************************************************
Form a static tdb key from a pid .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-11-25 11:33:29 +03:00
static TDB_DATA message_key_pid ( TALLOC_CTX * mem_ctx , struct server_id pid )
2007-05-24 18:47:24 +04:00
{
2007-11-25 11:33:29 +03:00
char * key ;
2007-05-24 18:47:24 +04:00
TDB_DATA kbuf ;
2007-11-25 11:33:29 +03:00
key = talloc_asprintf ( talloc_tos ( ) , " PID/%s " , procid_str_static ( & pid ) ) ;
SMB_ASSERT ( key ! = NULL ) ;
2010-03-25 17:43:47 +03:00
2007-05-24 18:47:24 +04:00
kbuf . dptr = ( uint8 * ) key ;
kbuf . dsize = strlen ( key ) + 1 ;
return kbuf ;
}
/*
Fetch the messaging array for a process
*/
static NTSTATUS messaging_tdb_fetch ( TDB_CONTEXT * msg_tdb ,
TDB_DATA key ,
TALLOC_CTX * mem_ctx ,
struct messaging_array * * presult )
{
struct messaging_array * result ;
TDB_DATA data ;
DATA_BLOB blob ;
2007-11-09 16:39:45 +03:00
enum ndr_err_code ndr_err ;
2007-05-24 18:47:24 +04:00
2011-06-07 05:44:43 +04:00
if ( ! ( result = talloc_zero ( mem_ctx , struct messaging_array ) ) ) {
2007-05-24 18:47:24 +04:00
return NT_STATUS_NO_MEMORY ;
}
2011-06-20 13:10:31 +04:00
data = tdb_fetch_compat ( msg_tdb , key ) ;
2007-05-24 18:47:24 +04:00
if ( data . dptr = = NULL ) {
* presult = result ;
return NT_STATUS_OK ;
}
blob = data_blob_const ( data . dptr , data . dsize ) ;
2011-09-27 20:50:11 +04:00
ndr_err = ndr_pull_struct_blob_all (
2010-05-10 02:42:06 +04:00
& blob , result , result ,
2007-05-24 18:47:24 +04:00
( ndr_pull_flags_fn_t ) ndr_pull_messaging_array ) ;
SAFE_FREE ( data . dptr ) ;
2007-11-09 16:39:45 +03:00
if ( ! NDR_ERR_CODE_IS_SUCCESS ( ndr_err ) ) {
2007-05-24 18:47:24 +04:00
TALLOC_FREE ( result ) ;
2007-11-09 16:39:45 +03:00
return ndr_map_error2ntstatus ( ndr_err ) ;
2007-05-24 18:47:24 +04:00
}
if ( DEBUGLEVEL > = 10 ) {
DEBUG ( 10 , ( " messaging_tdb_fetch: \n " ) ) ;
NDR_PRINT_DEBUG ( messaging_array , result ) ;
}
* presult = result ;
return NT_STATUS_OK ;
}
/*
Store a messaging array for a pid
*/
static NTSTATUS messaging_tdb_store ( TDB_CONTEXT * msg_tdb ,
TDB_DATA key ,
struct messaging_array * array )
{
TDB_DATA data ;
DATA_BLOB blob ;
2007-11-09 16:39:45 +03:00
enum ndr_err_code ndr_err ;
2007-05-24 18:47:24 +04:00
TALLOC_CTX * mem_ctx ;
int ret ;
if ( array - > num_messages = = 0 ) {
tdb_delete ( msg_tdb , key ) ;
return NT_STATUS_OK ;
}
if ( ! ( mem_ctx = talloc_new ( array ) ) ) {
return NT_STATUS_NO_MEMORY ;
}
2010-05-10 02:42:06 +04:00
ndr_err = ndr_push_struct_blob ( & blob , mem_ctx , array ,
2007-05-24 18:47:24 +04:00
( ndr_push_flags_fn_t ) ndr_push_messaging_array ) ;
2007-11-09 16:39:45 +03:00
if ( ! NDR_ERR_CODE_IS_SUCCESS ( ndr_err ) ) {
2007-05-24 18:47:24 +04:00
talloc_free ( mem_ctx ) ;
2007-11-09 16:39:45 +03:00
return ndr_map_error2ntstatus ( ndr_err ) ;
2007-05-24 18:47:24 +04:00
}
if ( DEBUGLEVEL > = 10 ) {
DEBUG ( 10 , ( " messaging_tdb_store: \n " ) ) ;
NDR_PRINT_DEBUG ( messaging_array , array ) ;
}
data . dptr = blob . data ;
data . dsize = blob . length ;
ret = tdb_store ( msg_tdb , key , data , TDB_REPLACE ) ;
TALLOC_FREE ( mem_ctx ) ;
return ( ret = = 0 ) ? NT_STATUS_OK : NT_STATUS_INTERNAL_DB_CORRUPTION ;
}
/****************************************************************************
Notify a process that it has a message . If the process doesn ' t exist
then delete its record in the database .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static NTSTATUS message_notify ( struct server_id procid )
{
pid_t pid = procid . pid ;
int ret ;
uid_t euid = geteuid ( ) ;
/*
* Doing kill with a non - positive pid causes messages to be
* sent to places we don ' t want .
*/
SMB_ASSERT ( pid > 0 ) ;
2011-09-27 20:54:37 +04:00
if ( pid < = 0 ) {
return NT_STATUS_INVALID_HANDLE ;
}
2007-05-24 18:47:24 +04:00
if ( euid ! = 0 ) {
/* If we're not root become so to send the message. */
save_re_uid ( ) ;
set_effective_uid ( 0 ) ;
}
ret = kill ( pid , SIGUSR1 ) ;
if ( euid ! = 0 ) {
/* Go back to who we were. */
int saved_errno = errno ;
restore_re_uid_fromroot ( ) ;
errno = saved_errno ;
}
if ( ret = = 0 ) {
return NT_STATUS_OK ;
}
/*
* Something has gone wrong
*/
DEBUG ( 2 , ( " message to process %d failed - %s \n " , ( int ) pid ,
strerror ( errno ) ) ) ;
/*
* No call to map_nt_error_from_unix - - don ' t want to link in
* errormap . o into lots of utils .
*/
if ( errno = = ESRCH ) return NT_STATUS_INVALID_HANDLE ;
if ( errno = = EINVAL ) return NT_STATUS_INVALID_PARAMETER ;
if ( errno = = EPERM ) return NT_STATUS_ACCESS_DENIED ;
return NT_STATUS_UNSUCCESSFUL ;
}
/****************************************************************************
Send a message to a particular pid .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static NTSTATUS messaging_tdb_send ( struct messaging_context * msg_ctx ,
struct server_id pid , int msg_type ,
const DATA_BLOB * data ,
struct messaging_backend * backend )
{
2009-01-12 20:14:04 +03:00
struct messaging_tdb_context * ctx = talloc_get_type ( backend - > private_data ,
struct messaging_tdb_context ) ;
2007-05-24 18:47:24 +04:00
struct messaging_array * msg_array ;
struct messaging_rec * rec ;
NTSTATUS status ;
2007-11-25 11:33:29 +03:00
TDB_DATA key ;
2009-01-12 20:14:04 +03:00
struct tdb_wrap * tdb = ctx - > tdb ;
2007-11-25 11:33:29 +03:00
TALLOC_CTX * frame = talloc_stackframe ( ) ;
2007-05-24 18:47:24 +04:00
/* NULL pointer means implicit length zero. */
if ( ! data - > data ) {
SMB_ASSERT ( data - > length = = 0 ) ;
}
/*
* Doing kill with a non - positive pid causes messages to be
* sent to places we don ' t want .
*/
SMB_ASSERT ( procid_to_pid ( & pid ) > 0 ) ;
2007-11-25 11:33:29 +03:00
key = message_key_pid ( frame , pid ) ;
2007-05-24 18:47:24 +04:00
2011-06-20 13:10:31 +04:00
if ( tdb_chainlock ( tdb - > tdb , key ) ! = 0 ) {
2007-11-25 11:33:29 +03:00
TALLOC_FREE ( frame ) ;
2007-05-24 18:47:24 +04:00
return NT_STATUS_LOCK_NOT_GRANTED ;
}
2008-05-18 16:30:33 +04:00
status = messaging_tdb_fetch ( tdb - > tdb , key , talloc_tos ( ) , & msg_array ) ;
2007-05-24 18:47:24 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
goto done ;
}
if ( ( msg_type & MSG_FLAG_LOWPRIORITY )
& & ( msg_array - > num_messages > 1000 ) ) {
DEBUG ( 5 , ( " Dropping message for PID %s \n " ,
procid_str_static ( & pid ) ) ) ;
status = NT_STATUS_INSUFFICIENT_RESOURCES ;
goto done ;
}
2011-06-07 05:10:15 +04:00
if ( ! ( rec = talloc_realloc ( talloc_tos ( ) , msg_array - > messages ,
2007-05-24 18:47:24 +04:00
struct messaging_rec ,
msg_array - > num_messages + 1 ) ) ) {
status = NT_STATUS_NO_MEMORY ;
goto done ;
}
rec [ msg_array - > num_messages ] . msg_version = MESSAGE_VERSION ;
rec [ msg_array - > num_messages ] . msg_type = msg_type & MSG_TYPE_MASK ;
rec [ msg_array - > num_messages ] . dest = pid ;
2010-07-04 18:41:51 +04:00
rec [ msg_array - > num_messages ] . src = msg_ctx - > id ;
2007-05-24 18:47:24 +04:00
rec [ msg_array - > num_messages ] . buf = * data ;
msg_array - > messages = rec ;
msg_array - > num_messages + = 1 ;
2008-05-18 16:30:33 +04:00
status = messaging_tdb_store ( tdb - > tdb , key , msg_array ) ;
2007-05-24 18:47:24 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
goto done ;
}
2010-03-25 17:43:47 +03:00
2007-05-24 18:47:24 +04:00
status = message_notify ( pid ) ;
if ( NT_STATUS_EQUAL ( status , NT_STATUS_INVALID_HANDLE ) ) {
DEBUG ( 2 , ( " pid %s doesn't exist - deleting messages record \n " ,
procid_str_static ( & pid ) ) ) ;
2008-05-18 16:30:33 +04:00
tdb_delete ( tdb - > tdb , message_key_pid ( talloc_tos ( ) , pid ) ) ;
2007-05-24 18:47:24 +04:00
}
done :
2008-05-18 16:30:33 +04:00
tdb_chainunlock ( tdb - > tdb , key ) ;
2007-11-25 11:33:29 +03:00
TALLOC_FREE ( frame ) ;
2007-05-24 18:47:24 +04:00
return status ;
}
/****************************************************************************
2010-07-04 18:41:51 +04:00
Retrieve all messages for a process .
2007-05-24 18:47:24 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static NTSTATUS retrieve_all_messages ( TDB_CONTEXT * msg_tdb ,
2010-07-04 18:41:51 +04:00
struct server_id id ,
2007-05-24 18:47:24 +04:00
TALLOC_CTX * mem_ctx ,
struct messaging_array * * presult )
{
struct messaging_array * result ;
2010-07-04 18:41:51 +04:00
TDB_DATA key = message_key_pid ( mem_ctx , id ) ;
2007-05-24 18:47:24 +04:00
NTSTATUS status ;
2011-06-20 13:10:31 +04:00
if ( tdb_chainlock ( msg_tdb , key ) ! = 0 ) {
2007-11-25 11:33:29 +03:00
TALLOC_FREE ( key . dptr ) ;
2007-05-24 18:47:24 +04:00
return NT_STATUS_LOCK_NOT_GRANTED ;
}
status = messaging_tdb_fetch ( msg_tdb , key , mem_ctx , & result ) ;
/*
* We delete the record here , tdb_set_max_dead keeps it around
*/
tdb_delete ( msg_tdb , key ) ;
tdb_chainunlock ( msg_tdb , key ) ;
if ( NT_STATUS_IS_OK ( status ) ) {
* presult = result ;
}
2007-11-25 11:33:29 +03:00
TALLOC_FREE ( key . dptr ) ;
2007-05-24 18:47:24 +04:00
return status ;
}
/****************************************************************************
Receive and dispatch any messages pending for this process .
JRA changed Dec 13 2006. Only one message handler now permitted per type .
* NOTE * : Dispatch functions must be able to cope with incoming
messages on an * odd * byte boundary .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-01-21 09:39:56 +03:00
static void message_dispatch ( struct messaging_context * msg_ctx )
2007-05-24 18:47:24 +04:00
{
2009-01-12 20:14:04 +03:00
struct messaging_tdb_context * ctx = talloc_get_type ( msg_ctx - > local - > private_data ,
struct messaging_tdb_context ) ;
2007-05-24 18:47:24 +04:00
struct messaging_array * msg_array = NULL ;
2009-01-12 20:14:04 +03:00
struct tdb_wrap * tdb = ctx - > tdb ;
NTSTATUS status ;
2007-05-24 18:47:24 +04:00
uint32 i ;
2009-01-12 20:14:04 +03:00
if ( ctx - > received_messages = = 0 ) {
2007-05-24 18:47:24 +04:00
return ;
2009-01-12 20:14:04 +03:00
}
2007-05-24 18:47:24 +04:00
2009-01-12 20:14:04 +03:00
DEBUG ( 10 , ( " message_dispatch: received_messages = %d \n " ,
ctx - > received_messages ) ) ;
2007-05-24 18:47:24 +04:00
2010-07-04 18:41:51 +04:00
status = retrieve_all_messages ( tdb - > tdb , msg_ctx - > id , NULL , & msg_array ) ;
2009-01-12 20:14:04 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 0 , ( " message_dispatch: failed to retrieve messages: %s \n " ,
nt_errstr ( status ) ) ) ;
2007-05-24 18:47:24 +04:00
return ;
}
2009-01-12 20:14:04 +03:00
ctx - > received_messages = 0 ;
2007-05-24 18:47:24 +04:00
for ( i = 0 ; i < msg_array - > num_messages ; i + + ) {
messaging_dispatch_rec ( msg_ctx , & msg_array - > messages [ i ] ) ;
}
TALLOC_FREE ( msg_array ) ;
}
/** @} **/