mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:08:42 +00:00
c963b3c804
* Generic Math Update Updated Several functions in Ryujinx.Common/Utilities/BitUtils to use generic math * Updated BitUtil calls * Removed Whitespace * Switched decrement * Fixed changed method calls. The method calls were originally changed on accident due to me relying too much on intellisense doing stuff for me * Update Ryujinx.Common/Utilities/BitUtils.cs Co-authored-by: gdkchan <gab.dark.100@gmail.com> Co-authored-by: gdkchan <gab.dark.100@gmail.com>
63 lines
2 KiB
C#
63 lines
2 KiB
C#
using Ryujinx.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|
{
|
|
class KSharedMemory : KAutoObject
|
|
{
|
|
private readonly KPageList _pageList;
|
|
|
|
private readonly ulong _ownerPid;
|
|
|
|
private readonly KMemoryPermission _ownerPermission;
|
|
private readonly KMemoryPermission _userPermission;
|
|
|
|
public KSharedMemory(
|
|
KernelContext context,
|
|
SharedMemoryStorage storage,
|
|
ulong ownerPid,
|
|
KMemoryPermission ownerPermission,
|
|
KMemoryPermission userPermission) : base(context)
|
|
{
|
|
_pageList = storage.GetPageList();
|
|
_ownerPid = ownerPid;
|
|
_ownerPermission = ownerPermission;
|
|
_userPermission = userPermission;
|
|
}
|
|
|
|
public KernelResult MapIntoProcess(
|
|
KPageTableBase memoryManager,
|
|
ulong address,
|
|
ulong size,
|
|
KProcess process,
|
|
KMemoryPermission permission)
|
|
{
|
|
if (_pageList.GetPagesCount() != BitUtils.DivRoundUp<ulong>(size, KPageTableBase.PageSize))
|
|
{
|
|
return KernelResult.InvalidSize;
|
|
}
|
|
|
|
KMemoryPermission expectedPermission = process.Pid == _ownerPid
|
|
? _ownerPermission
|
|
: _userPermission;
|
|
|
|
if (permission != expectedPermission)
|
|
{
|
|
return KernelResult.InvalidPermission;
|
|
}
|
|
|
|
return memoryManager.MapPages(address, _pageList, MemoryState.SharedMemory, permission);
|
|
}
|
|
|
|
public KernelResult UnmapFromProcess(KPageTableBase memoryManager, ulong address, ulong size, KProcess process)
|
|
{
|
|
if (_pageList.GetPagesCount() != BitUtils.DivRoundUp<ulong>(size, KPageTableBase.PageSize))
|
|
{
|
|
return KernelResult.InvalidSize;
|
|
}
|
|
|
|
return memoryManager.UnmapPages(address, _pageList, MemoryState.SharedMemory);
|
|
}
|
|
}
|
|
} |