2000-09-11 11:02:43 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2000-09-11 11:02:43 +04:00
Samba internal messaging functions
Copyright ( C ) Andrew Tridgell 2000
2001-12-21 03:37:49 +03:00
Copyright ( C ) 2001 by Martin Pool
2000-09-11 11:02:43 +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 .
*/
2001-12-19 10:49:25 +03:00
/**
2001-12-21 03:37:49 +03:00
@ defgroups messages Internal messaging framework
@ {
2001-12-19 10:49:25 +03:00
@ file messages . c
This module is used for internal messaging between Samba daemons .
2000-09-12 04:47:11 +04:00
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 .
2001-12-19 10:49:25 +03:00
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 .
2000-09-12 04:47:11 +04:00
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 .
*/
2000-09-11 11:02:43 +04:00
# include "includes.h"
/* the locking database handle */
static TDB_CONTEXT * tdb ;
static int received_signal ;
/* change the message version with any incompatible changes in the protocol */
# define MESSAGE_VERSION 1
struct message_rec {
int msg_version ;
2000-09-12 10:13:25 +04:00
int msg_type ;
2000-09-11 11:02:43 +04:00
pid_t dest ;
pid_t src ;
size_t len ;
} ;
2000-09-12 04:47:11 +04:00
/* we have a linked list of dispatch handlers */
static struct dispatch_fns {
struct dispatch_fns * next , * prev ;
2000-09-12 10:13:25 +04:00
int msg_type ;
void ( * fn ) ( int msg_type , pid_t pid , void * buf , size_t len ) ;
2000-09-12 04:47:11 +04:00
} * dispatch_fns ;
2000-09-11 11:02:43 +04:00
/****************************************************************************
2001-11-21 01:55:46 +03:00
Notifications come in as signals .
2000-09-11 11:02:43 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-11 11:02:43 +04:00
static void sig_usr1 ( void )
{
received_signal = 1 ;
sys_select_signal ( ) ;
}
2000-09-12 10:57:25 +04:00
/****************************************************************************
2001-11-21 01:55:46 +03:00
A useful function for testing the message system .
2000-09-12 10:57:25 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-12 10:57:25 +04:00
void ping_message ( int msg_type , pid_t src , void * buf , size_t len )
{
2001-11-21 01:55:46 +03:00
char * msg = buf ? buf : " none " ;
DEBUG ( 1 , ( " INFO: Received PING message from PID %u [%s] \n " , ( unsigned int ) src , msg ) ) ;
2000-11-17 00:38:24 +03:00
message_send_pid ( src , MSG_PONG , buf , len , True ) ;
2000-09-12 10:57:25 +04:00
}
2001-11-21 01:55:46 +03:00
2000-10-11 09:31:39 +04:00
/****************************************************************************
2001-11-21 01:55:46 +03:00
Return current debug level .
2000-10-11 09:31:39 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-10-11 09:31:39 +04:00
void debuglevel_message ( int msg_type , pid_t src , void * buf , size_t len )
{
2001-04-28 02:17:10 +04:00
DEBUG ( 1 , ( " INFO: Received REQ_DEBUGLEVEL message from PID %u \n " , ( unsigned int ) src ) ) ;
2001-02-12 19:18:02 +03:00
message_send_pid ( src , MSG_DEBUGLEVEL , DEBUGLEVEL_CLASS , sizeof ( DEBUGLEVEL_CLASS ) , True ) ;
2000-10-11 09:31:39 +04:00
}
2000-09-11 11:02:43 +04:00
/****************************************************************************
Initialise the messaging functions .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-11 11:02:43 +04:00
BOOL message_init ( void )
{
if ( tdb ) return True ;
2001-06-04 09:13:59 +04:00
tdb = tdb_open_log ( lock_path ( " messages.tdb " ) ,
2001-11-21 01:55:46 +03:00
0 , TDB_CLEAR_IF_FIRST | TDB_DEFAULT ,
2000-09-11 11:02:43 +04:00
O_RDWR | O_CREAT , 0600 ) ;
if ( ! tdb ) {
DEBUG ( 0 , ( " ERROR: Failed to initialise messages database \n " ) ) ;
return False ;
}
2000-10-04 05:03:23 +04:00
CatchSignal ( SIGUSR1 , SIGNAL_CAST sig_usr1 ) ;
2000-09-11 11:02:43 +04:00
2000-09-12 10:57:25 +04:00
message_register ( MSG_PING , ping_message ) ;
2000-10-11 09:31:39 +04:00
message_register ( MSG_REQ_DEBUGLEVEL , debuglevel_message ) ;
2000-09-12 10:57:25 +04:00
2000-09-11 11:02:43 +04:00
return True ;
}
/*******************************************************************
2001-11-21 01:55:46 +03:00
Form a static tdb key from a pid .
2000-09-11 11:02:43 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-11 11:02:43 +04:00
static TDB_DATA message_key_pid ( pid_t pid )
{
static char key [ 20 ] ;
TDB_DATA kbuf ;
2001-04-09 00:22:39 +04:00
slprintf ( key , sizeof ( key ) - 1 , " PID/%d " , ( int ) pid ) ;
2000-12-02 03:51:50 +03:00
2000-09-11 11:02:43 +04:00
kbuf . dptr = ( char * ) key ;
2000-12-02 03:51:50 +03:00
kbuf . dsize = strlen ( key ) + 1 ;
2000-09-11 11:02:43 +04:00
return kbuf ;
}
/****************************************************************************
2001-11-21 01:55:46 +03:00
Notify a process that it has a message . If the process doesn ' t exist
then delete its record in the database .
2000-09-11 11:02:43 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-11 11:02:43 +04:00
static BOOL message_notify ( pid_t pid )
{
2002-03-20 09:57:03 +03:00
/* Doing kill with a non-positive pid causes messages to be
* sent to places we don ' t want . */
SMB_ASSERT ( pid > 0 ) ;
2000-09-11 11:02:43 +04:00
if ( kill ( pid , SIGUSR1 ) = = - 1 ) {
if ( errno = = ESRCH ) {
DEBUG ( 2 , ( " pid %d doesn't exist - deleting messages record \n " , ( int ) pid ) ) ;
tdb_delete ( tdb , message_key_pid ( pid ) ) ;
} else {
DEBUG ( 2 , ( " message to process %d failed - %s \n " , ( int ) pid , strerror ( errno ) ) ) ;
}
return False ;
}
return True ;
}
/****************************************************************************
2001-11-21 01:55:46 +03:00
Send a message to a particular pid .
2000-09-11 11:02:43 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2001-12-21 03:37:49 +03:00
BOOL message_send_pid ( pid_t pid , int msg_type , const void * buf , size_t len ,
BOOL duplicates_allowed )
2000-09-11 11:02:43 +04:00
{
TDB_DATA kbuf ;
TDB_DATA dbuf ;
struct message_rec rec ;
void * p ;
rec . msg_version = MESSAGE_VERSION ;
rec . msg_type = msg_type ;
rec . dest = pid ;
rec . src = sys_getpid ( ) ;
rec . len = len ;
2002-03-20 09:57:03 +03:00
/* Doing kill with a non-positive pid causes messages to be
* sent to places we don ' t want . */
SMB_ASSERT ( pid > 0 ) ;
2000-09-11 11:02:43 +04:00
kbuf = message_key_pid ( pid ) ;
/* lock the record for the destination */
2000-12-06 03:05:15 +03:00
tdb_chainlock ( tdb , kbuf ) ;
2000-09-11 11:02:43 +04:00
dbuf = tdb_fetch ( tdb , kbuf ) ;
if ( ! dbuf . dptr ) {
/* its a new record */
p = ( void * ) malloc ( len + sizeof ( rec ) ) ;
if ( ! p ) goto failed ;
memcpy ( p , & rec , sizeof ( rec ) ) ;
2000-11-07 02:14:59 +03:00
if ( len > 0 ) memcpy ( ( void * ) ( ( char * ) p + sizeof ( rec ) ) , buf , len ) ;
2000-09-11 11:02:43 +04:00
dbuf . dptr = p ;
dbuf . dsize = len + sizeof ( rec ) ;
tdb_store ( tdb , kbuf , dbuf , TDB_REPLACE ) ;
2001-09-17 06:19:44 +04:00
SAFE_FREE ( p ) ;
2000-09-11 11:02:43 +04:00
goto ok ;
}
2000-11-17 00:38:24 +03:00
if ( ! duplicates_allowed ) {
char * ptr ;
2000-11-17 03:08:42 +03:00
struct message_rec prec ;
2000-11-17 00:38:24 +03:00
2000-11-17 03:08:42 +03:00
for ( ptr = ( char * ) dbuf . dptr ; ptr < dbuf . dptr + dbuf . dsize ; ) {
2000-11-17 00:38:24 +03:00
/*
* First check if the message header matches , then , if it ' s a non - zero
* sized message , check if the data matches . If so it ' s a duplicate and
* we can discard it . JRA .
*/
if ( ! memcmp ( ptr , & rec , sizeof ( rec ) ) ) {
2001-12-21 03:37:49 +03:00
if ( ! len | | ( len & & ! memcmp ( ptr + sizeof ( rec ) , buf , len ) ) ) {
2000-11-17 00:38:24 +03:00
DEBUG ( 10 , ( " message_send_pid: discarding duplicate message. \n " ) ) ;
2001-09-17 06:19:44 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2000-12-06 03:05:15 +03:00
tdb_chainunlock ( tdb , kbuf ) ;
2000-11-17 00:38:24 +03:00
return True ;
}
}
2000-11-17 03:08:42 +03:00
memcpy ( & prec , ptr , sizeof ( prec ) ) ;
ptr + = sizeof ( rec ) + prec . len ;
2000-11-17 00:38:24 +03:00
}
}
2000-09-11 11:02:43 +04:00
/* we're adding to an existing entry */
p = ( void * ) malloc ( dbuf . dsize + len + sizeof ( rec ) ) ;
if ( ! p ) goto failed ;
memcpy ( p , dbuf . dptr , dbuf . dsize ) ;
2000-11-07 02:14:59 +03:00
memcpy ( ( void * ) ( ( char * ) p + dbuf . dsize ) , & rec , sizeof ( rec ) ) ;
if ( len > 0 ) memcpy ( ( void * ) ( ( char * ) p + dbuf . dsize + sizeof ( rec ) ) , buf , len ) ;
2000-09-11 11:02:43 +04:00
2001-09-17 06:19:44 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2000-09-11 11:02:43 +04:00
dbuf . dptr = p ;
dbuf . dsize + = len + sizeof ( rec ) ;
tdb_store ( tdb , kbuf , dbuf , TDB_REPLACE ) ;
2001-09-17 06:19:44 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2000-09-11 11:02:43 +04:00
ok :
2000-12-06 03:05:15 +03:00
tdb_chainunlock ( tdb , kbuf ) ;
2001-02-03 20:19:10 +03:00
errno = 0 ; /* paranoia */
2000-09-11 11:02:43 +04:00
return message_notify ( pid ) ;
failed :
2000-12-06 03:05:15 +03:00
tdb_chainunlock ( tdb , kbuf ) ;
2001-02-03 20:19:10 +03:00
errno = 0 ; /* paranoia */
2000-09-11 11:02:43 +04:00
return False ;
}
/****************************************************************************
2001-11-21 01:55:46 +03:00
Retrieve the next message for the current process .
2000-09-11 11:02:43 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-12 10:13:25 +04:00
static BOOL message_recv ( int * msg_type , pid_t * src , void * * buf , size_t * len )
2000-09-11 11:02:43 +04:00
{
TDB_DATA kbuf ;
TDB_DATA dbuf ;
struct message_rec rec ;
kbuf = message_key_pid ( sys_getpid ( ) ) ;
2000-12-06 03:05:15 +03:00
tdb_chainlock ( tdb , kbuf ) ;
2000-09-11 11:02:43 +04:00
dbuf = tdb_fetch ( tdb , kbuf ) ;
if ( dbuf . dptr = = NULL | | dbuf . dsize = = 0 ) goto failed ;
memcpy ( & rec , dbuf . dptr , sizeof ( rec ) ) ;
if ( rec . msg_version ! = MESSAGE_VERSION ) {
DEBUG ( 0 , ( " message version %d received (expected %d) \n " , rec . msg_version , MESSAGE_VERSION ) ) ;
goto failed ;
}
2000-09-12 10:13:25 +04:00
if ( rec . len > 0 ) {
( * buf ) = ( void * ) malloc ( rec . len ) ;
if ( ! ( * buf ) ) goto failed ;
memcpy ( * buf , dbuf . dptr + sizeof ( rec ) , rec . len ) ;
} else {
* buf = NULL ;
}
2000-09-11 11:02:43 +04:00
* len = rec . len ;
* msg_type = rec . msg_type ;
* src = rec . src ;
2000-11-17 03:48:02 +03:00
if ( dbuf . dsize - ( sizeof ( rec ) + rec . len ) > 0 )
memmove ( dbuf . dptr , dbuf . dptr + sizeof ( rec ) + rec . len , dbuf . dsize - ( sizeof ( rec ) + rec . len ) ) ;
2000-09-11 11:02:43 +04:00
dbuf . dsize - = sizeof ( rec ) + rec . len ;
2000-11-17 03:48:02 +03:00
if ( dbuf . dsize = = 0 )
tdb_delete ( tdb , kbuf ) ;
else
tdb_store ( tdb , kbuf , dbuf , TDB_REPLACE ) ;
2000-09-11 11:02:43 +04:00
2001-09-17 06:19:44 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2000-12-06 03:05:15 +03:00
tdb_chainunlock ( tdb , kbuf ) ;
2000-09-11 11:02:43 +04:00
return True ;
failed :
2000-12-06 03:05:15 +03:00
tdb_chainunlock ( tdb , kbuf ) ;
2000-09-11 11:02:43 +04:00
return False ;
}
/****************************************************************************
2001-11-21 01:55:46 +03:00
Receive and dispatch any messages pending for this process .
Notice that all dispatch handlers for a particular msg_type get called ,
so you can register multiple handlers for a message .
2000-09-11 11:02:43 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-11 11:02:43 +04:00
void message_dispatch ( void )
{
2000-09-12 10:13:25 +04:00
int msg_type ;
2000-09-11 11:02:43 +04:00
pid_t src ;
void * buf ;
size_t len ;
2000-09-12 04:47:11 +04:00
struct dispatch_fns * dfn ;
2002-01-03 06:42:33 +03:00
int n_handled ;
2000-09-11 11:02:43 +04:00
2001-11-21 01:55:46 +03:00
if ( ! received_signal ) return ;
2001-09-25 04:50:37 +04:00
DEBUG ( 10 , ( " message_dispatch: received_signal = %d \n " , received_signal ) ) ;
2001-11-21 01:55:46 +03:00
2000-09-11 11:02:43 +04:00
received_signal = 0 ;
while ( message_recv ( & msg_type , & src , & buf , & len ) ) {
2002-01-03 06:35:02 +03:00
DEBUG ( 10 , ( " message_dispatch: received msg_type=%d src_pid=%d \n " ,
msg_type , ( int ) src ) ) ;
2002-01-03 06:42:33 +03:00
n_handled = 0 ;
2000-09-12 04:47:11 +04:00
for ( dfn = dispatch_fns ; dfn ; dfn = dfn - > next ) {
if ( dfn - > msg_type = = msg_type ) {
2001-09-25 04:50:37 +04:00
DEBUG ( 10 , ( " message_dispatch: processing message of type %d. \n " , msg_type ) ) ;
2000-09-12 04:47:11 +04:00
dfn - > fn ( msg_type , src , buf , len ) ;
2002-01-03 06:42:33 +03:00
n_handled + + ;
2000-09-12 04:47:11 +04:00
}
2000-09-11 11:02:43 +04:00
}
2002-01-03 06:42:33 +03:00
if ( ! n_handled ) {
DEBUG ( 5 , ( " message_dispatch: warning: no handlers registed for "
" msg_type %d in pid%d \n " ,
2002-03-14 04:53:04 +03:00
msg_type , sys_getpid ( ) ) ) ;
2002-01-03 06:42:33 +03:00
}
2001-09-17 06:19:44 +04:00
SAFE_FREE ( buf ) ;
2000-09-11 11:02:43 +04:00
}
}
2000-09-12 04:47:11 +04:00
/****************************************************************************
2001-11-21 01:55:46 +03:00
Register a dispatch function for a particular message type .
2000-09-12 04:47:11 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-12 10:13:25 +04:00
void message_register ( int msg_type ,
void ( * fn ) ( int msg_type , pid_t pid , void * buf , size_t len ) )
2000-09-12 04:47:11 +04:00
{
struct dispatch_fns * dfn ;
dfn = ( struct dispatch_fns * ) malloc ( sizeof ( * dfn ) ) ;
2001-08-05 14:10:16 +04:00
if ( dfn ! = NULL ) {
2000-09-12 04:47:11 +04:00
2001-08-05 14:10:16 +04:00
ZERO_STRUCTPN ( dfn ) ;
2000-09-12 04:47:11 +04:00
2001-08-05 14:10:16 +04:00
dfn - > msg_type = msg_type ;
dfn - > fn = fn ;
DLIST_ADD ( dispatch_fns , dfn ) ;
}
else {
DEBUG ( 0 , ( " message_register: Not enough memory. malloc failed! \n " ) ) ;
}
2000-09-12 04:47:11 +04:00
}
2000-09-12 10:57:25 +04:00
/****************************************************************************
2001-11-21 01:55:46 +03:00
De - register the function for a particular message type .
2000-09-12 10:57:25 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-09-12 10:57:25 +04:00
void message_deregister ( int msg_type )
{
struct dispatch_fns * dfn , * next ;
for ( dfn = dispatch_fns ; dfn ; dfn = next ) {
next = dfn - > next ;
if ( dfn - > msg_type = = msg_type ) {
DLIST_REMOVE ( dispatch_fns , dfn ) ;
2001-09-17 06:19:44 +04:00
SAFE_FREE ( dfn ) ;
2000-09-12 10:57:25 +04:00
}
}
}
2000-09-13 11:07:17 +04:00
2001-01-23 23:25:25 +03:00
struct msg_all {
2000-09-13 11:07:17 +04:00
int msg_type ;
2001-12-21 03:37:49 +03:00
const void * buf ;
2000-09-13 11:07:17 +04:00
size_t len ;
2000-11-17 00:38:24 +03:00
BOOL duplicates ;
2001-12-21 03:37:49 +03:00
int n_sent ;
2001-01-23 23:25:25 +03:00
} ;
2000-09-13 11:07:17 +04:00
/****************************************************************************
2001-11-21 01:55:46 +03:00
Send one of the messages for the broadcast .
2000-09-13 11:07:17 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-21 01:55:46 +03:00
2000-11-04 21:44:34 +03:00
static int traverse_fn ( TDB_CONTEXT * the_tdb , TDB_DATA kbuf , TDB_DATA dbuf , void * state )
2000-09-13 11:07:17 +04:00
{
struct connections_data crec ;
2001-01-23 23:25:25 +03:00
struct msg_all * msg_all = ( struct msg_all * ) state ;
2000-09-13 11:07:17 +04:00
2001-05-15 22:12:02 +04:00
if ( dbuf . dsize ! = sizeof ( crec ) )
return 0 ;
2000-09-13 11:07:17 +04:00
memcpy ( & crec , dbuf . dptr , sizeof ( crec ) ) ;
2001-05-15 22:12:02 +04:00
if ( crec . cnum ! = - 1 )
return 0 ;
2001-02-03 20:19:10 +03:00
/* if the msg send fails because the pid was not found (i.e. smbd died),
* the msg has already been deleted from the messages . tdb . */
2001-12-21 03:37:49 +03:00
if ( ! message_send_pid ( crec . pid , msg_all - > msg_type ,
msg_all - > buf , msg_all - > len ,
msg_all - > duplicates ) ) {
2001-02-03 20:19:10 +03:00
/* if the pid was not found delete the entry from connections.tdb */
if ( errno = = ESRCH ) {
2001-04-28 02:17:10 +04:00
DEBUG ( 2 , ( " pid %u doesn't exist - deleting connections %d [%s] \n " ,
( unsigned int ) crec . pid , crec . cnum , crec . name ) ) ;
2001-02-03 20:19:10 +03:00
tdb_delete ( the_tdb , kbuf ) ;
}
}
2001-12-21 03:37:49 +03:00
msg_all - > n_sent + + ;
2000-09-13 11:07:17 +04:00
return 0 ;
}
2001-12-21 03:37:49 +03:00
/**
* Send a message to all smbd processes .
*
* It isn ' t very efficient , but should be OK for the sorts of
* applications that use it . When we need efficient broadcast we can add
* it .
*
* @ param n_sent Set to the number of messages sent . This should be
* equal to the number of processes , but be careful for races .
*
* @ return True for success .
* */
BOOL message_send_all ( TDB_CONTEXT * conn_tdb , int msg_type ,
const void * buf , size_t len ,
BOOL duplicates_allowed ,
int * n_sent )
2000-09-13 11:07:17 +04:00
{
2001-01-23 23:25:25 +03:00
struct msg_all msg_all ;
2000-09-13 11:07:17 +04:00
msg_all . msg_type = msg_type ;
msg_all . buf = buf ;
msg_all . len = len ;
2000-11-17 00:38:24 +03:00
msg_all . duplicates = duplicates_allowed ;
2001-12-21 03:37:49 +03:00
msg_all . n_sent = 0 ;
2000-09-13 11:07:17 +04:00
2001-01-23 23:25:25 +03:00
tdb_traverse ( conn_tdb , traverse_fn , & msg_all ) ;
2001-12-21 03:37:49 +03:00
if ( n_sent )
* n_sent = msg_all . n_sent ;
2000-09-13 11:07:17 +04:00
return True ;
}
2001-12-21 03:37:49 +03:00
2002-03-27 01:36:27 +03:00
static VOLATILE sig_atomic_t gotalarm ;
/***************************************************************
Signal function to tell us we timed out .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void gotalarm_sig ( void )
{
gotalarm = 1 ;
}
2002-03-09 12:48:35 +03:00
/**
* Lock the messaging tdb based on a string - this is used as a primitive
* form of mutex between smbd instances .
*
* @ param name A string identifying the name of the mutex .
*/
2002-02-18 14:07:57 +03:00
2002-03-27 01:36:27 +03:00
BOOL message_named_mutex ( char * name , unsigned int timeout )
2002-02-18 14:07:57 +03:00
{
TDB_DATA key ;
2002-03-27 01:36:27 +03:00
int ret ;
2002-02-18 14:07:57 +03:00
2002-03-27 01:36:27 +03:00
if ( ! message_init ( ) )
return False ;
2002-02-18 14:07:57 +03:00
key . dptr = name ;
key . dsize = strlen ( name ) + 1 ;
2002-03-27 01:36:27 +03:00
if ( timeout ) {
gotalarm = 0 ;
CatchSignal ( SIGALRM , SIGNAL_CAST gotalarm_sig ) ;
alarm ( timeout ) ;
}
ret = tdb_chainlock ( tdb , key ) ;
if ( timeout ) {
alarm ( 0 ) ;
CatchSignal ( SIGALRM , SIGNAL_CAST SIG_IGN ) ;
if ( gotalarm )
return False ;
}
return ( ret = = 0 ) ;
2002-02-18 14:07:57 +03:00
}
2002-03-09 12:48:35 +03:00
/**
* Unlock a named mutex .
*
* @ param name A string identifying the name of the mutex .
*/
2002-03-27 01:36:27 +03:00
void message_named_mutex_release ( char * name )
2002-02-18 14:07:57 +03:00
{
TDB_DATA key ;
key . dptr = name ;
key . dsize = strlen ( name ) + 1 ;
tdb_chainunlock ( tdb , key ) ;
}
2002-03-09 12:48:35 +03:00
/** @} **/