2017-07-12 14:02:10 +00:00
|
|
|
#pragma once
|
2018-08-07 07:17:51 +00:00
|
|
|
#include <nn/hac/IKernelCapabilityHandler.h>
|
2017-07-12 14:02:10 +00:00
|
|
|
|
2018-08-07 07:17:51 +00:00
|
|
|
namespace nn
|
|
|
|
{
|
|
|
|
namespace hac
|
2017-07-12 14:02:10 +00:00
|
|
|
{
|
|
|
|
class SystemCallHandler :
|
|
|
|
public IKernelCapabilityHandler
|
|
|
|
{
|
|
|
|
public:
|
2018-04-15 02:35:20 +00:00
|
|
|
static const uint32_t kMaxSystemCall = (BIT(3) * 24) - 1;
|
|
|
|
|
2017-07-12 14:02:10 +00:00
|
|
|
SystemCallHandler();
|
|
|
|
|
2018-06-24 15:01:16 +00:00
|
|
|
void operator=(const SystemCallHandler& other);
|
2017-07-12 14:02:10 +00:00
|
|
|
bool operator==(const SystemCallHandler& other) const;
|
|
|
|
bool operator!=(const SystemCallHandler& other) const;
|
|
|
|
|
|
|
|
// kernel capabilty list in/out
|
2018-06-29 04:24:39 +00:00
|
|
|
void importKernelCapabilityList(const fnd::List<KernelCapabilityEntry>& caps);
|
|
|
|
void exportKernelCapabilityList(fnd::List<KernelCapabilityEntry>& caps) const;
|
2017-07-12 14:02:10 +00:00
|
|
|
void clear();
|
|
|
|
bool isSet() const;
|
|
|
|
|
|
|
|
// variables
|
2018-03-22 05:26:22 +00:00
|
|
|
const fnd::List<uint8_t>& getSystemCalls() const;
|
|
|
|
void setSystemCallList(const fnd::List<uint8_t>& calls);
|
2017-07-12 14:02:10 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const std::string kModuleName = "SYSTEM_CALL_HANDLER";
|
|
|
|
static const size_t kSyscallTotalEntryNum = (kMaxSystemCall / 24) + 1;
|
|
|
|
|
|
|
|
bool mIsSet;
|
2018-03-22 05:26:22 +00:00
|
|
|
fnd::List<uint8_t> mSystemCalls;
|
2017-07-12 14:02:10 +00:00
|
|
|
};
|
2018-08-07 07:17:51 +00:00
|
|
|
}
|
2017-07-12 14:02:10 +00:00
|
|
|
}
|