2020-07-30 18:38:15 -03:00
|
|
|
/*
|
2021-01-11 05:52:18 -03:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-07-30 18:38:15 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 18:38:15 -03:00
|
|
|
*/
|
|
|
|
|
|
2020-11-13 17:38:58 -03:00
|
|
|
#include <Kernel/CoreDump.h>
|
2021-01-11 05:52:18 -03:00
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
2021-05-07 05:38:50 -03:00
|
|
|
#include <Kernel/PerformanceManager.h>
|
2020-07-30 18:38:15 -03:00
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-03-02 13:19:35 -03:00
|
|
|
bool g_profiling_all_threads;
|
2021-04-25 18:42:36 -03:00
|
|
|
PerformanceEventBuffer* g_global_perf_events;
|
2021-03-02 13:19:35 -03:00
|
|
|
|
2021-03-01 09:49:16 -03:00
|
|
|
KResultOr<int> Process::sys$profiling_enable(pid_t pid)
|
2020-07-30 18:38:15 -03:00
|
|
|
{
|
|
|
|
|
REQUIRE_NO_PROMISES;
|
2021-03-02 13:19:35 -03:00
|
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
|
if (!is_superuser())
|
|
|
|
|
return EPERM;
|
|
|
|
|
ScopedCritical critical;
|
|
|
|
|
if (g_global_perf_events)
|
|
|
|
|
g_global_perf_events->clear();
|
|
|
|
|
else
|
|
|
|
|
g_global_perf_events = PerformanceEventBuffer::try_create_with_size(32 * MiB).leak_ptr();
|
2021-05-07 05:38:50 -03:00
|
|
|
|
2021-04-25 18:42:36 -03:00
|
|
|
ScopedSpinLock lock(g_processes_lock);
|
2021-05-07 05:38:50 -03:00
|
|
|
g_profiling_all_threads = true;
|
2021-04-25 18:42:36 -03:00
|
|
|
Process::for_each([](auto& process) {
|
2021-05-07 05:38:50 -03:00
|
|
|
PerformanceManager::add_process_created_event(process);
|
2021-04-25 18:42:36 -03:00
|
|
|
return IterationDecision::Continue;
|
|
|
|
|
});
|
2021-03-02 13:19:35 -03:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-30 18:38:15 -03:00
|
|
|
ScopedSpinLock lock(g_processes_lock);
|
2020-08-01 23:04:56 -03:00
|
|
|
auto process = Process::from_pid(pid);
|
2020-07-30 18:38:15 -03:00
|
|
|
if (!process)
|
2021-03-01 09:49:16 -03:00
|
|
|
return ESRCH;
|
2020-07-30 18:38:15 -03:00
|
|
|
if (process->is_dead())
|
2021-03-01 09:49:16 -03:00
|
|
|
return ESRCH;
|
2021-03-10 15:59:46 -03:00
|
|
|
if (!is_superuser() && process->uid() != euid())
|
2021-03-01 09:49:16 -03:00
|
|
|
return EPERM;
|
2021-03-02 12:55:54 -03:00
|
|
|
if (!process->create_perf_events_buffer_if_needed())
|
|
|
|
|
return ENOMEM;
|
2020-07-30 18:38:15 -03:00
|
|
|
process->set_profiling(true);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-01 09:49:16 -03:00
|
|
|
KResultOr<int> Process::sys$profiling_disable(pid_t pid)
|
2020-07-30 18:38:15 -03:00
|
|
|
{
|
2021-04-19 01:10:05 -03:00
|
|
|
REQUIRE_NO_PROMISES;
|
|
|
|
|
|
2021-03-02 13:19:35 -03:00
|
|
|
if (pid == -1) {
|
|
|
|
|
if (!is_superuser())
|
|
|
|
|
return EPERM;
|
|
|
|
|
ScopedCritical critical;
|
|
|
|
|
g_profiling_all_threads = false;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-30 18:38:15 -03:00
|
|
|
ScopedSpinLock lock(g_processes_lock);
|
2020-08-01 23:04:56 -03:00
|
|
|
auto process = Process::from_pid(pid);
|
2020-07-30 18:38:15 -03:00
|
|
|
if (!process)
|
2021-03-01 09:49:16 -03:00
|
|
|
return ESRCH;
|
2021-03-10 15:59:46 -03:00
|
|
|
if (!is_superuser() && process->uid() != euid())
|
2021-03-01 09:49:16 -03:00
|
|
|
return EPERM;
|
2021-01-11 05:52:18 -03:00
|
|
|
if (!process->is_profiling())
|
2021-03-01 09:49:16 -03:00
|
|
|
return EINVAL;
|
2020-07-30 18:38:15 -03:00
|
|
|
process->set_profiling(false);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-19 01:10:05 -03:00
|
|
|
KResultOr<int> Process::sys$profiling_free_buffer(pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
REQUIRE_NO_PROMISES;
|
|
|
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
|
if (!is_superuser())
|
|
|
|
|
return EPERM;
|
|
|
|
|
|
|
|
|
|
OwnPtr<PerformanceEventBuffer> perf_events;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ScopedCritical critical;
|
|
|
|
|
|
|
|
|
|
perf_events = g_global_perf_events;
|
|
|
|
|
g_global_perf_events = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScopedSpinLock lock(g_processes_lock);
|
|
|
|
|
auto process = Process::from_pid(pid);
|
|
|
|
|
if (!process)
|
|
|
|
|
return ESRCH;
|
|
|
|
|
if (!is_superuser() && process->uid() != euid())
|
|
|
|
|
return EPERM;
|
|
|
|
|
if (process->is_profiling())
|
|
|
|
|
return EINVAL;
|
|
|
|
|
process->delete_perf_events_buffer();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2020-07-30 18:38:15 -03:00
|
|
|
}
|