mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Merge branch 'topic/robin/dynamic-plugins-2.3' into topic/robin/pktsrc
This commit is contained in:
commit
191b63e334
279 changed files with 10030 additions and 1258 deletions
|
@ -6,14 +6,85 @@
|
|||
#include <list>
|
||||
#include <string>
|
||||
|
||||
#include "Macros.h"
|
||||
#include "config.h"
|
||||
#include "analyzer/Component.h"
|
||||
#include "file_analysis/Component.h"
|
||||
#include "iosource/Component.h"
|
||||
#include "iosource/pktsrc/Component.h"
|
||||
|
||||
#define BRO_PLUGIN_API_VERSION 2
|
||||
|
||||
class ODesc;
|
||||
class Func;
|
||||
class Event;
|
||||
|
||||
namespace plugin {
|
||||
|
||||
class Manager;
|
||||
class Component;
|
||||
class Plugin;
|
||||
|
||||
/**
|
||||
* Hook types that a plugin may define. Each label maps to the corresponding
|
||||
* virtual method in \a Plugin.
|
||||
*/
|
||||
enum HookType {
|
||||
// Note: when changing this table, update hook_name() in Plugin.cc.
|
||||
HOOK_LOAD_FILE,
|
||||
HOOK_CALL_FUNCTION,
|
||||
HOOK_QUEUE_EVENT,
|
||||
HOOK_DRAIN_EVENTS,
|
||||
HOOK_UPDATE_NETWORK_TIME,
|
||||
|
||||
// Meta hooks.
|
||||
META_HOOK_PRE,
|
||||
META_HOOK_POST,
|
||||
|
||||
// End marker.
|
||||
NUM_HOOKS,
|
||||
};
|
||||
|
||||
/**
|
||||
* Converts a hook type into a readable hook name.
|
||||
*/
|
||||
extern const char* hook_name(HookType h);
|
||||
|
||||
/**
|
||||
* Helper class to capture a plugin's version. A boolean operator evaluates
|
||||
* to true if the version has been set.
|
||||
*/
|
||||
struct VersionNumber {
|
||||
int major; //< Major version number;
|
||||
int minor; //< Minor version number;
|
||||
|
||||
VersionNumber() { major = minor = -1; }
|
||||
|
||||
operator bool() const { return major >= 0 && minor >= 0; }
|
||||
};
|
||||
|
||||
/**
|
||||
* A class defining a plugin's static configuration parameters.
|
||||
*/
|
||||
class Configuration {
|
||||
public:
|
||||
std::string name; //< The plugin's name, including a namespace. Mandatory.
|
||||
std::string description; //< A short textual description of the plugin. Mandatory.
|
||||
VersionNumber version; //< THe plugin's version. Optional.
|
||||
|
||||
Configuration()
|
||||
{
|
||||
// Note we inline this method here so that when plugins create an instance,
|
||||
// *their* defaults will be used for the internal fields.
|
||||
name = "";
|
||||
description = "";
|
||||
api_version = BRO_PLUGIN_API_VERSION;
|
||||
}
|
||||
|
||||
private:
|
||||
friend class Plugin;
|
||||
int api_version; // Current BRO_PLUGIN_API_VERSION. Automatically set.
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* A class describing an item defined in \c *.bif file.
|
||||
|
@ -22,8 +93,6 @@ class BifItem {
|
|||
public:
|
||||
/**
|
||||
* Type of the item.
|
||||
*
|
||||
* The values here must match the integers that \c bifcl generated.
|
||||
*/
|
||||
enum Type { FUNCTION = 1, EVENT = 2, CONSTANT = 3, GLOBAL = 4, TYPE = 5 };
|
||||
|
||||
|
@ -55,7 +124,7 @@ public:
|
|||
/**
|
||||
* Returns the script-level ID as passed into the constructor.
|
||||
*/
|
||||
const char* GetID() const { return id; }
|
||||
const std::string& GetID() const { return id; }
|
||||
|
||||
/**
|
||||
* Returns the type as passed into the constructor.
|
||||
|
@ -63,31 +132,90 @@ public:
|
|||
Type GetType() const { return type; }
|
||||
|
||||
private:
|
||||
const char* id;
|
||||
std::string id;
|
||||
Type type;
|
||||
};
|
||||
|
||||
/**
|
||||
* A class encapsulating an event argument to then pass along with a meta hook.
|
||||
*/
|
||||
class HookArgument
|
||||
{
|
||||
public:
|
||||
enum Type {
|
||||
BOOL, DOUBLE, EVENT, FUNC, INT, STRING, VAL, VAL_LIST, VOID
|
||||
};
|
||||
|
||||
HookArgument() { type = VOID; }
|
||||
HookArgument(bool a) { type = BOOL; arg.bool_ = a; }
|
||||
HookArgument(double a) { type = DOUBLE; arg.double_ = a; }
|
||||
HookArgument(const Event* a) { type = EVENT; arg.event = a; }
|
||||
HookArgument(const Func* a) { type = FUNC; arg.func = a; }
|
||||
HookArgument(int a) { type = INT; arg.int_ = a; }
|
||||
HookArgument(const std::string& a) { type = STRING; arg_string = a; }
|
||||
HookArgument(const Val* a) { type = VAL; arg.val = a; }
|
||||
HookArgument(const val_list* a) { type = VAL_LIST; arg.vals = a; }
|
||||
|
||||
bool AsBool() const { assert(type == BOOL); return arg.bool_; }
|
||||
double AsDouble() const { assert(type == DOUBLE); return arg.double_; }
|
||||
const Event* AsEvent() const { assert(type == EVENT); return arg.event; }
|
||||
const Func* AsFunc() const { assert(type == FUNC); return arg.func; }
|
||||
double AsInt() const { assert(type == INT); return arg.int_; }
|
||||
const std::string& AsString() const { assert(type == STRING); return arg_string; }
|
||||
const Val* AsVal() const { assert(type == VAL); return arg.val; }
|
||||
const val_list* AsValList() const { assert(type == VAL_LIST); return arg.vals; }
|
||||
|
||||
Type GetType() const { return type; }
|
||||
void Describe(ODesc* d) const;
|
||||
|
||||
private:
|
||||
Type type;
|
||||
union {
|
||||
bool bool_;
|
||||
double double_;
|
||||
const Event* event;
|
||||
const Func* func;
|
||||
int int_;
|
||||
const Val* val;
|
||||
const val_list* vals;
|
||||
} arg;
|
||||
|
||||
std::string arg_string; // Outside union because it has dtor.
|
||||
};
|
||||
|
||||
typedef std::list<HookArgument> HookArgumentList;
|
||||
|
||||
/**
|
||||
* Base class for all plugins.
|
||||
*
|
||||
* Plugins encapsulate functionality that extends one of Bro's major
|
||||
* Plugins encapsulate functionality that extends one or more of Bro's major
|
||||
* subsystems, such as analysis of a specific protocol, or logging output in
|
||||
* a particular format. A plugin is a logical container that can provide one
|
||||
* or more \a components implementing functionality. For example, a RPC
|
||||
* plugin could provide analyzer for set of related protocols (RPC, NFS,
|
||||
* etc.), each of which would be a separate component. Likewise, a SQLite
|
||||
* plugin could provide both a writer and reader component. In addition to
|
||||
* components, a plugin can also provide of script-level elements defined in
|
||||
* *.bif files.
|
||||
* a particular format. A plugin acts a logical container that can provide a
|
||||
* set of different functionality. Specifically, it may:
|
||||
*
|
||||
* - Provide one or more \a components implementing functionality. For
|
||||
* example, a RPC plugin could provide analyzer for set of related
|
||||
* protocols (RPC, NFS, etc.), each of which would be a separate component.
|
||||
* Likewise, a SQLite plugin could provide both a writer and reader
|
||||
* component. In addition to components, a plugin can also provide of
|
||||
* script-level elements defined in *.bif files.
|
||||
*
|
||||
* - Provide BiF elements (functions, events, types, globals).
|
||||
*
|
||||
* - Provide hooks (aka callbacks) into Bro's core processing to inject
|
||||
* and/or alter functionality.
|
||||
*
|
||||
* Note that a plugin needs to explicitly register all the functionality it
|
||||
* provides. For components, it needs to call AddComponent(); for BiFs
|
||||
* AddBifItem(); and for hooks EnableHook() and then also implemennt the
|
||||
* corresponding virtual methods).
|
||||
*
|
||||
* Currently, all plugins are compiled statically into the final Bro binary.
|
||||
* Later, we will extend the infrastructure to also support plugins loaded
|
||||
* dynamically as shared libraries.
|
||||
*/
|
||||
class Plugin {
|
||||
public:
|
||||
typedef std::list<Component *> component_list;
|
||||
typedef std::list<BifItem> bif_item_list;
|
||||
typedef std::list<std::pair<HookType, int> > hook_list;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
@ -102,25 +230,37 @@ public:
|
|||
/**
|
||||
* Returns the name of the plugin.
|
||||
*/
|
||||
const char* Name() const;
|
||||
const std::string& Name() const;
|
||||
|
||||
/**
|
||||
* Returns a short textual description of the plugin, if provided.
|
||||
*/
|
||||
const char* Description() const;
|
||||
const std::string& Description() const;
|
||||
|
||||
/**
|
||||
* Returns the version of the plugin. Version are only meaningful for
|
||||
* dynamically compiled plugins; for statically compiled ones, this
|
||||
* will always return 0.
|
||||
*/
|
||||
int Version() const;
|
||||
VersionNumber Version() const;
|
||||
|
||||
/**
|
||||
* Returns true if this is a dynamically linked in plugin.
|
||||
*/
|
||||
bool DynamicPlugin() const;
|
||||
|
||||
/**
|
||||
* For dynamic plugins, returns the base directory from which it was
|
||||
* loaded. For static plugins, returns null.
|
||||
**/
|
||||
const std::string& PluginDirectory() const;
|
||||
|
||||
/**
|
||||
* For dynamic plugins, returns the full path to the shared library
|
||||
* from which it was loaded. For static plugins, returns null.
|
||||
**/
|
||||
const std::string& PluginPath() const;
|
||||
|
||||
/**
|
||||
* Returns the internal API version that this plugin relies on. Only
|
||||
* plugins that match Bro's current API version may be used. For
|
||||
|
@ -141,6 +281,17 @@ public:
|
|||
*/
|
||||
bif_item_list BifItems() const;
|
||||
|
||||
/**
|
||||
* A function called when the plugin is instantiated to query basic
|
||||
* configuration parameters.
|
||||
*
|
||||
* The plugin must override this method and return a suitably
|
||||
* initialized configuration object.
|
||||
*
|
||||
* @return A configuration describing the plugin.
|
||||
*/
|
||||
virtual Configuration Configure() { return Configuration(); } // TODO: Change to abstract method.
|
||||
|
||||
/**
|
||||
* First-stage initialization of the plugin called early during Bro's
|
||||
* startup, before scripts are parsed. This can be overridden by
|
||||
|
@ -159,8 +310,8 @@ public:
|
|||
|
||||
/**
|
||||
* Finalizer method that derived classes can override for performing
|
||||
* custom tasks at shutdown. Implementation must call the parent's
|
||||
* version.
|
||||
* custom tasks at shutdown. This can be overridden by derived
|
||||
* classes; they must however call the parent's implementation.
|
||||
*/
|
||||
virtual void Done();
|
||||
|
||||
|
@ -173,78 +324,245 @@ public:
|
|||
*/
|
||||
void Describe(ODesc* d) const;
|
||||
|
||||
/**
|
||||
* Registers an individual BiF that the plugin defines. The
|
||||
* information is for informational purpuses only and will show up in
|
||||
* the result of BifItems() as well as in the Describe() output.
|
||||
* Another way to add this information is via overriding
|
||||
* CustomBifItems().
|
||||
*
|
||||
* \todo Do we need both this an CustomBifItems()?
|
||||
*
|
||||
* @param name The name of the BiF item.
|
||||
*
|
||||
* @param type The item's type.
|
||||
*/
|
||||
void AddBifItem(const std::string& name, BifItem::Type type);
|
||||
|
||||
/**
|
||||
* Adds a file to the list of files that Bro loads at startup. This
|
||||
* will normally be a Bro script, but it passes through the plugin
|
||||
* system as well to load files with other extensions as supported by
|
||||
* any of the current plugins. In other words, calling this method is
|
||||
* similar to given a file on the command line. Note that the file
|
||||
* may be only queued for now, and actually loaded later.
|
||||
*
|
||||
* This method must not be called after InitPostScript().
|
||||
*
|
||||
* @param file The file to load. It will be searched along the standard paths.
|
||||
*
|
||||
* @return True if successful (which however may only mean
|
||||
* "successfully queued").
|
||||
*/
|
||||
bool LoadBroFile(const std::string& file);
|
||||
|
||||
protected:
|
||||
typedef std::list<std::pair<const char*, int> > bif_init_func_result;
|
||||
typedef bif_init_func_result (*bif_init_func)();
|
||||
friend class Manager;
|
||||
|
||||
/**
|
||||
* Sets the plugins name.
|
||||
* Intializes the plugin's configutation. Called by the manager
|
||||
* before anything else.
|
||||
*/
|
||||
void DoConfigure();
|
||||
|
||||
/**
|
||||
* Registers and activates a component.
|
||||
*
|
||||
* @param name The name. Makes a copy internally.
|
||||
*/
|
||||
void SetName(const char* name);
|
||||
|
||||
/**
|
||||
* Sets the plugin's textual description.
|
||||
*
|
||||
* @param name The description. Makes a copy internally.
|
||||
*/
|
||||
void SetDescription(const char* descr);
|
||||
|
||||
/**
|
||||
* Sets the plugin's version.
|
||||
*
|
||||
* @param version The version.
|
||||
*/
|
||||
void SetVersion(int version);
|
||||
|
||||
/**
|
||||
* Sets the API version the plugin requires.
|
||||
* BRO_PLUGIN_VERSION_BUILTIN indicates that it's a plugin linked in
|
||||
* statically.
|
||||
*/
|
||||
void SetAPIVersion(int version);
|
||||
|
||||
/**
|
||||
* Marks the plugin as statically or dynamically linked.
|
||||
*
|
||||
* @param dynamic True if this is a dynamically linked plugin.
|
||||
*/
|
||||
void SetDynamicPlugin(bool dynamic);
|
||||
|
||||
/**
|
||||
* Takes ownership.
|
||||
* @param c The component. The method takes ownership.
|
||||
*/
|
||||
void AddComponent(Component* c);
|
||||
|
||||
/**
|
||||
* Enables a hook. The corresponding virtual method will now be
|
||||
* called as Bro's processing proceeds. Note that enabling hooks can
|
||||
* have performance impaxct as many trigger frequently inside Bro's
|
||||
* main processing path.
|
||||
*
|
||||
* Note that hooks may be enabled/disabled dynamically at any time,
|
||||
* the output of Bro's \c -NN option will only reflect that state at
|
||||
* startup time; hence usually one should call this for a plugin's
|
||||
* hooks in either the plugin's ctor or in InitPreScript(). For
|
||||
* consistency with other parts of the API, there's a macro
|
||||
* PLUGIN_ENABLE_HOOK for use inside the ctor.
|
||||
*
|
||||
* @param hook The hook to enable.
|
||||
*
|
||||
* @param priority If multiple plugins enable the same hook, their
|
||||
* priorities determine the order in which they'll be executed, from
|
||||
* highest to lowest. If two plugins specify the same priority, order
|
||||
* is undefined.
|
||||
*/
|
||||
void EnableHook(HookType hook, int priority = 0);
|
||||
|
||||
/**
|
||||
* Disables a hook. Bro will no longer call the corresponding virtual
|
||||
* method.
|
||||
*
|
||||
* @param hook The hook to disable.
|
||||
*/
|
||||
void DisableHook(HookType hook);
|
||||
|
||||
/**
|
||||
* Returns a list of hooks that are currently enabled for the plugin,
|
||||
* along with their priorities.
|
||||
*/
|
||||
hook_list EnabledHooks() const;
|
||||
|
||||
/**
|
||||
* Virtual method that can be overriden by derived class to provide
|
||||
* information about further script-level elements that the plugins
|
||||
* information about further script-level elements that the plugin
|
||||
* provides on its own, i.e., outside of the standard mechanism
|
||||
* processing *.bif files automatically. The returned information is
|
||||
* for informational purpuses only and will show up in the result of
|
||||
* for informational purposes only and will show up in the result of
|
||||
* BifItems() as well as in the Describe() output.
|
||||
*
|
||||
* \todo Do we need both this an AddBifItem()?
|
||||
*/
|
||||
virtual bif_item_list CustomBifItems() const;
|
||||
|
||||
// Hook functions.
|
||||
|
||||
/**
|
||||
* Internal function adding an entry point for registering
|
||||
* auto-generated BiFs.
|
||||
* Hook into loading input files. This method will be called between
|
||||
* InitPreScript() and InitPostScript(), but with no further order or
|
||||
* timing guaranteed. It will be called once for each input file Bro
|
||||
* is about to load, either given on the command line or via @load
|
||||
* script directives. The hook can take over the file, in which case
|
||||
* Bro not further process it otherwise.
|
||||
*
|
||||
* @return 1 if the plugin took over the file and loaded it
|
||||
* successfully; 0 if the plugin took over the file but had trouble
|
||||
* loading it (Bro will abort in this case, the plugin should have
|
||||
* printed an error message); and -1 if the plugin wasn't interested
|
||||
* in the file at all.
|
||||
*/
|
||||
void AddBifInitFunction(bif_init_func c);
|
||||
virtual int HookLoadFile(const std::string& file);
|
||||
|
||||
/**
|
||||
* Hook into executing a script-level function/event/hook. Whenever
|
||||
* the script interpreter is about to execution a function, it first
|
||||
* gives all plugins with this hook enabled a chance to handle the
|
||||
* call (in the order of their priorities). A plugin can either just
|
||||
* inspect the call, or replace it (i.e., prevent the interpreter
|
||||
* from executing it). In the latter case it must provide a matching
|
||||
* return value.
|
||||
*
|
||||
* The default implementation does never handle the call in any way.
|
||||
*
|
||||
* @param func The function being called.
|
||||
*
|
||||
* @param args The function arguments. The method can modify the list
|
||||
* in place long as it ensures matching types and correct reference
|
||||
* counting.
|
||||
*
|
||||
* @return If the plugin handled the call, a +1 Val with the result
|
||||
* value to pass back to the interpreter (for void functions and
|
||||
* events any \a Val is fine; it will be ignored; best to use a \c
|
||||
* TYPE_ANY). If the plugin did not handle the call, it must return
|
||||
* null.
|
||||
*/
|
||||
virtual Val* HookCallFunction(const Func* func, val_list* args);
|
||||
|
||||
/**
|
||||
* Hook into raising events. Whenever the script interpreter is about
|
||||
* to queue an event for later execution, it first gives all plugins
|
||||
* with this hook enabled a chance to handle the queuing otherwise
|
||||
* (in the order of their priorities). A plugin can either just
|
||||
* inspect the event, or take it over (i.e., prevent the interpreter
|
||||
* from queuing it it).
|
||||
*
|
||||
* The default implementation does never handle the queuing in any
|
||||
* way.
|
||||
*
|
||||
* @param event The even to be queued. The method can modify it in in
|
||||
* place long as it ensures matching types and correct reference
|
||||
* counting.
|
||||
*
|
||||
* @return True if the plugin took charge of the event; in that case
|
||||
* it must have assumed ownership of the event and the intpreter will
|
||||
* not do anything further with it. False otherwise.
|
||||
*/
|
||||
virtual bool HookQueueEvent(Event* event);
|
||||
|
||||
/**
|
||||
* Hook intp event queue draining. This method will be called
|
||||
* whenever the event manager is draining its queue.
|
||||
*/
|
||||
virtual void HookDrainEvents();
|
||||
|
||||
/**
|
||||
* Hook for updates to network time. This method will be called
|
||||
* whenever network time is advanced.
|
||||
*
|
||||
* @param networkt_time The new network time.
|
||||
*/
|
||||
virtual void HookUpdateNetworkTime(double network_time);
|
||||
|
||||
// Meta hooks.
|
||||
|
||||
/**
|
||||
* A meta hook called just before another hook gets to execute.
|
||||
*
|
||||
* hook: The name of the hook about the execute. This will be the
|
||||
* same as the corresponding method name (e.g., \c HookQueueEvent).
|
||||
*
|
||||
* hook: The type of the hook about to execute.
|
||||
*
|
||||
* args: A list of the hooks arguments.
|
||||
*/
|
||||
virtual void MetaHookPre(HookType hook, const HookArgumentList& args);
|
||||
|
||||
/**
|
||||
* A meta hook called just after another hook gets to execute. This
|
||||
* will be called independent of whether there's an implementation
|
||||
* for the hook.
|
||||
*
|
||||
* hook: The type of the hook that finished executing.
|
||||
*
|
||||
* args: A list of the hooks arguments.
|
||||
*
|
||||
* result: The result that executing the hook returned. If there's no
|
||||
* implementation for the hook, this will be the default result. If
|
||||
* the hook doesn't yield a result, this will be of type VOID.
|
||||
*/
|
||||
virtual void MetaHookPost(HookType hook, const HookArgumentList& args, HookArgument result);
|
||||
|
||||
// Methods that are used internally primarily.
|
||||
|
||||
/**
|
||||
* Sets the base directory and shared library path from which the
|
||||
* plugin was loaded.
|
||||
*
|
||||
* This is used primarily internally; plugins will have there
|
||||
* location set automatically.
|
||||
*
|
||||
* @param dir The plugin directory. The functions makes an internal
|
||||
* copy of string.
|
||||
*
|
||||
* @param sopath The full path the shared library loaded. The
|
||||
* functions makes an internal copy of string.
|
||||
*/
|
||||
void SetPluginLocation(const std::string& dir, const std::string& sopath);
|
||||
|
||||
/**
|
||||
* Marks the plugin as dynamically loaded.
|
||||
*
|
||||
* This is used primarily internally; plugins will have this called
|
||||
* by the manager.
|
||||
*
|
||||
* @param is_dynamic True if it's a dynamically loaded module.
|
||||
*/
|
||||
void SetDynamic(bool is_dynamic);
|
||||
|
||||
private:
|
||||
typedef std::list<bif_init_func> bif_init_func_list;
|
||||
Configuration config;
|
||||
|
||||
const char* name;
|
||||
const char* description;
|
||||
int version;
|
||||
int api_version;
|
||||
bool dynamic;
|
||||
std::string base_dir; // The plugin's base directory.
|
||||
std::string sopath; // For dynamic plugins, the full path to the shared library.
|
||||
bool dynamic; // True if a dynamic plugin.
|
||||
|
||||
component_list components;
|
||||
bif_item_list bif_items;
|
||||
bif_init_func_list bif_inits;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue