/* * Copyright (c) 2018-2020 Atmosphère-NX * * 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 . */ #include namespace ams::kern::svc { /* ============================= Common ============================= */ namespace { Result SetHeapSize(uintptr_t *out_address, size_t size) { /* Validate size. */ R_UNLESS(util::IsAligned(size, ams::svc::HeapSizeAlignment), svc::ResultInvalidSize()); R_UNLESS(size < ams::kern::MainMemorySize, svc::ResultInvalidSize()); /* Set the heap size. */ KProcessAddress address; R_TRY(GetCurrentProcess().GetPageTable().SetHeapSize(std::addressof(address), size)); /* Set the output. */ *out_address = GetInteger(address); return ResultSuccess(); } Result SetUnsafeLimit(size_t limit) { /* Ensure the size is aligned. */ R_UNLESS(util::IsAligned(limit, PageSize), svc::ResultInvalidSize()); /* Ensure that the size is not bigger than we can accommodate. */ R_UNLESS(limit <= Kernel::GetMemoryManager().GetSize(KMemoryManager::Pool_Unsafe), svc::ResultOutOfRange()); /* Set the size. */ return Kernel::GetUnsafeMemory().SetLimitSize(limit); } } /* ============================= 64 ABI ============================= */ Result SetHeapSize64(ams::svc::Address *out_address, ams::svc::Size size) { static_assert(sizeof(*out_address) == sizeof(uintptr_t)); return SetHeapSize(reinterpret_cast(out_address), size); } Result MapPhysicalMemory64(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcMapPhysicalMemory64 was called."); } Result UnmapPhysicalMemory64(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcUnmapPhysicalMemory64 was called."); } Result MapPhysicalMemoryUnsafe64(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcMapPhysicalMemoryUnsafe64 was called."); } Result UnmapPhysicalMemoryUnsafe64(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcUnmapPhysicalMemoryUnsafe64 was called."); } Result SetUnsafeLimit64(ams::svc::Size limit) { return SetUnsafeLimit(limit); } /* ============================= 64From32 ABI ============================= */ Result SetHeapSize64From32(ams::svc::Address *out_address, ams::svc::Size size) { static_assert(sizeof(*out_address) == sizeof(uintptr_t)); return SetHeapSize(reinterpret_cast(out_address), size); } Result MapPhysicalMemory64From32(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcMapPhysicalMemory64From32 was called."); } Result UnmapPhysicalMemory64From32(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcUnmapPhysicalMemory64From32 was called."); } Result MapPhysicalMemoryUnsafe64From32(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcMapPhysicalMemoryUnsafe64From32 was called."); } Result UnmapPhysicalMemoryUnsafe64From32(ams::svc::Address address, ams::svc::Size size) { MESOSPHERE_PANIC("Stubbed SvcUnmapPhysicalMemoryUnsafe64From32 was called."); } Result SetUnsafeLimit64From32(ams::svc::Size limit) { return SetUnsafeLimit(limit); } }