Crinit -- Configurable Rootfs Init
|
Implementation of elos connection. More...
#include "elosdep.h"
#include <netinet/in.h>
#include <pthread.h>
#include <stdlib.h>
#include "common.h"
#include "elos-common.h"
#include "globopt.h"
#include "list.h"
#include "logio.h"
#include "task.h"
#include "taskdb.h"
Data Structures | |
struct | crinitElosdepFilterTask_t |
struct | crinitElosdepFilter_t |
struct | crinitElosEventThread_t |
Macros | |
#define | CRINIT_ELOS_IDENT "crinit" |
Identification string for crinit logging to syslog. | |
#define | CRINIT_ELOS_DEPENDENCY "@elos" |
Elos filter dependency prefix. | |
Typedefs | |
typedef struct crinitElosdepFilterTask_t | crinitElosdepFilterTask_t |
typedef struct crinitElosdepFilter_t | crinitElosdepFilter_t |
Variables | |
static bool | crinitElosActivated = false |
Indicates if the elos connection and handler thread has been set up. | |
static pthread_mutex_t | crinitElosActivatedLock = PTHREAD_MUTEX_INITIALIZER |
Mutex to guard crinitElosActivated. | |
static struct crinitElosEventThread_t | crinitTinfo |
static crinitList_t | crinitFilterTasks = CRINIT_LIST_INIT(crinitFilterTasks) |
static pthread_mutex_t | crinitElosdepFilterTaskLock = PTHREAD_MUTEX_INITIALIZER |
static pthread_mutex_t | crinitElosdepSessionLock = PTHREAD_MUTEX_INITIALIZER |
Implementation of elos connection.
#define CRINIT_ELOS_DEPENDENCY "@elos" |
Elos filter dependency prefix.
#define CRINIT_ELOS_IDENT "crinit" |
Identification string for crinit logging to syslog.
typedef struct crinitElosdepFilter_t crinitElosdepFilter_t |
Definition of a single filter related to a task.
typedef struct crinitElosdepFilterTask_t crinitElosdepFilterTask_t |
Task that has unfulfilled filter dependencies.
int crinitElosdepActivate | ( | struct crinitTaskDB_t * | taskDb, |
bool | e | ||
) |
Specify if Elos should be used.
By default, Crinit will not connect to elos. If this is set to true
, however, Crinit will connect to the elos daemon.
taskDb | Task database to be informed if event occurs. |
e | true if elos should be used, false otherwise. |
|
static |
|
static |
Frees the heap allocated members of the filter.
filter | Filter to be destroyed. |
|
static |
Create and register a new elos event filter handle from a given environment set.
task | Task to create elos filter for. |
name | Name of the filter to register. |
filter | Pointer to the created filter. |
|
static |
Free the complete list of subscribed filters.
filterTask | The task owning this filter list. |
|
static |
Subscribes all filters currently registered with elosdep.
|
static |
Extracts all filter defines for each task and creates a local elos filter handle, which will be used to subscribe for this filter.
|
static |
Inserts an elos filter into the list of filter subscriptions.
filterTask | Task to register the filter for. |
filter | Filter to be registered. |
|
inlinestatic |
Subscribes the filter with elos.
filter | The filter to subscribe. |
|
static |
Frees the heap allocated members of the filter task.
filterTask | Filter task to be destroyed. |
|
static |
Free the complete list of filter tasks.
|
static |
Removes the given filter from the filter list.
filterTask | Task to remove the filter from. |
filter | Filter to be destroyed. |
|
inlinestatic |
Unsubscribes the filter from elos.
filter | The filter to unsubscribe. |
|
static |
Initializes the vtable managed within the elosdep thread context.
taskDb | Pointer to the crinit task database |
tinfo | Elosdep thread context |
int crinitElosdepTaskAdded | ( | struct crinitTask_t * | task | ) |
Hook which will be invoked if a new task has been added and will register the elos filters for this task.
task | Task that has been added to elos. |
|
static |
Indicates if the elos connection and handler thread has been set up.
|
static |
Mutex to guard crinitElosActivated.
|
static |
Mutex synchronizing elos filter task registration
|
static |
Mutex synchronizing elos connection
|
static |
List of tasks with elos filter dependencies
|
static |