2018-10-30 05:18:04 +00:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-10-30 05:18:04 +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-05-22 20:11:40 +01:00
|
|
|
|
2018-10-30 05:18:04 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstring>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
|
|
|
#include <switch.h>
|
2018-11-08 09:24:40 +00:00
|
|
|
#include <atmosphere.h>
|
2018-10-30 05:18:04 +00:00
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
2019-01-29 10:29:29 +00:00
|
|
|
#include "setmitm_main.hpp"
|
2018-10-30 05:18:04 +00:00
|
|
|
#include "setsys_mitm_service.hpp"
|
2019-01-21 09:09:06 +00:00
|
|
|
#include "setsys_settings_items.hpp"
|
2019-03-24 21:41:49 +00:00
|
|
|
#include "setsys_firmware_version.hpp"
|
2018-10-30 05:18:04 +00:00
|
|
|
|
2019-05-22 20:11:40 +01:00
|
|
|
#include "set_mitm_service.hpp"
|
|
|
|
|
2019-01-29 10:29:29 +00:00
|
|
|
#include "../utils.hpp"
|
2018-10-30 05:18:04 +00:00
|
|
|
|
|
|
|
struct SetSysManagerOptions {
|
|
|
|
static const size_t PointerBufferSize = 0x100;
|
|
|
|
static const size_t MaxDomains = 4;
|
|
|
|
static const size_t MaxDomainObjects = 0x100;
|
|
|
|
};
|
|
|
|
|
|
|
|
using SetMitmManager = WaitableManager<SetSysManagerOptions>;
|
|
|
|
|
2019-01-29 10:29:29 +00:00
|
|
|
void SetMitmMain(void *arg) {
|
|
|
|
/* Wait for SD to initialize. */
|
|
|
|
Utils::WaitSdInitialized();
|
2019-03-24 21:41:49 +00:00
|
|
|
|
|
|
|
/* Initialize version manager. */
|
|
|
|
VersionManager::Initialize();
|
2019-05-22 20:11:40 +01:00
|
|
|
|
2019-01-29 10:29:29 +00:00
|
|
|
/* Create server manager */
|
2019-05-22 20:11:40 +01:00
|
|
|
auto server_manager = new SetMitmManager(4);
|
|
|
|
|
2019-01-21 01:00:35 +00:00
|
|
|
/* Create set:sys mitm. */
|
2019-01-21 07:13:16 +00:00
|
|
|
AddMitmServerToManager<SetSysMitmService>(server_manager, "set:sys", 60);
|
2019-05-22 20:11:40 +01:00
|
|
|
|
|
|
|
/* Create set mitm. */
|
|
|
|
AddMitmServerToManager<SetMitmService>(server_manager, "set", 60);
|
|
|
|
|
2018-10-30 05:18:04 +00:00
|
|
|
/* Loop forever, servicing our services. */
|
|
|
|
server_manager->Process();
|
2019-05-22 20:11:40 +01:00
|
|
|
|
2018-10-30 05:18:04 +00:00
|
|
|
delete server_manager;
|
2019-05-22 20:11:40 +01:00
|
|
|
|
2018-10-30 05:18:04 +00:00
|
|
|
}
|
|
|
|
|