mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
39 lines
1,023 B
C
39 lines
1,023 B
C
|
#pragma once
|
||
|
#include <nx/IKernelCapabilityHandler.h>
|
||
|
|
||
|
namespace nx
|
||
|
{
|
||
|
class SystemCallHandler :
|
||
|
public IKernelCapabilityHandler
|
||
|
{
|
||
|
public:
|
||
|
SystemCallHandler();
|
||
|
|
||
|
bool operator==(const SystemCallHandler& other) const;
|
||
|
bool operator!=(const SystemCallHandler& other) const;
|
||
|
void operator=(const SystemCallHandler& other);
|
||
|
|
||
|
// kernel capabilty list in/out
|
||
|
void importKernelCapabilityList(const fnd::List<KernelCapability>& caps);
|
||
|
void exportKernelCapabilityList(fnd::List<KernelCapability>& caps) const;
|
||
|
void clear();
|
||
|
bool isSet() const;
|
||
|
|
||
|
// variables
|
||
|
const fnd::List<u8>& getSystemCalls() const;
|
||
|
void setSystemCalls(const fnd::List<u8>& calls);
|
||
|
|
||
|
private:
|
||
|
const std::string kModuleName = "SYSTEM_CALL_HANDLER";
|
||
|
static const u32 kMaxSystemCall = (BIT(3) * 24) - 1;
|
||
|
static const size_t kSyscallTotalEntryNum = (kMaxSystemCall / 24) + 1;
|
||
|
|
||
|
bool mIsSet;
|
||
|
fnd::List<u8> mSystemCalls;
|
||
|
|
||
|
void copyFrom(const SystemCallHandler& other);
|
||
|
bool isEqual(const SystemCallHandler& other) const;
|
||
|
};
|
||
|
|
||
|
}
|