This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/fs.c

237 lines
6.2 KiB
C
Raw Normal View History

2015-08-05 03:57:37 +02:00
/*
2016-07-05 16:05:53 +02:00
* This file is part of Luma3DS
* Copyright (C) 2016 Aurora Wright, TuxSH
*
* 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 of GPLv3 applies 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.
2015-08-05 03:57:37 +02:00
*/
#include "fs.h"
#include "memory.h"
2016-08-30 17:48:41 +02:00
#include "strings.h"
#include "crypto.h"
#include "cache.h"
#include "screen.h"
2015-08-05 03:57:37 +02:00
#include "fatfs/ff.h"
#include "buttons.h"
2016-09-23 02:06:04 +02:00
#include "../build/bundled.h"
2015-08-05 03:57:37 +02:00
static FATFS sdFs,
nandFs;
2015-08-05 03:57:37 +02:00
bool mountFs(bool isSd)
{
return isSd ? f_mount(&sdFs, "0:", 1) == FR_OK : f_mount(&nandFs, "1:", 1) == FR_OK;
2015-08-05 03:57:37 +02:00
}
bool switchToCtrNand(void)
{
return f_chdrive("1:") == FR_OK && f_chdir("/rw") == FR_OK;
}
u32 fileRead(void *dest, const char *path, u32 maxSize)
{
2016-04-28 16:11:25 +02:00
FIL file;
u32 ret = 0;
2015-08-05 03:57:37 +02:00
if(f_open(&file, path, FA_READ) == FR_OK)
{
u32 size = f_size(&file);
if(dest == NULL) ret = size;
else if(size <= maxSize)
f_read(&file, dest, size, (unsigned int *)&ret);
f_close(&file);
2015-08-05 03:57:37 +02:00
}
return ret;
2015-08-05 03:57:37 +02:00
}
u32 getFileSize(const char *path)
{
return fileRead(NULL, path, 0);
}
bool fileWrite(const void *buffer, const char *path, u32 size)
{
2016-04-28 16:11:25 +02:00
FIL file;
bool ret;
2015-08-05 03:57:37 +02:00
FRESULT result = f_open(&file, path, FA_WRITE | FA_OPEN_ALWAYS);
if(result == FR_OK)
2016-04-28 16:11:25 +02:00
{
unsigned int written;
f_write(&file, buffer, size, &written);
f_truncate(&file);
f_close(&file);
ret = (u32)written == size;
2016-04-28 16:11:25 +02:00
}
else if(result == FR_NO_PATH)
{
for(u32 i = 1; path[i] != 0; i++)
if(path[i] == '/')
{
char folder[i + 1];
memcpy(folder, path, i);
folder[i] = 0;
f_mkdir(folder);
}
ret = fileWrite(buffer, path, size);
}
else ret = false;
2016-09-06 18:08:54 +02:00
return ret;
}
void fileDelete(const char *path)
{
f_unlink(path);
}
void loadPayload(u32 pressed)
{
const char *pattern;
if(pressed & BUTTON_LEFT) pattern = PATTERN("left");
else if(pressed & BUTTON_RIGHT) pattern = PATTERN("right");
else if(pressed & BUTTON_UP) pattern = PATTERN("up");
else if(pressed & BUTTON_DOWN) pattern = PATTERN("down");
else if(pressed & BUTTON_START) pattern = PATTERN("start");
else if(pressed & BUTTON_B) pattern = PATTERN("b");
else if(pressed & BUTTON_X) pattern = PATTERN("x");
else if(pressed & BUTTON_Y) pattern = PATTERN("y");
else if(pressed & BUTTON_R1) pattern = PATTERN("r");
else if(pressed & BUTTON_A) pattern = PATTERN("a");
2016-08-30 21:50:04 +02:00
else pattern = PATTERN("select");
DIR dir;
2016-04-18 18:04:04 +02:00
FILINFO info;
char path[27] = "luma/payloads";
2016-03-05 23:27:02 +01:00
FRESULT result = f_findfirst(&dir, &info, path, pattern);
2016-03-05 23:27:02 +01:00
if(result == FR_OK)
{
f_closedir(&dir);
if(info.fname[0] != 0)
{
u32 *loaderAddress = (u32 *)0x24FFFF00;
u8 *payloadAddress = (u8 *)0x24F00000;
2016-05-03 03:05:11 +02:00
memcpy(loaderAddress, loader_bin, loader_bin_size);
2016-05-03 03:05:11 +02:00
concatenateStrings(path, "/");
concatenateStrings(path, info.altname);
u32 payloadSize = fileRead(payloadAddress, path, (u8 *)loaderAddress - payloadAddress);
if(payloadSize > 0)
{
loaderAddress[1] = payloadSize;
backupAndRestoreShaHash(true);
initScreens();
flushDCacheRange(loaderAddress, loader_bin_size);
flushICacheRange(loaderAddress, loader_bin_size);
((void (*)())loaderAddress)();
}
}
}
}
u32 firmRead(void *dest, u32 firmType)
{
const char *firmFolders[][2] = {{ "00000002", "20000002" },
{ "00000102", "20000102" },
{ "00000202", "20000202" },
{ "00000003", "20000003" }};
2016-08-30 19:58:38 +02:00
char path[48] = "1:/title/00040138/";
concatenateStrings(path, firmFolders[firmType][ISN3DS ? 1 : 0]);
2016-08-30 19:58:38 +02:00
concatenateStrings(path, "/content");
DIR dir;
2016-04-18 18:04:04 +02:00
FILINFO info;
2016-07-19 20:03:35 +02:00
u32 firmVersion = 0xFFFFFFFF;
if(f_opendir(&dir, path) == FR_OK)
{
//Parse the target directory
while(f_readdir(&dir, &info) == FR_OK && info.fname[0] != 0)
{
//Not a cxi
if(info.fname[9] != 'a' || strlen(info.fname) != 12) continue;
//Convert the .app name to an integer
u32 tempVersion = 0;
for(char *tmp = info.altname; *tmp != '.'; tmp++)
{
tempVersion <<= 4;
tempVersion += *tmp > '9' ? *tmp - 'A' + 10 : *tmp - '0';
}
//Found an older cxi
if(tempVersion < firmVersion) firmVersion = tempVersion;
}
f_closedir(&dir);
if(firmVersion != 0xFFFFFFFF)
{
//Complete the string with the .app name
concatenateStrings(path, "/00000000.app");
//Convert back the .app name from integer to array
hexItoa(firmVersion, path + 35, 8, false);
if(!fileRead(dest, path, 0x400200)) firmVersion = 0xFFFFFFFF;
}
}
2016-07-19 20:03:35 +02:00
return firmVersion;
}
void findDumpFile(const char *path, char *fileName)
{
DIR dir;
FILINFO info;
FRESULT result;
u32 n = 0;
while(true)
{
result = f_findfirst(&dir, &info, path, fileName);
if(result != FR_OK || !info.fname[0]) break;
u32 i = 18,
tmp = ++n;
2016-09-08 18:47:13 +02:00
while(tmp > 0)
{
fileName[i--] = '0' + (tmp % 10);
tmp /= 10;
}
}
if(result == FR_OK) f_closedir(&dir);
2016-09-19 14:03:55 +02:00
}