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

fix(proc/scan): scan all existing threads #537

Merged
merged 1 commit into from
Nov 7, 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
75 changes: 49 additions & 26 deletions plugins/k8smeta/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,42 +302,65 @@ void my_plugin::do_initial_proc_scan()
continue;
}

// Example of the path: `/proc/1/cgroup`
proc_path = std::string(proc_root)
.append("/")
.append(file_name.c_str())
.append("/cgroup");
// Now scan /proc/pid/task for threads
std::string task_dir = proc_root + "/" + file_name.c_str() + "/task";
LucaGuerra marked this conversation as resolved.
Show resolved Hide resolved
std::filesystem::directory_iterator task_iter(task_dir);

std::ifstream file(proc_path);

if(file.is_open())
for(const auto& task_entry : task_iter)
{
// Read the first line from the file
if(std::getline(file, cgroup_line))
auto task_file_name = task_entry.path().filename();
tid = strtol(task_file_name.c_str(), NULL, 10);

if(tid == 0 || !task_entry.is_directory())
{
std::string pod_uid =
get_pod_uid_from_cgroup_string(cgroup_line);
if(!pod_uid.empty())
{
m_thread_id_pod_uid_map[tid] = pod_uid;
SPDLOG_TRACE("Found thread with tid '{}' and pod uid '{}'",
tid, pod_uid);
}
SPDLOG_WARN("Found task entry `{}` in process `{}` that is not "
"a number",
task_file_name.c_str(), file_name.c_str());
continue; // skip if not a thread id directory
}
else
// Example of the path: `/proc/1/task/200/cgroup`
proc_path = std::string(proc_root)
.append("/")
.append(file_name.c_str())
.append("/task/")
.append(task_file_name.c_str())
.append("/cgroup");

std::ifstream file(proc_path);

if(file.is_open())
{
SPDLOG_WARN("cannot retrieve the cgroup first line for '{}'. "
// Read the first line from the file
if(std::getline(file, cgroup_line))
{
std::string pod_uid =
get_pod_uid_from_cgroup_string(cgroup_line);
if(!pod_uid.empty())
{
m_thread_id_pod_uid_map[tid] = pod_uid;
SPDLOG_TRACE(
"Found thread with tid '{}' and pod uid '{}'",
tid, pod_uid);
}
}
else
{
SPDLOG_WARN(
"Cannot retrieve the cgroup first line for '{}'. "
"Error: {}. Skip it",
proc_path,
file.eof() ? "Empty file" : strerror(errno));
}
file.close();
}
else
{
SPDLOG_WARN("Cannot open '{}'. Error: {}. Skip it.", proc_path,
strerror(errno));
}
file.close();
}
else
{
SPDLOG_WARN("cannot open '{}'. Error: {}. Skip it.", proc_path,
strerror(errno));
}
SPDLOG_DEBUG("Thread scan correctly completed for process `{}`",
file_name.c_str());
}
SPDLOG_INFO(
"Process scan correctly completed. Found '{}' threads inside pods.",
Expand Down
5 changes: 3 additions & 2 deletions plugins/k8smeta/test/src/parsing_pod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,8 @@ TEST_F(sinsp_with_test_input, plugin_k8s_proc_scan_in_the_plugin)

#define PLUGIN_PROC_SCAN_UNDER_TMP_PROC \
int32_t mock_tid = (1 << 16) - 1; \
std::string mock_proc_dir = "/tmp/proc/" + std::to_string(mock_tid); \
std::string mock_proc_dir = "/tmp/proc/" + std::to_string(mock_tid) + \
"/task/" + std::to_string(mock_tid); \
std::string mock_proc_cgroup = mock_proc_dir + "/cgroup"; \
std::string expected_pod_uid = "1d34c7bb-7d94-4f00-bed9-fe4eca61d446"; \
\
Expand Down Expand Up @@ -467,7 +468,7 @@ TEST_F(sinsp_with_test_input, plugin_k8s_proc_scan_in_the_plugin)
pl_flist.add_filter_check(sinsp_plugin::new_filtercheck(plugin_owner)); \
\
std::filesystem::path mock_proc = std::filesystem::path("/tmp/proc"); \
ASSERT_EQ(std::filesystem::remove_all(mock_proc), 3);
ASSERT_EQ(std::filesystem::remove_all(mock_proc), 5);

TEST_F(sinsp_with_test_input, plugin_k8s_proc_scan_mismatch)
{
Expand Down
Loading