2018-04-19 06:00:10 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
|
2018-04-27 03:27:52 +01:00
|
|
|
#include "ldr_map.hpp"
|
|
|
|
|
2018-04-19 06:00:10 +01:00
|
|
|
#define REGISTRATION_LIST_MAX (0x40)
|
|
|
|
|
|
|
|
#define NSO_INFO_MAX (0x20)
|
2018-04-27 00:03:10 +01:00
|
|
|
#define NRR_INFO_MAX (0x40)
|
2018-04-27 10:17:07 +01:00
|
|
|
#define NRO_INFO_MAX (0x40)
|
2018-04-19 06:00:10 +01:00
|
|
|
|
|
|
|
class Registration {
|
|
|
|
public:
|
|
|
|
struct NsoInfo {
|
|
|
|
u64 base_address;
|
|
|
|
u64 size;
|
|
|
|
unsigned char build_id[0x20];
|
|
|
|
};
|
|
|
|
|
2018-04-19 23:14:48 +01:00
|
|
|
struct NsoInfoHolder {
|
|
|
|
bool in_use;
|
|
|
|
NsoInfo info;
|
|
|
|
};
|
|
|
|
|
2018-04-27 10:17:07 +01:00
|
|
|
struct NroInfo {
|
|
|
|
bool in_use;
|
|
|
|
u64 base_address;
|
|
|
|
u64 total_mapped_size;
|
|
|
|
u64 nro_heap_address;
|
|
|
|
u64 nro_heap_size;
|
|
|
|
u64 bss_heap_address;
|
|
|
|
u64 bss_heap_size;
|
|
|
|
u64 text_size;
|
|
|
|
u64 ro_size;
|
|
|
|
u64 rw_size;
|
|
|
|
unsigned char build_id[0x20];
|
|
|
|
};
|
|
|
|
|
2018-04-19 06:00:10 +01:00
|
|
|
struct TidSid {
|
|
|
|
u64 title_id;
|
|
|
|
FsStorageId storage_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Process {
|
|
|
|
bool in_use;
|
2018-04-26 21:53:33 +01:00
|
|
|
bool is_64_bit_addspace;
|
2018-04-19 06:00:10 +01:00
|
|
|
u64 index;
|
|
|
|
u64 process_id;
|
|
|
|
u64 title_id_min;
|
|
|
|
Registration::TidSid tid_sid;
|
2018-04-19 23:14:48 +01:00
|
|
|
Registration::NsoInfoHolder nso_infos[NSO_INFO_MAX];
|
2018-04-27 10:17:07 +01:00
|
|
|
Registration::NroInfo nro_infos[NRO_INFO_MAX];
|
2018-04-27 03:27:52 +01:00
|
|
|
MappedCodeMemory nrr_infos[NRR_INFO_MAX];
|
2018-04-27 02:13:55 +01:00
|
|
|
void *owner_ro_service;
|
2018-04-19 06:00:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct List {
|
|
|
|
Registration::Process processes[REGISTRATION_LIST_MAX];
|
|
|
|
u64 num_processes;
|
|
|
|
};
|
|
|
|
|
2018-04-27 00:03:10 +01:00
|
|
|
static Registration::Process *GetFreeProcess();
|
|
|
|
static Registration::Process *GetProcess(u64 index);
|
|
|
|
static Registration::Process *GetProcessByProcessId(u64 pid);
|
2018-04-27 03:50:27 +01:00
|
|
|
static Registration::Process *GetProcessByRoService(void *service);
|
2018-04-27 00:03:10 +01:00
|
|
|
static Result GetRegisteredTidSid(u64 index, Registration::TidSid *out);
|
|
|
|
static bool RegisterTidSid(const TidSid *tid_sid, u64 *out_index);
|
|
|
|
static bool UnregisterIndex(u64 index);
|
|
|
|
static void SetProcessIdTidMinAndIs64BitAddressSpace(u64 index, u64 process_id, u64 tid_min, bool is_64_bit_addspace);
|
|
|
|
static void AddNsoInfo(u64 index, u64 base_address, u64 size, const unsigned char *build_id);
|
2018-04-27 03:50:27 +01:00
|
|
|
static void CloseRoService(void *service, Handle process_h);
|
2018-04-27 03:27:52 +01:00
|
|
|
static Result AddNrrInfo(u64 index, MappedCodeMemory *nrr_info);
|
2018-04-27 03:37:38 +01:00
|
|
|
static Result RemoveNrrInfo(u64 index, u64 base_address);
|
2018-04-27 10:17:07 +01:00
|
|
|
static bool IsNroHashPresent(u64 index, u8 *nro_hash);
|
|
|
|
static bool IsNroAlreadyLoaded(u64 index, u8 *build_id);
|
|
|
|
static void AddNroToProcess(u64 index, MappedCodeMemory *nro, MappedCodeMemory *bss, u32 text_size, u32 ro_size, u32 rw_size, u8 *build_id);
|
2018-04-27 10:33:44 +01:00
|
|
|
static Result RemoveNroInfo(u64 index, Handle process_h, u64 base_address);
|
2018-04-27 00:03:10 +01:00
|
|
|
static Result GetNsoInfosForProcessId(NsoInfo *out, u32 max_out, u64 process_id, u32 *num_written);
|
2018-04-19 06:00:10 +01:00
|
|
|
};
|