2020-03-16 08:02:55 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-03-16 08:02:55 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
2020-03-16 20:08:20 +00:00
|
|
|
#include "os_rng_manager_impl.hpp"
|
2020-04-08 09:21:35 +00:00
|
|
|
#include "os_thread_manager_types.hpp"
|
2022-03-12 23:05:43 +00:00
|
|
|
#include "os_stack_guard_manager_types.hpp"
|
2020-03-16 08:02:55 +00:00
|
|
|
#include "os_tick_manager_impl.hpp"
|
2020-11-21 01:48:58 +00:00
|
|
|
#include "os_aslr_space_manager_types.hpp"
|
2022-03-06 20:08:20 +00:00
|
|
|
#include "os_tls_manager_types.hpp"
|
|
|
|
#include "os_giant_lock_types.hpp"
|
|
|
|
#include "os_vamm_manager_types.hpp"
|
2020-03-16 08:02:55 +00:00
|
|
|
|
|
|
|
namespace ams::os::impl {
|
|
|
|
|
|
|
|
class OsResourceManager {
|
|
|
|
private:
|
2021-10-10 07:14:06 +00:00
|
|
|
RngManager m_rng_manager{};
|
|
|
|
AslrSpaceManager m_aslr_space_manager{};
|
2022-03-12 23:05:43 +00:00
|
|
|
StackGuardManager m_stack_guard_manager;
|
2021-10-10 07:14:06 +00:00
|
|
|
ThreadManager m_thread_manager{};
|
2022-03-06 20:08:20 +00:00
|
|
|
//TlsManager m_tls_manager{};
|
2021-10-10 07:14:06 +00:00
|
|
|
TickManager m_tick_manager{};
|
2020-03-16 08:02:55 +00:00
|
|
|
/* TODO */
|
2022-03-06 20:08:20 +00:00
|
|
|
VammManager m_vamm_manager;
|
|
|
|
GiantLock m_giant_lock{};
|
2020-03-16 08:02:55 +00:00
|
|
|
public:
|
2020-04-08 09:21:35 +00:00
|
|
|
OsResourceManager() = default;
|
2020-03-16 08:02:55 +00:00
|
|
|
|
2021-10-10 07:14:06 +00:00
|
|
|
constexpr ALWAYS_INLINE RngManager &GetRngManager() { return m_rng_manager; }
|
|
|
|
constexpr ALWAYS_INLINE AslrSpaceManager &GetAslrSpaceManager() { return m_aslr_space_manager; }
|
|
|
|
constexpr ALWAYS_INLINE ThreadManager &GetThreadManager() { return m_thread_manager; }
|
2022-03-12 23:05:43 +00:00
|
|
|
constexpr ALWAYS_INLINE StackGuardManager &GetStackGuardManager() { return m_stack_guard_manager; }
|
2022-03-06 20:08:20 +00:00
|
|
|
//constexpr ALWAYS_INLINE TlsManager &GetTlsManager() { return m_tls_manager; }
|
2021-10-10 07:14:06 +00:00
|
|
|
constexpr ALWAYS_INLINE TickManager &GetTickManager() { return m_tick_manager; }
|
2022-03-06 20:08:20 +00:00
|
|
|
constexpr ALWAYS_INLINE VammManager &GetVammManager() { return m_vamm_manager; }
|
|
|
|
constexpr ALWAYS_INLINE GiantLock &GetGiantLock() { return m_giant_lock; }
|
2020-03-16 08:02:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ResourceManagerHolder {
|
|
|
|
private:
|
2022-03-06 20:08:20 +00:00
|
|
|
static constinit util::TypedStorage<OsResourceManager> s_resource_manager_storage;
|
2020-03-16 08:02:55 +00:00
|
|
|
private:
|
|
|
|
constexpr ResourceManagerHolder() { /* ... */ }
|
|
|
|
public:
|
2020-04-17 05:57:01 +00:00
|
|
|
static ALWAYS_INLINE void InitializeResourceManagerInstance() {
|
|
|
|
/* Construct the resource manager instance. */
|
2021-03-22 03:30:40 +00:00
|
|
|
util::ConstructAt(s_resource_manager_storage);
|
2020-04-17 05:57:01 +00:00
|
|
|
}
|
|
|
|
|
2020-03-16 08:02:55 +00:00
|
|
|
static ALWAYS_INLINE OsResourceManager &GetResourceManagerInstance() {
|
2020-04-17 05:57:01 +00:00
|
|
|
return GetReference(s_resource_manager_storage);
|
2020-03-16 08:02:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ALWAYS_INLINE OsResourceManager &GetResourceManager() {
|
|
|
|
return ResourceManagerHolder::GetResourceManagerInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|