2020-04-16 01:06:41 +01:00
|
|
|
/*
|
2020-07-03 10:31:22 +01:00
|
|
|
* main.c
|
2020-04-16 01:06:41 +01:00
|
|
|
*
|
2020-07-03 10:31:22 +01:00
|
|
|
* Copyright (c) 2020, DarkMatterCore <pabloacurielz@gmail.com>.
|
|
|
|
*
|
|
|
|
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
|
|
|
|
*
|
|
|
|
* nxdumptool is free software; you can redistribute it and/or modify it
|
2020-04-16 01:06:41 +01:00
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
2020-07-03 10:31:22 +01:00
|
|
|
* nxdumptool is distributed in the hope it will be useful, but WITHOUT
|
2020-04-16 01:06:41 +01:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2020-04-15 21:50:07 +01:00
|
|
|
#include "utils.h"
|
2020-05-03 15:55:13 +01:00
|
|
|
#include "bktr.h"
|
2020-05-04 19:15:03 +01:00
|
|
|
#include "gamecard.h"
|
2020-05-05 16:22:16 +01:00
|
|
|
#include "usb.h"
|
2020-04-17 22:59:05 +01:00
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
#define TEST_BUF_SIZE 0x800000
|
2020-04-11 06:28:26 +01:00
|
|
|
|
2020-05-04 19:15:03 +01:00
|
|
|
alignas(16) u8 __nx_exception_stack[0x1000];
|
|
|
|
u64 __nx_exception_stack_size = sizeof(__nx_exception_stack);
|
|
|
|
|
|
|
|
void __libnx_exception_handler(ThreadExceptionDump *ctx)
|
|
|
|
{
|
|
|
|
LOGFILE("Exception triggered!");
|
|
|
|
|
|
|
|
FILE *logfile = fopen(LOGFILE_PATH, "a+");
|
|
|
|
if (!logfile) return;
|
|
|
|
|
|
|
|
fprintf(logfile, "\r\n error_desc: 0x%x ", ctx->error_desc);
|
|
|
|
|
|
|
|
switch(ctx->error_desc)
|
|
|
|
{
|
|
|
|
case ThreadExceptionDesc_InstructionAbort:
|
|
|
|
fprintf(logfile, "(InstructionAbort)");
|
|
|
|
break;
|
|
|
|
case ThreadExceptionDesc_MisalignedPC:
|
|
|
|
fprintf(logfile, "(MisalignedPC)");
|
|
|
|
break;
|
|
|
|
case ThreadExceptionDesc_MisalignedSP:
|
|
|
|
fprintf(logfile, "(MisalignedSP)");
|
|
|
|
break;
|
|
|
|
case ThreadExceptionDesc_SError:
|
|
|
|
fprintf(logfile, "(SError)");
|
|
|
|
break;
|
|
|
|
case ThreadExceptionDesc_BadSVC:
|
|
|
|
fprintf(logfile, "(BadSVC)");
|
|
|
|
break;
|
|
|
|
case ThreadExceptionDesc_Trap:
|
|
|
|
fprintf(logfile, "(Trap)");
|
|
|
|
break;
|
|
|
|
case ThreadExceptionDesc_Other:
|
|
|
|
fprintf(logfile, "(Other)");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(logfile, "(Unknown)");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(logfile, "\r\n\r\n");
|
|
|
|
|
|
|
|
if (threadExceptionIsAArch64(ctx))
|
|
|
|
{
|
|
|
|
for(u32 i = 0; i < 29; i++) fprintf(logfile, " [X%d]: 0x%lx\r\n", i, ctx->cpu_gprs[i].x);
|
|
|
|
fprintf(logfile, "\r\n");
|
|
|
|
|
|
|
|
fprintf(logfile, " fp: 0x%lx\r\n", ctx->fp.x);
|
|
|
|
fprintf(logfile, " lr: 0x%lx\r\n", ctx->lr.x);
|
|
|
|
fprintf(logfile, " sp: 0x%lx\r\n", ctx->sp.x);
|
|
|
|
fprintf(logfile, " pc: 0x%lx\r\n", ctx->pc.x);
|
|
|
|
fprintf(logfile, " far: 0x%lx\r\n", ctx->far.x);
|
|
|
|
} else {
|
|
|
|
for(u32 i = 0; i < 29; i++) fprintf(logfile, " [X%d]: 0x%x\r\n", i, ctx->cpu_gprs[i].r);
|
|
|
|
fprintf(logfile, "\r\n");
|
|
|
|
|
|
|
|
fprintf(logfile, " fp: 0x%x\r\n", ctx->fp.r);
|
|
|
|
fprintf(logfile, " lr: 0x%x\r\n", ctx->lr.r);
|
|
|
|
fprintf(logfile, " sp: 0x%x\r\n", ctx->sp.r);
|
|
|
|
fprintf(logfile, " pc: 0x%x\r\n", ctx->pc.r);
|
|
|
|
fprintf(logfile, " far: 0x%x\r\n", ctx->far.r);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(logfile, "\r\n");
|
|
|
|
|
|
|
|
fprintf(logfile, " pstate: 0x%x\r\n", ctx->pstate);
|
|
|
|
fprintf(logfile, " afsr0: 0x%x\r\n", ctx->afsr0);
|
|
|
|
fprintf(logfile, " afsr1: 0x%x\r\n", ctx->afsr1);
|
|
|
|
fprintf(logfile, " esr: 0x%x\r\n\r\n", ctx->esr);
|
|
|
|
|
|
|
|
fclose(logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
static Mutex g_fileMutex = 0;
|
|
|
|
static CondVar g_readCondvar = 0, g_writeCondvar = 0;
|
2020-04-22 21:53:20 +01:00
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
//FILE *fileobj;
|
|
|
|
RomFileSystemContext *romfs_ctx;
|
2020-05-03 15:55:13 +01:00
|
|
|
void *data;
|
|
|
|
size_t data_size;
|
|
|
|
size_t data_written;
|
|
|
|
size_t total_size;
|
2020-05-06 15:04:10 +01:00
|
|
|
bool read_error;
|
|
|
|
bool write_error;
|
2020-05-10 17:40:12 +01:00
|
|
|
bool transfer_cancelled;
|
2020-05-03 15:55:13 +01:00
|
|
|
} ThreadSharedData;
|
|
|
|
|
|
|
|
static void consolePrint(const char *text, ...)
|
|
|
|
{
|
|
|
|
va_list v;
|
|
|
|
va_start(v, text);
|
|
|
|
vfprintf(stdout, text, v);
|
|
|
|
va_end(v);
|
|
|
|
consoleUpdate(NULL);
|
|
|
|
}
|
2020-04-24 10:38:13 +01:00
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
static int read_thread_func(void *arg)
|
|
|
|
{
|
|
|
|
ThreadSharedData *shared_data = (ThreadSharedData*)arg;
|
2020-05-06 15:36:17 +01:00
|
|
|
if (!shared_data || !shared_data->data || !shared_data->total_size)
|
|
|
|
{
|
|
|
|
shared_data->read_error = true;
|
|
|
|
return -1;
|
|
|
|
}
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-09 14:49:02 +01:00
|
|
|
u8 *buf = malloc(TEST_BUF_SIZE);
|
2020-05-06 15:36:17 +01:00
|
|
|
if (!buf)
|
|
|
|
{
|
|
|
|
shared_data->read_error = true;
|
|
|
|
return -2;
|
|
|
|
}
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
u64 file_table_offset = 0;
|
|
|
|
RomFileSystemFileEntry *file_entry = NULL;
|
|
|
|
char path[FS_MAX_PATH] = {0};
|
|
|
|
|
|
|
|
while(file_table_offset < shared_data->romfs_ctx->file_table_size)
|
2020-05-03 15:55:13 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
/* Check if the transfer has been cancelled by the user */
|
|
|
|
if (shared_data->transfer_cancelled)
|
|
|
|
{
|
|
|
|
condvarWakeAll(&g_writeCondvar);
|
|
|
|
break;
|
|
|
|
}
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
/* Retrieve RomFS file entry information */
|
|
|
|
shared_data->read_error = (!(file_entry = romfsGetFileEntryByOffset(shared_data->romfs_ctx, file_table_offset)) || \
|
|
|
|
!romfsGeneratePathFromFileEntry(shared_data->romfs_ctx, file_entry, path, FS_MAX_PATH, RomFileSystemPathIllegalCharReplaceType_IllegalFsChars));
|
2020-05-06 15:04:10 +01:00
|
|
|
if (shared_data->read_error)
|
|
|
|
{
|
|
|
|
condvarWakeAll(&g_writeCondvar);
|
|
|
|
break;
|
|
|
|
}
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
/* Wait until the previous file data chunk has been written */
|
2020-05-03 15:55:13 +01:00
|
|
|
mutexLock(&g_fileMutex);
|
2020-05-06 15:36:17 +01:00
|
|
|
if (shared_data->data_size && !shared_data->write_error) condvarWait(&g_readCondvar, &g_fileMutex);
|
2020-05-10 17:40:12 +01:00
|
|
|
mutexUnlock(&g_fileMutex);
|
|
|
|
if (shared_data->write_error) break;
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
/* Send current file properties */
|
|
|
|
shared_data->read_error = !usbSendFileProperties(file_entry->size, path);
|
|
|
|
if (shared_data->read_error)
|
2020-05-06 15:04:10 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
condvarWakeAll(&g_writeCondvar);
|
2020-05-06 15:04:10 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
for(u64 offset = 0, blksize = TEST_BUF_SIZE; offset < file_entry->size; offset += blksize)
|
|
|
|
{
|
|
|
|
if (blksize > (file_entry->size - offset)) blksize = (file_entry->size - offset);
|
|
|
|
|
|
|
|
/* Check if the transfer has been cancelled by the user */
|
|
|
|
if (shared_data->transfer_cancelled)
|
|
|
|
{
|
|
|
|
condvarWakeAll(&g_writeCondvar);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read current file data chunk */
|
|
|
|
shared_data->read_error = !romfsReadFileEntryData(shared_data->romfs_ctx, file_entry, buf, blksize, offset);
|
|
|
|
if (shared_data->read_error)
|
|
|
|
{
|
|
|
|
condvarWakeAll(&g_writeCondvar);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait until the previous file data chunk has been written */
|
|
|
|
mutexLock(&g_fileMutex);
|
|
|
|
|
|
|
|
if (shared_data->data_size && !shared_data->write_error) condvarWait(&g_readCondvar, &g_fileMutex);
|
|
|
|
|
|
|
|
if (shared_data->write_error)
|
|
|
|
{
|
|
|
|
mutexUnlock(&g_fileMutex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy current file data chunk to the shared buffer */
|
|
|
|
memcpy(shared_data->data, buf, blksize);
|
|
|
|
shared_data->data_size = blksize;
|
|
|
|
|
|
|
|
/* Wake up the write thread to continue writing data */
|
|
|
|
mutexUnlock(&g_fileMutex);
|
|
|
|
condvarWakeAll(&g_writeCondvar);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shared_data->read_error || shared_data->write_error || shared_data->transfer_cancelled) break;
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
file_table_offset += ALIGN_UP(sizeof(RomFileSystemFileEntry) + file_entry->name_length, 4);
|
2020-05-03 15:55:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
return (shared_data->read_error ? -3 : 0);
|
2020-05-03 15:55:13 +01:00
|
|
|
}
|
2020-04-24 10:38:13 +01:00
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
static int write_thread_func(void *arg)
|
|
|
|
{
|
|
|
|
ThreadSharedData *shared_data = (ThreadSharedData*)arg;
|
2020-05-06 15:36:17 +01:00
|
|
|
if (!shared_data || !shared_data->data)
|
|
|
|
{
|
|
|
|
shared_data->write_error = true;
|
|
|
|
return -1;
|
|
|
|
}
|
2020-05-03 15:55:13 +01:00
|
|
|
|
|
|
|
while(shared_data->data_written < shared_data->total_size)
|
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
/* Wait until the current file data chunk has been read */
|
2020-05-03 15:55:13 +01:00
|
|
|
mutexLock(&g_fileMutex);
|
|
|
|
|
2020-05-06 15:36:17 +01:00
|
|
|
if (!shared_data->data_size && !shared_data->read_error) condvarWait(&g_writeCondvar, &g_fileMutex);
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
if (shared_data->read_error || shared_data->transfer_cancelled)
|
2020-05-06 15:04:10 +01:00
|
|
|
{
|
|
|
|
mutexUnlock(&g_fileMutex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
//shared_data->write_error = (fwrite(shared_data->data, 1, shared_data->data_size, shared_data->fileobj) != shared_data->data_size);
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
/* Write current file data chunk */
|
2020-05-06 15:04:10 +01:00
|
|
|
shared_data->write_error = !usbSendFileData(shared_data->data, shared_data->data_size);
|
|
|
|
if (!shared_data->write_error)
|
|
|
|
{
|
|
|
|
shared_data->data_written += shared_data->data_size;
|
|
|
|
shared_data->data_size = 0;
|
|
|
|
}
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
/* Wake up the read thread to continue reading data */
|
2020-05-03 15:55:13 +01:00
|
|
|
mutexUnlock(&g_fileMutex);
|
|
|
|
condvarWakeAll(&g_readCondvar);
|
2020-05-06 15:04:10 +01:00
|
|
|
|
|
|
|
if (shared_data->write_error) break;
|
2020-05-03 15:55:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-04-24 10:38:13 +01:00
|
|
|
|
2020-04-11 06:28:26 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2020-04-15 21:50:07 +01:00
|
|
|
(void)argc;
|
|
|
|
(void)argv;
|
|
|
|
|
2020-04-11 06:28:26 +01:00
|
|
|
int ret = 0;
|
|
|
|
|
2020-04-15 21:50:07 +01:00
|
|
|
LOGFILE("nxdumptool starting.");
|
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
consoleInit(NULL);
|
|
|
|
|
|
|
|
consolePrint("initializing...\n");
|
|
|
|
|
2020-04-15 21:50:07 +01:00
|
|
|
if (!utilsInitializeResources())
|
2020-04-11 06:28:26 +01:00
|
|
|
{
|
|
|
|
ret = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2020-04-24 10:38:13 +01:00
|
|
|
u8 *buf = NULL;
|
2020-04-16 01:06:41 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
Ticket tik = {0};
|
|
|
|
NcaContext *nca_ctx = NULL;
|
2020-04-24 10:38:13 +01:00
|
|
|
NcmContentStorage ncm_storage = {0};
|
|
|
|
|
|
|
|
Result rc = 0;
|
2020-04-22 21:53:20 +01:00
|
|
|
|
2020-05-07 12:08:54 +01:00
|
|
|
ThreadSharedData shared_data = {0};
|
|
|
|
thrd_t read_thread, write_thread;
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
char path[FS_MAX_PATH] = {0};
|
|
|
|
LrLocationResolver resolver = {0};
|
|
|
|
NcmContentInfo content_info = {0};
|
|
|
|
|
|
|
|
RomFileSystemContext romfs_ctx = {0};
|
2020-04-22 21:53:20 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
//mkdir("sdmc:/nxdt_test", 0744);
|
2020-04-22 21:53:20 +01:00
|
|
|
|
2020-05-09 14:49:02 +01:00
|
|
|
buf = usbAllocatePageAlignedBuffer(TEST_BUF_SIZE);
|
2020-04-24 10:38:13 +01:00
|
|
|
if (!buf)
|
2020-04-16 01:06:41 +01:00
|
|
|
{
|
2020-05-03 15:55:13 +01:00
|
|
|
consolePrint("buf failed\n");
|
2020-04-24 10:38:13 +01:00
|
|
|
goto out2;
|
2020-04-16 01:06:41 +01:00
|
|
|
}
|
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
consolePrint("buf succeeded\n");
|
2020-04-16 01:06:41 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
nca_ctx = calloc(1, sizeof(NcaContext));
|
|
|
|
if (!nca_ctx)
|
2020-04-30 12:24:08 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("nca ctx buf failed\n");
|
2020-04-30 12:24:08 +01:00
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("nca ctx buf succeeded\n");
|
2020-04-16 01:06:41 +01:00
|
|
|
|
2020-04-24 10:38:13 +01:00
|
|
|
rc = ncmOpenContentStorage(&ncm_storage, NcmStorageId_SdCard);
|
|
|
|
if (R_FAILED(rc))
|
2020-04-16 01:06:41 +01:00
|
|
|
{
|
2020-05-03 15:55:13 +01:00
|
|
|
consolePrint("ncm open storage failed\n");
|
2020-04-24 10:38:13 +01:00
|
|
|
goto out2;
|
2020-04-16 01:06:41 +01:00
|
|
|
}
|
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
consolePrint("ncm open storage succeeded\n");
|
2020-04-16 01:06:41 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
rc = lrInitialize();
|
|
|
|
if (R_FAILED(rc))
|
2020-04-15 21:50:07 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("lrInitialize failed\n");
|
2020-04-24 10:38:13 +01:00
|
|
|
goto out2;
|
2020-04-15 21:50:07 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("lrInitialize succeeded\n");
|
2020-04-11 06:28:26 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
rc = lrOpenLocationResolver(NcmStorageId_SdCard, &resolver);
|
|
|
|
if (R_FAILED(rc))
|
2020-04-24 10:38:13 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("lrOpenLocationResolver failed\n");
|
2020-04-24 10:38:13 +01:00
|
|
|
goto out2;
|
2020-04-16 01:06:41 +01:00
|
|
|
}
|
2020-04-15 21:50:07 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("lrOpenLocationResolver succeeded\n");
|
2020-04-24 10:38:13 +01:00
|
|
|
|
2020-05-13 15:09:51 +01:00
|
|
|
rc = lrLrResolveProgramPath(&resolver, (u64)0x01004AB00A260000, path); // ACNH 0x01006F8002326000 | Smash 0x01006A800016E000 | Dark Souls 0x01004AB00A260000 | BotW 0x01007EF00011E000
|
2020-05-10 17:40:12 +01:00
|
|
|
if (R_FAILED(rc))
|
2020-04-20 11:39:41 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("lrLrResolveProgramPath failed\n");
|
2020-04-27 23:37:15 +01:00
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("lrLrResolveProgramPath succeeded\n");
|
2020-04-26 09:35:01 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
memmove(path, strrchr(path, '/') + 1, SHA256_HASH_SIZE + 4);
|
|
|
|
path[SHA256_HASH_SIZE + 4] = '\0';
|
|
|
|
|
|
|
|
consolePrint("Program NCA: %s\n", path);
|
|
|
|
|
|
|
|
for(u32 i = 0; i < SHA256_HASH_SIZE; i++)
|
2020-04-28 09:58:17 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
char val = (('a' <= path[i] && path[i] <= 'f') ? (path[i] - 'a' + 0xA) : (path[i] - '0'));
|
|
|
|
if ((i & 1) == 0) val <<= 4;
|
|
|
|
content_info.content_id.c[i >> 1] |= val;
|
2020-04-29 10:54:40 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
content_info.content_type = NcmContentType_Program;
|
|
|
|
|
|
|
|
u64 content_size = 0;
|
|
|
|
rc = ncmContentStorageGetSizeFromContentId(&ncm_storage, (s64*)&content_size, &(content_info.content_id));
|
|
|
|
if (R_FAILED(rc))
|
2020-04-29 10:54:40 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("ncmContentStorageGetSizeFromContentId failed\n");
|
2020-04-29 10:54:40 +01:00
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("ncmContentStorageGetSizeFromContentId succeeded\n");
|
2020-05-04 19:15:03 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
memcpy(&(content_info.size), &content_size, 6);
|
2020-05-04 19:15:03 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
if (!ncaInitializeContext(nca_ctx, NcmStorageId_SdCard, &ncm_storage, 0, &content_info, &tik))
|
2020-04-29 10:54:40 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("nca initialize ctx failed\n");
|
2020-05-03 15:55:13 +01:00
|
|
|
goto out2;
|
2020-05-01 05:34:30 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("nca initialize ctx succeeded\n");
|
2020-04-29 10:54:40 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
if (!romfsInitializeContext(&romfs_ctx, &(nca_ctx->fs_contexts[1])))
|
2020-04-29 10:54:40 +01:00
|
|
|
{
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("romfs initialize ctx failed\n");
|
2020-05-03 15:55:13 +01:00
|
|
|
goto out2;
|
2020-04-28 09:58:17 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("romfs initialize ctx succeeded\n");
|
2020-05-07 12:08:54 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
shared_data.romfs_ctx = &romfs_ctx;
|
2020-05-03 15:55:13 +01:00
|
|
|
shared_data.data = buf;
|
|
|
|
shared_data.data_size = 0;
|
|
|
|
shared_data.data_written = 0;
|
2020-05-10 17:40:12 +01:00
|
|
|
romfsGetTotalDataSize(&romfs_ctx, &(shared_data.total_size));
|
2020-05-01 05:34:30 +01:00
|
|
|
|
2020-07-03 10:31:22 +01:00
|
|
|
consolePrint("waiting for usb connection... ");
|
|
|
|
|
|
|
|
time_t start = time(NULL);
|
|
|
|
bool usb_conn = false;
|
|
|
|
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
time_t now = time(NULL);
|
|
|
|
if ((now - start) >= 10) break;
|
|
|
|
consolePrint("%lu ", now - start);
|
|
|
|
|
|
|
|
if ((usb_conn = usbIsReady())) break;
|
|
|
|
utilsSleep(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
consolePrint("\n");
|
2020-05-05 16:22:16 +01:00
|
|
|
|
2020-07-03 10:31:22 +01:00
|
|
|
if (!usb_conn)
|
2020-05-05 16:22:16 +01:00
|
|
|
{
|
2020-07-03 10:31:22 +01:00
|
|
|
consolePrint("usb connection failed\n");
|
|
|
|
goto out2;
|
2020-05-05 16:22:16 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
consolePrint("creating threads\n");
|
2020-05-03 15:55:13 +01:00
|
|
|
thrd_create(&read_thread, read_thread_func, &shared_data);
|
|
|
|
thrd_create(&write_thread, write_thread_func, &shared_data);
|
2020-05-01 05:34:30 +01:00
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
u8 prev_time = 0;
|
|
|
|
u64 prev_size = 0;
|
|
|
|
u8 percent = 0;
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
time_t btn_cancel_start_tmr = 0, btn_cancel_end_tmr = 0;
|
|
|
|
bool btn_cancel_cur_state = false, btn_cancel_prev_state = false;
|
|
|
|
|
|
|
|
consolePrint("hold b to cancel\n\n");
|
|
|
|
|
2020-07-03 10:31:22 +01:00
|
|
|
start = time(NULL);
|
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
while(shared_data.data_written < shared_data.total_size)
|
2020-05-01 05:34:30 +01:00
|
|
|
{
|
2020-05-06 15:04:10 +01:00
|
|
|
if (shared_data.read_error || shared_data.write_error) break;
|
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
time_t now = time(NULL);
|
|
|
|
struct tm *ts = localtime(&now);
|
|
|
|
size_t size = shared_data.data_written;
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
hidScanInput();
|
|
|
|
btn_cancel_cur_state = (utilsHidKeysAllHeld() & KEY_B);
|
|
|
|
|
|
|
|
if (btn_cancel_cur_state && btn_cancel_cur_state != btn_cancel_prev_state)
|
|
|
|
{
|
|
|
|
btn_cancel_start_tmr = now;
|
|
|
|
} else
|
|
|
|
if (btn_cancel_cur_state && btn_cancel_cur_state == btn_cancel_prev_state)
|
|
|
|
{
|
|
|
|
btn_cancel_end_tmr = now;
|
|
|
|
if ((btn_cancel_end_tmr - btn_cancel_start_tmr) >= 3)
|
|
|
|
{
|
|
|
|
mutexLock(&g_fileMutex);
|
|
|
|
shared_data.transfer_cancelled = true;
|
|
|
|
mutexUnlock(&g_fileMutex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
btn_cancel_start_tmr = btn_cancel_end_tmr = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
btn_cancel_prev_state = btn_cancel_cur_state;
|
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
if (prev_time == ts->tm_sec || prev_size == size) continue;
|
2020-05-01 05:34:30 +01:00
|
|
|
|
2020-05-07 12:08:54 +01:00
|
|
|
percent = (u8)((size * 100) / shared_data.total_size);
|
2020-05-01 05:34:30 +01:00
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
prev_time = ts->tm_sec;
|
|
|
|
prev_size = size;
|
|
|
|
|
2020-05-07 12:08:54 +01:00
|
|
|
printf("%lu / %lu (%u%%) | Time elapsed: %lu\n", size, shared_data.total_size, percent, (now - start));
|
2020-05-03 15:55:13 +01:00
|
|
|
consoleUpdate(NULL);
|
2020-05-01 05:34:30 +01:00
|
|
|
}
|
2020-04-26 09:35:01 +01:00
|
|
|
|
2020-05-06 15:04:10 +01:00
|
|
|
start = (time(NULL) - start);
|
2020-05-03 15:55:13 +01:00
|
|
|
|
2020-05-06 15:36:17 +01:00
|
|
|
consolePrint("\nwaiting for threads to join\n");
|
2020-05-03 15:55:13 +01:00
|
|
|
thrd_join(read_thread, NULL);
|
2020-05-11 13:11:06 +01:00
|
|
|
consolePrint("read_thread done: %lu\n", time(NULL));
|
2020-05-06 15:04:10 +01:00
|
|
|
thrd_join(write_thread, NULL);
|
2020-05-11 13:11:06 +01:00
|
|
|
consolePrint("write_thread done: %lu\n", time(NULL));
|
2020-05-08 04:48:22 +01:00
|
|
|
|
2020-05-06 15:04:10 +01:00
|
|
|
if (shared_data.read_error || shared_data.write_error)
|
|
|
|
{
|
2020-05-06 15:36:17 +01:00
|
|
|
consolePrint("usb transfer error\n");
|
2020-05-06 15:04:10 +01:00
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
if (shared_data.transfer_cancelled)
|
|
|
|
{
|
|
|
|
consolePrint("process cancelled\n");
|
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
2020-05-06 15:36:17 +01:00
|
|
|
consolePrint("process completed in %lu seconds\n", start);
|
2020-05-03 15:55:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-20 11:39:41 +01:00
|
|
|
|
2020-04-26 09:35:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-26 11:04:31 +01:00
|
|
|
|
2020-04-26 09:35:01 +01:00
|
|
|
|
2020-04-29 10:54:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-24 10:38:13 +01:00
|
|
|
out2:
|
2020-05-07 12:08:54 +01:00
|
|
|
consolePrint("press any button to exit\n");
|
2020-05-03 00:40:50 +01:00
|
|
|
utilsWaitForButtonPress();
|
2020-04-20 11:39:41 +01:00
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
lrExit();
|
2020-04-24 10:38:13 +01:00
|
|
|
|
|
|
|
if (serviceIsActive(&(ncm_storage.s))) ncmContentStorageClose(&ncm_storage);
|
|
|
|
|
2020-05-10 17:40:12 +01:00
|
|
|
if (nca_ctx) free(nca_ctx);
|
2020-04-17 22:59:05 +01:00
|
|
|
|
2020-04-21 11:23:33 +01:00
|
|
|
if (buf) free(buf);
|
2020-04-17 22:59:05 +01:00
|
|
|
|
2020-04-11 06:28:26 +01:00
|
|
|
out:
|
2020-04-15 21:50:07 +01:00
|
|
|
utilsCloseResources();
|
2020-04-11 06:28:26 +01:00
|
|
|
|
2020-05-03 15:55:13 +01:00
|
|
|
consoleExit(NULL);
|
|
|
|
|
2020-04-11 06:28:26 +01:00
|
|
|
return ret;
|
|
|
|
}
|