zeek/testing/btest/scripts/base/frameworks
Johanna Amann db6f028003 Add config framework.
The configuration framework consists of three mostly distinct parts:

* option variables
* the config reader
* the script level framework

I will describe the three elements in the following.

Internally, this commit also performs a range of changes to the Input
manager; it marks a lot of functions as const and introduces a new
ValueToVal method (which could in theory replace the already existing
one - it is a bit more powerful).

This also changes SerialTypes to have a subtype for Values, just as
Fields already have it; I think it was mostly an oversight that this was
not introduced from the beginning. This should not necessitate any code
changes for people already using SerialTypes.

option variable
===============

The option keyword allows variables to be specified as run-tine options.
Such variables cannot be changed using normal assignments. Instead, they
can be changed using Option::set. It is possible to "subscribe" to
options and be notified when an option value changes.

Change handlers can also change values before they are applied; this
gives them the opportunity to reject changes. Priorities can be
specified if there are several handlers for one option.

Example script:

option testbool: bool = T;

function option_changed(ID: string, new_value: bool): bool
  {
  print fmt("Value of %s changed from %s to %s", ID, testbool, new_value);
  return new_value;
  }

event bro_init()
  {
  print "Old value", testbool;
  Option::set_change_handler("testbool", option_changed);
  Option::set("testbool", F);
  print "New value", testbool;
  }

config reader
=============

The config reader provides a way to read configuration files back into
Bro. Most importantly it automatically converts values to the correct
types. This is important because it is at least inconvenient (and
sometimes near impossible) to perform the necessary type conversions in
Bro scripts themselves. This is especially true for sets/vectors.

Configuration generally look like this:

[option name][tab/spaces][new variable value]

so, for example:

testaddr 2607:f8b0:4005:801::200e
testinterval 60
testtime 1507321987
test_set a	b	c	d	erdbeerschnitzel

The reader uses the option name to look up the type that variable has in
the Bro core and automatically converts the value to the correct type.

Example script use:

type Idx: record {
  option_name: string;
};

type Val: record {
  option_val: string;
};

global currconfig: table[string] of string = table();

event InputConfig::new_value(name: string, source: string, id: string, value: any)
  {
  print id, value;
  }

event bro_init()
  {
  Input::add_table([$reader=Input::READER_CONFIG, $source="../configfile", $name="configuration", $idx=Idx, $val=Val, $destination=currconfig, $want_record=F]);
  }

Script-level config framework
=============================

The script-level framework ties these two features together and makes
them a bit more convenient to use. Configuration files can simply be
specified by placing them into Config::config_files. The framework also
creates a config.log that shows all value changes that took place.

Usage example:

redef Config::config_files += {configfile};

export {
  option testbool : bool = F;
}

The file is now monitored for changes; when a change occurs the
respective option values are automatically updated and the value change
is written to config.log.
2017-11-29 13:46:59 -08:00
..
analyzer SSH: Update baselines 2015-03-18 13:02:33 -04:00
cluster Add a test for starting a cluster with a logger node 2016-07-15 15:23:49 -05:00
communication Drain events before terminating log/thread managers. 2012-06-28 12:42:32 -05:00
config Add config framework. 2017-11-29 13:46:59 -08:00
control Add sleeps to configuration_update test for better reliability. 2012-09-05 16:20:34 -05:00
file-analysis Adding test with command line that used to trigger a crash. 2017-01-31 14:52:37 -08:00
input Add config framework. 2017-11-29 13:46:59 -08:00
intel Remove loading of listen.bro in tests that do not need it 2017-05-24 21:28:56 -05:00
logging Add more test cases to ascii-double.bro 2017-11-02 16:16:06 -05:00
netcontrol Fix a netcontrol test that often fails 2017-08-07 16:26:17 -05:00
notice Updates for the notices framework. 2013-02-11 14:36:14 -05:00
openflow Fix Bro and unit tests when broker is not enabled 2016-05-10 06:24:35 -05:00
packet-filter Add a Reporter::fatal BIF. 2011-08-25 13:13:39 -05:00
reporter Updating baselines. 2012-08-10 13:25:18 -07:00
software Several fixes and improvements for software version parsing. 2017-07-13 02:22:03 -04:00
sumstats define empty request_key method for sumstats in cluster mode. 2014-04-18 16:29:51 -07:00