Header file dealing with the corsaro plugin manager. More...
Go to the source code of this file.
Data Structures | |
struct | corsaro_plugin |
An corsaro packet processing plugin. More... | |
struct | corsaro_plugin_manager |
Holds the metadata for the plugin manager. More... | |
Macros | |
#define | CORSARO_PLUGIN_GENERATE_PROTOS(plugin) |
Convenience macro that defines all the function prototypes for the corsaro plugin API. More... | |
#define | CORSARO_PLUGIN_GENERATE_PTRS(plugin) |
Convenience macro that defines all the function pointers for the corsaro plugin API. More... | |
#define | CORSARO_PLUGIN_GENERATE_TAIL |
Convenience macro that defines all the 'remaining' blank fields in a corsaro plugin object. More... | |
#define | CORSARO_PLUGIN_STATE(corsaro, type, id) |
Convenience macro to cast the state pointer in the plugin. More... | |
#define | CORSARO_PLUGIN_PLUGIN(corsaro, id) ((corsaro)->plugin_manager->plugins[(id)-1]) |
Convenience macro to get this plugin from corsaro. More... | |
Typedefs | |
typedef enum corsaro_plugin_id | corsaro_plugin_id_t |
A unique identifier for a plugin, used when writing binary data. More... | |
typedef struct corsaro_plugin | corsaro_plugin_t |
An corsaro packet processing plugin. More... | |
typedef struct corsaro_plugin_manager | corsaro_plugin_manager_t |
Holds the metadata for the plugin manager. More... | |
Enumerations | |
enum | corsaro_plugin_id { CORSARO_PLUGIN_ID_PCAP = 1, CORSARO_PLUGIN_ID_ANON = 2, CORSARO_PLUGIN_ID_PFX2AS = 3, CORSARO_PLUGIN_ID_FILTERGEO = 6, CORSARO_PLUGIN_ID_FILTERPFX = 7, CORSARO_PLUGIN_ID_GEODB = 9, CORSARO_PLUGIN_ID_FLOWTUPLE = 20, CORSARO_PLUGIN_ID_DOS = 30, CORSARO_PLUGIN_ID_SMEE = 80, CORSARO_PLUGIN_ID_MAX = CORSARO_PLUGIN_ID_SMEE } |
A unique identifier for a plugin, used when writing binary data. More... | |
Functions | |
corsaro_plugin_manager_t * | corsaro_plugin_manager_init () |
Initialize the plugin manager and all in-use plugins. More... | |
int | corsaro_plugin_manager_start (corsaro_plugin_manager_t *manager) |
Start the plugin manager. More... | |
void | corsaro_plugin_manager_free (corsaro_plugin_manager_t *manager) |
Free the plugin manager and all in-use plugins. More... | |
corsaro_plugin_t * | corsaro_plugin_get_by_id (corsaro_plugin_manager_t *manager, int id) |
Attempt to retrieve a plugin by id. More... | |
corsaro_plugin_t * | corsaro_plugin_get_by_magic (corsaro_plugin_manager_t *manager, uint32_t id) |
Attempt to retrieve a plugin by magic number (not by using magic) More... | |
corsaro_plugin_t * | corsaro_plugin_get_by_name (corsaro_plugin_manager_t *manager, const char *name) |
Attempt to retrieve a plugin by name. More... | |
corsaro_plugin_t * | corsaro_plugin_next (corsaro_plugin_manager_t *manager, corsaro_plugin_t *plugin) |
Retrieve the next plugin in the list. More... | |
void | corsaro_plugin_register_state (corsaro_plugin_manager_t *manager, corsaro_plugin_t *plugin, void *state) |
Register the state for a plugin. More... | |
void | corsaro_plugin_free_state (corsaro_plugin_manager_t *manager, corsaro_plugin_t *plugin) |
Free the state for a plugin. More... | |
int | corsaro_plugin_probe_filename (const char *fname, corsaro_plugin_t *plugin) |
Check a filename to see if it contains a plugin's name. More... | |
const char * | corsaro_plugin_get_name_by_id (corsaro_plugin_manager_t *manager, int id) |
Get the name of a plugin given it's ID number. More... | |
const char * | corsaro_plugin_get_name_by_magic (corsaro_plugin_manager_t *manager, uint32_t magic) |
Get the name of a plugin given it's magic number. More... | |
int | corsaro_plugin_is_enabled (corsaro_plugin_manager_t *manager, corsaro_plugin_t *plugin) |
Determine whether this plugin is enabled for use. More... | |
int | corsaro_plugin_enable_plugin (corsaro_plugin_manager_t *manager, const char *plugin_name, const char *plugin_args) |
Attempt to enable a plugin by its name. More... | |
Header file dealing with the corsaro plugin manager.
Definition in file corsaro_plugin.h.
#define CORSARO_PLUGIN_GENERATE_PROTOS | ( | plugin | ) |
Convenience macro that defines all the function prototypes for the corsaro plugin API.
Definition at line 44 of file corsaro_plugin.h.
#define CORSARO_PLUGIN_GENERATE_PTRS | ( | plugin | ) |
Convenience macro that defines all the function pointers for the corsaro plugin API.
If the FlowTuple plugin is enabled, we by default set the pointer to NULL and expect plugins which support this feature to set this manually
Definition at line 117 of file corsaro_plugin.h.
Referenced by KHASH_INIT().
#define CORSARO_PLUGIN_GENERATE_TAIL |
Convenience macro that defines all the 'remaining' blank fields in a corsaro plugin object.
This becomes useful if we add more fields to the end of the plugin structure, because each plugin does not need to be updated in order to correctly 'zero' these fields.
Definition at line 138 of file corsaro_plugin.h.
Referenced by KHASH_INIT().
Convenience macro to get this plugin from corsaro.
Plugins should use extend this macro to provide access to themself
Definition at line 155 of file corsaro_plugin.h.
#define CORSARO_PLUGIN_STATE | ( | corsaro, | |
type, | |||
id | |||
) |
Convenience macro to cast the state pointer in the plugin.
Plugins should use extend this macro to provide access to their state
Definition at line 147 of file corsaro_plugin.h.
typedef enum corsaro_plugin_id corsaro_plugin_id_t |
A unique identifier for a plugin, used when writing binary data.
typedef struct corsaro_plugin_manager corsaro_plugin_manager_t |
Holds the metadata for the plugin manager.
This allows both corsaro_t and corsaro_in_t objects to use the plugin infrastructure without needing to pass references to themselves
typedef struct corsaro_plugin corsaro_plugin_t |
An corsaro packet processing plugin.
enum corsaro_plugin_id |
A unique identifier for a plugin, used when writing binary data.
Definition at line 166 of file corsaro_plugin.h.
int corsaro_plugin_enable_plugin | ( | corsaro_plugin_manager_t * | manager, |
const char * | plugin_name, | ||
const char * | plugin_args | ||
) |
Attempt to enable a plugin by its name.
manager | The plugin manager associated with the state |
plugin_name | The name of the plugin to enable |
plugin_args | The arguments to pass to the plugin (for config) |
See corsaro_enable_plugin for more details.
Definition at line 532 of file corsaro_plugin.c.
References corsaro_plugin::argc, corsaro_plugin::argv, corsaro_log(), corsaro_log_file(), corsaro_plugin_get_by_name(), corsaro_plugin::id, corsaro_plugin_manager::plugins_enabled, and corsaro_plugin_manager::plugins_enabled_cnt.
Referenced by corsaro_enable_plugin().
void corsaro_plugin_free_state | ( | corsaro_plugin_manager_t * | manager, |
corsaro_plugin_t * | plugin | ||
) |
Free the state for a plugin.
manager | The plugin manager associated with the state |
plugin | The plugin to free state for |
Definition at line 465 of file corsaro_plugin.c.
References corsaro_plugin::id, and corsaro_plugin_manager::plugins_state.
Referenced by corsaro_dos_close_input(), corsaro_dos_close_output(), corsaro_filtergeo_close_output(), corsaro_filterpfx_close_output(), corsaro_flowtuple_close_input(), corsaro_flowtuple_close_output(), corsaro_geodb_close_output(), corsaro_pcap_close_output(), corsaro_pfx2as_close_output(), and corsaro_smee_close_output().
corsaro_plugin_t* corsaro_plugin_get_by_id | ( | corsaro_plugin_manager_t * | manager, |
int | id | ||
) |
Attempt to retrieve a plugin by id.
manager | The plugin manager to search with |
id | The id of the plugin to get |
Definition at line 395 of file corsaro_plugin.c.
References CORSARO_PLUGIN_ID_MAX, and corsaro_plugin_manager::plugins.
Referenced by corsaro_plugin_get_name_by_id().
corsaro_plugin_t* corsaro_plugin_get_by_magic | ( | corsaro_plugin_manager_t * | manager, |
uint32_t | id | ||
) |
Attempt to retrieve a plugin by magic number (not by using magic)
manager | The plugin manager to search with |
id | The magic number of the plugin to get |
Definition at line 407 of file corsaro_plugin.c.
References corsaro_plugin_next(), and corsaro_plugin::magic.
Referenced by corsaro_io_print_record(), corsaro_io_write_record(), corsaro_plugin_get_name_by_magic(), and read_record().
corsaro_plugin_t* corsaro_plugin_get_by_name | ( | corsaro_plugin_manager_t * | manager, |
const char * | name | ||
) |
Attempt to retrieve a plugin by name.
manager | The plugin manager to search with |
name | The name of the plugin to get |
Definition at line 422 of file corsaro_plugin.c.
References corsaro_plugin_next(), and corsaro_plugin::name.
Referenced by corsaro_plugin_enable_plugin().
const char* corsaro_plugin_get_name_by_id | ( | corsaro_plugin_manager_t * | manager, |
int | id | ||
) |
Get the name of a plugin given it's ID number.
manager | The plugin manager associated with the state |
id | The plugin id to retrieve the name for |
Definition at line 487 of file corsaro_plugin.c.
References corsaro_plugin_get_by_id(), and corsaro_plugin::name.
const char* corsaro_plugin_get_name_by_magic | ( | corsaro_plugin_manager_t * | manager, |
uint32_t | magic | ||
) |
Get the name of a plugin given it's magic number.
manager | The plugin manager associated with the state |
magic | The plugin magic number to retrieve the name for |
Definition at line 498 of file corsaro_plugin.c.
References corsaro_plugin_get_by_magic(), and corsaro_plugin::name.
Referenced by corsaro_io_print_header().
int corsaro_plugin_is_enabled | ( | corsaro_plugin_manager_t * | manager, |
corsaro_plugin_t * | plugin | ||
) |
Determine whether this plugin is enabled for use.
manager | The plugin manager associated with the state |
plugin | The plugin to check the status of |
A plugin is enabled either explicitly by the corsaro_enable_plugin() function, or implicitly because all plugins are enabled.
Definition at line 509 of file corsaro_plugin.c.
References corsaro_plugin::id, corsaro_plugin_manager::plugins_enabled, and corsaro_plugin_manager::plugins_enabled_cnt.
void corsaro_plugin_manager_free | ( | corsaro_plugin_manager_t * | manager | ) |
Free the plugin manager and all in-use plugins.
manager | The plugin manager to free |
Definition at line 341 of file corsaro_plugin.c.
References corsaro_plugin::argc, corsaro_plugin::argv, CORSARO_PLUGIN_ID_MAX, corsaro_plugin_manager::first_plugin, corsaro_plugin_manager::plugins, corsaro_plugin_manager::plugins_cnt, corsaro_plugin_manager::plugins_enabled, and corsaro_plugin_manager::plugins_state.
Referenced by corsaro_free(), corsaro_get_plugin_names(), and corsaro_in_free().
corsaro_plugin_manager_t* corsaro_plugin_manager_init | ( | ) |
Initialize the plugin manager and all in-use plugins.
Referenced by corsaro_get_plugin_names(), corsaro_in_init(), and corsaro_init().
int corsaro_plugin_manager_start | ( | corsaro_plugin_manager_t * | manager | ) |
Start the plugin manager.
manager | The manager to start |
Definition at line 296 of file corsaro_plugin.c.
References corsaro_plugin_manager::first_plugin, corsaro_plugin::next, corsaro_plugin_manager::plugins, corsaro_plugin_manager::plugins_enabled, and corsaro_plugin_manager::plugins_enabled_cnt.
Referenced by corsaro_start_output().
corsaro_plugin_t* corsaro_plugin_next | ( | corsaro_plugin_manager_t * | manager, |
corsaro_plugin_t * | plugin | ||
) |
Retrieve the next plugin in the list.
manager | The plugin manager to get the next plugin for |
plugin | The current plugin |
Definition at line 437 of file corsaro_plugin.c.
References corsaro_plugin_manager::first_plugin, corsaro_plugin::next, corsaro_plugin_manager::plugins, and corsaro_plugin_manager::plugins_cnt.
Referenced by corsaro_free(), corsaro_get_plugin_names(), corsaro_plugin_get_by_magic(), corsaro_plugin_get_by_name(), corsaro_start_input(), corsaro_start_output(), end_interval(), process_packet(), and start_interval().
int corsaro_plugin_probe_filename | ( | const char * | fname, |
corsaro_plugin_t * | plugin | ||
) |
Check a filename to see if it contains a plugin's name.
fname | The file name to check |
plugin | The plugin to check for |
Definition at line 475 of file corsaro_plugin.c.
References corsaro_plugin::name.
Referenced by corsaro_dos_probe_filename(), corsaro_flowtuple_probe_filename(), corsaro_pfx2as_probe_filename(), and corsaro_smee_probe_filename().
void corsaro_plugin_register_state | ( | corsaro_plugin_manager_t * | manager, |
corsaro_plugin_t * | plugin, | ||
void * | state | ||
) |
Register the state for a plugin.
manager | The plugin manager to register state with |
plugin | The plugin to register state for |
state | A pointer to the state object to register |
Definition at line 454 of file corsaro_plugin.c.
References corsaro_plugin::id, and corsaro_plugin_manager::plugins_state.
Referenced by corsaro_anon_init_output(), corsaro_dos_init_input(), corsaro_dos_init_output(), corsaro_filtergeo_init_output(), corsaro_filterpfx_init_output(), corsaro_flowtuple_init_input(), corsaro_flowtuple_init_output(), corsaro_geodb_init_output(), corsaro_pcap_init_output(), corsaro_pfx2as_init_output(), and corsaro_smee_init_output().