2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* 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-04-18 10:30:34 +01:00
|
|
|
#include <switch.h>
|
2018-04-18 23:24:40 +01:00
|
|
|
#include <cstdio>
|
2018-04-19 23:14:48 +01:00
|
|
|
#include <algorithm>
|
2018-06-12 23:00:09 +01:00
|
|
|
#include <stratosphere.hpp>
|
2018-04-18 10:30:34 +01:00
|
|
|
#include "ldr_debug_monitor.hpp"
|
|
|
|
#include "ldr_launch_queue.hpp"
|
2018-04-19 23:14:48 +01:00
|
|
|
#include "ldr_registration.hpp"
|
2018-04-18 10:30:34 +01:00
|
|
|
|
2018-04-21 02:34:29 +01:00
|
|
|
Result DebugMonitorService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) {
|
2018-04-18 10:52:19 +01:00
|
|
|
Result rc = 0xF601;
|
2018-04-19 06:00:10 +01:00
|
|
|
|
2018-04-18 10:52:19 +01:00
|
|
|
switch ((DebugMonitorServiceCmd)cmd_id) {
|
2018-04-18 19:10:45 +01:00
|
|
|
case Dmnt_Cmd_AddTitleToLaunchQueue:
|
2018-04-21 02:34:29 +01:00
|
|
|
rc = WrapIpcCommandImpl<&DebugMonitorService::add_title_to_launch_queue>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
2018-04-18 10:52:19 +01:00
|
|
|
break;
|
2018-04-18 19:10:45 +01:00
|
|
|
case Dmnt_Cmd_ClearLaunchQueue:
|
2018-04-21 02:34:29 +01:00
|
|
|
rc = WrapIpcCommandImpl<&DebugMonitorService::clear_launch_queue>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
2018-04-18 10:52:19 +01:00
|
|
|
break;
|
2018-04-18 19:10:45 +01:00
|
|
|
case Dmnt_Cmd_GetNsoInfo:
|
2018-04-21 02:34:29 +01:00
|
|
|
rc = WrapIpcCommandImpl<&DebugMonitorService::get_nso_info>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
2018-04-18 10:52:19 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return rc;
|
2018-04-18 10:30:34 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 04:39:05 +01:00
|
|
|
std::tuple<Result> DebugMonitorService::add_title_to_launch_queue(u64 args_size, u64 tid, InPointer<char> args) {
|
|
|
|
fprintf(stderr, "Add to launch queue: %p, %zX\n", args.pointer, std::min(args_size, args.num_elements));
|
|
|
|
return {LaunchQueue::add(tid, args.pointer, std::min(args_size, args.num_elements))};
|
2018-04-18 10:30:34 +01:00
|
|
|
}
|
|
|
|
|
2018-04-21 02:34:29 +01:00
|
|
|
std::tuple<Result> DebugMonitorService::clear_launch_queue(u64 dat) {
|
|
|
|
fprintf(stderr, "Clear launch queue: %lx\n", dat);
|
2018-04-18 10:30:34 +01:00
|
|
|
LaunchQueue::clear();
|
2018-05-05 19:41:39 +01:00
|
|
|
return {0};
|
2018-04-18 10:30:34 +01:00
|
|
|
}
|
|
|
|
|
2018-04-21 02:34:29 +01:00
|
|
|
std::tuple<Result, u32> DebugMonitorService::get_nso_info(u64 pid, OutPointerWithClientSize<Registration::NsoInfo> out) {
|
|
|
|
u32 out_num_nsos = 0;
|
|
|
|
|
2018-04-21 04:03:26 +01:00
|
|
|
std::fill(out.pointer, out.pointer + out.num_elements, (const Registration::NsoInfo){0});
|
2018-04-19 23:14:48 +01:00
|
|
|
|
2018-04-27 00:03:10 +01:00
|
|
|
Result rc = Registration::GetNsoInfosForProcessId(out.pointer, out.num_elements, pid, &out_num_nsos);
|
2018-04-21 04:03:26 +01:00
|
|
|
|
2018-05-05 19:41:39 +01:00
|
|
|
return {rc, out_num_nsos};
|
|
|
|
}
|