-
Notifications
You must be signed in to change notification settings - Fork 905
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new(falco): print all events with flags #2771
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,8 @@ limitations under the License. | |
|
||
#include "actions.h" | ||
#include "helpers.h" | ||
#include "../app.h" | ||
#include "../../versions_info.h" | ||
|
||
using namespace falco::app; | ||
using namespace falco::app::actions; | ||
|
@@ -28,10 +30,56 @@ struct event_entry | |
const ppm_event_info* info; | ||
}; | ||
|
||
static std::vector<event_entry> get_event_entries(bool include_generics, const libsinsp::events::set<ppm_event_code>& available) | ||
struct events_by_category | ||
{ | ||
event_entry entry; | ||
std::vector<event_entry> events; | ||
std::vector<event_entry> syscalls; | ||
std::vector<event_entry> tracepoints; | ||
std::vector<event_entry> pluginevents; | ||
std::vector<event_entry> metaevents; | ||
|
||
void add_event(ppm_event_code e, bool available, std::string name = "") { | ||
event_entry entry; | ||
|
||
entry.is_enter = PPME_IS_ENTER(e); | ||
entry.info = libsinsp::events::info(e); | ||
entry.available = available; | ||
|
||
if (name == "") | ||
{ | ||
entry.name = entry.info->name; | ||
} else { | ||
entry.name = name; | ||
} | ||
|
||
if (libsinsp::events::is_syscall_event(e)) | ||
{ | ||
syscalls.push_back(entry); | ||
return; | ||
} | ||
|
||
if (libsinsp::events::is_tracepoint_event(e)) | ||
{ | ||
tracepoints.push_back(entry); | ||
return; | ||
} | ||
|
||
if (libsinsp::events::is_plugin_event(e)) | ||
{ | ||
pluginevents.push_back(entry); | ||
return; | ||
} | ||
|
||
if (libsinsp::events::is_metaevent(e)) | ||
{ | ||
metaevents.push_back(entry); | ||
return; | ||
} | ||
} | ||
}; | ||
|
||
static struct events_by_category get_event_entries_by_category(bool include_generics, const libsinsp::events::set<ppm_event_code>& available) | ||
{ | ||
events_by_category result; | ||
|
||
// skip generic events | ||
for (const auto& e: libsinsp::events::all_event_set()) | ||
|
@@ -41,11 +89,7 @@ static std::vector<event_entry> get_event_entries(bool include_generics, const l | |
&& !libsinsp::events::is_unused_event(e) | ||
&& !libsinsp::events::is_unknown_event(e)) | ||
{ | ||
entry.is_enter = PPME_IS_ENTER(e); | ||
entry.available = available.contains(e); | ||
entry.info = libsinsp::events::info(e); | ||
entry.name = entry.info->name; | ||
events.push_back(entry); | ||
result.add_event(e, available.contains(e)); | ||
} | ||
} | ||
|
||
|
@@ -55,60 +99,104 @@ static std::vector<event_entry> get_event_entries(bool include_generics, const l | |
const auto names = libsinsp::events::event_set_to_names({ppm_event_code::PPME_GENERIC_E}); | ||
for (const auto& name : names) | ||
{ | ||
entry.is_enter = PPME_IS_ENTER(ppm_event_code::PPME_GENERIC_E); | ||
entry.available = available.contains(ppm_event_code::PPME_GENERIC_E); | ||
entry.info = libsinsp::events::info(ppm_event_code::PPME_GENERIC_E); | ||
entry.name = name; | ||
events.push_back(entry); | ||
|
||
entry.is_enter = PPME_IS_ENTER(ppm_event_code::PPME_GENERIC_X); | ||
entry.available = available.contains(ppm_event_code::PPME_GENERIC_X); | ||
entry.info = libsinsp::events::info(ppm_event_code::PPME_GENERIC_X); | ||
entry.name = name; | ||
events.push_back(entry); | ||
result.add_event(ppm_event_code::PPME_GENERIC_E, available.contains(ppm_event_code::PPME_GENERIC_E), name); | ||
result.add_event(ppm_event_code::PPME_GENERIC_X, available.contains(ppm_event_code::PPME_GENERIC_X), name); | ||
} | ||
} | ||
|
||
return events; | ||
return result; | ||
} | ||
|
||
falco::app::run_result falco::app::actions::print_syscall_events(falco::app::state& s) | ||
static bool is_flag_type(ppm_param_type type) | ||
{ | ||
if(s.options.list_syscall_events) | ||
return (type == PT_FLAGS8 || type == PT_FLAGS16 || type == PT_FLAGS32 || | ||
type == PT_ENUMFLAGS8 || type == PT_ENUMFLAGS16 || type == PT_ENUMFLAGS32); | ||
} | ||
|
||
static void print_param(const struct ppm_param_info *param, bool markdown) { | ||
printf("%s **%s**", param_type_to_string(param->type), param->name); | ||
|
||
if (is_flag_type(param->type) && param->info) { | ||
auto flag_info = static_cast<const ppm_name_value*>(param->info); | ||
|
||
printf(": "); | ||
for (size_t i = 0; flag_info[i].name != NULL; i++) { | ||
if (i != 0) | ||
{ | ||
printf(", "); | ||
} | ||
|
||
if (markdown) { | ||
printf("*%s*", flag_info[i].name); | ||
} else { | ||
printf("%s", flag_info[i].name); | ||
} | ||
} | ||
} | ||
} | ||
|
||
static void print_events(const std::vector<event_entry> &events, bool markdown) | ||
{ | ||
if(markdown) | ||
{ | ||
const auto events = get_event_entries(true, libsinsp::events::all_event_set()); | ||
printf("Default | Dir | Name | Params \n"); | ||
printf(":-------|:----|:-----|:-----\n"); | ||
} | ||
|
||
if(s.options.markdown) | ||
for (const auto& e : events) | ||
{ | ||
char dir = e.is_enter ? '>' : '<'; | ||
if (markdown) | ||
{ | ||
printf(e.available ? "Yes" : "No"); | ||
printf(" | `%c` | `%s` | ", dir, e.name.c_str()); | ||
} | ||
else | ||
{ | ||
printf("Falco | Dir | Event\n"); | ||
printf(":-----|:----|:-----\n"); | ||
printf("%c %s(", dir, e.name.c_str()); | ||
} | ||
|
||
for (const auto& e : events) | ||
for(uint32_t k = 0; k < e.info->nparams; k++) | ||
{ | ||
char dir = e.is_enter ? '>' : '<'; | ||
if (s.options.markdown) | ||
{ | ||
printf(e.available ? "Yes" : "No"); | ||
printf(" | %c | **%s**(", dir, e.name.c_str()); | ||
} | ||
else | ||
if(k != 0) | ||
{ | ||
printf("%c %s(", dir, e.name.c_str()); | ||
printf(", "); | ||
} | ||
|
||
for(uint32_t k = 0; k < e.info->nparams; k++) | ||
{ | ||
if(k != 0) | ||
{ | ||
printf(", "); | ||
} | ||
|
||
printf("%s %s", param_type_to_string(e.info->params[k].type), | ||
e.info->params[k].name); | ||
} | ||
print_param(&e.info->params[k], markdown); | ||
} | ||
if (markdown) | ||
{ | ||
printf("\n"); | ||
} | ||
else | ||
{ | ||
printf(")\n"); | ||
} | ||
} | ||
} | ||
|
||
falco::app::run_result falco::app::actions::print_syscall_events(falco::app::state& s) | ||
{ | ||
if(s.options.list_syscall_events) | ||
{ | ||
const falco::versions_info info(s.offline_inspector); | ||
printf("The events below are valid for Falco *Schema Version*: %s\n", info.driver_schema_version.c_str()); | ||
|
||
const libsinsp::events::set<ppm_event_code> available = libsinsp::events::all_event_set().diff(sc_set_to_event_set(falco::app::ignored_sc_set())); | ||
const struct events_by_category events_bc = get_event_entries_by_category(true, available); | ||
|
||
printf("## Syscall events\n\n"); | ||
print_events(events_bc.syscalls, s.options.markdown); | ||
|
||
printf("\n\n## Tracepoint events\n\n"); | ||
print_events(events_bc.tracepoints, s.options.markdown); | ||
|
||
printf("\n\n## Plugin events\n\n"); | ||
print_events(events_bc.pluginevents, s.options.markdown); | ||
Comment on lines
+195
to
+196
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we intend to print all events (regardless of the data source) here? If so, I would change the option name from cc @falcosecurity/falco-maintainers There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes agree with leo i would change it to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I noticed that this flag never printed syscall events, but always printed all events. Yes, I introduced it and decided the name 😅 . So I agree with you, let me change it to |
||
|
||
printf("\n\n## Metaevents\n\n"); | ||
print_events(events_bc.metaevents, s.options.markdown); | ||
|
||
return run_result::exit(); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note for the reviewer: the list of events did not change, but the format did so we need to update the checksum. Updating the engine version should be OK but if I forgot something and it's not please let me know and I'll revert