* 'rename' of https://github.com/bhaskarbhar/zeek:
  Update zeek.bif
  Update init-bare.zeek
  Added Baseline
  Renamed
This commit is contained in:
Arne Welzel 2025-06-25 19:27:01 +02:00
commit 771c37b6b2
8 changed files with 22 additions and 11 deletions

11
CHANGES
View file

@ -1,3 +1,14 @@
8.0.0-dev.535 | 2025-06-25 19:27:01 +0200
* Update zeek.bif (bhaskarbhar)
* Update init-bare.zeek (bhaskarbhar)
* Remove `list` from Zeek grammar (Evan Typanski, Corelight)
Using it would make Zeek segfault (at least in locals). It has been an
error for 15 years.
8.0.0-dev.530 | 2025-06-25 10:35:53 -0400
* Remove `list` from Zeek grammar (Evan Typanski, Corelight)

View file

@ -1 +1 @@
8.0.0-dev.530
8.0.0-dev.535

View file

@ -375,15 +375,15 @@ type endpoint_stats: record {
## Record containing information about a tag.
##
## .. zeek:see:: get_tags_by_category
type tag_component: record {
## .. zeek:see:: get_plugin_components
type PluginComponent: record {
name: string;
canonical_name: string;
tag: string;
enabled: bool;
};
type tag_component_vec : vector of tag_component;
type plugin_component_vec : vector of PluginComponent;
## Arguments given to Zeek from the command line. In order to use this, Zeek
## must use a ``--`` command line argument immediately followed by a script

View file

@ -317,7 +317,7 @@ static std::unordered_map<std::string, unsigned int> func_attrs = {
{"global_ids", ATTR_IDEMPOTENT},
{"global_options", ATTR_IDEMPOTENT},
{"gsub", ATTR_FOLDABLE},
{"get_tags_by_category", ATTR_NO_ZEEK_SIDE_EFFECTS},
{"get_plugin_components", ATTR_NO_ZEEK_SIDE_EFFECTS},
{"has_event_group", ATTR_NO_ZEEK_SIDE_EFFECTS},
{"has_module_events", ATTR_NO_ZEEK_SIDE_EFFECTS},
{"have_spicy", ATTR_IDEMPOTENT},

View file

@ -5653,7 +5653,7 @@ function find_in_zeekpath%(p: string%): string
##
## Returns: A vector of records containing the tags of all plugin components
## that belong to the specified category.
function get_tags_by_category%(category: string%): tag_component_vec
function get_plugin_components%(category: string%): plugin_component_vec
%{
std::string cat = category->CheckString();
auto type = CategoryStringToEnum(cat);
@ -5664,12 +5664,12 @@ function get_tags_by_category%(category: string%): tag_component_vec
return nullptr;
}
static auto vec_type = zeek::id::find_type<zeek::VectorType>("tag_component_vec");
static auto rec_type = zeek::id::find_type<zeek::RecordType>("tag_component");
static auto vec_type = zeek::id::find_type<zeek::VectorType>("plugin_component_vec");
static auto rec_type = zeek::id::find_type<zeek::RecordType>("PluginComponent");
if ( ! vec_type || ! rec_type )
{
reporter->Error("Required types not found (tag_component or component_vec)");
reporter->Error("Required types not found (PluginComponent or plugin_component_vec)");
return nullptr;
}

View file

@ -4,7 +4,7 @@
event zeek_init()
{
local result = get_tags_by_category("ANALYZER");
local result = get_plugin_components("ANALYZER");
for (i in result)
{

View file

@ -345,7 +345,7 @@ global known_BiFs = set(
"get_reporter_stats",
"get_resp_seq",
"get_script_comments",
"get_tags_by_category",
"get_plugin_components",
"get_thread_stats",
"get_timer_stats",
"getenv",