2020-12-23 23:31:17 +00:00
|
|
|
#include "mainmenu.h"
|
2020-12-23 16:39:22 +00:00
|
|
|
#include "../gfx/gfx.h"
|
|
|
|
#include "../gfx/gfxutils.h"
|
|
|
|
#include "../gfx/menu.h"
|
|
|
|
#include "tools.h"
|
2020-05-01 21:42:49 +01:00
|
|
|
#include "../hid/hid.h"
|
2020-12-23 16:39:22 +00:00
|
|
|
#include "../fs/menus/explorer.h"
|
2020-12-25 20:16:24 +00:00
|
|
|
#include "tconf.h"
|
2020-12-26 21:24:41 +00:00
|
|
|
#include "../keys/keys.h"
|
2020-12-26 22:41:25 +00:00
|
|
|
#include "../storage/mountmanager.h"
|
2020-12-27 22:33:23 +00:00
|
|
|
#include "../storage/gptmenu.h"
|
|
|
|
#include "../storage/emummc.h"
|
2020-12-29 00:53:39 +00:00
|
|
|
#include "../fs/fsutils.h"
|
2021-01-11 23:30:14 +00:00
|
|
|
#include "../utils/utils.h"
|
2021-01-21 16:59:49 +00:00
|
|
|
#include "../config.h"
|
2021-07-18 22:51:27 +01:00
|
|
|
#include "../fs/readers/folderReader.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "../fs/menus/filemenu.h"
|
2022-01-22 00:59:17 +00:00
|
|
|
#include <bdk.h>
|
2021-01-21 16:59:49 +00:00
|
|
|
|
2021-07-21 14:19:27 +01:00
|
|
|
#define INCLUDE_BUILTIN_SCRIPTS 1
|
2021-07-26 19:47:23 +01:00
|
|
|
//#define SCRIPT_ONLY 1
|
2021-07-19 20:44:15 +01:00
|
|
|
|
|
|
|
#ifdef INCLUDE_BUILTIN_SCRIPTS
|
2021-07-23 13:03:49 +01:00
|
|
|
#include "../../build/TegraExplorer/script/builtin.h"
|
2021-07-19 20:44:15 +01:00
|
|
|
#endif
|
|
|
|
|
2021-01-21 16:59:49 +00:00
|
|
|
extern hekate_config h_cfg;
|
2020-12-29 00:53:39 +00:00
|
|
|
|
|
|
|
enum {
|
2021-07-26 19:47:23 +01:00
|
|
|
#ifndef SCRIPT_ONLY
|
2020-12-29 00:53:39 +00:00
|
|
|
MainExplore = 0,
|
|
|
|
MainBrowseSd,
|
|
|
|
MainMountSd,
|
|
|
|
MainBrowseEmmc,
|
|
|
|
MainBrowseEmummc,
|
|
|
|
MainTools,
|
|
|
|
MainPartitionSd,
|
|
|
|
MainViewKeys,
|
2021-01-01 10:43:31 +00:00
|
|
|
MainViewCredits,
|
2020-12-29 00:53:39 +00:00
|
|
|
MainExit,
|
2021-07-26 19:47:23 +01:00
|
|
|
#else
|
|
|
|
MainExit = 0,
|
|
|
|
#endif
|
2020-12-29 12:11:52 +00:00
|
|
|
MainPowerOff,
|
2020-12-29 00:53:39 +00:00
|
|
|
MainRebootRCM,
|
2021-01-21 16:59:49 +00:00
|
|
|
MainRebootNormal,
|
2020-12-29 12:11:52 +00:00
|
|
|
MainRebootHekate,
|
2021-07-18 22:51:27 +01:00
|
|
|
MainRebootAMS,
|
|
|
|
MainScripts,
|
2020-12-29 00:53:39 +00:00
|
|
|
};
|
2020-12-23 16:39:22 +00:00
|
|
|
|
|
|
|
MenuEntry_t mainMenuEntries[] = {
|
2021-07-26 19:47:23 +01:00
|
|
|
#ifndef SCRIPT_ONLY
|
2020-12-29 00:53:39 +00:00
|
|
|
[MainExplore] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "-- Explore --"},
|
|
|
|
[MainBrowseSd] = {.optionUnion = COLORTORGB(COLOR_GREEN), .name = "Browse SD"},
|
|
|
|
[MainMountSd] = {.optionUnion = COLORTORGB(COLOR_YELLOW)}, // To mount/unmount the SD
|
|
|
|
[MainBrowseEmmc] = {.optionUnion = COLORTORGB(COLOR_BLUE), .name = "Browse EMMC"},
|
|
|
|
[MainBrowseEmummc] = {.optionUnion = COLORTORGB(COLOR_BLUE), .name = "Browse EMUMMC"},
|
|
|
|
[MainTools] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "\n-- Tools --"},
|
|
|
|
[MainPartitionSd] = {.optionUnion = COLORTORGB(COLOR_ORANGE), .name = "Partition the sd"},
|
|
|
|
[MainViewKeys] = {.optionUnion = COLORTORGB(COLOR_YELLOW), .name = "View dumped keys"},
|
2021-01-01 10:43:31 +00:00
|
|
|
[MainViewCredits] = {.optionUnion = COLORTORGB(COLOR_YELLOW), .name = "Credits"},
|
2020-12-29 00:53:39 +00:00
|
|
|
[MainExit] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "\n-- Exit --"},
|
2021-07-28 20:52:50 +01:00
|
|
|
#else
|
|
|
|
[MainExit] = {.optionUnion = COLORTORGB(COLOR_WHITE), .name = "\n-- Exit --"},
|
|
|
|
#endif
|
2020-12-29 12:11:52 +00:00
|
|
|
[MainPowerOff] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Power off"},
|
2020-12-29 00:53:39 +00:00
|
|
|
[MainRebootRCM] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to RCM"},
|
2021-01-21 16:59:49 +00:00
|
|
|
[MainRebootNormal] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot normally"},
|
2020-12-29 12:11:52 +00:00
|
|
|
[MainRebootHekate] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to bootloader/update.bin"},
|
2021-07-18 22:51:27 +01:00
|
|
|
[MainRebootAMS] = {.optionUnion = COLORTORGB(COLOR_VIOLET), .name = "Reboot to atmosphere/reboot_payload.bin"},
|
|
|
|
[MainScripts] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "\n-- Scripts --"}
|
2020-12-23 16:39:22 +00:00
|
|
|
};
|
2020-02-11 16:18:29 +00:00
|
|
|
|
2020-12-23 16:39:22 +00:00
|
|
|
void HandleSD(){
|
|
|
|
gfx_clearscreen();
|
2020-12-25 20:16:24 +00:00
|
|
|
TConf.curExplorerLoc = LOC_SD;
|
2020-12-28 19:08:15 +00:00
|
|
|
if (!sd_mount() || sd_get_card_removed()){
|
2020-12-23 16:39:22 +00:00
|
|
|
gfx_printf("Sd is not mounted!");
|
|
|
|
hidWait();
|
2020-02-11 16:18:29 +00:00
|
|
|
}
|
2020-12-23 16:39:22 +00:00
|
|
|
else
|
|
|
|
FileExplorer("sd:/");
|
2020-02-11 16:18:29 +00:00
|
|
|
}
|
|
|
|
|
2020-12-26 22:41:25 +00:00
|
|
|
void HandleEMMC(){
|
2020-12-27 22:33:23 +00:00
|
|
|
GptMenu(MMC_CONN_EMMC);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HandleEMUMMC(){
|
|
|
|
GptMenu(MMC_CONN_EMUMMC);
|
2020-12-26 22:41:25 +00:00
|
|
|
}
|
|
|
|
|
2020-12-26 21:24:41 +00:00
|
|
|
void ViewKeys(){
|
|
|
|
gfx_clearscreen();
|
|
|
|
for (int i = 0; i < 3; i++){
|
|
|
|
gfx_printf("\nBis key 0%d: ", i);
|
|
|
|
PrintKey(dumpedKeys.bis_key[i], AES_128_KEY_SIZE * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx_printf("\nMaster key 0: ");
|
|
|
|
PrintKey(dumpedKeys.master_key, AES_128_KEY_SIZE);
|
|
|
|
gfx_printf("\nHeader key: ");
|
|
|
|
PrintKey(dumpedKeys.header_key, AES_128_KEY_SIZE * 2);
|
|
|
|
gfx_printf("\nSave mac key: ");
|
|
|
|
PrintKey(dumpedKeys.save_mac_key, AES_128_KEY_SIZE);
|
|
|
|
|
2021-01-01 10:49:45 +00:00
|
|
|
u8 fuseCount = 0;
|
|
|
|
for (u32 i = 0; i < 32; i++){
|
|
|
|
if ((fuse_read_odm(7) >> i) & 1)
|
|
|
|
fuseCount++;
|
|
|
|
}
|
|
|
|
|
2022-01-22 01:19:00 +00:00
|
|
|
gfx_printf("\n\nPkg1 ID: '%s'\nFuse count: %d", TConf.pkg1ID, fuseCount);
|
2020-12-26 22:41:25 +00:00
|
|
|
|
2020-12-26 21:24:41 +00:00
|
|
|
hidWait();
|
|
|
|
}
|
|
|
|
|
2021-01-01 10:43:31 +00:00
|
|
|
void ViewCredits(){
|
|
|
|
gfx_clearscreen();
|
2021-01-21 16:59:49 +00:00
|
|
|
gfx_printf("\nTegraexplorer v%d.%d.%d\nBy SuchMemeManySkill\n\nBased on Lockpick_RCM & Hekate, from shchmue & CTCaer\n\n\n", LP_VER_MJ, LP_VER_MN, LP_VER_BF);
|
|
|
|
|
|
|
|
if (hidRead()->r)
|
|
|
|
gfx_printf("%k\"I'm not even sure if it works\" - meme", COLOR_ORANGE);
|
2021-07-18 22:51:27 +01:00
|
|
|
|
2021-01-01 10:43:31 +00:00
|
|
|
hidWait();
|
|
|
|
}
|
|
|
|
|
2020-12-29 00:53:39 +00:00
|
|
|
extern int launch_payload(char *path);
|
|
|
|
|
|
|
|
void RebootToAMS(){
|
|
|
|
launch_payload("sd:/atmosphere/reboot_payload.bin");
|
|
|
|
}
|
|
|
|
|
|
|
|
void RebootToHekate(){
|
|
|
|
launch_payload("sd:/bootloader/update.bin");
|
|
|
|
}
|
2020-12-28 19:08:15 +00:00
|
|
|
|
|
|
|
void MountOrUnmountSD(){
|
2021-03-01 23:39:31 +00:00
|
|
|
gfx_clearscreen();
|
2022-01-22 00:59:17 +00:00
|
|
|
if (sd_get_card_mounted())
|
2021-03-01 23:39:31 +00:00
|
|
|
sd_unmount();
|
|
|
|
else if (!sd_mount())
|
|
|
|
hidWait();
|
2020-12-28 19:08:15 +00:00
|
|
|
}
|
|
|
|
|
2020-12-23 16:39:22 +00:00
|
|
|
menuPaths mainMenuPaths[] = {
|
2021-07-26 19:47:23 +01:00
|
|
|
#ifndef SCRIPT_ONLY
|
2020-12-29 00:53:39 +00:00
|
|
|
[MainBrowseSd] = HandleSD,
|
|
|
|
[MainMountSd] = MountOrUnmountSD,
|
|
|
|
[MainBrowseEmmc] = HandleEMMC,
|
|
|
|
[MainBrowseEmummc] = HandleEMUMMC,
|
|
|
|
[MainPartitionSd] = FormatSD,
|
|
|
|
[MainViewKeys] = ViewKeys,
|
2021-07-26 19:47:23 +01:00
|
|
|
[MainViewCredits] = ViewCredits,
|
|
|
|
#endif
|
2020-12-29 00:53:39 +00:00
|
|
|
[MainRebootAMS] = RebootToAMS,
|
|
|
|
[MainRebootHekate] = RebootToHekate,
|
|
|
|
[MainRebootRCM] = reboot_rcm,
|
|
|
|
[MainPowerOff] = power_off,
|
2021-01-21 16:59:49 +00:00
|
|
|
[MainRebootNormal] = reboot_normal,
|
2020-02-11 16:18:29 +00:00
|
|
|
};
|
|
|
|
|
2020-12-23 16:39:22 +00:00
|
|
|
void EnterMainMenu(){
|
2021-01-21 16:59:49 +00:00
|
|
|
int res = 0;
|
2019-11-21 15:02:45 +00:00
|
|
|
while (1){
|
2020-12-28 19:08:15 +00:00
|
|
|
if (sd_get_card_removed())
|
|
|
|
sd_unmount();
|
|
|
|
|
2021-07-26 19:47:23 +01:00
|
|
|
#ifndef SCRIPT_ONLY
|
2020-12-29 00:53:39 +00:00
|
|
|
// -- Explore --
|
2022-01-22 00:59:17 +00:00
|
|
|
mainMenuEntries[MainBrowseSd].hide = !sd_get_card_mounted();
|
|
|
|
mainMenuEntries[MainMountSd].name = (sd_get_card_mounted()) ? "Unmount SD" : "Mount SD";
|
|
|
|
mainMenuEntries[MainBrowseEmummc].hide = (!emu_cfg.enabled || !sd_get_card_mounted());
|
2020-12-29 00:53:39 +00:00
|
|
|
|
|
|
|
// -- Tools --
|
2022-01-22 00:59:17 +00:00
|
|
|
mainMenuEntries[MainPartitionSd].hide = (!sd_get_card_initialized() || sd_get_card_removed());
|
2020-12-29 00:53:39 +00:00
|
|
|
mainMenuEntries[MainViewKeys].hide = !TConf.keysDumped;
|
|
|
|
|
|
|
|
// -- Exit --
|
2022-01-22 00:59:17 +00:00
|
|
|
mainMenuEntries[MainRebootAMS].hide = (!sd_get_card_mounted() || !FileExists("sd:/atmosphere/reboot_payload.bin"));
|
|
|
|
mainMenuEntries[MainRebootHekate].hide = (!sd_get_card_mounted() || !FileExists("sd:/bootloader/update.bin"));
|
2021-01-21 16:59:49 +00:00
|
|
|
mainMenuEntries[MainRebootRCM].hide = h_cfg.t210b01;
|
2021-07-26 19:47:23 +01:00
|
|
|
#endif
|
2021-07-18 22:51:27 +01:00
|
|
|
// -- Scripts --
|
2021-07-19 20:44:15 +01:00
|
|
|
#ifndef INCLUDE_BUILTIN_SCRIPTS
|
2022-01-22 00:59:17 +00:00
|
|
|
mainMenuEntries[MainScripts].hide = (!sd_get_card_mounted() || !FileExists("sd:/tegraexplorer/scripts"));
|
2021-07-19 20:44:15 +01:00
|
|
|
#else
|
2022-01-22 00:59:17 +00:00
|
|
|
mainMenuEntries[MainScripts].hide = ((!sd_get_card_mounted() || !FileExists("sd:/tegraexplorer/scripts")) && !EMBEDDED_SCRIPTS_LEN);
|
2021-07-19 20:44:15 +01:00
|
|
|
#endif
|
2021-07-18 22:51:27 +01:00
|
|
|
|
2021-07-19 20:44:15 +01:00
|
|
|
Vector_t ent = newVec(sizeof(MenuEntry_t), ARRAY_SIZE(mainMenuEntries));
|
|
|
|
ent.count = ARRAY_SIZE(mainMenuEntries);
|
|
|
|
memcpy(ent.data, mainMenuEntries, sizeof(MenuEntry_t) * ARRAY_SIZE(mainMenuEntries));
|
2021-07-18 22:51:27 +01:00
|
|
|
Vector_t scriptFiles = {0};
|
|
|
|
u8 hasScripts = 0;
|
|
|
|
|
2021-07-19 20:44:15 +01:00
|
|
|
#ifdef INCLUDE_BUILTIN_SCRIPTS
|
|
|
|
for (int i = 0; i < EMBEDDED_SCRIPTS_LEN; i++){
|
|
|
|
MenuEntry_t m = {.name = embedded_scripts_g[i].name, .optionUnion = COLORTORGB(COLOR_BLUE), .icon = 128};
|
|
|
|
vecAdd(&ent, m);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-01-22 00:59:17 +00:00
|
|
|
if (sd_get_card_mounted() && FileExists("sd:/tegraexplorer/scripts")){
|
2021-07-18 22:51:27 +01:00
|
|
|
scriptFiles = ReadFolder("sd:/tegraexplorer/scripts", &res);
|
|
|
|
if (!res){
|
|
|
|
if (!scriptFiles.count){
|
2021-07-19 20:44:15 +01:00
|
|
|
FREE(scriptFiles.data);
|
2021-07-18 22:51:27 +01:00
|
|
|
mainMenuEntries[MainScripts].hide = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
hasScripts = 1;
|
|
|
|
vecForEach(FSEntry_t*, scriptFile, (&scriptFiles)){
|
|
|
|
if (!scriptFile->isDir && StrEndsWith(scriptFile->name, ".te")){
|
|
|
|
MenuEntry_t a = MakeMenuOutFSEntry(*scriptFile);
|
|
|
|
vecAdd(&ent, a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent.count == ARRAY_SIZE(mainMenuEntries)){
|
|
|
|
clearFileVector(&scriptFiles);
|
|
|
|
hasScripts = 0;
|
|
|
|
mainMenuEntries[MainScripts].hide = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-19 20:44:15 +01:00
|
|
|
|
2021-07-18 22:51:27 +01:00
|
|
|
|
2021-01-21 16:59:49 +00:00
|
|
|
gfx_clearscreen();
|
|
|
|
gfx_putc('\n');
|
|
|
|
|
2021-07-19 15:25:32 +01:00
|
|
|
res = newMenu(&ent, res, 79, 30, (ent.count == ARRAY_SIZE(mainMenuEntries)) ? ALWAYSREDRAW : ALWAYSREDRAW | ENABLEPAGECOUNT, ent.count - ARRAY_SIZE(mainMenuEntries));
|
2021-07-18 22:51:27 +01:00
|
|
|
if (res < MainScripts && mainMenuPaths[res] != NULL)
|
2021-01-21 16:59:49 +00:00
|
|
|
mainMenuPaths[res]();
|
2021-07-23 15:19:32 +01:00
|
|
|
#ifndef INCLUDE_BUILTIN_SCRIPTS
|
2021-07-18 22:51:27 +01:00
|
|
|
else if (hasScripts){
|
2021-07-23 15:19:32 +01:00
|
|
|
#else
|
|
|
|
else {
|
2021-07-19 20:44:15 +01:00
|
|
|
if (res - ARRAY_SIZE(mainMenuEntries) < EMBEDDED_SCRIPTS_LEN){
|
|
|
|
char *script = embedded_scripts_g[res - ARRAY_SIZE(mainMenuEntries)].script;
|
|
|
|
RunScriptString(script, strlen(script));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#endif
|
|
|
|
vecDefArray(MenuEntry_t*, entArray, ent);
|
|
|
|
MenuEntry_t entry = entArray[res];
|
|
|
|
FSEntry_t fsEntry = {.name = entry.name, .sizeUnion = entry.sizeUnion};
|
|
|
|
RunScript("sd:/tegraexplorer/scripts", fsEntry);
|
|
|
|
#ifdef INCLUDE_BUILTIN_SCRIPTS
|
|
|
|
}
|
|
|
|
#endif
|
2021-07-18 22:51:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hasScripts){
|
|
|
|
clearFileVector(&scriptFiles);
|
|
|
|
}
|
2021-07-19 20:44:15 +01:00
|
|
|
|
|
|
|
free(ent.data);
|
2019-11-21 15:02:45 +00:00
|
|
|
}
|
2020-12-23 16:39:22 +00:00
|
|
|
}
|
|
|
|
|