2017-06-05 02:02:04 +02:00
|
|
|
/*
|
|
|
|
* This file is part of Luma3DS
|
2020-04-25 14:26:21 +02:00
|
|
|
* Copyright (C) 2016-2020 Aurora Wright, TuxSH
|
2017-06-05 02:02:04 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
|
|
|
|
* * Requiring preservation of specified reasonable legal notices or
|
|
|
|
* author attributions in that material or in the Appropriate Legal
|
|
|
|
* Notices displayed by works containing it.
|
|
|
|
* * Prohibiting misrepresentation of the origin of that material,
|
|
|
|
* or requiring that modified versions of such material be marked in
|
|
|
|
* reasonable ways as different from the original version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <3ds.h>
|
|
|
|
#include "memory.h"
|
|
|
|
#include "menu.h"
|
2019-03-16 23:40:43 +01:00
|
|
|
#include "service_manager.h"
|
2017-06-05 02:02:04 +02:00
|
|
|
#include "errdisp.h"
|
|
|
|
#include "hbloader.h"
|
2019-03-16 23:40:43 +01:00
|
|
|
#include "3dsx.h"
|
2017-06-05 02:02:04 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "MyThread.h"
|
|
|
|
#include "menus/process_patches.h"
|
2017-06-18 22:31:21 +02:00
|
|
|
#include "menus/miscellaneous.h"
|
2019-03-31 20:01:16 +02:00
|
|
|
#include "menus/debugger.h"
|
2018-04-15 16:26:20 +02:00
|
|
|
#include "menus/screen_filters.h"
|
2020-04-26 12:47:15 +02:00
|
|
|
#include "menus/cheats.h"
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2019-04-18 22:58:53 +02:00
|
|
|
#include "task_runner.h"
|
|
|
|
|
2020-04-26 02:50:47 +02:00
|
|
|
bool isN3DS;
|
|
|
|
|
2019-03-29 22:40:54 +01:00
|
|
|
static Result stealFsReg(void)
|
|
|
|
{
|
|
|
|
Result ret = 0;
|
|
|
|
|
|
|
|
ret = svcControlService(SERVICEOP_STEAL_CLIENT_SESSION, fsRegGetSessionHandle(), "fs:REG");
|
|
|
|
while(ret == 0x9401BFE)
|
|
|
|
{
|
|
|
|
svcSleepThread(500 * 1000LL);
|
|
|
|
ret = svcControlService(SERVICEOP_STEAL_CLIENT_SESSION, fsRegGetSessionHandle(), "fs:REG");
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Result fsRegSetupPermissions(void)
|
|
|
|
{
|
|
|
|
u32 pid;
|
|
|
|
Result res;
|
|
|
|
FS_ProgramInfo info;
|
|
|
|
|
|
|
|
ExHeader_Arm11StorageInfo storageInfo = {
|
|
|
|
.fs_access_info = FSACCESS_NANDRO_RW | FSACCESS_NANDRW | FSACCESS_SDMC_RW,
|
|
|
|
};
|
|
|
|
|
|
|
|
info.programId = 0x0004013000006902LL; // Rosalina TID
|
|
|
|
info.mediaType = MEDIATYPE_NAND;
|
|
|
|
|
|
|
|
if(R_SUCCEEDED(res = svcGetProcessId(&pid, CUR_PROCESS_HANDLE)))
|
|
|
|
res = FSREG_Register(pid, 0xFFFF000000000000LL, &info, &storageInfo);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2020-04-26 02:50:47 +02:00
|
|
|
Result __sync_init(void);
|
|
|
|
Result __sync_fini(void);
|
|
|
|
void __libc_init_array(void);
|
|
|
|
void __libc_fini_array(void);
|
2019-07-21 19:05:37 +02:00
|
|
|
|
2020-04-26 02:50:47 +02:00
|
|
|
void __ctru_exit(int rc) { (void)rc; } // needed to avoid linking error
|
2017-06-05 02:02:04 +02:00
|
|
|
|
|
|
|
// this is called after main exits
|
2020-04-27 02:07:57 +02:00
|
|
|
void __wrap_exit(int rc)
|
2017-06-05 02:02:04 +02:00
|
|
|
{
|
2020-04-26 02:50:47 +02:00
|
|
|
(void)rc;
|
|
|
|
// TODO: make pm terminate rosalina
|
|
|
|
__libc_fini_array();
|
|
|
|
|
2020-04-26 20:36:59 +02:00
|
|
|
// Kernel will take care of it all
|
2020-04-26 21:55:52 +02:00
|
|
|
/*
|
2019-03-30 18:12:54 +01:00
|
|
|
pmDbgExit();
|
2017-06-05 02:02:04 +02:00
|
|
|
fsExit();
|
2019-03-11 00:17:01 +01:00
|
|
|
svcCloseHandle(*fsRegGetSessionHandle());
|
|
|
|
srvExit();
|
2020-04-26 20:36:59 +02:00
|
|
|
__sync_fini();*/
|
2020-04-26 22:37:18 +02:00
|
|
|
|
2017-06-05 02:02:04 +02:00
|
|
|
svcExitProcess();
|
|
|
|
}
|
|
|
|
|
2020-04-26 02:50:47 +02:00
|
|
|
// this is called before main
|
|
|
|
void initSystem(void)
|
2017-06-05 02:02:04 +02:00
|
|
|
{
|
2017-06-18 22:31:21 +02:00
|
|
|
s64 out;
|
2020-04-26 02:50:47 +02:00
|
|
|
Result res;
|
|
|
|
__sync_init();
|
|
|
|
|
2017-06-18 22:31:21 +02:00
|
|
|
isN3DS = svcGetSystemInfo(&out, 0x10001, 0) == 0;
|
|
|
|
|
|
|
|
svcGetSystemInfo(&out, 0x10000, 0x100);
|
|
|
|
HBLDR_3DSX_TID = out == 0 ? HBLDR_DEFAULT_3DSX_TID : (u64)out;
|
|
|
|
|
|
|
|
svcGetSystemInfo(&out, 0x10000, 0x101);
|
|
|
|
menuCombo = out == 0 ? DEFAULT_MENU_COMBO : (u32)out;
|
|
|
|
|
|
|
|
miscellaneousMenu.items[0].title = HBLDR_3DSX_TID == HBLDR_DEFAULT_3DSX_TID ? "Switch the hb. title to the current app." :
|
|
|
|
"Switch the hb. title to hblauncher_loader";
|
2017-11-02 21:52:14 +01:00
|
|
|
|
|
|
|
ProcessPatchesMenu_PatchUnpatchFSDirectly();
|
2020-04-26 02:50:47 +02:00
|
|
|
|
|
|
|
for(res = 0xD88007FA; res == (Result)0xD88007FA; svcSleepThread(500 * 1000LL))
|
|
|
|
{
|
|
|
|
res = srvInit();
|
|
|
|
if(R_FAILED(res) && res != (Result)0xD88007FA)
|
|
|
|
svcBreak(USERBREAK_PANIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (R_FAILED(stealFsReg()) || R_FAILED(fsRegSetupPermissions()) || R_FAILED(fsInit()))
|
|
|
|
svcBreak(USERBREAK_PANIC);
|
|
|
|
|
|
|
|
if (R_FAILED(pmDbgInit()))
|
|
|
|
svcBreak(USERBREAK_PANIC);
|
|
|
|
|
2020-04-26 21:55:52 +02:00
|
|
|
// **** DO NOT init services that don't come from KIPs here ****
|
|
|
|
// Instead, init the service only where it's actually init (then deinit it).
|
2020-04-26 02:50:47 +02:00
|
|
|
|
2018-05-23 03:16:32 +02:00
|
|
|
__libc_init_array();
|
2018-01-15 02:27:07 +01:00
|
|
|
|
|
|
|
// ROSALINA HACKJOB BEGIN
|
|
|
|
// NORMAL APPS SHOULD NOT DO THIS, EVER
|
|
|
|
u32 *tls = (u32 *)getThreadLocalStorage();
|
|
|
|
memset(tls, 0, 0x80);
|
2018-06-14 18:13:57 +02:00
|
|
|
tls[0] = 0x21545624;
|
2018-01-15 02:27:07 +01:00
|
|
|
// ROSALINA HACKJOB END
|
|
|
|
|
|
|
|
// Rosalina specific:
|
|
|
|
srvSetBlockingPolicy(true); // GetServiceHandle nonblocking if service port is full
|
2017-06-05 02:02:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool terminationRequest = false;
|
|
|
|
Handle terminationRequestEvent;
|
|
|
|
|
2019-03-16 23:40:43 +01:00
|
|
|
static void handleTermNotification(u32 notificationId)
|
|
|
|
{
|
|
|
|
(void)notificationId;
|
|
|
|
// Termination request
|
|
|
|
terminationRequest = true;
|
|
|
|
svcSignalEvent(terminationRequestEvent);
|
|
|
|
}
|
|
|
|
|
2019-03-31 20:01:16 +02:00
|
|
|
static void handleNextApplicationDebuggedByForce(u32 notificationId)
|
|
|
|
{
|
|
|
|
(void)notificationId;
|
2019-04-18 22:58:53 +02:00
|
|
|
// Following call needs to be async because pm -> Loader depends on rosalina hb:ldr, handled in this very thread.
|
2020-04-26 22:37:18 +02:00
|
|
|
TaskRunner_RunTask(debuggerFetchAndSetNextApplicationDebugHandleTask, NULL, 0);
|
2019-03-31 20:01:16 +02:00
|
|
|
}
|
|
|
|
|
2019-03-16 23:40:43 +01:00
|
|
|
static const ServiceManagerServiceEntry services[] = {
|
|
|
|
{ "hb:ldr", 2, HBLDR_HandleCommands, true },
|
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const ServiceManagerNotificationEntry notifications[] = {
|
2019-03-31 20:01:16 +02:00
|
|
|
{ 0x100 , handleTermNotification },
|
|
|
|
{ 0x1000, handleNextApplicationDebuggedByForce },
|
2019-03-16 23:40:43 +01:00
|
|
|
{ 0x000, NULL },
|
|
|
|
};
|
|
|
|
|
2017-06-05 02:02:04 +02:00
|
|
|
int main(void)
|
|
|
|
{
|
2019-03-16 23:40:43 +01:00
|
|
|
static u8 ipcBuf[0x100] = {0}; // used by both err:f and hb:ldr
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2019-03-16 23:40:43 +01:00
|
|
|
// Set up static buffers for IPC
|
|
|
|
u32* bufPtrs = getThreadStaticBuffers();
|
|
|
|
memset(bufPtrs, 0, 16 * 2 * 4);
|
|
|
|
bufPtrs[0] = IPC_Desc_StaticBuffer(sizeof(ipcBuf), 0);
|
|
|
|
bufPtrs[1] = (u32)ipcBuf;
|
|
|
|
bufPtrs[2] = IPC_Desc_StaticBuffer(sizeof(ldrArgvBuf), 1);
|
|
|
|
bufPtrs[3] = (u32)ldrArgvBuf;
|
2017-06-05 02:02:04 +02:00
|
|
|
|
|
|
|
if(R_FAILED(svcCreateEvent(&terminationRequestEvent, RESET_STICKY)))
|
|
|
|
svcBreak(USERBREAK_ASSERT);
|
|
|
|
|
2020-04-26 12:47:15 +02:00
|
|
|
Cheat_SeedRng(svcGetSystemTick());
|
|
|
|
|
2019-03-16 23:40:43 +01:00
|
|
|
MyThread *menuThread = menuCreateThread();
|
2019-04-18 22:58:53 +02:00
|
|
|
MyThread *taskRunnerThread = taskRunnerCreateThread();
|
2020-04-16 01:16:25 +02:00
|
|
|
MyThread *errDispThread = errDispCreateThread();
|
2018-04-15 16:26:20 +02:00
|
|
|
|
2019-03-16 23:40:43 +01:00
|
|
|
if (R_FAILED(ServiceManager_Run(services, notifications, NULL)))
|
|
|
|
svcBreak(USERBREAK_PANIC);
|
2017-06-05 02:02:04 +02:00
|
|
|
|
2020-04-26 22:37:18 +02:00
|
|
|
TaskRunner_Terminate();
|
|
|
|
|
2017-06-05 02:02:04 +02:00
|
|
|
MyThread_Join(menuThread, -1LL);
|
2019-04-18 22:58:53 +02:00
|
|
|
MyThread_Join(taskRunnerThread, -1LL);
|
2020-04-16 01:16:25 +02:00
|
|
|
MyThread_Join(errDispThread, -1LL);
|
2017-06-05 02:02:04 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|