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

new(userspace/libsinsp): allow to not retrieve detailed user info #1765

Merged
merged 1 commit into from
Apr 19, 2024
Merged
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
26 changes: 13 additions & 13 deletions userspace/libsinsp/parsers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1430,9 +1430,9 @@ void sinsp_parser::parse_clone_exit_caller(sinsp_evt *evt, int64_t child_tid)
/* Refresh user / loginuser / group */
if(new_child->m_container_id.empty() == false)
{
new_child->set_user(new_child->m_user.uid);
new_child->set_loginuser(new_child->m_loginuser.uid);
new_child->set_group(new_child->m_group.gid);
new_child->set_user(new_child->m_user.uid());
new_child->set_loginuser(new_child->m_loginuser.uid());
new_child->set_group(new_child->m_group.gid());
}

/* If there's a listener, invoke it */
Expand Down Expand Up @@ -1950,9 +1950,9 @@ void sinsp_parser::parse_clone_exit_child(sinsp_evt *evt)
/* Refresh user / loginuser / group */
if(new_child->m_container_id.empty() == false)
{
new_child->set_user(new_child->m_user.uid);
new_child->set_loginuser(new_child->m_loginuser.uid);
new_child->set_group(new_child->m_group.gid);
new_child->set_user(new_child->m_user.uid());
new_child->set_loginuser(new_child->m_loginuser.uid());
new_child->set_group(new_child->m_group.gid());
}

//
Expand Down Expand Up @@ -2411,7 +2411,7 @@ void sinsp_parser::parse_execve_exit(sinsp_evt *evt)
// Get uid
if(evt->get_num_params() > 26)
{
evt->get_tinfo()->m_user.uid = evt->get_param(26)->as<uint32_t>();
evt->get_tinfo()->m_user.set_uid(evt->get_param(26)->as<uint32_t>());
}

//
Expand Down Expand Up @@ -2453,9 +2453,9 @@ void sinsp_parser::parse_execve_exit(sinsp_evt *evt)
//
if(container_id != evt->get_tinfo()->m_container_id)
{
evt->get_tinfo()->set_user(evt->get_tinfo()->m_user.uid);
evt->get_tinfo()->set_loginuser(evt->get_tinfo()->m_loginuser.uid);
evt->get_tinfo()->set_group(evt->get_tinfo()->m_group.gid);
evt->get_tinfo()->set_user(evt->get_tinfo()->m_user.uid());
evt->get_tinfo()->set_loginuser(evt->get_tinfo()->m_loginuser.uid());
evt->get_tinfo()->set_group(evt->get_tinfo()->m_group.gid());
}

//
Expand Down Expand Up @@ -5464,9 +5464,9 @@ void sinsp_parser::parse_chroot_exit(sinsp_evt *evt)
//
if(container_id != evt->get_tinfo()->m_container_id)
{
evt->get_tinfo()->set_user(evt->get_tinfo()->m_user.uid);
evt->get_tinfo()->set_loginuser(evt->get_tinfo()->m_loginuser.uid);
evt->get_tinfo()->set_group(evt->get_tinfo()->m_group.gid);
evt->get_tinfo()->set_user(evt->get_tinfo()->m_user.uid());
evt->get_tinfo()->set_loginuser(evt->get_tinfo()->m_loginuser.uid());
evt->get_tinfo()->set_group(evt->get_tinfo()->m_group.gid());
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion userspace/libsinsp/sinsp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,10 @@ void sinsp::init()
m_inited = true;
}

void sinsp::set_import_users(bool import_users)
void sinsp::set_import_users(bool import_users, bool user_details)
{
m_usergroup_manager.m_import_users = import_users;
m_usergroup_manager.m_user_details_enabled = user_details;
}

/*=============================== OPEN METHODS ===============================*/
Expand Down
18 changes: 16 additions & 2 deletions userspace/libsinsp/sinsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -261,12 +261,18 @@ class SINSP_PUBLIC sinsp : public capture_stats_source
creating them can increase the startup time. Moreover, they contain
information that could be privacy sensitive.

\note default behavior is import_users=true.
\param user_details if set to false, no extended user information will be
stored in sinsp_threadinfo, only user id/group id will be available. By
default thread information is enriched with the full set of user
information, i.e. name, homedir, shell, group name. The parameter
controls this behavior, an can be used to reduce memory footprint.

\note default behavior is import_users=true, user_details=true

@throws a sinsp_exception containing the error string is thrown in case
of failure.
*/
void set_import_users(bool import_users);
void set_import_users(bool import_users, bool user_details = true);

/*!
\brief temporarily pauses event capture.
Expand Down Expand Up @@ -783,6 +789,14 @@ class SINSP_PUBLIC sinsp : public capture_stats_source
return m_isdebug_enabled;
}

/*!
\brief Returns true if extended user information is collected.
*/
inline bool is_user_details_enabled()
{
return m_usergroup_manager.m_user_details_enabled;
}

/*!
\brief Set a flag indicating if the command line requested to show container information.

Expand Down
15 changes: 7 additions & 8 deletions userspace/libsinsp/sinsp_filtercheck_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,9 @@ using namespace std;
return (uint8_t*) &(x); \
} while(0)

#define RETURN_EXTRACT_CSTR(x) do { \
if((x)) \
{ \
*len = strlen((char *) ((x))); \
} \
return (uint8_t*) ((x)); \
#define RETURN_EXTRACT_STRING(x) do { \
*len = (x).size(); \
return (uint8_t*) (x).c_str(); \
} while(0)

static const filtercheck_field_info sinsp_filter_check_group_fields[] =
Expand Down Expand Up @@ -68,9 +65,11 @@ uint8_t* sinsp_filter_check_group::extract_single(sinsp_evt *evt, OUT uint32_t*
switch(m_field_id)
{
case TYPE_GID:
RETURN_EXTRACT_VAR(tinfo->m_group.gid);
m_gid = tinfo->m_group.gid();
RETURN_EXTRACT_VAR(m_gid);
case TYPE_NAME:
RETURN_EXTRACT_CSTR(tinfo->m_group.name);
m_name = tinfo->m_group.name();
RETURN_EXTRACT_STRING(m_name);
default:
ASSERT(false);
break;
Expand Down
5 changes: 5 additions & 0 deletions userspace/libsinsp/sinsp_filtercheck_group.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,9 @@ class sinsp_filter_check_group : public sinsp_filter_check

protected:
uint8_t* extract_single(sinsp_evt*, OUT uint32_t* len, bool sanitize_strings = true) override;

private:
uint32_t m_gid;
std::string m_name;

};
27 changes: 12 additions & 15 deletions userspace/libsinsp/sinsp_filtercheck_user.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ using namespace std;
return (uint8_t*) (x).c_str(); \
} while(0)

#define RETURN_EXTRACT_CSTR(x) do { \
if((x)) \
{ \
*len = strlen((char *) ((x))); \
} \
return (uint8_t*) ((x)); \
} while(0)

static const filtercheck_field_info sinsp_filter_check_user_fields[] =
{
{PT_UINT32, EPF_NONE, PF_ID, "user.uid", "User ID", "user ID."},
Expand Down Expand Up @@ -92,22 +84,27 @@ uint8_t* sinsp_filter_check_user::extract_single(sinsp_evt *evt, OUT uint32_t* l
switch(m_field_id)
{
case TYPE_UID:
RETURN_EXTRACT_VAR(tinfo->m_user.uid);
m_uid = tinfo->m_user.uid();
RETURN_EXTRACT_VAR(m_uid);
case TYPE_NAME:
RETURN_EXTRACT_CSTR(tinfo->m_user.name);
m_strval = tinfo->m_user.name();
RETURN_EXTRACT_STRING(m_strval);
case TYPE_HOMEDIR:
RETURN_EXTRACT_CSTR(tinfo->m_user.homedir);
m_strval = tinfo->m_user.homedir();
RETURN_EXTRACT_STRING(m_strval);
case TYPE_SHELL:
RETURN_EXTRACT_CSTR(tinfo->m_user.shell);
m_strval = tinfo->m_user.shell();
RETURN_EXTRACT_STRING(m_strval);
case TYPE_LOGINUID:
m_s64val = (int64_t)-1;
if(tinfo->m_loginuser.uid < UINT32_MAX)
if(tinfo->m_loginuser.uid() < UINT32_MAX)
{
m_s64val = (int64_t)tinfo->m_loginuser.uid;
m_s64val = (int64_t)tinfo->m_loginuser.uid();
}
RETURN_EXTRACT_VAR(m_s64val);
case TYPE_LOGINNAME:
RETURN_EXTRACT_CSTR(tinfo->m_loginuser.name);
m_strval = tinfo->m_loginuser.name();
RETURN_EXTRACT_STRING(m_strval);
default:
ASSERT(false);
break;
Expand Down
2 changes: 2 additions & 0 deletions userspace/libsinsp/sinsp_filtercheck_user.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ class sinsp_filter_check_user : public sinsp_filter_check

private:
int64_t m_s64val;
uint32_t m_uid;
std::string m_strval;
};
72 changes: 45 additions & 27 deletions userspace/libsinsp/threadinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,6 @@ void sinsp_threadinfo::init()
m_exe_writable = false;
m_exe_upper_layer = false;
m_exe_from_memfd = false;

memset(&m_user, 0, sizeof(scap_userinfo));
Copy link
Contributor

@FedeDP FedeDP Apr 5, 2024

Choose a reason for hiding this comment

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

Don't we need to memset to zero the sinsp_userinfo and sinsp_groupinfo structs now?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

No, I don't think so. In the way how it's currently implemented, a default constructor will be created for sinsp_userinfo/sinsp_groupinfo and called here, which in turn will initialize string (as empty strings) and leave built-in typed uid/gid uninitialized. In contrast, doing memset will zero everything, destroying strings internal structure.

The only question here is whether or not to initialize uid/gid explicitly to zero. I've decided here not to do so, since zero isn't a special value, and could be mixed up with the "root" user or group. But if you folks prefer it to be zero, I can add a constructor to sinsp_userinfo/sinsp_groupinfo.

Copy link
Contributor

@FedeDP FedeDP Apr 5, 2024

Choose a reason for hiding this comment

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

Oh you are right, that's no more a struct, it's a class now.

The only question here is whether or not to initialize uid/gid explicitly to zero

I am pretty sure it should be -1 (UINT32_MAX), like we do here, by default:
https://github.com/falcosecurity/libs/pull/1765/files#diff-f1f5adc2cc836ddaf885f86ded61c940d5c957781ea3ef5cef7f4c6f407054f7R2132

Copy link
Contributor Author

Choose a reason for hiding this comment

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

memset(&m_group, 0, sizeof(scap_groupinfo));
memset(&m_loginuser, 0, sizeof(scap_userinfo));
}

sinsp_threadinfo::~sinsp_threadinfo()
Expand Down Expand Up @@ -517,19 +513,27 @@ void sinsp_threadinfo::set_user(uint32_t uid)
if (!user)
{
auto notify = m_inspector->is_live() || m_inspector->is_syscall_plugin();
user = m_inspector->m_usergroup_manager.add_user(m_container_id, m_pid, uid, m_group.gid, {}, {}, {}, notify);
user = m_inspector->m_usergroup_manager.add_user(m_container_id, m_pid, uid, m_group.gid(), {}, {}, {}, notify);
}

if (user)
{
memcpy(&m_user, user, sizeof(scap_userinfo));
m_user.set_uid(user->uid);
m_user.set_gid(m_group.gid());

if (m_inspector->is_user_details_enabled())
{
m_user.set_name(user->name, sizeof(user->name));
m_user.set_homedir(user->homedir, sizeof(user->homedir));
m_user.set_shell(user->shell, sizeof(user->shell));
}
}
else
{
m_user.uid = uid;
m_user.gid = m_group.gid;
strlcpy(m_user.name, (uid == 0) ? "root" : "<NA>", sizeof(m_user.name));
strlcpy(m_user.homedir, (uid == 0) ? "/root" : "<NA>", sizeof(m_user.homedir));
strlcpy(m_user.shell, "<NA>", sizeof(m_user.shell));
// No need to set name/homedir/shell, the default values from
// sinsp_userinfo are going to be used.
m_user.set_uid(uid);
m_user.set_gid(m_group.gid());
}
}

Expand All @@ -543,30 +547,44 @@ void sinsp_threadinfo::set_group(uint32_t gid)
}
if (group)
{
memcpy(&m_group, group, sizeof(scap_groupinfo));
m_group.set_gid(group->gid);

if (m_inspector->is_user_details_enabled())
{
m_group.set_name(group->name, sizeof(group->name));
}
}
else
{
m_group.gid = gid;
strlcpy(m_group.name, (gid == 0) ? "root" : "<NA>", sizeof(m_group.name));
// No need to set name/homedir/shell, the default values from
// sinsp_userinfo are going to be used.
m_group.set_gid(gid);
}
m_user.gid = m_group.gid;
m_user.set_gid(m_group.gid());
}

void sinsp_threadinfo::set_loginuser(uint32_t loginuid)
{
scap_userinfo *login_user = m_inspector->m_usergroup_manager.get_user(m_container_id, loginuid);

if (login_user)
{
memcpy(&m_loginuser, login_user, sizeof(scap_userinfo));
m_loginuser.set_uid(login_user->uid);
m_loginuser.set_gid(m_group.gid());

if (m_inspector->is_user_details_enabled())
{
m_loginuser.set_name(login_user->name, sizeof(login_user->name));
m_loginuser.set_homedir(login_user->homedir, sizeof(login_user->homedir));
m_loginuser.set_shell(login_user->shell, sizeof(login_user->shell));
}
}
else
{
m_loginuser.uid = loginuid;
m_loginuser.gid = m_group.gid;
strlcpy(m_loginuser.name, loginuid == 0 ? "root" : "<NA>", sizeof(m_loginuser.name));
strlcpy(m_loginuser.homedir, loginuid == 0 ? "/root" : "<NA>", sizeof(m_loginuser.homedir));
strlcpy(m_loginuser.shell, "<NA>", sizeof(m_loginuser.shell));
// No need to set name/homedir/shell, the default values from
// sinsp_userinfo are going to be used.
m_loginuser.set_uid(loginuid);
m_loginuser.set_gid(m_group.gid());
}
}

Expand Down Expand Up @@ -1869,8 +1887,8 @@ void sinsp_thread_manager::thread_to_scap(sinsp_threadinfo& tinfo, scap_threadi

sctinfo->flags = tinfo.m_flags ;
sctinfo->fdlimit = tinfo.m_fdlimit;
sctinfo->uid = tinfo.m_user.uid;
sctinfo->gid = tinfo.m_group.gid;
sctinfo->uid = tinfo.m_user.uid();
sctinfo->gid = tinfo.m_group.gid();
sctinfo->vmsize_kb = tinfo.m_vmsize_kb;
sctinfo->vmrss_kb = tinfo.m_vmrss_kb;
sctinfo->vmswap_kb = tinfo.m_vmswap_kb;
Expand All @@ -1879,7 +1897,7 @@ void sinsp_thread_manager::thread_to_scap(sinsp_threadinfo& tinfo, scap_threadi
sctinfo->vtid = tinfo.m_vtid;
sctinfo->vpid = tinfo.m_vpid;
sctinfo->fdlist = NULL;
sctinfo->loginuid = tinfo.m_loginuser.uid;
sctinfo->loginuid = tinfo.m_loginuser.uid();
sctinfo->filtered_out = tinfo.m_filtered_out;
}

Expand Down Expand Up @@ -2109,9 +2127,9 @@ threadinfo_map_t::ptr_t sinsp_thread_manager::get_thread_ref(int64_t tid, bool q
newti->m_not_expired_children = 0;
newti->m_comm = "<NA>";
newti->m_exe = "<NA>";
newti->m_user.uid = 0xffffffff;
newti->m_group.gid = 0xffffffff;
newti->m_loginuser.uid = 0xffffffff;
newti->m_user.set_uid(0xffffffff);
newti->m_group.set_gid(0xffffffff);
newti->m_loginuser.set_uid(0xffffffff);
}

//
Expand Down
Loading
Loading