2019-02-05 05:17:05 +00:00
|
|
|
/*
|
2019-04-08 02:00:49 +00:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2019-02-05 05:17:05 +00: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/>.
|
|
|
|
*/
|
2019-06-20 20:00:32 +00:00
|
|
|
|
2019-02-05 05:17:05 +00:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
2019-02-05 05:47:55 +00:00
|
|
|
#include "../utils.hpp"
|
|
|
|
|
2019-04-12 22:28:46 +00:00
|
|
|
class BpcMitmService : public IMitmServiceObject {
|
2019-06-28 06:34:26 +00:00
|
|
|
private:
|
|
|
|
enum class CommandId {
|
|
|
|
ShutdownSystem = 0,
|
|
|
|
RebootSystem = 1,
|
|
|
|
};
|
2019-02-05 05:17:05 +00:00
|
|
|
public:
|
2019-10-24 09:30:10 +00:00
|
|
|
BpcMitmService(std::shared_ptr<Service> s, u64 pid, ams::ncm::TitleId tid) : IMitmServiceObject(s, pid, tid) {
|
2019-02-05 05:17:05 +00:00
|
|
|
/* ... */
|
|
|
|
}
|
2019-06-20 20:00:32 +00:00
|
|
|
|
2019-10-24 09:30:10 +00:00
|
|
|
static bool ShouldMitm(u64 pid, ams::ncm::TitleId tid) {
|
2019-02-05 05:17:05 +00:00
|
|
|
/* We will mitm:
|
|
|
|
* - am, to intercept the Reboot/Power buttons in the overlay menu.
|
|
|
|
* - fatal, to simplify payload reboot logic significantly
|
|
|
|
* - applications, to allow homebrew to take advantage of the feature.
|
|
|
|
*/
|
2019-10-24 09:30:10 +00:00
|
|
|
return tid == ams::ncm::TitleId::Am || tid == ams::ncm::TitleId::Fatal || ams::ncm::IsApplicationTitleId(tid) || Utils::IsHblTid(static_cast<u64>(tid));
|
2019-02-05 05:17:05 +00:00
|
|
|
}
|
2019-06-20 20:00:32 +00:00
|
|
|
|
2019-02-05 05:17:05 +00:00
|
|
|
static void PostProcess(IMitmServiceObject *obj, IpcResponseContext *ctx);
|
2019-06-20 20:00:32 +00:00
|
|
|
|
2019-02-05 05:17:05 +00:00
|
|
|
protected:
|
|
|
|
/* Overridden commands. */
|
|
|
|
Result ShutdownSystem();
|
|
|
|
Result RebootSystem();
|
|
|
|
public:
|
|
|
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
2019-06-28 06:34:26 +00:00
|
|
|
MAKE_SERVICE_COMMAND_META(BpcMitmService, ShutdownSystem),
|
|
|
|
MAKE_SERVICE_COMMAND_META(BpcMitmService, RebootSystem),
|
2019-02-05 05:17:05 +00:00
|
|
|
};
|
|
|
|
};
|