2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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/>.
|
|
|
|
*/
|
2018-06-25 07:42:26 +01:00
|
|
|
#include "creport_crash_report.hpp"
|
2019-07-12 13:31:00 +01:00
|
|
|
#include "creport_utils.hpp"
|
2018-06-25 07:42:26 +01:00
|
|
|
|
2018-06-25 05:46:20 +01:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern u32 __start__;
|
|
|
|
|
|
|
|
u32 __nx_applet_type = AppletType_None;
|
2019-10-18 03:48:28 +01:00
|
|
|
u32 __nx_fs_num_sessions = 1;
|
2019-10-19 04:31:15 +01:00
|
|
|
u32 __nx_fsdev_direntry_cache_size = 1;
|
2018-06-25 05:46:20 +01:00
|
|
|
|
2019-10-18 03:48:28 +01:00
|
|
|
#define INNER_HEAP_SIZE 0x4000
|
2018-06-25 05:46:20 +01:00
|
|
|
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
|
|
|
|
char nx_inner_heap[INNER_HEAP_SIZE];
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2018-06-25 05:46:20 +01:00
|
|
|
void __libnx_initheap(void);
|
|
|
|
void __appInit(void);
|
|
|
|
void __appExit(void);
|
2019-04-12 23:28:46 +01:00
|
|
|
|
|
|
|
/* Exception handling. */
|
2019-12-06 07:41:33 +00:00
|
|
|
alignas(16) u8 __nx_exception_stack[ams::os::MemoryPageSize];
|
2019-04-12 23:28:46 +01:00
|
|
|
u64 __nx_exception_stack_size = sizeof(__nx_exception_stack);
|
|
|
|
void __libnx_exception_handler(ThreadExceptionDump *ctx);
|
|
|
|
}
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams {
|
2019-10-20 01:42:53 +01:00
|
|
|
|
2020-03-08 08:06:23 +00:00
|
|
|
ncm::ProgramId CurrentProgramId = ncm::SystemProgramId::Creport;
|
2019-07-03 04:54:16 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace result {
|
2018-06-25 05:46:20 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
bool CallFatalOnResultAssertion = true;
|
2019-10-24 09:40:44 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
}
|
2019-10-24 09:40:44 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
using namespace ams;
|
2019-10-20 01:42:53 +01:00
|
|
|
|
|
|
|
void __libnx_exception_handler(ThreadExceptionDump *ctx) {
|
|
|
|
ams::CrashHandler(ctx);
|
|
|
|
}
|
2018-06-25 05:46:20 +01:00
|
|
|
|
|
|
|
void __libnx_initheap(void) {
|
|
|
|
void* addr = nx_inner_heap;
|
|
|
|
size_t size = nx_inner_heap_size;
|
|
|
|
|
|
|
|
/* Newlib */
|
|
|
|
extern char* fake_heap_start;
|
|
|
|
extern char* fake_heap_end;
|
|
|
|
|
|
|
|
fake_heap_start = (char*)addr;
|
|
|
|
fake_heap_end = (char*)addr + size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __appInit(void) {
|
2019-10-18 03:48:28 +01:00
|
|
|
hos::SetVersionForLibnx();
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2019-10-20 01:42:53 +01:00
|
|
|
sm::DoWithSession([&]() {
|
2020-02-23 07:05:14 +00:00
|
|
|
R_ABORT_UNLESS(fsInitialize());
|
2019-04-22 20:40:53 +01:00
|
|
|
});
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2020-03-08 09:45:12 +00:00
|
|
|
R_ABORT_UNLESS(fs::MountSdCard("sdmc"));
|
2018-06-25 05:46:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __appExit(void) {
|
|
|
|
/* Cleanup services. */
|
|
|
|
fsExit();
|
|
|
|
}
|
|
|
|
|
2019-10-18 03:48:28 +01:00
|
|
|
static creport::CrashReport g_crash_report;
|
2018-06-25 07:42:26 +01:00
|
|
|
|
2018-06-25 05:46:20 +01:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
/* Validate arguments. */
|
|
|
|
if (argc < 2) {
|
2019-07-12 13:31:00 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-06-25 05:46:20 +01:00
|
|
|
}
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
if (argv[i] == NULL) {
|
2019-07-12 13:31:00 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-06-25 05:46:20 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2018-06-25 07:42:26 +01:00
|
|
|
/* Parse crashed PID. */
|
2019-10-18 03:48:28 +01:00
|
|
|
os::ProcessId crashed_pid = creport::ParseProcessIdArgument(argv[0]);
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2018-06-25 07:42:26 +01:00
|
|
|
/* Try to debug the crashed process. */
|
2019-10-18 03:48:28 +01:00
|
|
|
g_crash_report.BuildReport(crashed_pid, argv[1][0] == '1');
|
|
|
|
if (!g_crash_report.IsComplete()) {
|
2019-07-12 13:31:00 +01:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save report to file. */
|
2019-10-18 03:48:28 +01:00
|
|
|
g_crash_report.SaveReport();
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2019-07-12 13:31:00 +01:00
|
|
|
/* Try to terminate the process. */
|
|
|
|
{
|
2019-10-18 03:48:28 +01:00
|
|
|
sm::ScopedServiceHolder<nsdevInitialize, nsdevExit> ns_holder;
|
2019-07-13 02:18:31 +01:00
|
|
|
if (ns_holder) {
|
2019-10-18 03:48:28 +01:00
|
|
|
nsdevTerminateProcess(static_cast<u64>(crashed_pid));
|
2018-06-25 08:58:44 +01:00
|
|
|
}
|
2019-07-12 13:31:00 +01:00
|
|
|
}
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2019-07-12 13:31:00 +01:00
|
|
|
/* Don't fatal if we have extra info, or if we're 5.0.0+ and an application crashed. */
|
2019-10-18 03:48:28 +01:00
|
|
|
if (hos::GetVersion() >= hos::Version_500) {
|
|
|
|
if (g_crash_report.IsApplication()) {
|
2019-07-12 13:31:00 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
} else if (argv[1][0] == '1') {
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2019-07-12 13:31:00 +01:00
|
|
|
/* Also don't fatal if we're a user break. */
|
2019-10-18 03:48:28 +01:00
|
|
|
if (g_crash_report.IsUserBreak()) {
|
2019-07-12 13:31:00 +01:00
|
|
|
return EXIT_SUCCESS;
|
2018-06-25 05:46:20 +01:00
|
|
|
}
|
2019-05-25 21:32:34 +01:00
|
|
|
|
2019-07-12 13:31:00 +01:00
|
|
|
/* Throw fatal error. */
|
2019-10-27 22:57:30 +00:00
|
|
|
::FatalCpuContext ctx;
|
2019-10-18 03:48:28 +01:00
|
|
|
g_crash_report.GetFatalContext(&ctx);
|
2019-10-27 22:57:30 +00:00
|
|
|
fatalThrowWithContext(g_crash_report.GetResult().GetValue(), FatalPolicy_ErrorScreen, &ctx);
|
2019-07-12 13:31:00 +01:00
|
|
|
}
|