nstool/lib/libnx/source/SystemCallEntry.cpp
2018-03-22 13:26:22 +08:00

77 lines
1.5 KiB
C++

#include <nx/SystemCallEntry.h>
nx::SystemCallEntry::SystemCallEntry() :
mCap(kCapId),
mSystemCallUpper(0),
mSystemCallLower(0)
{
}
nx::SystemCallEntry::SystemCallEntry(const KernelCapability & kernel_cap) :
mCap(kCapId),
mSystemCallUpper(0),
mSystemCallLower(0)
{
setKernelCapability(kernel_cap);
}
nx::SystemCallEntry::SystemCallEntry(uint32_t upper_bits, uint32_t lower_bits) :
mCap(kCapId),
mSystemCallUpper(0),
mSystemCallLower(0)
{
setSystemCallUpperBits(upper_bits);
setSystemCallLowerBits(lower_bits);
}
const nx::KernelCapability & nx::SystemCallEntry::getKernelCapability() const
{
return mCap;
}
void nx::SystemCallEntry::setKernelCapability(const KernelCapability & kernel_cap)
{
if (kernel_cap.getType() != kCapId)
{
throw fnd::Exception(kModuleName, "KernelCapability is not type 'EnableSystemCalls'");
}
mCap = kernel_cap;
processCapField();
}
uint32_t nx::SystemCallEntry::getSystemCallUpperBits() const
{
return mSystemCallUpper;
}
void nx::SystemCallEntry::setSystemCallUpperBits(uint32_t upper_bits)
{
if (upper_bits > kSysCallUpperMax)
{
throw fnd::Exception(kModuleName, "Illegal SystemCall upper bits.");
}
mSystemCallUpper = upper_bits;
updateCapField();
}
uint32_t nx::SystemCallEntry::getSystemCallLowerBits() const
{
return mSystemCallLower;
}
void nx::SystemCallEntry::setSystemCallLowerBits(uint32_t lower_bits)
{
if (lower_bits > kSysCallLowerMax)
{
throw fnd::Exception(kModuleName, "Illegal SystemCall upper bits.");
}
mSystemCallLower = lower_bits;
updateCapField();
}