ldr_ro: use IPC helper
This commit is contained in:
parent
26979cd6ef
commit
11ea159aa4
|
@ -40,9 +40,6 @@ static const ResultCode ERROR_INVALID_MEMORY_STATE = // 0xD8A12C08
|
||||||
static const ResultCode ERROR_NOT_LOADED = // 0xD8A12C0D
|
static const ResultCode ERROR_NOT_LOADED = // 0xD8A12C0D
|
||||||
ResultCode(static_cast<ErrorDescription>(13), ErrorModule::RO, ErrorSummary::InvalidState,
|
ResultCode(static_cast<ErrorDescription>(13), ErrorModule::RO, ErrorSummary::InvalidState,
|
||||||
ErrorLevel::Permanent);
|
ErrorLevel::Permanent);
|
||||||
static const ResultCode ERROR_INVALID_DESCRIPTOR = // 0xD9001830
|
|
||||||
ResultCode(ErrorDescription::OS_InvalidBufferDescriptor, ErrorModule::OS,
|
|
||||||
ErrorSummary::WrongArgument, ErrorLevel::Permanent);
|
|
||||||
|
|
||||||
static MemorySynchronizer memory_synchronizer;
|
static MemorySynchronizer memory_synchronizer;
|
||||||
|
|
||||||
|
@ -71,66 +68,61 @@ static bool VerifyBufferState(VAddr buffer_ptr, u32 size) {
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
static void Initialize(Interface* self) {
|
static void Initialize(Interface* self) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x01, 3, 2);
|
||||||
VAddr crs_buffer_ptr = cmd_buff[1];
|
VAddr crs_buffer_ptr = rp.Pop<u32>();
|
||||||
u32 crs_size = cmd_buff[2];
|
u32 crs_size = rp.Pop<u32>();
|
||||||
VAddr crs_address = cmd_buff[3];
|
VAddr crs_address = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[4];
|
// TODO (wwylele): RO service checks the descriptor here and return error 0xD9001830 for
|
||||||
u32 process = cmd_buff[5];
|
// incorrect descriptor. This error return should be probably built in IPC::RequestParser.
|
||||||
|
// All other service functions below have the same issue.
|
||||||
|
Kernel::Handle process = rp.PopHandle();
|
||||||
|
|
||||||
LOG_DEBUG(Service_LDR, "called, crs_buffer_ptr=0x%08X, crs_address=0x%08X, crs_size=0x%X, "
|
LOG_DEBUG(Service_LDR,
|
||||||
"descriptor=0x%08X, process=0x%08X",
|
"called, crs_buffer_ptr=0x%08X, crs_address=0x%08X, crs_size=0x%X, process=0x%08X",
|
||||||
crs_buffer_ptr, crs_address, crs_size, descriptor, process);
|
crs_buffer_ptr, crs_address, crs_size, process);
|
||||||
|
|
||||||
if (descriptor != 0) {
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(1, 1, 0);
|
|
||||||
|
|
||||||
if (loaded_crs != 0) {
|
if (loaded_crs != 0) {
|
||||||
LOG_ERROR(Service_LDR, "Already initialized");
|
LOG_ERROR(Service_LDR, "Already initialized");
|
||||||
cmd_buff[1] = ERROR_ALREADY_INITIALIZED.raw;
|
rb.Push(ERROR_ALREADY_INITIALIZED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crs_size < CRO_HEADER_SIZE) {
|
if (crs_size < CRO_HEADER_SIZE) {
|
||||||
LOG_ERROR(Service_LDR, "CRS is too small");
|
LOG_ERROR(Service_LDR, "CRS is too small");
|
||||||
cmd_buff[1] = ERROR_BUFFER_TOO_SMALL.raw;
|
rb.Push(ERROR_BUFFER_TOO_SMALL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crs_buffer_ptr & Memory::PAGE_MASK) {
|
if (crs_buffer_ptr & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRS original address is not aligned");
|
LOG_ERROR(Service_LDR, "CRS original address is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_ADDRESS.raw;
|
rb.Push(ERROR_MISALIGNED_ADDRESS);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crs_address & Memory::PAGE_MASK) {
|
if (crs_address & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRS mapping address is not aligned");
|
LOG_ERROR(Service_LDR, "CRS mapping address is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_ADDRESS.raw;
|
rb.Push(ERROR_MISALIGNED_ADDRESS);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crs_size & Memory::PAGE_MASK) {
|
if (crs_size & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRS size is not aligned");
|
LOG_ERROR(Service_LDR, "CRS size is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_SIZE.raw;
|
rb.Push(ERROR_MISALIGNED_SIZE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!VerifyBufferState(crs_buffer_ptr, crs_size)) {
|
if (!VerifyBufferState(crs_buffer_ptr, crs_size)) {
|
||||||
LOG_ERROR(Service_LDR, "CRS original buffer is in invalid state");
|
LOG_ERROR(Service_LDR, "CRS original buffer is in invalid state");
|
||||||
cmd_buff[1] = ERROR_INVALID_MEMORY_STATE.raw;
|
rb.Push(ERROR_INVALID_MEMORY_STATE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crs_address < Memory::PROCESS_IMAGE_VADDR ||
|
if (crs_address < Memory::PROCESS_IMAGE_VADDR ||
|
||||||
crs_address + crs_size > Memory::PROCESS_IMAGE_VADDR_END) {
|
crs_address + crs_size > Memory::PROCESS_IMAGE_VADDR_END) {
|
||||||
LOG_ERROR(Service_LDR, "CRS mapping address is not in the process image region");
|
LOG_ERROR(Service_LDR, "CRS mapping address is not in the process image region");
|
||||||
cmd_buff[1] = ERROR_ILLEGAL_ADDRESS.raw;
|
rb.Push(ERROR_ILLEGAL_ADDRESS);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,7 +137,7 @@ static void Initialize(Interface* self) {
|
||||||
.Code();
|
.Code();
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error mapping memory block %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error mapping memory block %08X", result.raw);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,7 +145,7 @@ static void Initialize(Interface* self) {
|
||||||
Kernel::VMAPermission::Read);
|
Kernel::VMAPermission::Read);
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error reprotecting memory block %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error reprotecting memory block %08X", result.raw);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -172,7 +164,7 @@ static void Initialize(Interface* self) {
|
||||||
result = crs.Rebase(0, crs_size, 0, 0, 0, 0, true);
|
result = crs.Rebase(0, crs_size, 0, 0, 0, 0, true);
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error rebasing CRS 0x%08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error rebasing CRS 0x%08X", result.raw);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -180,7 +172,7 @@ static void Initialize(Interface* self) {
|
||||||
|
|
||||||
loaded_crs = crs_address;
|
loaded_crs = crs_address;
|
||||||
|
|
||||||
cmd_buff[1] = RESULT_SUCCESS.raw;
|
rb.Push(RESULT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -196,25 +188,17 @@ static void Initialize(Interface* self) {
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
static void LoadCRR(Interface* self) {
|
static void LoadCRR(Interface* self) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x02, 2, 2);
|
||||||
u32 crr_buffer_ptr = cmd_buff[1];
|
VAddr crr_buffer_ptr = rp.Pop<u32>();
|
||||||
u32 crr_size = cmd_buff[2];
|
u32 crr_size = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[3];
|
Kernel::Handle process = rp.PopHandle();
|
||||||
u32 process = cmd_buff[4];
|
|
||||||
|
|
||||||
if (descriptor != 0) {
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
rb.Push(RESULT_SUCCESS);
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(2, 1, 0);
|
LOG_WARNING(Service_LDR,
|
||||||
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
"(STUBBED) called, crr_buffer_ptr=0x%08X, crr_size=0x%08X, process=0x%08X",
|
||||||
|
crr_buffer_ptr, crr_size, process);
|
||||||
LOG_WARNING(Service_LDR, "(STUBBED) called, crr_buffer_ptr=0x%08X, crr_size=0x%08X, "
|
|
||||||
"descriptor=0x%08X, process=0x%08X",
|
|
||||||
crr_buffer_ptr, crr_size, descriptor, process);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -229,24 +213,15 @@ static void LoadCRR(Interface* self) {
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
static void UnloadCRR(Interface* self) {
|
static void UnloadCRR(Interface* self) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x03, 1, 2);
|
||||||
u32 crr_buffer_ptr = cmd_buff[1];
|
u32 crr_buffer_ptr = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[2];
|
Kernel::Handle process = rp.PopHandle();
|
||||||
u32 process = cmd_buff[3];
|
|
||||||
|
|
||||||
if (descriptor != 0) {
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
rb.Push(RESULT_SUCCESS);
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(3, 1, 0);
|
LOG_WARNING(Service_LDR, "(STUBBED) called, crr_buffer_ptr=0x%08X, process=0x%08X",
|
||||||
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
|
crr_buffer_ptr, process);
|
||||||
|
|
||||||
LOG_WARNING(Service_LDR,
|
|
||||||
"(STUBBED) called, crr_buffer_ptr=0x%08X, descriptor=0x%08X, process=0x%08X",
|
|
||||||
crr_buffer_ptr, descriptor, process);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -276,87 +251,85 @@ static void UnloadCRR(Interface* self) {
|
||||||
* There is a dispatcher template below.
|
* There is a dispatcher template below.
|
||||||
*/
|
*/
|
||||||
static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), link_on_load_bug_fix ? 0x09 : 0x04, 11, 2);
|
||||||
VAddr cro_buffer_ptr = cmd_buff[1];
|
VAddr cro_buffer_ptr = rp.Pop<u32>();
|
||||||
VAddr cro_address = cmd_buff[2];
|
VAddr cro_address = rp.Pop<u32>();
|
||||||
u32 cro_size = cmd_buff[3];
|
u32 cro_size = rp.Pop<u32>();
|
||||||
VAddr data_segment_address = cmd_buff[4];
|
VAddr data_segment_address = rp.Pop<u32>();
|
||||||
u32 zero = cmd_buff[5];
|
u32 zero = rp.Pop<u32>();
|
||||||
u32 data_segment_size = cmd_buff[6];
|
u32 data_segment_size = rp.Pop<u32>();
|
||||||
u32 bss_segment_address = cmd_buff[7];
|
u32 bss_segment_address = rp.Pop<u32>();
|
||||||
u32 bss_segment_size = cmd_buff[8];
|
u32 bss_segment_size = rp.Pop<u32>();
|
||||||
bool auto_link = (cmd_buff[9] & 0xFF) != 0;
|
bool auto_link = rp.Pop<bool>();
|
||||||
u32 fix_level = cmd_buff[10];
|
u32 fix_level = rp.Pop<u32>();
|
||||||
VAddr crr_address = cmd_buff[11];
|
VAddr crr_address = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[12];
|
Kernel::Handle process = rp.PopHandle();
|
||||||
u32 process = cmd_buff[13];
|
|
||||||
|
|
||||||
LOG_DEBUG(Service_LDR,
|
LOG_DEBUG(Service_LDR, "called (%s), cro_buffer_ptr=0x%08X, cro_address=0x%08X, cro_size=0x%X, "
|
||||||
"called (%s), cro_buffer_ptr=0x%08X, cro_address=0x%08X, cro_size=0x%X, "
|
"data_segment_address=0x%08X, zero=%d, data_segment_size=0x%X, "
|
||||||
"data_segment_address=0x%08X, zero=%d, data_segment_size=0x%X, "
|
"bss_segment_address=0x%08X, bss_segment_size=0x%X, auto_link=%s, "
|
||||||
"bss_segment_address=0x%08X, bss_segment_size=0x%X, "
|
"fix_level=%d, crr_address=0x%08X, process=0x%08X",
|
||||||
"auto_link=%s, fix_level=%d, crr_address=0x%08X, descriptor=0x%08X, process=0x%08X",
|
|
||||||
link_on_load_bug_fix ? "new" : "old", cro_buffer_ptr, cro_address, cro_size,
|
link_on_load_bug_fix ? "new" : "old", cro_buffer_ptr, cro_address, cro_size,
|
||||||
data_segment_address, zero, data_segment_size, bss_segment_address, bss_segment_size,
|
data_segment_address, zero, data_segment_size, bss_segment_address, bss_segment_size,
|
||||||
auto_link ? "true" : "false", fix_level, crr_address, descriptor, process);
|
auto_link ? "true" : "false", fix_level, crr_address, process);
|
||||||
|
|
||||||
if (descriptor != 0) {
|
IPC::RequestBuilder rb = rp.MakeBuilder(2, 0);
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(link_on_load_bug_fix ? 9 : 4, 2, 0);
|
|
||||||
|
|
||||||
if (loaded_crs == 0) {
|
if (loaded_crs == 0) {
|
||||||
LOG_ERROR(Service_LDR, "Not initialized");
|
LOG_ERROR(Service_LDR, "Not initialized");
|
||||||
cmd_buff[1] = ERROR_NOT_INITIALIZED.raw;
|
rb.Push(ERROR_NOT_INITIALIZED);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_size < CRO_HEADER_SIZE) {
|
if (cro_size < CRO_HEADER_SIZE) {
|
||||||
LOG_ERROR(Service_LDR, "CRO too small");
|
LOG_ERROR(Service_LDR, "CRO too small");
|
||||||
cmd_buff[1] = ERROR_BUFFER_TOO_SMALL.raw;
|
rb.Push(ERROR_BUFFER_TOO_SMALL);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_buffer_ptr & Memory::PAGE_MASK) {
|
if (cro_buffer_ptr & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRO original address is not aligned");
|
LOG_ERROR(Service_LDR, "CRO original address is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_ADDRESS.raw;
|
rb.Push(ERROR_MISALIGNED_ADDRESS);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_address & Memory::PAGE_MASK) {
|
if (cro_address & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRO mapping address is not aligned");
|
LOG_ERROR(Service_LDR, "CRO mapping address is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_ADDRESS.raw;
|
rb.Push(ERROR_MISALIGNED_ADDRESS);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_size & Memory::PAGE_MASK) {
|
if (cro_size & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRO size is not aligned");
|
LOG_ERROR(Service_LDR, "CRO size is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_SIZE.raw;
|
rb.Push(ERROR_MISALIGNED_SIZE);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!VerifyBufferState(cro_buffer_ptr, cro_size)) {
|
if (!VerifyBufferState(cro_buffer_ptr, cro_size)) {
|
||||||
LOG_ERROR(Service_LDR, "CRO original buffer is in invalid state");
|
LOG_ERROR(Service_LDR, "CRO original buffer is in invalid state");
|
||||||
cmd_buff[1] = ERROR_INVALID_MEMORY_STATE.raw;
|
rb.Push(ERROR_INVALID_MEMORY_STATE);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_address < Memory::PROCESS_IMAGE_VADDR ||
|
if (cro_address < Memory::PROCESS_IMAGE_VADDR ||
|
||||||
cro_address + cro_size > Memory::PROCESS_IMAGE_VADDR_END) {
|
cro_address + cro_size > Memory::PROCESS_IMAGE_VADDR_END) {
|
||||||
LOG_ERROR(Service_LDR, "CRO mapping address is not in the process image region");
|
LOG_ERROR(Service_LDR, "CRO mapping address is not in the process image region");
|
||||||
cmd_buff[1] = ERROR_ILLEGAL_ADDRESS.raw;
|
rb.Push(ERROR_ILLEGAL_ADDRESS);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (zero) {
|
if (zero) {
|
||||||
LOG_ERROR(Service_LDR, "Zero is not zero %d", zero);
|
LOG_ERROR(Service_LDR, "Zero is not zero %d", zero);
|
||||||
cmd_buff[1] = ResultCode(static_cast<ErrorDescription>(29), ErrorModule::RO,
|
rb.Push(ResultCode(static_cast<ErrorDescription>(29), ErrorModule::RO,
|
||||||
ErrorSummary::Internal, ErrorLevel::Usage)
|
ErrorSummary::Internal, ErrorLevel::Usage));
|
||||||
.raw;
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -371,7 +344,8 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
.Code();
|
.Code();
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error mapping memory block %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error mapping memory block %08X", result.raw);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -380,7 +354,8 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error reprotecting memory block %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error reprotecting memory block %08X", result.raw);
|
||||||
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -400,7 +375,8 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error verifying CRO in CRR %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error verifying CRO in CRR %08X", result.raw);
|
||||||
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -409,7 +385,8 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error rebasing CRO %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error rebasing CRO %08X", result.raw);
|
||||||
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -417,7 +394,8 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error linking CRO %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error linking CRO %08X", result.raw);
|
||||||
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -435,7 +413,8 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error unmapping memory block %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error unmapping memory block %08X", result.raw);
|
||||||
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, cro_size);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -453,7 +432,8 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error reprotecting memory block %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error reprotecting memory block %08X", result.raw);
|
||||||
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, fix_size);
|
Kernel::g_current_process->vm_manager.UnmapRange(cro_address, fix_size);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
|
rb.Push<u32>(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -463,8 +443,7 @@ static void LoadCRO(Interface* self, bool link_on_load_bug_fix) {
|
||||||
LOG_INFO(Service_LDR, "CRO \"%s\" loaded at 0x%08X, fixed_end=0x%08X", cro.ModuleName().data(),
|
LOG_INFO(Service_LDR, "CRO \"%s\" loaded at 0x%08X, fixed_end=0x%08X", cro.ModuleName().data(),
|
||||||
cro_address, cro_address + fix_size);
|
cro_address, cro_address + fix_size);
|
||||||
|
|
||||||
cmd_buff[1] = RESULT_SUCCESS.raw;
|
rb.Push(RESULT_SUCCESS, fix_size);
|
||||||
cmd_buff[2] = fix_size;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <bool link_on_load_bug_fix>
|
template <bool link_on_load_bug_fix>
|
||||||
|
@ -486,43 +465,35 @@ static void LoadCRO(Interface* self) {
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
static void UnloadCRO(Interface* self) {
|
static void UnloadCRO(Interface* self) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x05, 3, 2);
|
||||||
VAddr cro_address = cmd_buff[1];
|
VAddr cro_address = rp.Pop<u32>();
|
||||||
u32 zero = cmd_buff[2];
|
u32 zero = rp.Pop<u32>();
|
||||||
VAddr cro_buffer_ptr = cmd_buff[3];
|
VAddr cro_buffer_ptr = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[4];
|
Kernel::Handle process = rp.PopHandle();
|
||||||
u32 process = cmd_buff[5];
|
|
||||||
|
|
||||||
LOG_DEBUG(Service_LDR, "called, cro_address=0x%08X, zero=%d, cro_buffer_ptr=0x%08X, "
|
LOG_DEBUG(Service_LDR,
|
||||||
"descriptor=0x%08X, process=0x%08X",
|
"called, cro_address=0x%08X, zero=%d, cro_buffer_ptr=0x%08X, process=0x%08X",
|
||||||
cro_address, zero, cro_buffer_ptr, descriptor, process);
|
cro_address, zero, cro_buffer_ptr, process);
|
||||||
|
|
||||||
if (descriptor != 0) {
|
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
CROHelper cro(cro_address);
|
CROHelper cro(cro_address);
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(5, 1, 0);
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
|
|
||||||
if (loaded_crs == 0) {
|
if (loaded_crs == 0) {
|
||||||
LOG_ERROR(Service_LDR, "Not initialized");
|
LOG_ERROR(Service_LDR, "Not initialized");
|
||||||
cmd_buff[1] = ERROR_NOT_INITIALIZED.raw;
|
rb.Push(ERROR_NOT_INITIALIZED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_address & Memory::PAGE_MASK) {
|
if (cro_address & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRO address is not aligned");
|
LOG_ERROR(Service_LDR, "CRO address is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_ADDRESS.raw;
|
rb.Push(ERROR_MISALIGNED_ADDRESS);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!cro.IsLoaded()) {
|
if (!cro.IsLoaded()) {
|
||||||
LOG_ERROR(Service_LDR, "Invalid or not loaded CRO");
|
LOG_ERROR(Service_LDR, "Invalid or not loaded CRO");
|
||||||
cmd_buff[1] = ERROR_NOT_LOADED.raw;
|
rb.Push(ERROR_NOT_LOADED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -535,7 +506,7 @@ static void UnloadCRO(Interface* self) {
|
||||||
ResultCode result = cro.Unlink(loaded_crs);
|
ResultCode result = cro.Unlink(loaded_crs);
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error unlinking CRO %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error unlinking CRO %08X", result.raw);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -545,7 +516,7 @@ static void UnloadCRO(Interface* self) {
|
||||||
result = cro.ClearRelocations();
|
result = cro.ClearRelocations();
|
||||||
if (result.IsError()) {
|
if (result.IsError()) {
|
||||||
LOG_ERROR(Service_LDR, "Error clearing relocations %08X", result.raw);
|
LOG_ERROR(Service_LDR, "Error clearing relocations %08X", result.raw);
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -565,7 +536,7 @@ static void UnloadCRO(Interface* self) {
|
||||||
|
|
||||||
Core::CPU().ClearInstructionCache();
|
Core::CPU().ClearInstructionCache();
|
||||||
|
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -580,40 +551,31 @@ static void UnloadCRO(Interface* self) {
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
static void LinkCRO(Interface* self) {
|
static void LinkCRO(Interface* self) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x06, 1, 2);
|
||||||
VAddr cro_address = cmd_buff[1];
|
VAddr cro_address = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[2];
|
Kernel::Handle process = rp.PopHandle();
|
||||||
u32 process = cmd_buff[3];
|
|
||||||
|
|
||||||
LOG_DEBUG(Service_LDR, "called, cro_address=0x%08X, descriptor=0x%08X, process=0x%08X",
|
LOG_DEBUG(Service_LDR, "called, cro_address=0x%08X, process=0x%08X", cro_address, process);
|
||||||
cro_address, descriptor, process);
|
|
||||||
|
|
||||||
if (descriptor != 0) {
|
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
CROHelper cro(cro_address);
|
CROHelper cro(cro_address);
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(6, 1, 0);
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
|
|
||||||
if (loaded_crs == 0) {
|
if (loaded_crs == 0) {
|
||||||
LOG_ERROR(Service_LDR, "Not initialized");
|
LOG_ERROR(Service_LDR, "Not initialized");
|
||||||
cmd_buff[1] = ERROR_NOT_INITIALIZED.raw;
|
rb.Push(ERROR_NOT_INITIALIZED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_address & Memory::PAGE_MASK) {
|
if (cro_address & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRO address is not aligned");
|
LOG_ERROR(Service_LDR, "CRO address is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_ADDRESS.raw;
|
rb.Push(ERROR_MISALIGNED_ADDRESS);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!cro.IsLoaded()) {
|
if (!cro.IsLoaded()) {
|
||||||
LOG_ERROR(Service_LDR, "Invalid or not loaded CRO");
|
LOG_ERROR(Service_LDR, "Invalid or not loaded CRO");
|
||||||
cmd_buff[1] = ERROR_NOT_LOADED.raw;
|
rb.Push(ERROR_NOT_LOADED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -627,7 +589,7 @@ static void LinkCRO(Interface* self) {
|
||||||
memory_synchronizer.SynchronizeOriginalMemory();
|
memory_synchronizer.SynchronizeOriginalMemory();
|
||||||
Core::CPU().ClearInstructionCache();
|
Core::CPU().ClearInstructionCache();
|
||||||
|
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -642,40 +604,31 @@ static void LinkCRO(Interface* self) {
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
static void UnlinkCRO(Interface* self) {
|
static void UnlinkCRO(Interface* self) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x07, 1, 2);
|
||||||
VAddr cro_address = cmd_buff[1];
|
VAddr cro_address = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[2];
|
Kernel::Handle process = rp.PopHandle();
|
||||||
u32 process = cmd_buff[3];
|
|
||||||
|
|
||||||
LOG_DEBUG(Service_LDR, "called, cro_address=0x%08X, descriptor=0x%08X, process=0x%08X",
|
LOG_DEBUG(Service_LDR, "called, cro_address=0x%08X, process=0x%08X", cro_address, process);
|
||||||
cro_address, descriptor, process);
|
|
||||||
|
|
||||||
if (descriptor != 0) {
|
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
CROHelper cro(cro_address);
|
CROHelper cro(cro_address);
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(7, 1, 0);
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
|
|
||||||
if (loaded_crs == 0) {
|
if (loaded_crs == 0) {
|
||||||
LOG_ERROR(Service_LDR, "Not initialized");
|
LOG_ERROR(Service_LDR, "Not initialized");
|
||||||
cmd_buff[1] = ERROR_NOT_INITIALIZED.raw;
|
rb.Push(ERROR_NOT_INITIALIZED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cro_address & Memory::PAGE_MASK) {
|
if (cro_address & Memory::PAGE_MASK) {
|
||||||
LOG_ERROR(Service_LDR, "CRO address is not aligned");
|
LOG_ERROR(Service_LDR, "CRO address is not aligned");
|
||||||
cmd_buff[1] = ERROR_MISALIGNED_ADDRESS.raw;
|
rb.Push(ERROR_MISALIGNED_ADDRESS);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!cro.IsLoaded()) {
|
if (!cro.IsLoaded()) {
|
||||||
LOG_ERROR(Service_LDR, "Invalid or not loaded CRO");
|
LOG_ERROR(Service_LDR, "Invalid or not loaded CRO");
|
||||||
cmd_buff[1] = ERROR_NOT_LOADED.raw;
|
rb.Push(ERROR_NOT_LOADED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -689,7 +642,7 @@ static void UnlinkCRO(Interface* self) {
|
||||||
memory_synchronizer.SynchronizeOriginalMemory();
|
memory_synchronizer.SynchronizeOriginalMemory();
|
||||||
Core::CPU().ClearInstructionCache();
|
Core::CPU().ClearInstructionCache();
|
||||||
|
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -704,29 +657,21 @@ static void UnlinkCRO(Interface* self) {
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
static void Shutdown(Interface* self) {
|
static void Shutdown(Interface* self) {
|
||||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x08, 1, 2);
|
||||||
VAddr crs_buffer_ptr = cmd_buff[1];
|
VAddr crs_buffer_ptr = rp.Pop<u32>();
|
||||||
u32 descriptor = cmd_buff[2];
|
Kernel::Handle process = rp.PopHandle();
|
||||||
u32 process = cmd_buff[3];
|
|
||||||
|
|
||||||
LOG_DEBUG(Service_LDR, "called, crs_buffer_ptr=0x%08X, descriptor=0x%08X, process=0x%08X",
|
LOG_DEBUG(Service_LDR, "called, crs_buffer_ptr=0x%08X, process=0x%08X", crs_buffer_ptr,
|
||||||
crs_buffer_ptr, descriptor, process);
|
process);
|
||||||
|
|
||||||
if (descriptor != 0) {
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
LOG_ERROR(Service_LDR, "IPC handle descriptor failed validation (0x%X)", descriptor);
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(0, 1, 0);
|
|
||||||
cmd_buff[1] = ERROR_INVALID_DESCRIPTOR.raw;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (loaded_crs == 0) {
|
if (loaded_crs == 0) {
|
||||||
LOG_ERROR(Service_LDR, "Not initialized");
|
LOG_ERROR(Service_LDR, "Not initialized");
|
||||||
cmd_buff[1] = ERROR_NOT_INITIALIZED.raw;
|
rb.Push(ERROR_NOT_INITIALIZED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd_buff[0] = IPC::MakeHeader(8, 1, 0);
|
|
||||||
|
|
||||||
CROHelper crs(loaded_crs);
|
CROHelper crs(loaded_crs);
|
||||||
crs.Unrebase(true);
|
crs.Unrebase(true);
|
||||||
|
|
||||||
|
@ -744,7 +689,7 @@ static void Shutdown(Interface* self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
loaded_crs = 0;
|
loaded_crs = 0;
|
||||||
cmd_buff[1] = result.raw;
|
rb.Push(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
const Interface::FunctionInfo FunctionTable[] = {
|
const Interface::FunctionInfo FunctionTable[] = {
|
||||||
|
|
Reference in New Issue