2018-06-27 05:03:46 +00:00
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <fnd/types.h>
|
2018-10-14 05:45:09 +00:00
|
|
|
#include <fnd/IByteModel.h>
|
2018-10-22 13:30:49 +00:00
|
|
|
#include <nn/hac/define/aci.h>
|
|
|
|
#include <nn/hac/FileSystemAccessControl.h>
|
|
|
|
#include <nn/hac/ServiceAccessControl.h>
|
|
|
|
#include <nn/hac/KernelCapabilityControl.h>
|
2018-06-27 05:03:46 +00:00
|
|
|
|
2018-08-07 07:17:51 +00:00
|
|
|
namespace nn
|
|
|
|
{
|
|
|
|
namespace hac
|
2018-06-27 05:03:46 +00:00
|
|
|
{
|
2018-10-18 12:52:43 +00:00
|
|
|
class AccessControlInfo :
|
|
|
|
public fnd::IByteModel
|
2018-06-27 05:03:46 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-10-18 12:52:43 +00:00
|
|
|
AccessControlInfo();
|
|
|
|
AccessControlInfo(const AccessControlInfo& other);
|
2018-06-27 05:03:46 +00:00
|
|
|
|
2018-10-18 12:52:43 +00:00
|
|
|
void operator=(const AccessControlInfo& other);
|
|
|
|
bool operator==(const AccessControlInfo& other) const;
|
|
|
|
bool operator!=(const AccessControlInfo& other) const;
|
2018-06-27 05:03:46 +00:00
|
|
|
|
2018-10-18 12:52:43 +00:00
|
|
|
// IByteModel
|
2018-06-27 05:03:46 +00:00
|
|
|
void toBytes();
|
|
|
|
void fromBytes(const byte_t* data, size_t len);
|
|
|
|
const fnd::Vec<byte_t>& getBytes() const;
|
|
|
|
|
|
|
|
// variables
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
uint64_t getProgramId() const;
|
|
|
|
void setProgramId(uint64_t program_id);
|
|
|
|
|
2018-10-22 13:30:49 +00:00
|
|
|
const nn::hac::FileSystemAccessControl& getFileSystemAccessControl() const;
|
|
|
|
void setFileSystemAccessControl(const FileSystemAccessControl& fac);
|
2018-06-27 05:03:46 +00:00
|
|
|
|
2018-10-22 13:30:49 +00:00
|
|
|
const nn::hac::ServiceAccessControl& getServiceAccessControl() const;
|
|
|
|
void setServiceAccessControl(const ServiceAccessControl& sac);
|
2018-06-27 05:03:46 +00:00
|
|
|
|
2018-10-22 13:30:49 +00:00
|
|
|
const nn::hac::KernelCapabilityControl& getKernelCapabilities() const;
|
|
|
|
void setKernelCapabilities(const KernelCapabilityControl& kc);
|
2018-06-27 05:03:46 +00:00
|
|
|
private:
|
|
|
|
const std::string kModuleName = "ACCESS_CONTROL_INFO_BINARY";
|
|
|
|
|
|
|
|
// raw data
|
|
|
|
fnd::Vec<byte_t> mRawBinary;
|
|
|
|
|
|
|
|
// variables
|
|
|
|
uint64_t mProgramId;
|
2018-10-22 13:30:49 +00:00
|
|
|
nn::hac::FileSystemAccessControl mFileSystemAccessControl;
|
|
|
|
nn::hac::ServiceAccessControl mServiceAccessControl;
|
|
|
|
nn::hac::KernelCapabilityControl mKernelCapabilities;
|
2018-06-27 05:03:46 +00:00
|
|
|
};
|
2018-08-07 07:17:51 +00:00
|
|
|
}
|
2018-06-27 05:03:46 +00:00
|
|
|
}
|