2019-04-22 19:44:45 +03:00
|
|
|
#include <AK/kstdio.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/ProcessTracer.h>
|
2019-04-22 19:44:45 +03:00
|
|
|
|
|
|
|
ProcessTracer::ProcessTracer(pid_t pid)
|
|
|
|
: m_pid(pid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcessTracer::~ProcessTracer()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
void ProcessTracer::did_syscall(u32 function, u32 arg1, u32 arg2, u32 arg3, u32 result)
|
2019-04-22 19:44:45 +03:00
|
|
|
{
|
|
|
|
CallData data = { function, arg1, arg2, arg3, result };
|
|
|
|
m_calls.enqueue(data);
|
|
|
|
}
|
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
int ProcessTracer::read(FileDescription&, u8* buffer, int buffer_size)
|
2019-04-22 19:44:45 +03:00
|
|
|
{
|
2019-04-28 16:02:55 +03:00
|
|
|
if (m_calls.is_empty())
|
|
|
|
return 0;
|
|
|
|
auto data = m_calls.dequeue();
|
|
|
|
// FIXME: This should not be an assertion.
|
|
|
|
ASSERT(buffer_size == sizeof(data));
|
|
|
|
memcpy(buffer, &data, sizeof(data));
|
|
|
|
return sizeof(data);
|
|
|
|
}
|
|
|
|
|
2019-06-07 10:36:51 +03:00
|
|
|
String ProcessTracer::absolute_path(const FileDescription&) const
|
2019-04-28 16:02:55 +03:00
|
|
|
{
|
|
|
|
return String::format("tracer:%d", m_pid);
|
2019-04-22 19:44:45 +03:00
|
|
|
}
|