Skip to content
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

Adds flag to exec events indicating a memfd target #161

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions GPL/Events/EbpfEventProto.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ struct ebpf_process_exec_event {
struct ebpf_pid_info pids;
struct ebpf_cred_info creds;
struct ebpf_tty_dev ctty;
bool is_memfd;
bool is_setuid;
bool is_setgid;

// Variable length fields: cwd, argv, filename, pids_ss_cgroup_path
struct ebpf_varlen_fields_start vl_fields;
Expand Down
12 changes: 12 additions & 0 deletions GPL/Events/Process/Probe.bpf.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
#include "PathResolver.h"
#include "Varlen.h"

#define S_ISUID 0004000
#define S_ISGID 0002000

// Limits on large things we send up as variable length parameters.
//
// These should be kept _well_ under half the size of the event_buffer_map or
Expand Down Expand Up @@ -115,6 +118,15 @@ int BPF_PROG(sched_process_exec,
size = read_kernel_str_or_empty_str(field->data, PATH_MAX, binprm->filename);
ebpf_vl_field__set_size(&event->vl_fields, field, size);

// memfd exec
char buf [7];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: needs code format, CI won't pass without it.

bpf_probe_read_kernel_str(buf, 7, binprm->file->f_path.dentry->d_iname);
if (buf[0] == 'm' && buf[1] == 'e' && buf[2] == 'm' && buf[3] == 'f' && buf[4] == 'd' && buf[5] == ':' )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For readability, I'd recommend just writing a 4 line implementation of strncmp in Helpers.h and using that here. You can put the string memfd: on the stack.

event->is_memfd = 1;

event->is_setuid = (binprm->file->f_inode->i_mode & S_ISUID) ? true : false;
event->is_setgid = (binprm->file->f_inode->i_mode & S_ISGID) ? true : false;

bpf_ringbuf_output(&ringbuf, event, EVENT_SIZE(event), 0);

out:
Expand Down
19 changes: 19 additions & 0 deletions non-GPL/Events/EventsTrace/EventsTrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,16 @@ static void out_newline()
printf("\n");
}

static void out_bool_flag(const char *name, bool value)
{
printf("\"%s\":%s", name, value ? "true" : "false");
}

static void out_named_object_start(const char *name)
{
printf("\"%s\":{", name);
}

static void out_object_start()
{
printf("{");
Expand Down Expand Up @@ -446,6 +456,15 @@ static void out_process_exec(struct ebpf_process_exec_event *evt)
out_cred_info("creds", &evt->creds);
out_comma();

out_named_object_start("red_flags");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO the nesting here is unnecessary, I say just keep them at the top level.

out_bool_flag("is_memfd", evt->is_memfd);
out_comma();
out_bool_flag("is_setuid", evt->is_setuid);
out_comma();
out_bool_flag("is_setgid", evt->is_setgid);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO out_bool_flag should just be out_bool for simplicity and consistency with the other out_ functions.

out_object_end();
out_comma();

out_tty_dev("ctty", &evt->ctty);

struct ebpf_varlen_field *field;
Expand Down