2020-07-30 21:38:15 +00:00
|
|
|
/*
|
2021-01-11 08:52:18 +00:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-07-30 21:38:15 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 21:38:15 +00:00
|
|
|
*/
|
|
|
|
|
2021-08-22 12:51:04 +00:00
|
|
|
#include <Kernel/Coredump.h>
|
2021-01-11 08:52:18 +00:00
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
2021-05-07 08:38:50 +00:00
|
|
|
#include <Kernel/PerformanceManager.h>
|
2020-07-30 21:38:15 +00:00
|
|
|
#include <Kernel/Process.h>
|
2021-05-13 20:15:13 +00:00
|
|
|
#include <Kernel/Time/TimeManagement.h>
|
2020-07-30 21:38:15 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-03-02 16:19:35 +00:00
|
|
|
bool g_profiling_all_threads;
|
2021-04-25 21:42:36 +00:00
|
|
|
PerformanceEventBuffer* g_global_perf_events;
|
2021-05-14 06:10:43 +00:00
|
|
|
u64 g_profiling_event_mask;
|
2021-03-02 16:19:35 +00:00
|
|
|
|
2021-06-28 18:59:35 +00:00
|
|
|
KResultOr<FlatPtr> Process::sys$profiling_enable(pid_t pid, u64 event_mask)
|
2020-07-30 21:38:15 +00:00
|
|
|
{
|
2021-07-18 18:20:12 +00:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-30 21:38:15 +00:00
|
|
|
REQUIRE_NO_PROMISES;
|
2021-03-02 16:19:35 +00:00
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
if (!is_superuser())
|
|
|
|
return EPERM;
|
|
|
|
ScopedCritical critical;
|
2021-05-30 14:24:53 +00:00
|
|
|
g_profiling_event_mask = PERF_EVENT_PROCESS_CREATE | PERF_EVENT_THREAD_CREATE | PERF_EVENT_MMAP;
|
2021-03-02 16:19:35 +00:00
|
|
|
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 08:38:50 +00:00
|
|
|
|
2021-08-21 23:49:22 +00:00
|
|
|
SpinlockLocker lock(g_profiling_lock);
|
2021-05-14 08:33:34 +00:00
|
|
|
if (!TimeManagement::the().enable_profile_timer())
|
|
|
|
return ENOTSUP;
|
2021-05-15 19:25:54 +00:00
|
|
|
g_profiling_all_threads = true;
|
2021-05-14 06:10:43 +00:00
|
|
|
PerformanceManager::add_process_created_event(*Scheduler::colonel());
|
2021-04-25 21:42:36 +00:00
|
|
|
Process::for_each([](auto& process) {
|
2021-05-07 08:38:50 +00:00
|
|
|
PerformanceManager::add_process_created_event(process);
|
2021-04-25 21:42:36 +00:00
|
|
|
return IterationDecision::Continue;
|
|
|
|
});
|
2021-05-30 14:24:53 +00:00
|
|
|
g_profiling_event_mask = event_mask;
|
2021-03-02 16:19:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-02 02:04:56 +00:00
|
|
|
auto process = Process::from_pid(pid);
|
2020-07-30 21:38:15 +00:00
|
|
|
if (!process)
|
2021-03-01 12:49:16 +00:00
|
|
|
return ESRCH;
|
2020-07-30 21:38:15 +00:00
|
|
|
if (process->is_dead())
|
2021-03-01 12:49:16 +00:00
|
|
|
return ESRCH;
|
2021-03-10 18:59:46 +00:00
|
|
|
if (!is_superuser() && process->uid() != euid())
|
2021-03-01 12:49:16 +00:00
|
|
|
return EPERM;
|
2021-08-21 23:49:22 +00:00
|
|
|
SpinlockLocker lock(g_profiling_lock);
|
2021-05-30 14:24:53 +00:00
|
|
|
g_profiling_event_mask = PERF_EVENT_PROCESS_CREATE | PERF_EVENT_THREAD_CREATE | PERF_EVENT_MMAP;
|
2021-05-23 20:16:30 +00:00
|
|
|
process->set_profiling(true);
|
2021-05-24 06:59:30 +00:00
|
|
|
if (!process->create_perf_events_buffer_if_needed()) {
|
|
|
|
process->set_profiling(false);
|
2021-03-02 15:55:54 +00:00
|
|
|
return ENOMEM;
|
2021-05-24 06:59:30 +00:00
|
|
|
}
|
2021-05-30 14:24:53 +00:00
|
|
|
g_profiling_event_mask = event_mask;
|
2021-05-24 06:59:30 +00:00
|
|
|
if (!TimeManagement::the().enable_profile_timer()) {
|
|
|
|
process->set_profiling(false);
|
2021-05-14 08:33:34 +00:00
|
|
|
return ENOTSUP;
|
2021-05-24 06:59:30 +00:00
|
|
|
}
|
2020-07-30 21:38:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-28 18:59:35 +00:00
|
|
|
KResultOr<FlatPtr> Process::sys$profiling_disable(pid_t pid)
|
2020-07-30 21:38:15 +00:00
|
|
|
{
|
2021-07-18 18:20:12 +00:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2021-04-19 04:10:05 +00:00
|
|
|
REQUIRE_NO_PROMISES;
|
|
|
|
|
2021-03-02 16:19:35 +00:00
|
|
|
if (pid == -1) {
|
|
|
|
if (!is_superuser())
|
|
|
|
return EPERM;
|
|
|
|
ScopedCritical critical;
|
2021-05-14 08:33:34 +00:00
|
|
|
if (!TimeManagement::the().disable_profile_timer())
|
|
|
|
return ENOTSUP;
|
2021-03-02 16:19:35 +00:00
|
|
|
g_profiling_all_threads = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-02 02:04:56 +00:00
|
|
|
auto process = Process::from_pid(pid);
|
2020-07-30 21:38:15 +00:00
|
|
|
if (!process)
|
2021-03-01 12:49:16 +00:00
|
|
|
return ESRCH;
|
2021-03-10 18:59:46 +00:00
|
|
|
if (!is_superuser() && process->uid() != euid())
|
2021-03-01 12:49:16 +00:00
|
|
|
return EPERM;
|
2021-08-21 23:49:22 +00:00
|
|
|
SpinlockLocker lock(g_profiling_lock);
|
2021-01-11 08:52:18 +00:00
|
|
|
if (!process->is_profiling())
|
2021-03-01 12:49:16 +00:00
|
|
|
return EINVAL;
|
2021-05-14 08:33:34 +00:00
|
|
|
// FIXME: If we enabled the profile timer and it's not supported, how do we disable it now?
|
|
|
|
if (!TimeManagement::the().disable_profile_timer())
|
|
|
|
return ENOTSUP;
|
2020-07-30 21:38:15 +00:00
|
|
|
process->set_profiling(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-28 18:59:35 +00:00
|
|
|
KResultOr<FlatPtr> Process::sys$profiling_free_buffer(pid_t pid)
|
2021-04-19 04:10:05 +00:00
|
|
|
{
|
2021-07-18 18:20:12 +00:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2021-04-19 04:10:05 +00:00
|
|
|
REQUIRE_NO_PROMISES;
|
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
if (!is_superuser())
|
|
|
|
return EPERM;
|
|
|
|
|
|
|
|
OwnPtr<PerformanceEventBuffer> perf_events;
|
|
|
|
|
|
|
|
{
|
|
|
|
ScopedCritical critical;
|
|
|
|
|
2021-05-30 16:39:23 +00:00
|
|
|
perf_events = adopt_own_if_nonnull(g_global_perf_events);
|
2021-04-19 04:10:05 +00:00
|
|
|
g_global_perf_events = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto process = Process::from_pid(pid);
|
|
|
|
if (!process)
|
|
|
|
return ESRCH;
|
|
|
|
if (!is_superuser() && process->uid() != euid())
|
|
|
|
return EPERM;
|
2021-08-21 23:49:22 +00:00
|
|
|
SpinlockLocker lock(g_profiling_lock);
|
2021-04-19 04:10:05 +00:00
|
|
|
if (process->is_profiling())
|
|
|
|
return EINVAL;
|
|
|
|
process->delete_perf_events_buffer();
|
|
|
|
return 0;
|
|
|
|
}
|
2020-07-30 21:38:15 +00:00
|
|
|
}
|