2005-04-28 02:32:00 +04:00
/*
2007-01-08 18:18:52 +03:00
* Copyright ( C ) 2005 - 2007 Red Hat , Inc . All rights reserved .
2005-04-28 02:32:00 +04:00
*
* This file is part of the device - mapper userspace tools .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License v .2 .1 .
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
/*
* dmeventd - dm event daemon to monitor active mapped devices
*/
2006-05-10 23:38:25 +04:00
# define _GNU_SOURCE
# define _FILE_OFFSET_BITS 64
2007-01-12 00:54:53 +03:00
# include "configure.h"
2005-04-28 02:32:00 +04:00
# include "libdevmapper.h"
2005-12-02 18:39:16 +03:00
# include "libdevmapper-event.h"
# include "dmeventd.h"
//#include "libmultilog.h"
2008-11-04 02:01:21 +03:00
# include "dm-logging.h"
2005-04-28 02:32:00 +04:00
# include <dlfcn.h>
# include <errno.h>
# include <pthread.h>
# include <sys/file.h>
2007-01-16 21:04:15 +03:00
# include <sys/stat.h>
2005-04-28 02:32:00 +04:00
# include <sys/wait.h>
2007-01-16 21:04:15 +03:00
# include <sys/time.h>
# include <sys/resource.h>
2005-04-28 02:32:00 +04:00
# include <unistd.h>
2008-07-09 17:26:07 +04:00
# include <signal.h>
2007-01-12 00:54:53 +03:00
# include <arpa/inet.h> /* for htonl, ntohl */
2013-06-15 04:28:54 +04:00
# include <fcntl.h> /* for musl libc */
2005-04-28 02:32:00 +04:00
2013-11-13 17:56:29 +04:00
# ifdef __linux__
2011-07-28 17:03:37 +04:00
/*
* Kernel version 2.6 .36 and higher has
* new OOM killer adjustment interface .
*/
# define OOM_ADJ_FILE_OLD " / proc / self / oom_adj"
# define OOM_ADJ_FILE " / proc / self / oom_score_adj"
2007-01-22 18:03:57 +03:00
2007-01-19 20:22:17 +03:00
/* From linux/oom.h */
2011-07-28 17:03:37 +04:00
/* Old interface */
2007-01-19 20:22:17 +03:00
# define OOM_DISABLE (-17)
# define OOM_ADJUST_MIN (-16)
2011-07-28 17:03:37 +04:00
/* New interface */
# define OOM_SCORE_ADJ_MIN (-1000)
2007-01-19 20:22:17 +03:00
2011-07-28 17:06:50 +04:00
/* Systemd on-demand activation support */
2012-03-14 19:51:51 +04:00
# define SD_ACTIVATION_ENV_VAR_NAME "SD_ACTIVATION"
2011-07-28 17:06:50 +04:00
# define SD_LISTEN_PID_ENV_VAR_NAME "LISTEN_PID"
# define SD_LISTEN_FDS_ENV_VAR_NAME "LISTEN_FDS"
# define SD_LISTEN_FDS_START 3
# define SD_FD_FIFO_SERVER SD_LISTEN_FDS_START
# define SD_FD_FIFO_CLIENT (SD_LISTEN_FDS_START + 1)
2005-12-02 18:39:16 +03:00
# endif
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
/* FIXME We use syslog for now, because multilog is not yet implemented */
2007-01-08 18:18:52 +03:00
# include <syslog.h>
2007-01-12 00:54:53 +03:00
static volatile sig_atomic_t _exit_now = 0 ; /* set to '1' when signal is given to exit */
2007-01-08 18:18:52 +03:00
2005-04-28 02:32:00 +04:00
/* List (un)link macros. */
2008-11-04 01:14:30 +03:00
# define LINK(x, head) dm_list_add(head, &(x)->list)
2007-01-08 18:18:52 +03:00
# define LINK_DSO(dso) LINK(dso, &_dso_registry)
# define LINK_THREAD(thread) LINK(thread, &_thread_registry)
2005-04-28 02:32:00 +04:00
2008-11-04 01:14:30 +03:00
# define UNLINK(x) dm_list_del(&(x)->list)
2005-04-28 02:32:00 +04:00
# define UNLINK_DSO(x) UNLINK(x)
# define UNLINK_THREAD(x) UNLINK(x)
2005-12-02 18:39:16 +03:00
# define DAEMON_NAME "dmeventd"
2005-04-28 02:32:00 +04:00
2007-01-16 23:27:07 +03:00
/*
2007-01-19 20:22:17 +03:00
Global mutex for thread list access . Has to be held when :
2007-01-16 23:27:07 +03:00
- iterating thread list
- adding or removing elements from thread list
- changing or reading thread_status ' s fields :
processing , status , events
Use _lock_mutex ( ) and _unlock_mutex ( ) to hold / release it
*/
2007-01-08 18:18:52 +03:00
static pthread_mutex_t _global_mutex ;
2007-01-23 20:38:39 +03:00
/*
There are three states a thread can attain ( see struct
thread_status , field int status ) :
- DM_THREAD_RUNNING : thread has started up and is either working or
waiting for events . . . transitions to either SHUTDOWN or DONE
- DM_THREAD_SHUTDOWN : thread is still doing something , but it is
supposed to terminate ( and transition to DONE ) as soon as it
finishes whatever it was doing at the point of flipping state to
SHUTDOWN . . . the thread is still on the thread list
- DM_THREAD_DONE : thread has terminated and has been moved over to
unused thread list , cleanup pending
*/
2007-01-08 18:18:52 +03:00
# define DM_THREAD_RUNNING 0
# define DM_THREAD_SHUTDOWN 1
# define DM_THREAD_DONE 2
2005-04-28 02:32:00 +04:00
2007-01-16 23:27:07 +03:00
# define THREAD_STACK_SIZE (300*1024)
2007-01-16 23:13:04 +03:00
2010-05-14 18:56:39 +04:00
int dmeventd_debug = 0 ;
2011-07-28 17:06:50 +04:00
static int _systemd_activation = 0 ;
2010-05-14 18:56:39 +04:00
static int _foreground = 0 ;
2010-10-20 19:12:12 +04:00
static int _restart = 0 ;
static char * * _initial_registrations = 0 ;
2010-05-14 18:56:39 +04:00
2005-04-28 02:32:00 +04:00
/* Data kept about a DSO. */
struct dso_data {
2008-11-04 01:14:30 +03:00
struct dm_list list ;
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
char * dso_name ; /* DSO name (eg, "evms", "dmraid", "lvm2"). */
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
void * dso_handle ; /* Opaque handle as returned from dlopen(). */
unsigned int ref_count ; /* Library reference count. */
2005-04-28 02:32:00 +04:00
/*
* Event processing .
*
2007-01-12 00:54:53 +03:00
* The DSO can do whatever appropriate steps if an event
* happens such as changing the mapping in case a mirror
* fails , update the application metadata etc .
*
* This function gets a dm_task that is a result of
* DM_DEVICE_WAITEVENT ioctl ( results equivalent to
* DM_DEVICE_STATUS ) . It should not destroy it .
* The caller must dispose of the task .
2005-04-28 02:32:00 +04:00
*/
2007-01-23 20:38:39 +03:00
void ( * process_event ) ( struct dm_task * dmt , enum dm_event_mask event , void * * user ) ;
2005-04-28 02:32:00 +04:00
/*
* Device registration .
*
* When an application registers a device for an event , the DSO
* can carry out appropriate steps so that a later call to
* the process_event ( ) function is sane ( eg , read metadata
* and activate a mapping ) .
*/
2007-01-12 00:54:53 +03:00
int ( * register_device ) ( const char * device , const char * uuid , int major ,
2007-01-23 20:38:39 +03:00
int minor , void * * user ) ;
2005-04-28 02:32:00 +04:00
/*
* Device unregistration .
*
* In case all devices of a mapping ( eg , RAID10 ) are unregistered
* for events , the DSO can recognize this and carry out appropriate
* steps ( eg , deactivate mapping , metadata update ) .
*/
2007-01-12 00:54:53 +03:00
int ( * unregister_device ) ( const char * device , const char * uuid ,
2007-01-23 20:38:39 +03:00
int major , int minor , void * * user ) ;
2005-04-28 02:32:00 +04:00
} ;
2008-11-04 01:14:30 +03:00
static DM_LIST_INIT ( _dso_registry ) ;
2005-04-28 02:32:00 +04:00
/* Structure to keep parsed register variables from client message. */
2005-04-28 18:02:30 +04:00
struct message_data {
2007-02-02 20:08:51 +03:00
char * id ;
2005-04-28 02:32:00 +04:00
char * dso_name ; /* Name of DSO. */
2007-01-12 00:54:53 +03:00
char * device_uuid ; /* Mapped device path. */
2013-04-19 22:44:20 +04:00
char * events_str ; /* Events string as fetched from message. */
enum dm_event_mask events_field ; /* Events bitfield. */
char * timeout_str ;
uint32_t timeout_secs ;
2005-12-02 18:39:16 +03:00
struct dm_event_daemon_message * msg ; /* Pointer to message buffer. */
2005-04-28 02:32:00 +04:00
} ;
/*
* Housekeeping of thread + device states .
*
* One thread per mapped device which can block on it until an event
* occurs and the event processing function of the DSO gets called .
*/
struct thread_status {
2008-11-04 01:14:30 +03:00
struct dm_list list ;
2005-04-28 02:32:00 +04:00
2007-01-08 18:18:52 +03:00
pthread_t thread ;
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
struct dso_data * dso_data ; /* DSO this thread accesses. */
struct {
char * uuid ;
char * name ;
int major , minor ;
} device ;
2006-12-20 17:35:02 +03:00
uint32_t event_nr ; /* event number */
int processing ; /* Set when event is being processed */
2007-01-23 20:38:39 +03:00
int status ; /* see DM_THREAD_{RUNNING,SHUTDOWN,DONE}
constants above */
2007-01-15 21:21:01 +03:00
enum dm_event_mask events ; /* bitfield for event filter. */
enum dm_event_mask current_events ; /* bitfield for occured events. */
2007-01-12 00:54:53 +03:00
struct dm_task * current_task ;
2005-12-02 18:39:16 +03:00
time_t next_time ;
uint32_t timeout ;
2008-11-04 01:14:30 +03:00
struct dm_list timeout_list ;
2007-01-23 20:38:39 +03:00
void * dso_private ; /* dso per-thread status variable */
2005-04-28 02:32:00 +04:00
} ;
2008-11-04 01:14:30 +03:00
static DM_LIST_INIT ( _thread_registry ) ;
static DM_LIST_INIT ( _thread_registry_unused ) ;
2005-04-28 02:32:00 +04:00
2007-01-08 18:18:52 +03:00
static int _timeout_running ;
2008-11-04 01:14:30 +03:00
static DM_LIST_INIT ( _timeout_registry ) ;
2007-01-08 18:18:52 +03:00
static pthread_mutex_t _timeout_mutex = PTHREAD_MUTEX_INITIALIZER ;
static pthread_cond_t _timeout_cond = PTHREAD_COND_INITIALIZER ;
2005-12-02 18:39:16 +03:00
2005-04-28 02:32:00 +04:00
/* Allocate/free the status structure for a monitoring thread. */
2012-06-21 23:20:01 +04:00
static struct thread_status * _alloc_thread_status ( const struct message_data * data ,
2007-01-15 21:58:40 +03:00
struct dso_data * dso_data )
2005-04-28 02:32:00 +04:00
{
2010-10-01 01:06:50 +04:00
struct thread_status * ret = ( typeof ( ret ) ) dm_zalloc ( sizeof ( * ret ) ) ;
2005-04-28 02:32:00 +04:00
2007-01-15 21:58:40 +03:00
if ( ! ret )
return NULL ;
2007-03-16 17:36:14 +03:00
if ( ! ( ret - > device . uuid = dm_strdup ( data - > device_uuid ) ) ) {
2007-01-15 21:58:40 +03:00
dm_free ( ret ) ;
return NULL ;
2005-04-28 02:32:00 +04:00
}
2007-01-15 21:58:40 +03:00
ret - > current_task = NULL ;
ret - > device . name = NULL ;
ret - > device . major = ret - > device . minor = 0 ;
ret - > dso_data = dso_data ;
2013-04-19 22:44:20 +04:00
ret - > events = data - > events_field ;
ret - > timeout = data - > timeout_secs ;
2008-11-04 01:14:30 +03:00
dm_list_init ( & ret - > timeout_list ) ;
2007-01-15 21:58:40 +03:00
2005-04-28 02:32:00 +04:00
return ret ;
}
2010-03-30 18:37:28 +04:00
static void _lib_put ( struct dso_data * data ) ;
2007-01-15 21:58:40 +03:00
static void _free_thread_status ( struct thread_status * thread )
2005-04-28 02:32:00 +04:00
{
2010-03-30 18:37:28 +04:00
_lib_put ( thread - > dso_data ) ;
2007-04-23 19:06:03 +04:00
if ( thread - > current_task )
dm_task_destroy ( thread - > current_task ) ;
2007-01-12 00:54:53 +03:00
dm_free ( thread - > device . uuid ) ;
dm_free ( thread - > device . name ) ;
2006-01-31 17:50:38 +03:00
dm_free ( thread ) ;
2005-04-28 02:32:00 +04:00
}
/* Allocate/free DSO data. */
2007-01-15 21:58:40 +03:00
static struct dso_data * _alloc_dso_data ( struct message_data * data )
2005-04-28 02:32:00 +04:00
{
2010-10-01 01:06:50 +04:00
struct dso_data * ret = ( typeof ( ret ) ) dm_zalloc ( sizeof ( * ret ) ) ;
2005-04-28 02:32:00 +04:00
2006-12-20 17:35:02 +03:00
if ( ! ret )
return NULL ;
2007-03-16 17:36:14 +03:00
if ( ! ( ret - > dso_name = dm_strdup ( data - > dso_name ) ) ) {
2006-12-20 17:35:02 +03:00
dm_free ( ret ) ;
return NULL ;
2005-04-28 02:32:00 +04:00
}
return ret ;
}
2013-08-01 00:23:13 +04:00
/*
* Create a device monitoring thread .
* N . B . Error codes returned are positive .
*/
2007-01-16 23:13:04 +03:00
static int _pthread_create_smallstack ( pthread_t * t , void * ( * fun ) ( void * ) , void * arg )
{
2013-08-01 00:23:13 +04:00
int r ;
pthread_t tmp ;
2007-01-16 23:13:04 +03:00
pthread_attr_t attr ;
2013-08-01 00:23:13 +04:00
/*
* From pthread_attr_init man page :
* POSIX .1 - 2001 documents an ENOMEM error for pthread_attr_init ( ) ; on
* Linux these functions always succeed ( but portable and future - proof
* applications should nevertheless handle a possible error return ) .
*/
if ( ( r = pthread_attr_init ( & attr ) ) ! = 0 )
return r ;
2007-01-16 23:27:07 +03:00
/*
* We use a smaller stack since it gets preallocated in its entirety
*/
2007-01-16 23:13:04 +03:00
pthread_attr_setstacksize ( & attr , THREAD_STACK_SIZE ) ;
2013-08-01 00:23:13 +04:00
/*
* If no - one will be waiting , we need to detach .
*/
if ( ! t ) {
pthread_attr_setdetachstate ( & attr , PTHREAD_CREATE_DETACHED ) ;
t = & tmp ;
}
r = pthread_create ( t , & attr , fun , arg ) ;
pthread_attr_destroy ( & attr ) ;
return r ;
2007-01-16 23:13:04 +03:00
}
2007-01-15 21:58:40 +03:00
static void _free_dso_data ( struct dso_data * data )
2005-04-28 02:32:00 +04:00
{
2006-01-31 17:50:38 +03:00
dm_free ( data - > dso_name ) ;
dm_free ( data ) ;
2005-04-28 02:32:00 +04:00
}
2005-12-02 18:39:16 +03:00
/*
* Fetch a string off src and duplicate it into * ptr .
2007-01-12 00:54:53 +03:00
* Pay attention to zero - length strings .
2005-12-02 18:39:16 +03:00
*/
2007-01-12 00:54:53 +03:00
/* FIXME? move to libdevmapper to share with the client lib (need to
make delimiter a parameter then ) */
2007-01-17 00:13:07 +03:00
static int _fetch_string ( char * * ptr , char * * src , const int delimiter )
2005-04-28 02:32:00 +04:00
{
2005-12-02 18:39:16 +03:00
int ret = 0 ;
char * p ;
size_t len ;
2005-04-28 02:32:00 +04:00
2005-04-29 18:56:35 +04:00
if ( ( p = strchr ( * src , delimiter ) ) )
2005-04-28 02:32:00 +04:00
* p = 0 ;
2006-01-31 17:50:38 +03:00
if ( ( * ptr = dm_strdup ( * src ) ) ) {
2005-12-02 18:39:16 +03:00
if ( ( len = strlen ( * ptr ) ) )
* src + = len ;
else {
2006-01-31 17:50:38 +03:00
dm_free ( * ptr ) ;
2005-12-02 18:39:16 +03:00
* ptr = NULL ;
}
( * src ) + + ;
ret = 1 ;
}
2005-04-28 02:32:00 +04:00
2005-04-29 18:56:35 +04:00
if ( p )
* p = delimiter ;
2005-04-28 02:32:00 +04:00
return ret ;
}
/* Free message memory. */
2007-01-15 21:58:40 +03:00
static void _free_message ( struct message_data * message_data )
2005-04-28 02:32:00 +04:00
{
2010-08-16 22:19:46 +04:00
dm_free ( message_data - > id ) ;
dm_free ( message_data - > dso_name ) ;
dm_free ( message_data - > device_uuid ) ;
2013-04-19 22:44:20 +04:00
dm_free ( message_data - > events_str ) ;
dm_free ( message_data - > timeout_str ) ;
2005-04-28 02:32:00 +04:00
}
/* Parse a register message from the client. */
2007-01-15 21:58:40 +03:00
static int _parse_message ( struct message_data * message_data )
2005-04-28 02:32:00 +04:00
{
2007-01-08 18:18:52 +03:00
int ret = 0 ;
struct dm_event_daemon_message * msg = message_data - > msg ;
2012-06-21 23:20:01 +04:00
char * p = msg - > data ;
2007-01-08 18:18:52 +03:00
if ( ! msg - > data )
return 0 ;
2005-04-28 02:32:00 +04:00
/*
* Retrieve application identifier , mapped device
* path and events # string from message .
*/
2007-02-02 20:08:51 +03:00
if ( _fetch_string ( & message_data - > id , & p , ' ' ) & &
_fetch_string ( & message_data - > dso_name , & p , ' ' ) & &
2007-01-15 21:58:40 +03:00
_fetch_string ( & message_data - > device_uuid , & p , ' ' ) & &
2013-04-19 22:44:20 +04:00
_fetch_string ( & message_data - > events_str , & p , ' ' ) & &
_fetch_string ( & message_data - > timeout_str , & p , ' ' ) ) {
if ( message_data - > events_str )
message_data - > events_field =
atoi ( message_data - > events_str ) ;
if ( message_data - > timeout_str )
message_data - > timeout_secs =
atoi ( message_data - > timeout_str )
? : DM_EVENT_DEFAULT_TIMEOUT ;
2007-01-08 18:18:52 +03:00
ret = 1 ;
2005-04-28 02:32:00 +04:00
}
2007-01-08 18:18:52 +03:00
dm_free ( msg - > data ) ;
msg - > data = NULL ;
msg - > size = 0 ;
2012-06-21 23:20:01 +04:00
2007-01-08 18:18:52 +03:00
return ret ;
2012-06-21 23:20:01 +04:00
}
2005-04-28 02:32:00 +04:00
2007-01-16 23:27:07 +03:00
/* Global mutex to lock access to lists et al. See _global_mutex
above . */
2007-01-15 21:58:40 +03:00
static int _lock_mutex ( void )
2005-04-28 02:32:00 +04:00
{
2007-01-08 18:18:52 +03:00
return pthread_mutex_lock ( & _global_mutex ) ;
2005-04-28 02:32:00 +04:00
}
2007-01-15 21:58:40 +03:00
static int _unlock_mutex ( void )
2005-04-28 02:32:00 +04:00
{
2007-01-08 18:18:52 +03:00
return pthread_mutex_unlock ( & _global_mutex ) ;
2005-04-28 02:32:00 +04:00
}
/* Check, if a device exists. */
2007-01-15 21:58:40 +03:00
static int _fill_device_data ( struct thread_status * ts )
2005-04-28 02:32:00 +04:00
{
2007-01-12 00:54:53 +03:00
struct dm_task * dmt ;
struct dm_info dmi ;
2006-02-03 22:44:59 +03:00
2007-01-12 00:54:53 +03:00
if ( ! ts - > device . uuid )
2006-02-03 22:44:59 +03:00
return 0 ;
2007-01-12 00:54:53 +03:00
ts - > device . name = NULL ;
ts - > device . major = ts - > device . minor = 0 ;
2006-02-03 22:44:59 +03:00
2007-01-12 00:54:53 +03:00
dmt = dm_task_create ( DM_DEVICE_INFO ) ;
if ( ! dmt )
2006-02-03 22:44:59 +03:00
return 0 ;
2005-04-28 02:32:00 +04:00
2011-02-28 22:47:22 +03:00
if ( ! dm_task_set_uuid ( dmt , ts - > device . uuid ) )
goto fail ;
2007-01-12 00:54:53 +03:00
if ( ! dm_task_run ( dmt ) )
goto fail ;
ts - > device . name = dm_strdup ( dm_task_get_name ( dmt ) ) ;
if ( ! ts - > device . name )
goto fail ;
if ( ! dm_task_get_info ( dmt , & dmi ) )
goto fail ;
ts - > device . major = dmi . major ;
ts - > device . minor = dmi . minor ;
dm_task_destroy ( dmt ) ;
return 1 ;
fail :
dm_task_destroy ( dmt ) ;
dm_free ( ts - > device . name ) ;
2013-04-19 22:49:57 +04:00
ts - > device . name = NULL ;
2007-01-12 00:54:53 +03:00
return 0 ;
2005-04-28 02:32:00 +04:00
}
/*
* Find an existing thread for a device .
*
2006-01-27 23:52:21 +03:00
* Mutex must be held when calling this .
2005-04-28 02:32:00 +04:00
*/
2007-01-15 21:58:40 +03:00
static struct thread_status * _lookup_thread_status ( struct message_data * data )
2005-04-28 02:32:00 +04:00
{
struct thread_status * thread ;
2008-11-04 01:14:30 +03:00
dm_list_iterate_items ( thread , & _thread_registry )
2012-06-21 23:20:01 +04:00
if ( ! strcmp ( data - > device_uuid , thread - > device . uuid ) )
return thread ;
2005-04-28 02:32:00 +04:00
return NULL ;
}
2010-10-20 19:12:12 +04:00
static int _get_status ( struct message_data * message_data )
{
struct dm_event_daemon_message * msg = message_data - > msg ;
struct thread_status * thread ;
2012-02-08 15:36:18 +04:00
int i , j ;
2010-10-20 19:12:12 +04:00
int ret = - 1 ;
int count = dm_list_size ( & _thread_registry ) ;
int size = 0 , current = 0 ;
char * buffers [ count ] ;
char * message ;
dm_free ( msg - > data ) ;
for ( i = 0 ; i < count ; + + i )
buffers [ i ] = NULL ;
i = 0 ;
_lock_mutex ( ) ;
dm_list_iterate_items ( thread , & _thread_registry ) {
if ( ( current = dm_asprintf ( buffers + i , " 0:%d %s %s %u % " PRIu32 " ; " ,
i , thread - > dso_data - > dso_name ,
thread - > device . uuid , thread - > events ,
thread - > timeout ) ) < 0 ) {
_unlock_mutex ( ) ;
goto out ;
}
+ + i ;
size + = current ;
}
_unlock_mutex ( ) ;
msg - > size = size + strlen ( message_data - > id ) + 1 ;
msg - > data = dm_malloc ( msg - > size ) ;
if ( ! msg - > data )
goto out ;
* msg - > data = 0 ;
message = msg - > data ;
strcpy ( message , message_data - > id ) ;
message + = strlen ( message_data - > id ) ;
* message = ' ' ;
message + + ;
for ( j = 0 ; j < i ; + + j ) {
strcpy ( message , buffers [ j ] ) ;
message + = strlen ( buffers [ j ] ) ;
}
ret = 0 ;
out :
for ( j = 0 ; j < i ; + + j )
dm_free ( buffers [ j ] ) ;
return ret ;
}
2005-04-28 02:32:00 +04:00
/* Cleanup at exit. */
2007-01-15 21:58:40 +03:00
static void _exit_dm_lib ( void )
2005-04-28 02:32:00 +04:00
{
dm_lib_release ( ) ;
dm_lib_exit ( ) ;
}
2010-07-09 19:34:40 +04:00
static void _exit_timeout ( void * unused __attribute__ ( ( unused ) ) )
2005-12-02 18:39:16 +03:00
{
2007-01-08 18:18:52 +03:00
_timeout_running = 0 ;
pthread_mutex_unlock ( & _timeout_mutex ) ;
2005-12-02 18:39:16 +03:00
}
/* Wake up monitor threads every so often. */
2010-07-09 19:34:40 +04:00
static void * _timeout_thread ( void * unused __attribute__ ( ( unused ) ) )
2005-12-02 18:39:16 +03:00
{
2012-06-21 23:20:01 +04:00
struct thread_status * thread ;
2005-12-02 18:39:16 +03:00
struct timespec timeout ;
time_t curr_time ;
timeout . tv_nsec = 0 ;
2007-01-15 21:58:40 +03:00
pthread_cleanup_push ( _exit_timeout , NULL ) ;
2007-01-08 18:18:52 +03:00
pthread_mutex_lock ( & _timeout_mutex ) ;
2005-12-02 18:39:16 +03:00
2008-11-04 01:14:30 +03:00
while ( ! dm_list_empty ( & _timeout_registry ) ) {
2007-01-22 18:03:57 +03:00
timeout . tv_sec = 0 ;
2005-12-02 18:39:16 +03:00
curr_time = time ( NULL ) ;
2008-11-04 01:14:30 +03:00
dm_list_iterate_items_gen ( thread , & _timeout_registry , timeout_list ) {
2007-01-22 18:03:57 +03:00
if ( thread - > next_time < = curr_time ) {
2005-12-02 18:39:16 +03:00
thread - > next_time = curr_time + thread - > timeout ;
pthread_kill ( thread - > thread , SIGALRM ) ;
}
2007-01-22 18:03:57 +03:00
if ( thread - > next_time < timeout . tv_sec | | ! timeout . tv_sec )
2005-12-02 18:39:16 +03:00
timeout . tv_sec = thread - > next_time ;
}
2007-01-12 00:54:53 +03:00
pthread_cond_timedwait ( & _timeout_cond , & _timeout_mutex ,
& timeout ) ;
2005-12-02 18:39:16 +03:00
}
pthread_cleanup_pop ( 1 ) ;
return NULL ;
}
2007-01-15 21:58:40 +03:00
static int _register_for_timeout ( struct thread_status * thread )
2005-12-02 18:39:16 +03:00
{
int ret = 0 ;
2007-01-08 18:18:52 +03:00
pthread_mutex_lock ( & _timeout_mutex ) ;
2005-12-02 18:39:16 +03:00
thread - > next_time = time ( NULL ) + thread - > timeout ;
2008-11-04 01:14:30 +03:00
if ( dm_list_empty ( & thread - > timeout_list ) ) {
dm_list_add ( & _timeout_registry , & thread - > timeout_list ) ;
2007-01-08 18:18:52 +03:00
if ( _timeout_running )
pthread_cond_signal ( & _timeout_cond ) ;
2005-12-02 18:39:16 +03:00
}
2013-08-01 00:23:13 +04:00
if ( ! _timeout_running & &
! ( ret = _pthread_create_smallstack ( NULL , _timeout_thread , NULL ) ) )
_timeout_running = 1 ;
2005-12-02 18:39:16 +03:00
2007-01-08 18:18:52 +03:00
pthread_mutex_unlock ( & _timeout_mutex ) ;
2005-12-02 18:39:16 +03:00
return ret ;
}
2007-01-15 21:58:40 +03:00
static void _unregister_for_timeout ( struct thread_status * thread )
2005-12-02 18:39:16 +03:00
{
2007-01-08 18:18:52 +03:00
pthread_mutex_lock ( & _timeout_mutex ) ;
2008-11-04 01:14:30 +03:00
if ( ! dm_list_empty ( & thread - > timeout_list ) ) {
dm_list_del ( & thread - > timeout_list ) ;
dm_list_init ( & thread - > timeout_list ) ;
2005-12-02 18:39:16 +03:00
}
2007-01-08 18:18:52 +03:00
pthread_mutex_unlock ( & _timeout_mutex ) ;
2005-12-02 18:39:16 +03:00
}
2011-03-30 01:53:46 +04:00
__attribute__ ( ( format ( printf , 4 , 5 ) ) )
2007-01-15 21:58:40 +03:00
static void _no_intr_log ( int level , const char * file , int line ,
2007-01-12 00:54:53 +03:00
const char * f , . . . )
2005-12-02 18:39:16 +03:00
{
va_list ap ;
if ( errno = = EINTR )
return ;
if ( level > _LOG_WARN )
return ;
va_start ( ap , f ) ;
if ( level < _LOG_WARN )
vfprintf ( stderr , f , ap ) ;
else
vprintf ( f , ap ) ;
va_end ( ap ) ;
if ( level < _LOG_WARN )
fprintf ( stderr , " \n " ) ;
else
fprintf ( stdout , " \n " ) ;
}
2007-01-15 21:58:40 +03:00
static sigset_t _unblock_sigalrm ( void )
2005-12-02 18:39:16 +03:00
{
sigset_t set , old ;
sigemptyset ( & set ) ;
sigaddset ( & set , SIGALRM ) ;
pthread_sigmask ( SIG_UNBLOCK , & set , & old ) ;
return old ;
}
2007-01-08 18:18:52 +03:00
# define DM_WAIT_RETRY 0
# define DM_WAIT_INTR 1
# define DM_WAIT_FATAL 2
2005-04-28 02:32:00 +04:00
/* Wait on a device until an event occurs. */
2007-01-15 21:58:40 +03:00
static int _event_wait ( struct thread_status * thread , struct dm_task * * task )
2005-04-28 02:32:00 +04:00
{
2005-12-02 18:39:16 +03:00
sigset_t set ;
2007-01-08 18:18:52 +03:00
int ret = DM_WAIT_RETRY ;
2005-04-28 02:32:00 +04:00
struct dm_task * dmt ;
2005-12-02 18:39:16 +03:00
struct dm_info info ;
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
* task = 0 ;
2005-04-28 02:32:00 +04:00
if ( ! ( dmt = dm_task_create ( DM_DEVICE_WAITEVENT ) ) )
2007-01-08 18:18:52 +03:00
return DM_WAIT_RETRY ;
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
thread - > current_task = dmt ;
if ( ! dm_task_set_uuid ( dmt , thread - > device . uuid ) | |
! dm_task_set_event_nr ( dmt , thread - > event_nr ) )
2005-12-02 18:39:16 +03:00
goto out ;
/*
* This is so that you can break out of waiting on an event ,
* either for a timeout event , or to cancel the thread .
*/
2007-01-15 21:58:40 +03:00
set = _unblock_sigalrm ( ) ;
dm_log_init ( _no_intr_log ) ;
2005-12-02 18:39:16 +03:00
errno = 0 ;
2007-01-12 00:54:53 +03:00
if ( dm_task_run ( dmt ) ) {
2005-12-02 18:39:16 +03:00
thread - > current_events | = DM_EVENT_DEVICE_ERROR ;
2007-01-08 18:18:52 +03:00
ret = DM_WAIT_INTR ;
2005-12-02 18:39:16 +03:00
if ( ( ret = dm_task_get_info ( dmt , & info ) ) )
thread - > event_nr = info . event_nr ;
} else if ( thread - > events & DM_EVENT_TIMEOUT & & errno = = EINTR ) {
thread - > current_events | = DM_EVENT_TIMEOUT ;
2007-01-08 18:18:52 +03:00
ret = DM_WAIT_INTR ;
2007-04-24 17:29:02 +04:00
} else if ( thread - > status = = DM_THREAD_SHUTDOWN & & errno = = EINTR ) {
ret = DM_WAIT_FATAL ;
2006-12-20 17:35:02 +03:00
} else {
syslog ( LOG_NOTICE , " dm_task_run failed, errno = %d, %s " ,
errno , strerror ( errno ) ) ;
if ( errno = = ENXIO ) {
2007-01-12 00:54:53 +03:00
syslog ( LOG_ERR , " %s disappeared, detaching " ,
thread - > device . name ) ;
2007-01-08 18:18:52 +03:00
ret = DM_WAIT_FATAL ;
2006-12-20 17:35:02 +03:00
}
2005-04-28 02:32:00 +04:00
}
2005-12-02 18:39:16 +03:00
pthread_sigmask ( SIG_SETMASK , & set , NULL ) ;
dm_log_init ( NULL ) ;
2007-01-12 00:54:53 +03:00
out :
if ( ret = = DM_WAIT_FATAL | | ret = = DM_WAIT_RETRY ) {
dm_task_destroy ( dmt ) ;
thread - > current_task = NULL ;
} else
* task = dmt ;
2005-04-28 02:32:00 +04:00
return ret ;
}
/* Register a device with the DSO. */
2007-01-15 21:58:40 +03:00
static int _do_register_device ( struct thread_status * thread )
2005-04-28 02:32:00 +04:00
{
2007-01-12 00:54:53 +03:00
return thread - > dso_data - > register_device ( thread - > device . name ,
thread - > device . uuid ,
thread - > device . major ,
2007-01-23 20:38:39 +03:00
thread - > device . minor ,
& ( thread - > dso_private ) ) ;
2005-04-28 02:32:00 +04:00
}
/* Unregister a device with the DSO. */
2007-01-15 21:58:40 +03:00
static int _do_unregister_device ( struct thread_status * thread )
2005-04-28 02:32:00 +04:00
{
2007-01-12 00:54:53 +03:00
return thread - > dso_data - > unregister_device ( thread - > device . name ,
thread - > device . uuid ,
thread - > device . major ,
2007-01-23 20:38:39 +03:00
thread - > device . minor ,
& ( thread - > dso_private ) ) ;
2005-04-28 02:32:00 +04:00
}
2005-12-02 18:39:16 +03:00
/* Process an event in the DSO. */
2007-01-15 21:58:40 +03:00
static void _do_process_event ( struct thread_status * thread , struct dm_task * task )
2005-04-28 02:32:00 +04:00
{
2007-01-23 20:38:39 +03:00
thread - > dso_data - > process_event ( task , thread - > current_events , & ( thread - > dso_private ) ) ;
2005-04-28 02:32:00 +04:00
}
/* Thread cleanup handler to unregister device. */
2007-01-15 21:58:40 +03:00
static void _monitor_unregister ( void * arg )
2005-04-28 02:32:00 +04:00
{
2007-01-16 23:27:07 +03:00
struct thread_status * thread = arg , * thread_iter ;
2005-04-28 02:32:00 +04:00
2007-01-15 21:58:40 +03:00
if ( ! _do_unregister_device ( thread ) )
2007-01-08 18:18:52 +03:00
syslog ( LOG_ERR , " %s: %s unregister failed \n " , __func__ ,
2007-01-12 00:54:53 +03:00
thread - > device . name ) ;
2013-06-30 18:04:14 +04:00
if ( thread - > current_task ) {
2007-01-12 00:54:53 +03:00
dm_task_destroy ( thread - > current_task ) ;
2013-06-30 18:04:14 +04:00
thread - > current_task = NULL ;
}
2007-01-16 23:27:07 +03:00
_lock_mutex ( ) ;
if ( thread - > events & DM_EVENT_TIMEOUT ) {
/* _unregister_for_timeout locks another mutex, we
don ' t want to deadlock so we release our mutex for
a bit */
_unlock_mutex ( ) ;
_unregister_for_timeout ( thread ) ;
_lock_mutex ( ) ;
}
/* we may have been relinked to unused registry since we were
called , so check that */
2008-11-04 01:14:30 +03:00
dm_list_iterate_items ( thread_iter , & _thread_registry_unused )
2007-01-16 23:27:07 +03:00
if ( thread_iter = = thread ) {
thread - > status = DM_THREAD_DONE ;
_unlock_mutex ( ) ;
return ;
}
thread - > status = DM_THREAD_DONE ;
2011-12-21 17:03:06 +04:00
pthread_mutex_lock ( & _timeout_mutex ) ;
2007-01-16 23:27:07 +03:00
UNLINK_THREAD ( thread ) ;
LINK ( thread , & _thread_registry_unused ) ;
2011-12-21 17:03:06 +04:00
pthread_mutex_unlock ( & _timeout_mutex ) ;
2007-01-16 23:27:07 +03:00
_unlock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
}
2007-01-22 18:03:57 +03:00
static struct dm_task * _get_device_status ( struct thread_status * ts )
{
struct dm_task * dmt = dm_task_create ( DM_DEVICE_STATUS ) ;
if ( ! dmt )
return NULL ;
2011-08-31 12:23:05 +04:00
if ( ! dm_task_set_uuid ( dmt , ts - > device . uuid ) ) {
dm_task_destroy ( dmt ) ;
return NULL ;
}
2007-01-22 18:03:57 +03:00
if ( ! dm_task_run ( dmt ) ) {
dm_task_destroy ( dmt ) ;
return NULL ;
}
return dmt ;
}
2005-04-28 02:32:00 +04:00
/* Device monitoring thread. */
2007-01-15 21:58:40 +03:00
static void * _monitor_thread ( void * arg )
2005-04-28 02:32:00 +04:00
{
struct thread_status * thread = arg ;
2006-12-20 17:35:02 +03:00
int wait_error = 0 ;
2007-01-12 00:54:53 +03:00
struct dm_task * task ;
2005-04-28 02:32:00 +04:00
pthread_setcanceltype ( PTHREAD_CANCEL_DEFERRED , NULL ) ;
2007-01-15 21:58:40 +03:00
pthread_cleanup_push ( _monitor_unregister , thread ) ;
2005-04-28 02:32:00 +04:00
2006-01-27 23:52:21 +03:00
/* Wait for do_process_request() to finish its task. */
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2007-01-08 18:18:52 +03:00
thread - > status = DM_THREAD_RUNNING ;
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
/* Loop forever awaiting/analyzing device events. */
while ( 1 ) {
thread - > current_events = 0 ;
2007-01-15 21:58:40 +03:00
wait_error = _event_wait ( thread , & task ) ;
2007-01-08 18:18:52 +03:00
if ( wait_error = = DM_WAIT_RETRY )
2005-04-28 02:32:00 +04:00
continue ;
2007-01-08 18:18:52 +03:00
if ( wait_error = = DM_WAIT_FATAL )
2006-12-20 17:35:02 +03:00
break ;
2007-01-22 18:03:57 +03:00
/* Timeout occurred, task is not filled properly.
* We get device status here for processing it in DSO .
*/
if ( wait_error = = DM_WAIT_INTR & &
thread - > current_events & DM_EVENT_TIMEOUT ) {
dm_task_destroy ( task ) ;
task = _get_device_status ( thread ) ;
/* FIXME: syslog fail here ? */
if ( ! ( thread - > current_task = task ) )
continue ;
}
2007-01-12 00:54:53 +03:00
/*
* We know that wait succeeded and stored a
* pointer to dm_task with device status into task .
*/
2005-04-28 18:02:30 +04:00
/*
* Check against filter .
*
2007-01-15 21:58:40 +03:00
* If there ' s current events delivered from _event_wait ( ) AND
2005-04-28 18:02:30 +04:00
* the device got registered for those events AND
* those events haven ' t been processed yet , call
* the DSO ' s process_event ( ) handler .
*/
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2007-01-08 18:18:52 +03:00
if ( thread - > status = = DM_THREAD_SHUTDOWN ) {
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2007-01-08 18:18:52 +03:00
break ;
}
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2007-01-08 18:18:52 +03:00
2007-01-12 00:54:53 +03:00
if ( thread - > events & thread - > current_events ) {
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2006-01-27 23:50:01 +03:00
thread - > processing = 1 ;
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2007-01-12 00:54:53 +03:00
2007-01-15 21:58:40 +03:00
_do_process_event ( thread , task ) ;
2007-01-12 00:54:53 +03:00
dm_task_destroy ( task ) ;
thread - > current_task = NULL ;
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2006-01-27 23:50:01 +03:00
thread - > processing = 0 ;
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2007-01-12 00:54:53 +03:00
} else {
dm_task_destroy ( task ) ;
thread - > current_task = NULL ;
2005-04-28 02:32:00 +04:00
}
}
2007-01-12 00:54:53 +03:00
pthread_cleanup_pop ( 1 ) ;
2007-01-08 18:18:52 +03:00
return NULL ;
2005-04-28 02:32:00 +04:00
}
/* Create a device monitoring thread. */
2007-01-15 21:58:40 +03:00
static int _create_thread ( struct thread_status * thread )
2005-04-28 02:32:00 +04:00
{
2007-01-16 23:13:04 +03:00
return _pthread_create_smallstack ( & thread - > thread , _monitor_thread , thread ) ;
2005-04-28 02:32:00 +04:00
}
2007-01-15 21:58:40 +03:00
static int _terminate_thread ( struct thread_status * thread )
2005-04-28 02:32:00 +04:00
{
2005-12-02 18:39:16 +03:00
return pthread_kill ( thread - > thread , SIGALRM ) ;
2005-04-28 02:32:00 +04:00
}
2007-01-16 23:27:07 +03:00
/* DSO reference counting. Call with _global_mutex locked! */
2007-01-15 21:58:40 +03:00
static void _lib_get ( struct dso_data * data )
2005-04-28 02:32:00 +04:00
{
data - > ref_count + + ;
}
2007-01-15 21:58:40 +03:00
static void _lib_put ( struct dso_data * data )
2005-04-28 02:32:00 +04:00
{
if ( ! - - data - > ref_count ) {
dlclose ( data - > dso_handle ) ;
UNLINK_DSO ( data ) ;
2007-01-15 21:58:40 +03:00
_free_dso_data ( data ) ;
2005-04-28 02:32:00 +04:00
}
}
/* Find DSO data. */
2007-01-15 21:58:40 +03:00
static struct dso_data * _lookup_dso ( struct message_data * data )
2005-04-28 02:32:00 +04:00
{
struct dso_data * dso_data , * ret = NULL ;
2008-11-04 01:14:30 +03:00
dm_list_iterate_items ( dso_data , & _dso_registry )
2007-01-12 00:54:53 +03:00
if ( ! strcmp ( data - > dso_name , dso_data - > dso_name ) ) {
2007-01-15 21:58:40 +03:00
_lib_get ( dso_data ) ;
2007-01-12 00:54:53 +03:00
ret = dso_data ;
break ;
}
2005-04-28 02:32:00 +04:00
return ret ;
}
/* Lookup DSO symbols we need. */
2007-01-22 18:03:57 +03:00
static int _lookup_symbol ( void * dl , void * * symbol , const char * name )
2005-04-28 02:32:00 +04:00
{
if ( ( * symbol = dlsym ( dl , name ) ) )
return 1 ;
return 0 ;
}
static int lookup_symbols ( void * dl , struct dso_data * data )
{
2007-01-22 18:03:57 +03:00
return _lookup_symbol ( dl , ( void * ) & data - > process_event ,
2005-04-28 02:32:00 +04:00
" process_event " ) & &
2007-01-22 18:03:57 +03:00
_lookup_symbol ( dl , ( void * ) & data - > register_device ,
2007-01-12 00:54:53 +03:00
" register_device " ) & &
2007-01-22 18:03:57 +03:00
_lookup_symbol ( dl , ( void * ) & data - > unregister_device ,
2007-01-12 00:54:53 +03:00
" unregister_device " ) ;
2005-04-28 02:32:00 +04:00
}
/* Load an application specific DSO. */
2007-01-15 21:58:40 +03:00
static struct dso_data * _load_dso ( struct message_data * data )
2005-04-28 02:32:00 +04:00
{
void * dl ;
struct dso_data * ret = NULL ;
2007-01-12 00:54:53 +03:00
if ( ! ( dl = dlopen ( data - > dso_name , RTLD_NOW ) ) ) {
2007-01-08 18:18:52 +03:00
const char * dlerr = dlerror ( ) ;
2007-01-12 00:54:53 +03:00
syslog ( LOG_ERR , " dmeventd %s dlopen failed: %s " , data - > dso_name ,
dlerr ) ;
data - > msg - > size =
2007-02-02 20:08:51 +03:00
dm_asprintf ( & ( data - > msg - > data ) , " %s %s dlopen failed: %s " ,
data - > id , data - > dso_name , dlerr ) ;
2006-02-03 22:41:34 +03:00
return NULL ;
2005-12-02 18:39:16 +03:00
}
2005-04-28 02:32:00 +04:00
2007-01-15 21:58:40 +03:00
if ( ! ( ret = _alloc_dso_data ( data ) ) ) {
2006-02-03 22:41:34 +03:00
dlclose ( dl ) ;
return NULL ;
}
2005-04-28 02:32:00 +04:00
2006-02-03 22:41:34 +03:00
if ( ! ( lookup_symbols ( dl , ret ) ) ) {
2007-01-15 21:58:40 +03:00
_free_dso_data ( ret ) ;
2006-02-03 22:41:34 +03:00
dlclose ( dl ) ;
return NULL ;
}
2005-04-28 02:32:00 +04:00
/*
* Keep handle to close the library once
* we ' ve got no references to it any more .
*/
ret - > dso_handle = dl ;
2007-01-15 21:58:40 +03:00
_lib_get ( ret ) ;
2005-04-28 02:32:00 +04:00
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
LINK_DSO ( ret ) ;
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
return ret ;
}
2005-12-02 18:39:16 +03:00
/* Return success on daemon active check. */
2007-01-15 21:58:40 +03:00
static int _active ( struct message_data * message_data )
2005-12-02 18:39:16 +03:00
{
return 0 ;
}
2005-04-28 02:32:00 +04:00
/*
* Register for an event .
*
2005-12-02 18:39:16 +03:00
* Only one caller at a time here , because we use
* a FIFO and lock it against multiple accesses .
2005-04-28 02:32:00 +04:00
*/
2007-01-15 21:58:40 +03:00
static int _register_for_event ( struct message_data * message_data )
2005-04-28 02:32:00 +04:00
{
int ret = 0 ;
2005-12-02 18:39:16 +03:00
struct thread_status * thread , * thread_new = NULL ;
2005-04-28 02:32:00 +04:00
struct dso_data * dso_data ;
2007-01-15 21:58:40 +03:00
if ( ! ( dso_data = _lookup_dso ( message_data ) ) & &
! ( dso_data = _load_dso ( message_data ) ) ) {
2005-04-28 02:32:00 +04:00
stack ;
2005-12-02 18:39:16 +03:00
# ifdef ELIBACC
2005-04-28 02:32:00 +04:00
ret = - ELIBACC ;
2005-12-02 18:39:16 +03:00
# else
ret = - ENODEV ;
# endif
2005-04-28 02:32:00 +04:00
goto out ;
}
2007-01-12 00:54:53 +03:00
2005-04-28 02:32:00 +04:00
/* Preallocate thread status struct to avoid deadlock. */
2007-01-15 21:58:40 +03:00
if ( ! ( thread_new = _alloc_thread_status ( message_data , dso_data ) ) ) {
2005-04-28 02:32:00 +04:00
stack ;
ret = - ENOMEM ;
goto out ;
}
2007-01-15 21:58:40 +03:00
if ( ! _fill_device_data ( thread_new ) ) {
2007-01-12 00:54:53 +03:00
stack ;
ret = - ENODEV ;
goto out ;
}
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
2007-01-15 22:19:31 +03:00
/* If creation of timeout thread fails (as it may), we fail
here completely . The client is responsible for either
retrying later or trying to register without timeout
events . However , if timeout thread cannot be started , it
usually means we are so starved on resources that we are
almost as good as dead already . . . */
2012-06-21 23:20:01 +04:00
if ( ( thread_new - > events & DM_EVENT_TIMEOUT ) & &
( ret = - _register_for_timeout ( thread_new ) ) )
2013-06-26 01:05:06 +04:00
goto outth ;
2007-01-15 22:19:31 +03:00
2007-01-15 21:58:40 +03:00
if ( ! ( thread = _lookup_thread_status ( message_data ) ) ) {
_unlock_mutex ( ) ;
2005-12-02 18:39:16 +03:00
2007-01-15 21:58:40 +03:00
if ( ! ( ret = _do_register_device ( thread_new ) ) )
2005-12-02 18:39:16 +03:00
goto out ;
2005-04-28 02:32:00 +04:00
thread = thread_new ;
thread_new = NULL ;
/* Try to create the monitoring thread for this device. */
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
if ( ( ret = - _create_thread ( thread ) ) ) {
_unlock_mutex ( ) ;
_do_unregister_device ( thread ) ;
_free_thread_status ( thread ) ;
2005-04-28 02:32:00 +04:00
goto out ;
2012-06-21 23:20:01 +04:00
}
LINK_THREAD ( thread ) ;
2005-04-28 02:32:00 +04:00
}
/* Or event # into events bitfield. */
2013-04-19 22:44:20 +04:00
thread - > events | = message_data - > events_field ;
2005-04-28 02:32:00 +04:00
2012-03-03 03:01:10 +04:00
outth :
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
out :
2005-04-28 02:32:00 +04:00
/*
* Deallocate thread status after releasing
* the lock in case we haven ' t used it .
*/
if ( thread_new )
2007-01-15 21:58:40 +03:00
_free_thread_status ( thread_new ) ;
2005-04-28 02:32:00 +04:00
return ret ;
}
/*
* Unregister for an event .
*
* Only one caller at a time here as with register_for_event ( ) .
*/
2007-01-15 21:58:40 +03:00
static int _unregister_for_event ( struct message_data * message_data )
2005-04-28 02:32:00 +04:00
{
int ret = 0 ;
struct thread_status * thread ;
/*
* Clear event in bitfield and deactivate
* monitoring thread in case bitfield is 0.
*/
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
2007-01-15 21:58:40 +03:00
if ( ! ( thread = _lookup_thread_status ( message_data ) ) ) {
_unlock_mutex ( ) ;
2005-12-02 18:39:16 +03:00
ret = - ENODEV ;
2005-04-28 02:32:00 +04:00
goto out ;
}
2007-01-16 23:27:07 +03:00
if ( thread - > status = = DM_THREAD_DONE ) {
/* the thread has terminated while we were not
watching */
_unlock_mutex ( ) ;
return 0 ;
}
2013-04-19 22:44:20 +04:00
thread - > events & = ~ message_data - > events_field ;
2005-04-28 02:32:00 +04:00
2005-12-02 18:39:16 +03:00
if ( ! ( thread - > events & DM_EVENT_TIMEOUT ) )
2007-01-15 21:58:40 +03:00
_unregister_for_timeout ( thread ) ;
2005-04-28 02:32:00 +04:00
/*
2005-12-02 18:39:16 +03:00
* In case there ' s no events to monitor on this device - >
* unlink and terminate its monitoring thread .
2005-04-28 02:32:00 +04:00
*/
if ( ! thread - > events ) {
2011-12-21 17:03:06 +04:00
pthread_mutex_lock ( & _timeout_mutex ) ;
2006-01-27 23:50:01 +03:00
UNLINK_THREAD ( thread ) ;
2007-01-08 18:18:52 +03:00
LINK ( thread , & _thread_registry_unused ) ;
2011-12-21 17:03:06 +04:00
pthread_mutex_unlock ( & _timeout_mutex ) ;
2005-04-28 02:32:00 +04:00
}
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2005-04-28 02:32:00 +04:00
2007-01-12 00:54:53 +03:00
out :
2005-04-28 02:32:00 +04:00
return ret ;
}
2005-04-28 18:02:30 +04:00
/*
2005-12-02 18:39:16 +03:00
* Get registered device .
2005-04-28 18:02:30 +04:00
*
* Only one caller at a time here as with register_for_event ( ) .
*/
2007-01-15 21:58:40 +03:00
static int _registered_device ( struct message_data * message_data ,
2005-04-29 17:41:25 +04:00
struct thread_status * thread )
2005-04-28 18:02:30 +04:00
{
2012-03-03 03:01:10 +04:00
int r ;
2013-11-22 15:54:59 +04:00
struct dm_event_daemon_message * msg = message_data - > msg ;
2013-06-30 18:04:14 +04:00
unsigned events = ( ( thread - > status = = DM_THREAD_RUNNING ) & &
thread - > events ) ? thread - > events :
thread - > events | DM_EVENT_REGISTRATION_PENDING ;
2007-01-08 18:18:52 +03:00
2010-08-16 22:19:46 +04:00
dm_free ( msg - > data ) ;
2007-01-08 18:18:52 +03:00
2013-11-22 15:54:59 +04:00
if ( ( r = dm_asprintf ( & ( msg - > data ) , " %s %s %s %u " ,
message_data - > id ,
thread - > dso_data - > dso_name ,
thread - > device . uuid , events ) ) < 0 ) {
2012-03-03 03:01:10 +04:00
msg - > size = 0 ;
return - ENOMEM ;
}
2005-04-29 17:41:25 +04:00
2012-03-03 03:01:10 +04:00
msg - > size = ( uint32_t ) r ;
2005-04-28 18:02:30 +04:00
return 0 ;
}
2007-01-15 21:58:40 +03:00
static int _want_registered_device ( char * dso_name , char * device_uuid ,
2005-12-02 18:39:16 +03:00
struct thread_status * thread )
2005-04-28 18:02:30 +04:00
{
2005-12-02 18:39:16 +03:00
/* If DSO names and device paths are equal. */
2007-01-12 00:54:53 +03:00
if ( dso_name & & device_uuid )
2005-12-02 18:39:16 +03:00
return ! strcmp ( dso_name , thread - > dso_data - > dso_name ) & &
2007-01-17 02:03:13 +03:00
! strcmp ( device_uuid , thread - > device . uuid ) & &
( thread - > status = = DM_THREAD_RUNNING | |
( thread - > events & DM_EVENT_REGISTRATION_PENDING ) ) ;
2005-12-02 18:39:16 +03:00
/* If DSO names are equal. */
if ( dso_name )
2007-01-17 02:03:13 +03:00
return ! strcmp ( dso_name , thread - > dso_data - > dso_name ) & &
( thread - > status = = DM_THREAD_RUNNING | |
( thread - > events & DM_EVENT_REGISTRATION_PENDING ) ) ;
2007-01-12 00:54:53 +03:00
2005-12-02 18:39:16 +03:00
/* If device paths are equal. */
2007-01-12 00:54:53 +03:00
if ( device_uuid )
2007-01-17 02:03:13 +03:00
return ! strcmp ( device_uuid , thread - > device . uuid ) & &
( thread - > status = = DM_THREAD_RUNNING | |
( thread - > events & DM_EVENT_REGISTRATION_PENDING ) ) ;
2005-04-28 18:02:30 +04:00
2005-12-02 18:39:16 +03:00
return 1 ;
}
2005-04-28 18:02:30 +04:00
2007-01-15 21:58:40 +03:00
static int _get_registered_dev ( struct message_data * message_data , int next )
2005-12-02 18:39:16 +03:00
{
2007-01-17 02:03:13 +03:00
struct thread_status * thread , * hit = NULL ;
2012-03-03 03:01:10 +04:00
int ret = - ENOENT ;
2005-05-02 15:02:19 +04:00
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2005-04-29 17:41:25 +04:00
2005-12-02 18:39:16 +03:00
/* Iterate list of threads checking if we want a particular one. */
2008-11-04 01:14:30 +03:00
dm_list_iterate_items ( thread , & _thread_registry )
2007-01-17 02:03:13 +03:00
if ( _want_registered_device ( message_data - > dso_name ,
message_data - > device_uuid ,
thread ) ) {
hit = thread ;
break ;
}
2005-04-28 18:02:30 +04:00
2005-04-29 17:41:25 +04:00
/*
* If we got a registered device and want the next one - >
2005-12-02 18:39:16 +03:00
* fetch next conforming element off the list .
2005-04-29 17:41:25 +04:00
*/
2012-03-03 03:01:10 +04:00
if ( hit & & ! next )
goto reg ;
2007-01-17 02:03:13 +03:00
if ( ! hit )
2006-12-20 17:35:02 +03:00
goto out ;
2005-04-28 18:02:30 +04:00
2007-01-23 20:38:39 +03:00
while ( 1 ) {
2008-11-04 01:14:30 +03:00
if ( dm_list_end ( & _thread_registry , & thread - > list ) )
2006-12-20 17:35:02 +03:00
goto out ;
2007-01-12 00:54:53 +03:00
2008-11-04 01:14:30 +03:00
thread = dm_list_item ( thread - > list . n , struct thread_status ) ;
2007-01-23 20:38:39 +03:00
if ( _want_registered_device ( message_data - > dso_name , NULL , thread ) ) {
hit = thread ;
break ;
}
}
2006-12-20 17:35:02 +03:00
2012-03-03 03:01:10 +04:00
reg :
ret = _registered_device ( message_data , hit ) ;
2005-04-28 18:02:30 +04:00
2007-01-12 00:54:53 +03:00
out :
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2012-03-03 03:01:10 +04:00
return ret ;
2005-12-02 18:39:16 +03:00
}
2007-01-15 21:58:40 +03:00
static int _get_registered_device ( struct message_data * message_data )
2005-12-02 18:39:16 +03:00
{
2007-01-15 21:58:40 +03:00
return _get_registered_dev ( message_data , 0 ) ;
2005-12-02 18:39:16 +03:00
}
2007-01-15 21:58:40 +03:00
static int _get_next_registered_device ( struct message_data * message_data )
2005-12-02 18:39:16 +03:00
{
2007-01-15 21:58:40 +03:00
return _get_registered_dev ( message_data , 1 ) ;
2005-04-28 18:02:30 +04:00
}
2007-01-15 21:58:40 +03:00
static int _set_timeout ( struct message_data * message_data )
2005-12-02 18:39:16 +03:00
{
struct thread_status * thread ;
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
if ( ( thread = _lookup_thread_status ( message_data ) ) )
2013-04-19 22:44:20 +04:00
thread - > timeout = message_data - > timeout_secs ;
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2005-12-02 18:39:16 +03:00
return thread ? 0 : - ENODEV ;
}
2007-01-15 21:58:40 +03:00
static int _get_timeout ( struct message_data * message_data )
2005-12-02 18:39:16 +03:00
{
struct thread_status * thread ;
struct dm_event_daemon_message * msg = message_data - > msg ;
2010-08-16 22:19:46 +04:00
dm_free ( msg - > data ) ;
2007-01-08 18:18:52 +03:00
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
if ( ( thread = _lookup_thread_status ( message_data ) ) ) {
2007-01-12 00:54:53 +03:00
msg - > size =
2007-02-02 20:08:51 +03:00
dm_asprintf ( & ( msg - > data ) , " %s % " PRIu32 , message_data - > id ,
thread - > timeout ) ;
2007-01-08 18:18:52 +03:00
} else {
msg - > data = NULL ;
msg - > size = 0 ;
}
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2005-12-02 18:39:16 +03:00
return thread ? 0 : - ENODEV ;
}
2005-04-28 02:32:00 +04:00
/* Open fifos used for client communication. */
2007-01-15 21:58:40 +03:00
static int _open_fifos ( struct dm_event_fifos * fifos )
2005-04-28 02:32:00 +04:00
{
2011-03-30 00:30:05 +04:00
struct stat st ;
2010-12-13 13:43:56 +03:00
/* Create client fifo. */
( void ) dm_prepare_selinux_context ( fifos - > client_path , S_IFIFO ) ;
if ( ( mkfifo ( fifos - > client_path , 0600 ) = = - 1 ) & & errno ! = EEXIST ) {
2012-03-02 02:06:18 +04:00
syslog ( LOG_ERR , " %s: Failed to create client fifo %s: %m. \n " ,
__func__ , fifos - > client_path ) ;
2010-12-13 13:43:56 +03:00
( void ) dm_prepare_selinux_context ( NULL , 0 ) ;
2013-01-15 17:59:54 +04:00
goto fail ;
2007-01-08 18:18:52 +03:00
}
2010-12-13 13:43:56 +03:00
/* Create server fifo. */
( void ) dm_prepare_selinux_context ( fifos - > server_path , S_IFIFO ) ;
if ( ( mkfifo ( fifos - > server_path , 0600 ) = = - 1 ) & & errno ! = EEXIST ) {
2012-03-02 02:06:18 +04:00
syslog ( LOG_ERR , " %s: Failed to create server fifo %s: %m. \n " ,
__func__ , fifos - > server_path ) ;
2010-12-13 13:43:56 +03:00
( void ) dm_prepare_selinux_context ( NULL , 0 ) ;
2013-01-15 17:59:54 +04:00
goto fail ;
2010-12-13 13:43:56 +03:00
}
( void ) dm_prepare_selinux_context ( NULL , 0 ) ;
2007-01-12 00:54:53 +03:00
/* Warn about wrong permissions if applicable */
if ( ( ! stat ( fifos - > client_path , & st ) ) & & ( st . st_mode & 0777 ) ! = 0600 )
2012-03-02 02:06:18 +04:00
syslog ( LOG_WARNING , " Fixing wrong permissions on %s: %m. \n " ,
2007-01-12 00:54:53 +03:00
fifos - > client_path ) ;
if ( ( ! stat ( fifos - > server_path , & st ) ) & & ( st . st_mode & 0777 ) ! = 0600 )
2012-03-02 02:06:18 +04:00
syslog ( LOG_WARNING , " Fixing wrong permissions on %s: %m. \n " ,
2007-01-12 00:54:53 +03:00
fifos - > server_path ) ;
2007-01-08 18:18:52 +03:00
/* If they were already there, make sure permissions are ok. */
if ( chmod ( fifos - > client_path , 0600 ) ) {
2012-03-02 02:06:18 +04:00
syslog ( LOG_ERR , " Unable to set correct file permissions on %s: %m. \n " ,
2007-01-12 00:54:53 +03:00
fifos - > client_path ) ;
2013-01-15 17:59:54 +04:00
goto fail ;
2007-01-08 18:18:52 +03:00
}
if ( chmod ( fifos - > server_path , 0600 ) ) {
2012-03-02 02:06:18 +04:00
syslog ( LOG_ERR , " Unable to set correct file permissions on %s: %m. \n " ,
2007-01-12 00:54:53 +03:00
fifos - > server_path ) ;
2013-01-15 17:59:54 +04:00
goto fail ;
2007-01-08 18:18:52 +03:00
}
/* Need to open read+write or we will block or fail */
if ( ( fifos - > server = open ( fifos - > server_path , O_RDWR ) ) < 0 ) {
2012-03-02 02:06:18 +04:00
syslog ( LOG_ERR , " Failed to open fifo server %s: %m. \n " ,
fifos - > server_path ) ;
2013-01-15 17:59:54 +04:00
goto fail ;
}
if ( fcntl ( fifos - > server , F_SETFD , FD_CLOEXEC ) < 0 ) {
syslog ( LOG_ERR , " Failed to set FD_CLOEXEC for fifo server %s: %m. \n " ,
fifos - > server_path ) ;
goto fail ;
2005-04-28 02:32:00 +04:00
}
/* Need to open read+write for select() to work. */
2007-01-08 18:18:52 +03:00
if ( ( fifos - > client = open ( fifos - > client_path , O_RDWR ) ) < 0 ) {
2012-03-02 02:06:18 +04:00
syslog ( LOG_ERR , " Failed to open fifo client %s: %m " , fifos - > client_path ) ;
2013-01-15 17:59:54 +04:00
goto fail ;
}
if ( fcntl ( fifos - > client , F_SETFD , FD_CLOEXEC ) < 0 ) {
syslog ( LOG_ERR , " Failed to set FD_CLOEXEC for fifo client %s: %m. \n " ,
fifos - > client_path ) ;
goto fail ;
2005-04-28 02:32:00 +04:00
}
2012-03-02 02:06:18 +04:00
return 1 ;
2013-01-15 17:59:54 +04:00
fail :
if ( fifos - > server > = 0 & & close ( fifos - > server ) )
syslog ( LOG_ERR , " Failed to close fifo server %s: %m " , fifos - > server_path ) ;
if ( fifos - > client > = 0 & & close ( fifos - > client ) )
syslog ( LOG_ERR , " Failed to close fifo client %s: %m " , fifos - > client_path ) ;
return 0 ;
2005-04-28 02:32:00 +04:00
}
/*
* Read message from client making sure that data is available
2006-03-10 00:33:59 +03:00
* and a complete message is read . Must not block indefinitely .
2005-04-28 02:32:00 +04:00
*/
2007-01-15 21:58:40 +03:00
static int _client_read ( struct dm_event_fifos * fifos ,
2007-01-12 00:54:53 +03:00
struct dm_event_daemon_message * msg )
2005-04-28 02:32:00 +04:00
{
2006-03-10 00:33:59 +03:00
struct timeval t ;
2006-01-31 17:50:38 +03:00
unsigned bytes = 0 ;
int ret = 0 ;
2005-04-28 02:32:00 +04:00
fd_set fds ;
2007-01-08 18:18:52 +03:00
size_t size = 2 * sizeof ( uint32_t ) ; /* status + size */
2010-10-25 15:57:06 +04:00
uint32_t * header = alloca ( size ) ;
char * buf = ( char * ) header ;
2007-01-08 18:18:52 +03:00
msg - > data = NULL ;
2005-04-28 02:32:00 +04:00
errno = 0 ;
2007-01-08 18:18:52 +03:00
while ( bytes < size & & errno ! = EOF ) {
2006-03-10 00:33:59 +03:00
/* Watch client read FIFO for input. */
FD_ZERO ( & fds ) ;
FD_SET ( fifos - > client , & fds ) ;
t . tv_sec = 1 ;
t . tv_usec = 0 ;
2007-01-12 00:54:53 +03:00
ret = select ( fifos - > client + 1 , & fds , NULL , NULL , & t ) ;
2006-03-10 00:33:59 +03:00
2007-01-12 00:54:53 +03:00
if ( ! ret & & ! bytes ) /* nothing to read */
2006-03-10 00:33:59 +03:00
return 0 ;
2007-01-12 00:54:53 +03:00
if ( ! ret ) /* trying to finish read */
2006-03-10 00:33:59 +03:00
continue ;
2007-01-12 00:54:53 +03:00
if ( ret < 0 ) /* error */
2006-03-10 00:33:59 +03:00
return 0 ;
2005-04-28 02:32:00 +04:00
2007-01-08 18:18:52 +03:00
ret = read ( fifos - > client , buf + bytes , size - bytes ) ;
2005-04-28 02:32:00 +04:00
bytes + = ret > 0 ? ret : 0 ;
2010-10-25 15:57:06 +04:00
if ( header & & ( bytes = = 2 * sizeof ( uint32_t ) ) ) {
msg - > cmd = ntohl ( header [ 0 ] ) ;
msg - > size = ntohl ( header [ 1 ] ) ;
2007-01-08 18:18:52 +03:00
buf = msg - > data = dm_malloc ( msg - > size ) ;
size = msg - > size ;
bytes = 0 ;
header = 0 ;
}
2005-04-28 02:32:00 +04:00
}
2007-01-08 18:18:52 +03:00
if ( bytes ! = size ) {
2010-08-16 22:19:46 +04:00
dm_free ( msg - > data ) ;
2007-01-08 18:18:52 +03:00
msg - > data = NULL ;
2007-01-12 00:54:53 +03:00
msg - > size = 0 ;
2007-01-08 18:18:52 +03:00
}
return bytes = = size ;
2005-04-28 02:32:00 +04:00
}
/*
* Write a message to the client making sure that it is ready to write .
*/
2007-01-15 21:58:40 +03:00
static int _client_write ( struct dm_event_fifos * fifos ,
2007-01-12 00:54:53 +03:00
struct dm_event_daemon_message * msg )
2005-04-28 02:32:00 +04:00
{
2006-01-31 17:50:38 +03:00
unsigned bytes = 0 ;
int ret = 0 ;
2005-04-28 02:32:00 +04:00
fd_set fds ;
2007-01-12 00:54:53 +03:00
size_t size = 2 * sizeof ( uint32_t ) + msg - > size ;
2010-10-25 15:57:06 +04:00
uint32_t * header = alloca ( size ) ;
char * buf = ( char * ) header ;
2007-01-08 18:18:52 +03:00
2010-10-25 15:57:06 +04:00
header [ 0 ] = htonl ( msg - > cmd ) ;
header [ 1 ] = htonl ( msg - > size ) ;
2007-01-12 00:54:53 +03:00
if ( msg - > data )
memcpy ( buf + 2 * sizeof ( uint32_t ) , msg - > data , msg - > size ) ;
2007-01-08 18:18:52 +03:00
2005-04-29 17:41:25 +04:00
errno = 0 ;
2007-01-08 18:18:52 +03:00
while ( bytes < size & & errno ! = EIO ) {
2005-04-29 17:41:25 +04:00
do {
/* Watch client write FIFO to be ready for output. */
FD_ZERO ( & fds ) ;
FD_SET ( fifos - > server , & fds ) ;
2007-01-12 00:54:53 +03:00
} while ( select ( fifos - > server + 1 , NULL , & fds , NULL , NULL ) ! =
1 ) ;
2005-04-28 02:32:00 +04:00
2007-01-08 18:18:52 +03:00
ret = write ( fifos - > server , buf + bytes , size - bytes ) ;
2005-04-29 17:41:25 +04:00
bytes + = ret > 0 ? ret : 0 ;
}
2007-01-08 18:18:52 +03:00
return bytes = = size ;
2005-04-28 02:32:00 +04:00
}
2005-12-02 18:39:16 +03:00
/*
* Handle a client request .
*
* We put the request handling functions into
* a list because of the growing number .
*/
2007-01-15 21:58:40 +03:00
static int _handle_request ( struct dm_event_daemon_message * msg ,
2005-12-02 18:39:16 +03:00
struct message_data * message_data )
{
2011-03-02 17:20:48 +03:00
static struct request {
2005-12-02 18:39:16 +03:00
unsigned int cmd ;
2007-01-12 00:54:53 +03:00
int ( * f ) ( struct message_data * ) ;
2005-12-02 18:39:16 +03:00
} requests [ ] = {
2007-01-15 21:58:40 +03:00
{ DM_EVENT_CMD_REGISTER_FOR_EVENT , _register_for_event } ,
{ DM_EVENT_CMD_UNREGISTER_FOR_EVENT , _unregister_for_event } ,
{ DM_EVENT_CMD_GET_REGISTERED_DEVICE , _get_registered_device } ,
2007-01-12 00:54:53 +03:00
{ DM_EVENT_CMD_GET_NEXT_REGISTERED_DEVICE ,
2007-01-15 21:58:40 +03:00
_get_next_registered_device } ,
{ DM_EVENT_CMD_SET_TIMEOUT , _set_timeout } ,
{ DM_EVENT_CMD_GET_TIMEOUT , _get_timeout } ,
{ DM_EVENT_CMD_ACTIVE , _active } ,
2010-10-20 19:12:12 +04:00
{ DM_EVENT_CMD_GET_STATUS , _get_status } ,
2005-12-02 18:39:16 +03:00
} , * req ;
2011-03-02 17:20:48 +03:00
for ( req = requests ; req < requests + sizeof ( requests ) / sizeof ( struct request ) ; req + + )
2007-01-08 18:18:52 +03:00
if ( req - > cmd = = msg - > cmd )
2005-12-02 18:39:16 +03:00
return req - > f ( message_data ) ;
return - EINVAL ;
}
2005-04-28 02:32:00 +04:00
/* Process a request passed from the communication thread. */
2007-01-15 21:58:40 +03:00
static int _do_process_request ( struct dm_event_daemon_message * msg )
2005-04-28 02:32:00 +04:00
{
int ret ;
2007-02-02 20:08:51 +03:00
char * answer ;
2012-06-21 23:19:28 +04:00
struct message_data message_data = { . msg = msg } ;
2005-04-28 18:02:30 +04:00
/* Parse the message. */
2010-10-20 19:12:12 +04:00
if ( msg - > cmd = = DM_EVENT_CMD_HELLO | | msg - > cmd = = DM_EVENT_CMD_DIE ) {
2007-02-02 20:08:51 +03:00
ret = 0 ;
2007-04-23 19:06:03 +04:00
answer = msg - > data ;
2007-02-02 20:08:51 +03:00
if ( answer ) {
2011-04-04 20:11:09 +04:00
msg - > size = dm_asprintf ( & ( msg - > data ) , " %s %s %d " , answer ,
msg - > cmd = = DM_EVENT_CMD_DIE ? " DYING " : " HELLO " ,
2012-06-21 23:20:01 +04:00
DM_EVENT_PROTOCOL_VERSION ) ;
2007-02-02 20:08:51 +03:00
dm_free ( answer ) ;
2013-04-19 22:50:46 +04:00
} else
2007-02-02 20:08:51 +03:00
msg - > size = 0 ;
} else if ( msg - > cmd ! = DM_EVENT_CMD_ACTIVE & & ! _parse_message ( & message_data ) ) {
2005-04-28 18:02:30 +04:00
stack ;
2005-04-30 02:12:09 +04:00
ret = - EINVAL ;
2006-12-20 17:35:02 +03:00
} else
2007-01-15 21:58:40 +03:00
ret = _handle_request ( msg , & message_data ) ;
2005-04-28 02:32:00 +04:00
2007-02-02 20:08:51 +03:00
msg - > cmd = ret ;
if ( ! msg - > data )
msg - > size = dm_asprintf ( & ( msg - > data ) , " %s %s " , message_data . id , strerror ( - ret ) ) ;
2007-01-15 21:58:40 +03:00
_free_message ( & message_data ) ;
2005-12-02 18:39:16 +03:00
2005-04-28 02:32:00 +04:00
return ret ;
}
2005-04-28 18:02:30 +04:00
/* Only one caller at a time. */
2007-01-15 21:58:40 +03:00
static void _process_request ( struct dm_event_fifos * fifos )
2005-04-28 02:32:00 +04:00
{
2010-10-20 19:12:12 +04:00
int die = 0 ;
2012-06-21 23:19:28 +04:00
struct dm_event_daemon_message msg = { 0 } ;
2006-03-10 00:33:59 +03:00
/*
2007-01-12 00:54:53 +03:00
* Read the request from the client ( client_read , client_write
* give true on success and false on failure ) .
2006-03-10 00:33:59 +03:00
*/
2007-01-15 21:58:40 +03:00
if ( ! _client_read ( fifos , & msg ) )
2005-04-28 02:32:00 +04:00
return ;
2010-10-20 19:12:12 +04:00
if ( msg . cmd = = DM_EVENT_CMD_DIE )
die = 1 ;
2007-02-02 20:08:51 +03:00
/* _do_process_request fills in msg (if memory allows for
data , otherwise just cmd and size = 0 ) */
_do_process_request ( & msg ) ;
2005-04-28 02:32:00 +04:00
2007-01-15 21:58:40 +03:00
if ( ! _client_write ( fifos , & msg ) )
2005-04-28 02:32:00 +04:00
stack ;
2007-01-08 18:18:52 +03:00
2010-08-16 22:19:46 +04:00
dm_free ( msg . data ) ;
2012-03-03 02:57:25 +04:00
if ( die ) raise ( 9 ) ;
2005-04-28 02:32:00 +04:00
}
2010-10-26 12:54:37 +04:00
static void _process_initial_registrations ( void )
2010-10-20 19:12:12 +04:00
{
2013-06-30 18:04:14 +04:00
int i ;
2010-10-20 19:12:12 +04:00
char * reg ;
2013-06-30 18:04:14 +04:00
struct dm_event_daemon_message msg = { 0 } ;
2010-10-20 19:12:12 +04:00
2013-06-30 18:04:14 +04:00
for ( i = 0 ; ( reg = _initial_registrations [ i ] ) ; + + i ) {
2010-10-20 19:12:12 +04:00
msg . cmd = DM_EVENT_CMD_REGISTER_FOR_EVENT ;
2012-03-02 02:54:17 +04:00
if ( ( msg . size = strlen ( reg ) ) ) {
msg . data = reg ;
_do_process_request ( & msg ) ;
}
2010-10-20 19:12:12 +04:00
}
}
2007-01-15 21:58:40 +03:00
static void _cleanup_unused_threads ( void )
2006-01-27 23:50:01 +03:00
{
int ret ;
2008-11-04 01:14:30 +03:00
struct dm_list * l ;
2006-01-27 23:50:01 +03:00
struct thread_status * thread ;
2012-03-01 13:50:04 +04:00
int join_ret = 0 ;
2006-01-27 23:50:01 +03:00
2007-01-15 21:58:40 +03:00
_lock_mutex ( ) ;
2008-11-04 01:14:30 +03:00
while ( ( l = dm_list_first ( & _thread_registry_unused ) ) ) {
thread = dm_list_item ( l , struct thread_status ) ;
2007-01-16 01:37:40 +03:00
if ( thread - > processing )
break ; /* cleanup on the next round */
2007-01-08 18:18:52 +03:00
if ( thread - > status = = DM_THREAD_RUNNING ) {
thread - > status = DM_THREAD_SHUTDOWN ;
2007-01-16 01:37:40 +03:00
break ;
2007-01-19 20:22:17 +03:00
}
2007-01-16 01:37:40 +03:00
if ( thread - > status = = DM_THREAD_SHUTDOWN ) {
2007-01-08 18:18:52 +03:00
if ( ! thread - > events ) {
/* turn codes negative -- should we be returning this? */
2007-01-15 21:58:40 +03:00
ret = _terminate_thread ( thread ) ;
2007-01-08 18:18:52 +03:00
if ( ret = = ESRCH ) {
thread - > status = DM_THREAD_DONE ;
} else if ( ret ) {
2007-01-12 00:54:53 +03:00
syslog ( LOG_ERR ,
" Unable to terminate thread: %s \n " ,
2007-01-08 18:18:52 +03:00
strerror ( - ret ) ) ;
stack ;
}
2007-01-16 01:37:40 +03:00
break ;
2007-01-19 20:22:17 +03:00
}
2007-01-16 01:37:40 +03:00
2008-11-04 01:14:30 +03:00
dm_list_del ( l ) ;
2007-01-16 01:37:40 +03:00
syslog ( LOG_ERR ,
" thread can't be on unused list unless !thread->events " ) ;
thread - > status = DM_THREAD_RUNNING ;
LINK_THREAD ( thread ) ;
continue ;
}
if ( thread - > status = = DM_THREAD_DONE ) {
2008-11-04 01:14:30 +03:00
dm_list_del ( l ) ;
2012-03-01 13:50:04 +04:00
join_ret = pthread_join ( thread - > thread , NULL ) ;
2007-01-15 21:58:40 +03:00
_free_thread_status ( thread ) ;
2006-01-27 23:50:01 +03:00
}
}
2007-01-16 01:37:40 +03:00
2007-01-15 21:58:40 +03:00
_unlock_mutex ( ) ;
2012-03-01 13:50:04 +04:00
if ( join_ret )
syslog ( LOG_ERR , " Failed pthread_join: %s \n " , strerror ( join_ret ) ) ;
2006-01-27 23:50:01 +03:00
}
2010-07-09 19:34:40 +04:00
static void _sig_alarm ( int signum __attribute__ ( ( unused ) ) )
2005-04-28 02:32:00 +04:00
{
2005-12-02 18:39:16 +03:00
pthread_testcancel ( ) ;
}
2005-04-28 02:32:00 +04:00
2005-12-02 18:39:16 +03:00
/* Init thread signal handling. */
2007-01-15 21:58:40 +03:00
static void _init_thread_signals ( void )
2005-12-02 18:39:16 +03:00
{
2006-05-11 23:08:02 +04:00
sigset_t my_sigset ;
2012-06-21 23:19:28 +04:00
struct sigaction act = { . sa_handler = _sig_alarm } ;
2007-01-12 00:54:53 +03:00
2005-12-02 18:39:16 +03:00
sigaction ( SIGALRM , & act , NULL ) ;
2006-05-11 23:08:02 +04:00
sigfillset ( & my_sigset ) ;
2007-01-08 18:18:52 +03:00
/* These are used for exiting */
sigdelset ( & my_sigset , SIGTERM ) ;
sigdelset ( & my_sigset , SIGINT ) ;
sigdelset ( & my_sigset , SIGHUP ) ;
sigdelset ( & my_sigset , SIGQUIT ) ;
2006-05-11 23:08:02 +04:00
pthread_sigmask ( SIG_BLOCK , & my_sigset , NULL ) ;
2005-04-28 02:32:00 +04:00
}
2007-01-08 18:18:52 +03:00
/*
* exit_handler
* @ sig
*
* Set the global variable which the process should
* be watching to determine when to exit .
*/
2010-07-09 19:34:40 +04:00
static void _exit_handler ( int sig __attribute__ ( ( unused ) ) )
2005-04-28 02:32:00 +04:00
{
2013-06-30 17:53:42 +04:00
_exit_now = 1 ;
2005-12-02 18:39:16 +03:00
}
2005-04-28 02:32:00 +04:00
2013-11-13 17:56:29 +04:00
# ifdef __linux__
2011-07-28 17:03:37 +04:00
static int _set_oom_adj ( const char * oom_adj_path , int val )
{
FILE * fp ;
if ( ! ( fp = fopen ( oom_adj_path , " w " ) ) ) {
perror ( " oom_adj: fopen failed " ) ;
return 0 ;
}
fprintf ( fp , " %i " , val ) ;
if ( dm_fclose ( fp ) )
perror ( " oom_adj: fclose failed " ) ;
return 1 ;
}
2007-01-19 20:22:17 +03:00
/*
* Protection against OOM killer if kernel supports it
*/
2011-09-14 13:53:32 +04:00
static int _protect_against_oom_killer ( void )
2007-01-16 23:13:04 +03:00
{
2007-01-17 17:45:10 +03:00
struct stat st ;
2007-01-19 20:22:17 +03:00
if ( stat ( OOM_ADJ_FILE , & st ) = = - 1 ) {
2011-07-28 17:03:37 +04:00
if ( errno ! = ENOENT )
2007-01-19 20:22:17 +03:00
perror ( OOM_ADJ_FILE " : stat failed " ) ;
2007-01-16 23:13:04 +03:00
2011-07-28 17:03:37 +04:00
/* Try old oom_adj interface as a fallback */
if ( stat ( OOM_ADJ_FILE_OLD , & st ) = = - 1 ) {
if ( errno = = ENOENT )
perror ( OOM_ADJ_FILE_OLD " not found " ) ;
else
perror ( OOM_ADJ_FILE_OLD " : stat failed " ) ;
return 1 ;
}
2007-01-16 23:13:04 +03:00
2011-07-28 17:03:37 +04:00
return _set_oom_adj ( OOM_ADJ_FILE_OLD , OOM_DISABLE ) | |
_set_oom_adj ( OOM_ADJ_FILE_OLD , OOM_ADJUST_MIN ) ;
}
2007-01-16 23:13:04 +03:00
2011-07-28 17:03:37 +04:00
return _set_oom_adj ( OOM_ADJ_FILE , OOM_SCORE_ADJ_MIN ) ;
2007-01-16 23:13:04 +03:00
}
2012-02-27 15:13:51 +04:00
static int _handle_preloaded_fifo ( int fd , const char * path )
{
struct stat st_fd , st_path ;
int flags ;
if ( ( flags = fcntl ( fd , F_GETFD ) ) < 0 )
return 0 ;
if ( flags & FD_CLOEXEC )
return 0 ;
if ( fstat ( fd , & st_fd ) < 0 | | ! S_ISFIFO ( st_fd . st_mode ) )
return 0 ;
if ( stat ( path , & st_path ) < 0 | |
st_path . st_dev ! = st_fd . st_dev | |
st_path . st_ino ! = st_fd . st_ino )
return 0 ;
if ( fcntl ( fd , F_SETFD , flags | FD_CLOEXEC ) < 0 )
return 0 ;
return 1 ;
}
static int _systemd_handover ( struct dm_event_fifos * fifos )
{
const char * e ;
char * p ;
unsigned long env_pid , env_listen_fds ;
int r = 0 ;
2012-03-14 19:51:51 +04:00
/* SD_ACTIVATION must be set! */
if ( ! ( e = getenv ( SD_ACTIVATION_ENV_VAR_NAME ) ) | | strcmp ( e , " 1 " ) )
goto out ;
2012-02-27 15:13:51 +04:00
/* LISTEN_PID must be equal to our PID! */
if ( ! ( e = getenv ( SD_LISTEN_PID_ENV_VAR_NAME ) ) )
goto out ;
errno = 0 ;
env_pid = strtoul ( e , & p , 10 ) ;
if ( errno | | ! p | | * p | | env_pid < = 0 | |
getpid ( ) ! = ( pid_t ) env_pid )
goto out ;
/* LISTEN_FDS must be 2 and the fds must be FIFOSs! */
if ( ! ( e = getenv ( SD_LISTEN_FDS_ENV_VAR_NAME ) ) )
goto out ;
errno = 0 ;
env_listen_fds = strtoul ( e , & p , 10 ) ;
if ( errno | | ! p | | * p | | env_listen_fds ! = 2 )
goto out ;
/* Check and handle the FIFOs passed in */
r = ( _handle_preloaded_fifo ( SD_FD_FIFO_SERVER , DM_EVENT_FIFO_SERVER ) & &
_handle_preloaded_fifo ( SD_FD_FIFO_CLIENT , DM_EVENT_FIFO_CLIENT ) ) ;
if ( r ) {
fifos - > server = SD_FD_FIFO_SERVER ;
fifos - > server_path = DM_EVENT_FIFO_SERVER ;
fifos - > client = SD_FD_FIFO_CLIENT ;
fifos - > client_path = DM_EVENT_FIFO_CLIENT ;
}
out :
2012-03-14 19:51:51 +04:00
unsetenv ( SD_ACTIVATION_ENV_VAR_NAME ) ;
2012-02-27 15:13:51 +04:00
unsetenv ( SD_LISTEN_PID_ENV_VAR_NAME ) ;
unsetenv ( SD_LISTEN_FDS_ENV_VAR_NAME ) ;
return r ;
}
2007-01-22 18:03:57 +03:00
# endif
2007-01-16 23:13:04 +03:00
2012-03-15 12:45:55 +04:00
static void _remove_files_on_exit ( void )
2010-07-13 17:51:01 +04:00
{
2010-12-20 17:08:46 +03:00
if ( unlink ( DMEVENTD_PIDFILE ) )
perror ( DMEVENTD_PIDFILE " : unlink failed " ) ;
2012-03-15 12:45:55 +04:00
if ( ! _systemd_activation ) {
if ( unlink ( DM_EVENT_FIFO_CLIENT ) )
perror ( DM_EVENT_FIFO_CLIENT " : unlink failed " ) ;
if ( unlink ( DM_EVENT_FIFO_SERVER ) )
perror ( DM_EVENT_FIFO_SERVER " : unlink failed " ) ;
}
2010-07-13 17:51:01 +04:00
}
2007-01-15 21:58:40 +03:00
static void _daemonize ( void )
2005-04-28 02:32:00 +04:00
{
2007-01-19 20:22:17 +03:00
int child_status ;
2007-01-08 18:18:52 +03:00
int fd ;
2007-01-19 20:22:17 +03:00
pid_t pid ;
2007-01-08 18:18:52 +03:00
struct rlimit rlim ;
struct timeval tval ;
sigset_t my_sigset ;
sigemptyset ( & my_sigset ) ;
if ( sigprocmask ( SIG_SETMASK , & my_sigset , NULL ) < 0 ) {
2007-01-25 17:16:20 +03:00
fprintf ( stderr , " Unable to restore signals. \n " ) ;
2007-01-08 18:18:52 +03:00
exit ( EXIT_FAILURE ) ;
}
2007-01-15 21:58:40 +03:00
signal ( SIGTERM , & _exit_handler ) ;
2005-05-02 15:02:19 +04:00
2007-01-19 20:22:17 +03:00
switch ( pid = fork ( ) ) {
case - 1 :
perror ( " fork failed: " ) ;
2007-01-08 18:18:52 +03:00
exit ( EXIT_FAILURE ) ;
2005-04-28 02:32:00 +04:00
2007-01-19 20:22:17 +03:00
case 0 : /* Child */
break ;
default :
2007-01-08 18:18:52 +03:00
/* Wait for response from child */
2007-01-19 20:22:17 +03:00
while ( ! waitpid ( pid , & child_status , WNOHANG ) & & ! _exit_now ) {
2007-01-08 18:18:52 +03:00
tval . tv_sec = 0 ;
2007-01-12 00:54:53 +03:00
tval . tv_usec = 250000 ; /* .25 sec */
2007-01-08 18:18:52 +03:00
select ( 0 , NULL , NULL , NULL , & tval ) ;
}
2007-01-12 00:54:53 +03:00
if ( _exit_now ) /* Child has signaled it is ok - we can exit now */
2007-01-08 18:18:52 +03:00
exit ( EXIT_SUCCESS ) ;
/* Problem with child. Determine what it is by exit code */
2007-01-19 20:22:17 +03:00
switch ( WEXITSTATUS ( child_status ) ) {
2007-01-08 18:18:52 +03:00
case EXIT_DESC_CLOSE_FAILURE :
case EXIT_DESC_OPEN_FAILURE :
case EXIT_FIFO_FAILURE :
case EXIT_CHDIR_FAILURE :
default :
2007-01-19 21:08:36 +03:00
fprintf ( stderr , " Child exited with code %d \n " , WEXITSTATUS ( child_status ) ) ;
2007-01-08 18:18:52 +03:00
break ;
}
2007-01-19 21:08:36 +03:00
exit ( WEXITSTATUS ( child_status ) ) ;
2007-01-08 18:18:52 +03:00
}
if ( chdir ( " / " ) )
exit ( EXIT_CHDIR_FAILURE ) ;
if ( getrlimit ( RLIMIT_NOFILE , & rlim ) < 0 )
2007-01-12 00:54:53 +03:00
fd = 256 ; /* just have to guess */
2007-01-08 18:18:52 +03:00
else
fd = rlim . rlim_cur ;
2011-07-28 17:06:50 +04:00
for ( - - fd ; fd > = 0 ; fd - - ) {
2013-11-13 17:56:29 +04:00
# ifdef __linux__
2011-07-28 17:06:50 +04:00
/* Do not close fds preloaded by systemd! */
if ( _systemd_activation & &
( fd = = SD_FD_FIFO_SERVER | | fd = = SD_FD_FIFO_CLIENT ) )
continue ;
2012-02-27 15:13:51 +04:00
# endif
2012-03-02 01:12:37 +04:00
( void ) close ( fd ) ;
2011-07-28 17:06:50 +04:00
}
2007-01-08 18:18:52 +03:00
if ( ( open ( " /dev/null " , O_RDONLY ) < 0 ) | |
( open ( " /dev/null " , O_WRONLY ) < 0 ) | |
( open ( " /dev/null " , O_WRONLY ) < 0 ) )
exit ( EXIT_DESC_OPEN_FAILURE ) ;
2007-01-19 20:22:17 +03:00
setsid ( ) ;
}
2007-01-08 18:18:52 +03:00
2010-10-26 12:54:37 +04:00
static void restart ( void )
2010-10-20 19:12:12 +04:00
{
2013-06-15 00:00:44 +04:00
struct dm_event_fifos fifos = { 0 } ;
struct dm_event_daemon_message msg = { 0 } ;
2010-10-20 19:12:12 +04:00
int i , count = 0 ;
char * message ;
int length ;
2011-04-04 20:11:09 +04:00
int version ;
2010-10-20 19:12:12 +04:00
/* Get the list of registrations from the running daemon. */
if ( ! init_fifos ( & fifos ) ) {
2011-03-02 15:49:13 +03:00
fprintf ( stderr , " WARNING: Could not initiate communication with existing dmeventd. \n " ) ;
2012-03-14 15:16:00 +04:00
exit ( EXIT_FAILURE ) ;
2010-10-20 19:12:12 +04:00
}
2011-04-04 20:11:09 +04:00
if ( ! dm_event_get_version ( & fifos , & version ) ) {
2011-03-02 15:49:13 +03:00
fprintf ( stderr , " WARNING: Could not communicate with existing dmeventd. \n " ) ;
fini_fifos ( & fifos ) ;
2012-03-14 15:16:00 +04:00
exit ( EXIT_FAILURE ) ;
2010-10-20 19:12:12 +04:00
}
2011-04-04 20:11:09 +04:00
if ( version < 1 ) {
fprintf ( stderr , " WARNING: The running dmeventd instance is too old. \n "
" Protocol version %d (required: 1). Action cancelled. \n " ,
version ) ;
exit ( EXIT_FAILURE ) ;
}
2010-10-20 19:12:12 +04:00
if ( daemon_talk ( & fifos , & msg , DM_EVENT_CMD_GET_STATUS , " - " , " - " , 0 , 0 ) ) {
exit ( EXIT_FAILURE ) ;
}
message = msg . data ;
message = strchr ( message , ' ' ) ;
+ + message ;
length = strlen ( msg . data ) ;
for ( i = 0 ; i < length ; + + i ) {
if ( msg . data [ i ] = = ' ; ' ) {
msg . data [ i ] = 0 ;
+ + count ;
}
}
2012-02-13 15:18:45 +04:00
if ( ! ( _initial_registrations = dm_malloc ( sizeof ( char * ) * ( count + 1 ) ) ) ) {
fprintf ( stderr , " Memory allocation registration failed. \n " ) ;
exit ( EXIT_FAILURE ) ;
}
2010-10-20 19:12:12 +04:00
for ( i = 0 ; i < count ; + + i ) {
2012-02-13 15:18:45 +04:00
if ( ! ( _initial_registrations [ i ] = dm_strdup ( message ) ) ) {
fprintf ( stderr , " Memory allocation for message failed. \n " ) ;
exit ( EXIT_FAILURE ) ;
}
2010-10-20 19:12:12 +04:00
message + = strlen ( message ) + 1 ;
}
_initial_registrations [ count ] = 0 ;
if ( daemon_talk ( & fifos , & msg , DM_EVENT_CMD_DIE , " - " , " - " , 0 , 0 ) ) {
fprintf ( stderr , " Old dmeventd refused to die. \n " ) ;
exit ( EXIT_FAILURE ) ;
}
2012-06-09 00:52:02 +04:00
/*
* Wait for daemon to die , detected by sending further DIE messages
* until one fails .
*/
2012-04-24 16:25:12 +04:00
for ( i = 0 ; i < 10 ; + + i ) {
if ( daemon_talk ( & fifos , & msg , DM_EVENT_CMD_DIE , " - " , " - " , 0 , 0 ) )
break ; /* yep, it's dead probably */
usleep ( 10 ) ;
}
2010-10-20 19:12:12 +04:00
fini_fifos ( & fifos ) ;
}
2007-01-19 20:22:17 +03:00
static void usage ( char * prog , FILE * file )
{
2010-11-29 15:15:41 +03:00
fprintf ( file , " Usage: \n "
2011-12-22 19:50:38 +04:00
" %s [-d [-d [-d]]] [-f] [-h] [-R] [-V] [-?] \n \n "
2010-11-29 15:15:41 +03:00
" -d Log debug messages to syslog (-d, -dd, -ddd) \n "
2011-12-22 19:50:38 +04:00
" -f Don't fork, run in the foreground \n "
" -h -? Show this help information \n "
" -R Restart dmeventd \n "
" -V Show version of dmeventd \n \n " , prog ) ;
2007-01-08 18:18:52 +03:00
}
int main ( int argc , char * argv [ ] )
{
2007-01-19 20:22:17 +03:00
signed char opt ;
2013-09-05 15:14:19 +04:00
struct dm_event_fifos fifos = {
. client = - 1 ,
. server = - 1 ,
. client_path = DM_EVENT_FIFO_CLIENT ,
. server_path = DM_EVENT_FIFO_SERVER
} ;
2013-06-30 17:53:42 +04:00
int nothreads ;
2007-01-08 18:18:52 +03:00
//struct sys_log logdata = {DAEMON_NAME, LOG_DAEMON};
2007-01-19 20:22:17 +03:00
opterr = 0 ;
optind = 0 ;
2010-10-20 19:12:12 +04:00
while ( ( opt = getopt ( argc , argv , " ?fhVdR " ) ) ! = EOF ) {
2007-01-19 20:22:17 +03:00
switch ( opt ) {
case ' h ' :
usage ( argv [ 0 ] , stdout ) ;
2013-05-29 14:54:42 +04:00
exit ( EXIT_SUCCESS ) ;
2007-01-19 20:22:17 +03:00
case ' ? ' :
usage ( argv [ 0 ] , stderr ) ;
2013-05-29 14:54:42 +04:00
exit ( EXIT_SUCCESS ) ;
2010-10-20 19:12:12 +04:00
case ' R ' :
_restart + + ;
break ;
2010-05-14 18:56:39 +04:00
case ' f ' :
_foreground + + ;
break ;
2007-01-19 20:22:17 +03:00
case ' d ' :
2010-05-14 18:56:39 +04:00
dmeventd_debug + + ;
2007-01-19 20:22:17 +03:00
break ;
case ' V ' :
printf ( " dmeventd version: %s \n " , DM_LIB_VERSION ) ;
2013-05-29 14:54:42 +04:00
exit ( EXIT_SUCCESS ) ;
2007-01-19 20:22:17 +03:00
}
}
2010-03-30 18:40:30 +04:00
/*
* Switch to C locale to avoid reading large locale - archive file
* used by some glibc ( on some distributions it takes over 100 MB ) .
* Daemon currently needs to use mlockall ( ) .
*/
2013-01-22 14:25:02 +04:00
if ( setenv ( " LC_ALL " , " C " , 1 ) )
perror ( " Cannot set LC_ALL to C " ) ;
2010-03-30 18:40:30 +04:00
2010-10-20 19:12:12 +04:00
if ( _restart )
restart ( ) ;
2013-11-13 17:56:29 +04:00
# ifdef __linux__
2011-07-28 17:06:50 +04:00
_systemd_activation = _systemd_handover ( & fifos ) ;
2012-02-27 15:13:51 +04:00
# endif
2011-07-28 17:06:50 +04:00
2010-05-14 18:56:39 +04:00
if ( ! _foreground )
2007-01-19 20:22:17 +03:00
_daemonize ( ) ;
2005-04-28 02:32:00 +04:00
2007-01-19 20:22:17 +03:00
openlog ( " dmeventd " , LOG_PID , LOG_DAEMON ) ;
2010-12-13 13:43:56 +03:00
( void ) dm_prepare_selinux_context ( DMEVENTD_PIDFILE , S_IFREG ) ;
2010-07-13 17:51:01 +04:00
if ( dm_create_lockfile ( DMEVENTD_PIDFILE ) = = 0 )
exit ( EXIT_FAILURE ) ;
2012-03-15 12:45:55 +04:00
atexit ( _remove_files_on_exit ) ;
2010-12-13 13:43:56 +03:00
( void ) dm_prepare_selinux_context ( NULL , 0 ) ;
2007-01-19 20:22:17 +03:00
/* Set the rest of the signals to cause '_exit_now' to be set */
2012-03-15 12:45:55 +04:00
signal ( SIGTERM , & _exit_handler ) ;
2007-01-19 20:22:17 +03:00
signal ( SIGINT , & _exit_handler ) ;
signal ( SIGHUP , & _exit_handler ) ;
signal ( SIGQUIT , & _exit_handler ) ;
2013-11-13 17:56:29 +04:00
# ifdef __linux__
2011-07-28 17:06:50 +04:00
/* Systemd has adjusted oom killer for us already */
if ( ! _systemd_activation & & ! _protect_against_oom_killer ( ) )
2011-07-28 17:03:37 +04:00
syslog ( LOG_ERR , " Failed to protect against OOM killer " ) ;
2007-01-22 18:03:57 +03:00
# endif
2007-01-16 23:13:04 +03:00
2007-01-15 21:58:40 +03:00
_init_thread_signals ( ) ;
2005-04-29 02:47:52 +04:00
2005-12-02 18:39:16 +03:00
//multilog_clear_logging();
//multilog_add_type(std_syslog, &logdata);
//multilog_init_verbose(std_syslog, _LOG_DEBUG);
//multilog_async(1);
2005-04-29 02:47:52 +04:00
2007-01-08 18:35:08 +03:00
pthread_mutex_init ( & _global_mutex , NULL ) ;
2005-04-28 02:32:00 +04:00
2012-03-02 02:06:18 +04:00
if ( ! _systemd_activation & & ! _open_fifos ( & fifos ) )
2007-01-08 18:18:52 +03:00
exit ( EXIT_FIFO_FAILURE ) ;
2005-04-28 02:32:00 +04:00
2005-12-02 18:39:16 +03:00
/* Signal parent, letting them know we are ready to go. */
2010-05-14 18:56:39 +04:00
if ( ! _foreground )
2010-03-31 16:01:49 +04:00
kill ( getppid ( ) , SIGTERM ) ;
2007-01-19 20:22:17 +03:00
syslog ( LOG_NOTICE , " dmeventd ready for processing. " ) ;
2005-04-28 02:32:00 +04:00
2010-10-20 19:12:12 +04:00
if ( _initial_registrations )
_process_initial_registrations ( ) ;
2013-06-30 17:53:42 +04:00
for ( ; ; ) {
if ( _exit_now ) {
_exit_now = 0 ;
/*
* When ' _exit_now ' is set , signal has been received ,
* but can not simply exit unless all
* threads are done processing .
*/
_lock_mutex ( ) ;
nothreads = ( dm_list_empty ( & _thread_registry ) & &
dm_list_empty ( & _thread_registry_unused ) ) ;
_unlock_mutex ( ) ;
if ( nothreads )
break ;
syslog ( LOG_ERR , " There are still devices being monitored. " ) ;
syslog ( LOG_ERR , " Refusing to exit. " ) ;
}
2007-01-15 21:58:40 +03:00
_process_request ( & fifos ) ;
_cleanup_unused_threads ( ) ;
2007-01-08 18:18:52 +03:00
}
2006-01-27 23:50:01 +03:00
2007-01-15 21:58:40 +03:00
_exit_dm_lib ( ) ;
2006-01-27 23:50:01 +03:00
2007-01-08 18:35:08 +03:00
pthread_mutex_destroy ( & _global_mutex ) ;
2005-04-28 02:32:00 +04:00
2007-01-19 20:22:17 +03:00
syslog ( LOG_NOTICE , " dmeventd shutting down. " ) ;
2007-01-08 18:18:52 +03:00
closelog ( ) ;
2007-01-19 20:22:17 +03:00
2005-05-02 15:02:19 +04:00
exit ( EXIT_SUCCESS ) ;
2005-04-28 02:32:00 +04:00
}