mirror of
https://github.com/falcosecurity/falco.git
synced 2025-07-05 10:56:47 +00:00
update(userspace/engine): use sinsp api to access event table information
Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
This commit is contained in:
parent
7da3041cb3
commit
4cb556aed2
@ -19,8 +19,6 @@ limitations under the License.
|
|||||||
|
|
||||||
using namespace libsinsp::filter;
|
using namespace libsinsp::filter;
|
||||||
|
|
||||||
extern sinsp_evttables g_infotables;
|
|
||||||
|
|
||||||
static bool is_evttype_operator(const std::string& op)
|
static bool is_evttype_operator(const std::string& op)
|
||||||
{
|
{
|
||||||
return op == "==" || op == "=" || op == "!=" || op == "in";
|
return op == "==" || op == "=" || op == "!=" || op == "in";
|
||||||
@ -32,7 +30,6 @@ size_t falco_event_types::get_ppm_event_max()
|
|||||||
return PPM_EVENT_MAX;
|
return PPM_EVENT_MAX;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void filter_evttype_resolver::visitor::inversion(falco_event_types& types)
|
void filter_evttype_resolver::visitor::inversion(falco_event_types& types)
|
||||||
{
|
{
|
||||||
falco_event_types all_types;
|
falco_event_types all_types;
|
||||||
@ -47,12 +44,12 @@ void filter_evttype_resolver::visitor::evttypes(const std::string& evtname, falc
|
|||||||
{
|
{
|
||||||
// Fill in from 2 to PPM_EVENT_MAX-1. 0 and 1 are excluded as
|
// Fill in from 2 to PPM_EVENT_MAX-1. 0 and 1 are excluded as
|
||||||
// those are PPM_GENERIC_E/PPME_GENERIC_X
|
// those are PPM_GENERIC_E/PPME_GENERIC_X
|
||||||
const struct ppm_event_info* etable = g_infotables.m_event_info;
|
static sinsp s_inspector;
|
||||||
|
const auto etable = s_inspector.get_event_info_tables()->m_event_info;
|
||||||
for(uint16_t i = 2; i < PPM_EVENT_MAX; i++)
|
for(uint16_t i = 2; i < PPM_EVENT_MAX; i++)
|
||||||
{
|
{
|
||||||
// Skip unused events or events not matching the requested evtname
|
// Skip unused events or events not matching the requested evtname
|
||||||
if(!(etable[i].flags & EF_UNUSED)
|
if(!sinsp::is_unused_event(i) && (evtname.empty() || std::string(etable[i].name) == evtname))
|
||||||
&& (evtname.empty() || std::string(etable[i].name) == evtname))
|
|
||||||
{
|
{
|
||||||
out.insert(i);
|
out.insert(i);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user