2019-09-06 17:02:09 +02:00
|
|
|
#include <wups.h>
|
2019-12-07 22:15:43 +01:00
|
|
|
|
|
|
|
#include <zlib.h>
|
|
|
|
#include <stdarg.h>
|
2019-09-06 17:02:09 +02:00
|
|
|
#include <stdio.h>
|
2019-12-07 22:15:43 +01:00
|
|
|
#include <exception>
|
2019-09-06 17:02:09 +02:00
|
|
|
#include <string>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2019-09-08 21:06:53 +02:00
|
|
|
#include <coreinit/title.h>
|
|
|
|
#include <coreinit/cache.h>
|
2019-09-06 17:02:09 +02:00
|
|
|
#include <coreinit/systeminfo.h>
|
|
|
|
#include <coreinit/mcp.h>
|
|
|
|
#include <coreinit/filesystem.h>
|
2019-09-08 21:06:53 +02:00
|
|
|
#include <coreinit/systeminfo.h>
|
|
|
|
#include <coreinit/memorymap.h>
|
|
|
|
#include <coreinit/dynload.h>
|
|
|
|
#include <sysapp/title.h>
|
|
|
|
#include <nn/acp.h>
|
2019-09-06 17:02:09 +02:00
|
|
|
#include <nsysnet/socket.h>
|
|
|
|
#include <coreinit/ios.h>
|
|
|
|
#include <vpad/input.h>
|
|
|
|
#include <utils/logger.h>
|
|
|
|
#include <map>
|
|
|
|
#include <utils/utils.h>
|
2019-12-08 22:49:08 +01:00
|
|
|
#include "utils/StringTools.h"
|
2019-09-06 17:02:09 +02:00
|
|
|
#include <fs/DirList.h>
|
2019-12-08 22:49:08 +01:00
|
|
|
#include <wut_romfs_dev.h>
|
2019-11-24 14:14:45 +01:00
|
|
|
#include "filelist.h"
|
2019-12-08 22:49:08 +01:00
|
|
|
#include "readFileWrapper.h"
|
|
|
|
#include "romfs_helper.h"
|
2019-12-07 22:15:43 +01:00
|
|
|
|
2019-11-24 14:15:53 +01:00
|
|
|
WUPS_PLUGIN_NAME("Homebrew SysLauncher");
|
2019-11-24 14:14:45 +01:00
|
|
|
WUPS_PLUGIN_DESCRIPTION("Allows the user to load homebrew from the System Menu");
|
|
|
|
WUPS_PLUGIN_VERSION("0.1");
|
2019-09-06 17:02:09 +02:00
|
|
|
WUPS_PLUGIN_AUTHOR("Maschell");
|
|
|
|
WUPS_PLUGIN_LICENSE("GPL");
|
|
|
|
|
2019-12-08 22:49:08 +01:00
|
|
|
|
|
|
|
char gIconCache[65580] __attribute__((section(".data")));
|
2019-09-08 21:06:53 +02:00
|
|
|
ACPMetaXml gLaunchXML __attribute__((section(".data")));
|
|
|
|
MCPTitleListType template_title __attribute__((section(".data")));
|
|
|
|
BOOL gHomebrewLaunched __attribute__((section(".data")));
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
WUPS_USE_WUT_CRT()
|
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
INITIALIZE_PLUGIN() {
|
|
|
|
memset((void*) &template_title,0,sizeof(template_title));
|
|
|
|
memset((void*) &gLaunchXML,0,sizeof(gLaunchXML));
|
2019-11-24 14:14:45 +01:00
|
|
|
memset((void*) &gFileInfos,0,sizeof(gFileInfos));
|
2019-12-07 22:15:43 +01:00
|
|
|
memset((void*) &gFileReadInformation,0,sizeof(gFileReadInformation));
|
2019-12-08 22:49:08 +01:00
|
|
|
memset((void*) &gIconCache,0,sizeof(gIconCache));
|
2019-09-08 21:06:53 +02:00
|
|
|
gHomebrewLaunched = FALSE;
|
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
ON_APPLICATION_START(args) {
|
|
|
|
socket_lib_init();
|
|
|
|
log_init();
|
2019-11-24 14:14:45 +01:00
|
|
|
DEBUG_FUNCTION_LINE("IN PLUGIN\n");
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
if(_SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY) != OSGetTitleID()) {
|
|
|
|
DEBUG_FUNCTION_LINE("gHomebrewLaunched to FALSE\n");
|
2019-09-08 21:06:53 +02:00
|
|
|
gHomebrewLaunched = FALSE;
|
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
ON_APPLICATION_END() {
|
2019-12-08 22:49:08 +01:00
|
|
|
DeInitAllFiles();
|
2019-11-24 14:14:45 +01:00
|
|
|
unmountAllRomfs();
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
void fillXmlForTitleID(uint32_t titleid_upper, uint32_t titleid_lower, ACPMetaXml* out_buf) {
|
2019-12-08 22:49:08 +01:00
|
|
|
if(titleid_lower >= FILE_INFO_SIZE) {
|
2019-12-07 22:15:43 +01:00
|
|
|
return;
|
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
out_buf->title_id = ((uint64_t)titleid_upper * 0x100000000) + titleid_lower;
|
2019-11-24 14:14:45 +01:00
|
|
|
strncpy(out_buf->longname_en,gFileInfos[titleid_lower].name,511);
|
|
|
|
strncpy(out_buf->shortname_en,gFileInfos[titleid_lower].name,255);
|
|
|
|
strncpy(out_buf->publisher_en,gFileInfos[titleid_lower].name,255);
|
2019-09-12 18:55:49 +02:00
|
|
|
out_buf->e_manual = 1;
|
2019-11-24 14:14:45 +01:00
|
|
|
out_buf->e_manual_version = 0;
|
|
|
|
out_buf->title_version = 1;
|
|
|
|
out_buf->network_use = 1;
|
|
|
|
out_buf->launching_flag = 4;
|
|
|
|
out_buf->online_account_use = 1;
|
|
|
|
out_buf->os_version = 0x000500101000400A;
|
2019-09-12 18:55:49 +02:00
|
|
|
out_buf->region = 0xFFFFFFFF;
|
2019-11-24 14:14:45 +01:00
|
|
|
out_buf->common_save_size = 0x0000000001790000;
|
|
|
|
out_buf->group_id = 0x400;
|
|
|
|
out_buf->drc_use = 1;
|
|
|
|
out_buf->version = 1;
|
|
|
|
out_buf->reserved_flag0 = 0x00010001;
|
|
|
|
out_buf->reserved_flag6 = 0x00000003;
|
|
|
|
out_buf->pc_usk = 128;
|
|
|
|
strncpy(out_buf->product_code,"WUP-P-HBLD",strlen("WUP-P-HBLD"));
|
|
|
|
strncpy(out_buf->content_platform,"WUP",strlen("WUP"));
|
|
|
|
strncpy(out_buf->company_code,"0001",strlen("0001"));
|
|
|
|
}
|
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
DECL_FUNCTION(int32_t, MCP_TitleList, uint32_t handle, uint32_t* outTitleCount, MCPTitleListType* titleList, uint32_t size) {
|
|
|
|
int32_t result = real_MCP_TitleList(handle, outTitleCount, titleList, size);
|
|
|
|
uint32_t titlecount = *outTitleCount;
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DirList dirList("fs:/vol/external01/wiiu/apps", ".rpx,.wbf", DirList::Files | DirList::CheckSubfolders, 1);
|
2019-09-06 17:02:09 +02:00
|
|
|
dirList.SortList();
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
int j = 0;
|
|
|
|
for(int i = 0; i < dirList.GetFilecount(); i++) {
|
2019-12-08 22:49:08 +01:00
|
|
|
if(j >= FILE_INFO_SIZE) {
|
2019-12-07 22:15:43 +01:00
|
|
|
DEBUG_FUNCTION_LINE("TOO MANY TITLES\n");
|
|
|
|
break;
|
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
//! skip our own application in the listing
|
2019-11-24 14:14:45 +01:00
|
|
|
if(strcasecmp(dirList.GetFilename(i), "homebrew_launcher.rpx") == 0) {
|
2019-09-06 17:02:09 +02:00
|
|
|
continue;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
//! skip our own application in the listing
|
2019-11-24 14:14:45 +01:00
|
|
|
if(strcasecmp(dirList.GetFilename(i), "temp.rpx") == 0) {
|
2019-09-06 17:02:09 +02:00
|
|
|
continue;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
|
|
|
|
//! skip hidden linux and mac files
|
2019-11-24 14:14:45 +01:00
|
|
|
if(dirList.GetFilename(i)[0] == '.' || dirList.GetFilename(i)[0] == '_') {
|
2019-09-06 17:02:09 +02:00
|
|
|
continue;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
|
|
|
|
char buffer [25];
|
|
|
|
snprintf(buffer,25,"/custom/%08X%08X", 0x0005000F, j);
|
|
|
|
strcpy(template_title.path,buffer);
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
char * repl = (char*)"fs:/vol/external01/";
|
|
|
|
char * with = (char*)"";
|
|
|
|
char * input = (char*) dirList.GetFilepath(i);
|
|
|
|
|
2019-12-08 22:49:08 +01:00
|
|
|
char * path = StringTools::str_replace(input,repl, with);
|
2019-11-24 14:14:45 +01:00
|
|
|
if(path != NULL) {
|
|
|
|
strncpy(gFileInfos[j].path,path, 255);
|
|
|
|
free(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(gFileInfos[j].name, dirList.GetFilename(i),255);
|
|
|
|
gFileInfos[j].source = 0; //SD Card;
|
|
|
|
|
2019-12-07 22:15:43 +01:00
|
|
|
DEBUG_FUNCTION_LINE("[%d] %s\n",j, gFileInfos[j].path);
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
const char * indexedDevice = "mlc";
|
|
|
|
strcpy(template_title.indexedDevice,indexedDevice);
|
2019-12-08 22:49:08 +01:00
|
|
|
if(StringTools::EndsWith(gFileInfos[j].name, ".wbf")) {
|
2019-11-24 14:14:45 +01:00
|
|
|
|
|
|
|
template_title.appType = MCP_APP_TYPE_GAME;
|
|
|
|
} else {
|
|
|
|
// System apps don't have a splash screen.
|
|
|
|
template_title.appType = MCP_APP_TYPE_SYSTEM_APPS;
|
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
template_title.titleId = 0x0005000F00000000 + j;
|
2019-09-08 21:06:53 +02:00
|
|
|
template_title.titleVersion = 1;
|
|
|
|
template_title.groupId = 0x400;
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
template_title.osVersion = OSGetOSID();
|
|
|
|
template_title.sdkVersion = __OSGetProcessSDKVersion();
|
2019-11-24 14:14:45 +01:00
|
|
|
template_title.unk0x60 = 0;
|
2019-09-08 21:06:53 +02:00
|
|
|
|
|
|
|
memcpy(&(titleList[titlecount]), &template_title,sizeof(template_title));
|
2019-12-07 22:15:43 +01:00
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
titlecount++;
|
|
|
|
j++;
|
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
*outTitleCount = titlecount;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
DECL_FUNCTION(int32_t, MCP_GetTitleInfoByTitleAndDevice, uint32_t mcp_handle, uint32_t titleid_lower_1, uint32_t titleid_upper, uint32_t titleid_lower_2, uint32_t unknown, MCPTitleListType* title) {
|
|
|
|
if(gHomebrewLaunched) {
|
|
|
|
memcpy(title, &(template_title), sizeof(MCPTitleListType));
|
|
|
|
} else if(titleid_upper == 0x0005000F) {
|
|
|
|
char buffer [25];
|
2019-11-24 14:14:45 +01:00
|
|
|
snprintf(buffer,25,"/custom/%08X%08X", titleid_upper, titleid_lower_2);
|
2019-09-08 21:06:53 +02:00
|
|
|
strcpy(template_title.path,buffer);
|
|
|
|
template_title.titleId = 0x0005000F00000000 + titleid_lower_1;
|
|
|
|
memcpy(title, &(template_title), sizeof(MCPTitleListType));
|
2019-09-06 17:02:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
int result = real_MCP_GetTitleInfoByTitleAndDevice(mcp_handle, titleid_lower_1, titleid_upper, titleid_lower_2, unknown, title);
|
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
typedef struct __attribute((packed)) {
|
|
|
|
uint32_t command;
|
|
|
|
uint32_t target;
|
|
|
|
uint32_t filesize;
|
|
|
|
uint32_t fileoffset;
|
|
|
|
char path[256];
|
|
|
|
}
|
|
|
|
LOAD_REQUEST;
|
|
|
|
|
|
|
|
int32_t getRPXInfoForID(uint32_t id, romfs_fileInfo * info);
|
2019-09-06 17:02:09 +02:00
|
|
|
|
2019-09-12 18:55:49 +02:00
|
|
|
DECL_FUNCTION(int32_t, ACPCheckTitleLaunchByTitleListTypeEx, MCPTitleListType* title, uint32_t u2) {
|
2019-12-07 22:15:43 +01:00
|
|
|
if((title->titleId & 0x0005000F00000000) == 0x0005000F00000000 && (uint32_t)(title->titleId & 0xFFFFFFFF) < FILE_INFO_SIZE) {
|
2019-09-12 18:55:49 +02:00
|
|
|
DEBUG_FUNCTION_LINE("Started homebrew\n");
|
|
|
|
gHomebrewLaunched = TRUE;
|
|
|
|
fillXmlForTitleID((title->titleId & 0xFFFFFFFF00000000) >> 32,(title->titleId & 0xFFFFFFFF), &gLaunchXML);
|
2019-11-24 14:14:45 +01:00
|
|
|
|
|
|
|
LOAD_REQUEST request;
|
|
|
|
memset(&request, 0, sizeof(request));
|
|
|
|
|
|
|
|
request.command = 0xFC; // IPC_CUSTOM_LOAD_CUSTOM_RPX;
|
|
|
|
request.target = 0; // LOAD_FILE_TARGET_SD_CARD
|
|
|
|
request.filesize = 0; // unknown
|
|
|
|
request.fileoffset = 0; //
|
|
|
|
|
|
|
|
romfs_fileInfo info;
|
|
|
|
int res = getRPXInfoForID((title->titleId & 0xFFFFFFFF),&info);
|
|
|
|
if(res >= 0) {
|
|
|
|
request.filesize = ((uint32_t*)&info.length)[1];
|
|
|
|
request.fileoffset = ((uint32_t*)&info.offset)[1];
|
2019-12-08 22:49:08 +01:00
|
|
|
loadFileIntoBuffer((title->titleId & 0xFFFFFFFF),"meta/iconTex.tga",gIconCache,sizeof(gIconCache));
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(request.path, gFileInfos[(uint32_t)(title->titleId & 0xFFFFFFFF)].path, 255);
|
|
|
|
|
2019-12-08 22:49:08 +01:00
|
|
|
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DEBUG_FUNCTION_LINE("Loading file %s size: %08X offset: %08X\n", request.path, request.filesize, request.fileoffset);
|
|
|
|
|
|
|
|
DCFlushRange(&request, sizeof(LOAD_REQUEST));
|
|
|
|
|
|
|
|
int mcpFd = IOS_Open("/dev/mcp", (IOSOpenMode)0);
|
|
|
|
if(mcpFd >= 0) {
|
|
|
|
int out = 0;
|
|
|
|
IOS_Ioctl(mcpFd, 100, &request, sizeof(request), &out, sizeof(out));
|
|
|
|
IOS_Close(mcpFd);
|
|
|
|
}
|
2019-09-12 18:55:49 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2019-09-12 18:55:49 +02:00
|
|
|
int result = real_ACPCheckTitleLaunchByTitleListTypeEx(title, u2);
|
|
|
|
return result;
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(int, FSOpenFile, FSClient *client, FSCmdBlock *block, char *path, const char *mode, int *handle, int error) {
|
|
|
|
char * start = "/vol/storage_mlc01/sys/title/0005000F";
|
|
|
|
char * icon = ".tga";
|
|
|
|
char * iconTex = "iconTex.tga";
|
|
|
|
char * sound = ".btsnd";
|
|
|
|
|
2019-12-08 22:49:08 +01:00
|
|
|
if(StringTools::EndsWith(path,icon) || StringTools::EndsWith(path,sound)) {
|
|
|
|
if(strncmp(path,start,strlen(start)) == 0) {
|
2019-11-24 14:14:45 +01:00
|
|
|
int res = FS_STATUS_NOT_FOUND;
|
2019-12-08 22:49:08 +01:00
|
|
|
if(StringTools::EndsWith(path,iconTex)) {
|
2019-11-24 14:14:45 +01:00
|
|
|
// fallback to dummy icon if loaded homebrew is no .wbf
|
2019-12-07 22:15:43 +01:00
|
|
|
//*handle = 0x1337;
|
|
|
|
res = FS_STATUS_NOT_FOUND;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t val;
|
|
|
|
char * id = path+1+strlen(start);
|
|
|
|
id[8] = 0;
|
|
|
|
char * ending = id+9;
|
|
|
|
sscanf(id,"%08X", &val);
|
|
|
|
if(FSOpenFile_for_ID(val, ending, handle) < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
return FS_STATUS_OK;
|
2019-12-08 22:49:08 +01:00
|
|
|
} else if(gHomebrewLaunched) {
|
|
|
|
socket_lib_init();
|
|
|
|
log_init();
|
|
|
|
if(StringTools::EndsWith(path,iconTex)) {
|
|
|
|
*handle = 0x13371337;
|
|
|
|
DEBUG_FUNCTION_LINE("yooo let's do it\n");
|
|
|
|
return FS_STATUS_OK;
|
|
|
|
}else{
|
|
|
|
DEBUG_FUNCTION_LINE("%s\n",path);
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = real_FSOpenFile(client, block, path, mode, handle, error);
|
2019-09-12 18:55:49 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-12-07 22:15:43 +01:00
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(FSStatus, FSCloseFile, FSClient *client, FSCmdBlock *block, FSFileHandle handle, uint32_t flags) {
|
2019-12-08 22:49:08 +01:00
|
|
|
if(handle == 0x13371337) {
|
|
|
|
return FS_STATUS_OK;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
if((handle & 0xFF000000) == 0xFF000000) {
|
2019-12-08 22:49:08 +01:00
|
|
|
int32_t fd = (handle & 0x00000FFF);
|
|
|
|
int32_t romid = (handle & 0x00FFF000) >> 12;
|
|
|
|
DEBUG_FUNCTION_LINE("Close %d %d\n", fd, romid);
|
2019-12-07 22:15:43 +01:00
|
|
|
DeInitFile(fd);
|
2019-12-08 22:49:08 +01:00
|
|
|
if(gFileInfos[romid].openedFiles--) {
|
|
|
|
if(gFileInfos[romid].openedFiles <= 0) {
|
|
|
|
DEBUG_FUNCTION_LINE("unmount romfs no more handles\n");
|
|
|
|
unmountRomfs(romid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//unmountAllRomfs();
|
2019-11-24 14:14:45 +01:00
|
|
|
return FS_STATUS_OK;
|
|
|
|
}
|
|
|
|
return real_FSCloseFile(client,block,handle,flags);
|
|
|
|
}
|
|
|
|
|
2019-12-07 22:15:43 +01:00
|
|
|
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(FSStatus, FSReadFile, FSClient *client, FSCmdBlock *block, uint8_t *buffer, uint32_t size, uint32_t count, FSFileHandle handle,uint32_t unk1, uint32_t flags) {
|
2019-12-08 22:49:08 +01:00
|
|
|
if(handle == 0x13371337) {
|
2019-11-24 14:14:45 +01:00
|
|
|
int cpySize = size*count;
|
2019-12-08 22:49:08 +01:00
|
|
|
if(sizeof(gIconCache) < cpySize) {
|
|
|
|
cpySize = sizeof(gIconCache);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2019-12-08 22:49:08 +01:00
|
|
|
memcpy(buffer, gIconCache, cpySize);
|
|
|
|
DEBUG_FUNCTION_LINE("DUMMY\n");
|
2019-11-24 14:14:45 +01:00
|
|
|
return (FSStatus)(cpySize/size);
|
|
|
|
}
|
|
|
|
if((handle & 0xFF000000) == 0xFF000000) {
|
2019-12-08 22:49:08 +01:00
|
|
|
int32_t fd = (handle & 0x00000FFF);
|
|
|
|
int32_t romid = (handle & 0x00FFF000) >> 12;
|
|
|
|
|
|
|
|
DEBUG_FUNCTION_LINE("READ %d from %d rom: %d\n", size*count, fd, romid);
|
2019-12-07 22:15:43 +01:00
|
|
|
|
|
|
|
int readSize = readFile(fd, buffer, (size*count));
|
|
|
|
|
|
|
|
return (FSStatus)(readSize / size);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
FSStatus result = real_FSReadFile(client, block, buffer, size, count, handle, unk1, flags);
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
DECL_FUNCTION(int32_t, ACPGetTitleMetaXmlByDevice, uint32_t titleid_upper, uint32_t titleid_lower, ACPMetaXml* out_buf, uint32_t device, uint32_t u1) {
|
2019-09-06 17:02:09 +02:00
|
|
|
int result = real_ACPGetTitleMetaXmlByDevice(titleid_upper, titleid_lower, out_buf, device,u1);
|
2019-09-08 21:06:53 +02:00
|
|
|
if(titleid_upper == 0x0005000F) {
|
|
|
|
fillXmlForTitleID(titleid_upper,titleid_lower, out_buf);
|
2019-09-06 17:02:09 +02:00
|
|
|
result = 0;
|
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
return result;
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DECL_FUNCTION(int32_t, ACPGetTitleMetaDirByDevice, uint32_t titleid_upper, uint32_t titleid_lower, char* out_buf, uint32_t size, int device) {
|
2019-09-08 21:06:53 +02:00
|
|
|
if(titleid_upper == 0x0005000F) {
|
2019-11-24 14:14:45 +01:00
|
|
|
snprintf(out_buf,53,"/vol/storage_mlc01/sys/title/%08X/%08X/meta", titleid_upper, titleid_lower);
|
|
|
|
return 0;
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
2019-11-24 14:14:45 +01:00
|
|
|
int result = real_ACPGetTitleMetaDirByDevice(titleid_upper, titleid_lower, out_buf, size, device);
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
DECL_FUNCTION(int32_t, _SYSLaunchTitleByPathFromLauncher, char* pathToLoad, uint32_t u2) {
|
|
|
|
const char * start = "/custom/";
|
2019-09-08 21:06:53 +02:00
|
|
|
if(strncmp(pathToLoad,start,strlen(start)) == 0) {
|
|
|
|
strcpy(template_title.path,pathToLoad);
|
2019-11-24 14:14:45 +01:00
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
|
|
|
snprintf(pathToLoad,47,"/vol/storage_mlc01/sys/title/%08x/%08x", (uint32_t) (titleID >> 32), (uint32_t) (0x00000000FFFFFFFF & titleID));
|
2019-09-08 21:06:53 +02:00
|
|
|
}
|
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
int32_t result = real__SYSLaunchTitleByPathFromLauncher(pathToLoad, strlen(pathToLoad));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
DECL_FUNCTION(int32_t, ACPGetLaunchMetaXml, ACPMetaXml * metaxml) {
|
|
|
|
int result = real_ACPGetLaunchMetaXml(metaxml);
|
|
|
|
if(gHomebrewLaunched) {
|
|
|
|
memcpy(metaxml, &gLaunchXML, sizeof(gLaunchXML));
|
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(uint32_t, ACPGetApplicationBox,uint32_t * u1, uint32_t * u2, uint32_t u3, uint32_t u4) {
|
|
|
|
if(u3 == 0x0005000F) {
|
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
|
|
|
u3 = (uint32_t) (titleID >> 32);
|
|
|
|
u4 = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
2019-09-08 21:06:53 +02:00
|
|
|
}
|
2019-11-24 14:14:45 +01:00
|
|
|
uint32_t result = real_ACPGetApplicationBox(u1,u2,u3,u4);
|
2019-09-12 18:55:49 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(uint32_t, PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg, uint32_t * param ) {
|
|
|
|
if(param[2] == 0x0005000F) {
|
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
|
|
|
param[2] = (uint32_t) (titleID >> 32);
|
|
|
|
param[3] = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
2019-09-12 18:55:49 +02:00
|
|
|
}
|
2019-11-24 14:14:45 +01:00
|
|
|
uint32_t result = real_PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg(param);
|
2019-09-12 18:55:49 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(uint32_t, MCP_RightCheckLaunchable, uint32_t * u1, uint32_t * u2, uint32_t u3, uint32_t u4, uint32_t u5) {
|
|
|
|
if(u3 == 0x0005000F) {
|
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
|
|
|
u3 = (uint32_t) (titleID >> 32);
|
|
|
|
u4 = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
|
|
|
}
|
|
|
|
uint32_t result = real_MCP_RightCheckLaunchable(u1,u2,u3,u4,u5);
|
|
|
|
return result;
|
|
|
|
}
|
2019-09-12 18:55:49 +02:00
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(int32_t, HBM_NN_ACP_ACPGetTitleMetaXmlByDevice, uint32_t titleid_upper, uint32_t titleid_lower, ACPMetaXml* metaxml, uint32_t device) {
|
2019-09-12 18:55:49 +02:00
|
|
|
if(gHomebrewLaunched) {
|
2019-11-24 14:14:45 +01:00
|
|
|
memcpy(metaxml, &gLaunchXML, sizeof(gLaunchXML));
|
|
|
|
return 0;
|
2019-09-12 18:55:49 +02:00
|
|
|
}
|
2019-11-24 14:14:45 +01:00
|
|
|
int result = real_HBM_NN_ACP_ACPGetTitleMetaXmlByDevice(titleid_upper, titleid_lower, metaxml, device);
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
WUPS_MUST_REPLACE_PHYSICAL(HBM_NN_ACP_ACPGetTitleMetaXmlByDevice, 0x2E36CE44, 0x0E36CE44);
|
|
|
|
WUPS_MUST_REPLACE(ACPGetApplicationBox, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetApplicationBox );
|
|
|
|
WUPS_MUST_REPLACE(PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg, WUPS_LOADER_LIBRARY_DRMAPP, PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg );
|
|
|
|
WUPS_MUST_REPLACE(MCP_RightCheckLaunchable, WUPS_LOADER_LIBRARY_COREINIT, MCP_RightCheckLaunchable );
|
|
|
|
|
|
|
|
WUPS_MUST_REPLACE(FSReadFile, WUPS_LOADER_LIBRARY_COREINIT, FSReadFile);
|
|
|
|
WUPS_MUST_REPLACE(FSOpenFile, WUPS_LOADER_LIBRARY_COREINIT, FSOpenFile);
|
|
|
|
WUPS_MUST_REPLACE(FSCloseFile, WUPS_LOADER_LIBRARY_COREINIT, FSCloseFile);
|
|
|
|
WUPS_MUST_REPLACE(MCP_TitleList, WUPS_LOADER_LIBRARY_COREINIT, MCP_TitleList);
|
|
|
|
WUPS_MUST_REPLACE(MCP_GetTitleInfoByTitleAndDevice, WUPS_LOADER_LIBRARY_COREINIT, MCP_GetTitleInfoByTitleAndDevice );
|
|
|
|
|
|
|
|
WUPS_MUST_REPLACE(ACPCheckTitleLaunchByTitleListTypeEx, WUPS_LOADER_LIBRARY_NN_ACP, ACPCheckTitleLaunchByTitleListTypeEx );
|
|
|
|
WUPS_MUST_REPLACE(ACPGetTitleMetaXmlByDevice, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetTitleMetaXmlByDevice );
|
|
|
|
WUPS_MUST_REPLACE(ACPGetLaunchMetaXml, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetLaunchMetaXml );
|
|
|
|
WUPS_MUST_REPLACE(ACPGetTitleMetaDirByDevice, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetTitleMetaDirByDevice );
|
|
|
|
WUPS_MUST_REPLACE(_SYSLaunchTitleByPathFromLauncher, WUPS_LOADER_LIBRARY_SYSAPP, _SYSLaunchTitleByPathFromLauncher);
|