2020-05-22 10:29:36 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <switch.h>
|
2020-05-11 20:30:08 +00:00
|
|
|
#include "btdrv_mitm_service.hpp"
|
2020-06-13 00:08:43 +00:00
|
|
|
#include "btdrv_mitm_flags.hpp"
|
2020-05-11 20:30:08 +00:00
|
|
|
#include "btdrv_shim.h"
|
|
|
|
|
2020-06-13 00:08:43 +00:00
|
|
|
#include "bluetooth/bluetooth_events.hpp"
|
2020-07-11 19:10:38 +00:00
|
|
|
#include "controllers/controllermanager.hpp"
|
2020-06-11 18:34:14 +00:00
|
|
|
|
2020-07-27 17:42:40 +00:00
|
|
|
#include "btdrv_mitm_logging.hpp"
|
|
|
|
|
2020-05-22 10:29:36 +00:00
|
|
|
namespace ams::mitm::btdrv {
|
|
|
|
|
|
|
|
Result BtdrvMitmService::InitializeBluetooth(sf::OutCopyHandle out_handle) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: InitializeBluetooth");
|
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
if (!bluetooth::core::IsInitialized()) {
|
2020-05-22 10:29:36 +00:00
|
|
|
Handle handle = INVALID_HANDLE;
|
2020-06-13 17:15:59 +00:00
|
|
|
R_TRY(btdrvInitializeBluetoothFwd(this->forward_service.get(), &handle));
|
2020-06-14 22:18:46 +00:00
|
|
|
R_TRY(bluetooth::core::Initialize(handle));
|
2020-07-09 17:44:12 +00:00
|
|
|
R_TRY(bluetooth::hid::report::InitializeReportBuffer());
|
2020-06-15 12:13:17 +00:00
|
|
|
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::core::GetForwardEvent()));
|
2020-05-22 10:29:36 +00:00
|
|
|
} else {
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::core::GetUserForwardEvent()));
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result BtdrvMitmService::FinalizeBluetooth(void) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: FinalizeBluetooth");
|
|
|
|
|
2020-06-13 00:08:43 +00:00
|
|
|
// Only btm should be able to make this call
|
2020-05-22 10:29:36 +00:00
|
|
|
if (this->client_info.program_id == ncm::SystemProgramId::Btm) {
|
2020-06-14 22:18:46 +00:00
|
|
|
R_TRY(btdrvFinalizeBluetoothFwd(this->forward_service.get()));
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::GetEventInfo(sf::Out<bluetooth::EventType> out_type, const sf::OutPointerBuffer &out_buffer) {
|
2020-06-09 19:58:32 +00:00
|
|
|
|
2020-06-22 21:14:54 +00:00
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: GetEventInfo");
|
2020-05-22 10:29:36 +00:00
|
|
|
|
2020-06-22 21:14:54 +00:00
|
|
|
R_TRY(bluetooth::core::GetEventInfo(this->client_info.program_id,
|
|
|
|
out_type.GetPointer(),
|
2020-06-14 22:18:46 +00:00
|
|
|
static_cast<u8 *>(out_buffer.GetPointer()),
|
|
|
|
static_cast<size_t>(out_buffer.GetSize())
|
|
|
|
));
|
2020-05-22 10:29:36 +00:00
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result BtdrvMitmService::InitializeHid(sf::OutCopyHandle out_handle, u16 version) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: InitializeHid");
|
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
if (!bluetooth::hid::IsInitialized()) {
|
|
|
|
Handle handle = INVALID_HANDLE;
|
|
|
|
R_TRY(btdrvInitializeHidFwd(this->forward_service.get(), &handle, version));
|
|
|
|
R_TRY(bluetooth::hid::Initialize(handle));
|
2020-06-22 21:14:54 +00:00
|
|
|
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::hid::GetForwardEvent()));
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::hid::GetUserForwardEvent()));
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-07-27 17:42:40 +00:00
|
|
|
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::WriteHidData(bluetooth::Address address, const sf::InPointerBuffer &buffer) {
|
2020-05-22 10:29:36 +00:00
|
|
|
|
2020-07-11 11:43:21 +00:00
|
|
|
auto requestData = reinterpret_cast<const bluetooth::HidReport *>(buffer.GetPointer());
|
2020-06-22 21:14:54 +00:00
|
|
|
|
2020-05-22 10:29:36 +00:00
|
|
|
if (this->client_info.program_id == ncm::SystemProgramId::Hid) {
|
2020-08-24 20:40:44 +00:00
|
|
|
auto device = controller::locateHandler(&address);
|
2020-07-27 17:42:40 +00:00
|
|
|
if (device) {
|
|
|
|
requestData = device->handleOutgoingReport(requestData);
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-27 17:42:40 +00:00
|
|
|
// Above handler sets size to 0 if we shouldn't send any data to the controller
|
|
|
|
if (requestData->size > 0) {
|
|
|
|
R_TRY(btdrvWriteHidDataFwd(this->forward_service.get(),
|
|
|
|
&address,
|
|
|
|
requestData
|
|
|
|
));
|
|
|
|
}
|
2020-05-22 10:29:36 +00:00
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::GetPairedDeviceInfo(sf::Out<bluetooth::DeviceSettings> out, bluetooth::Address address) {
|
2020-06-30 08:05:33 +00:00
|
|
|
|
2020-06-28 15:32:48 +00:00
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: GetPairedDeviceInfo");
|
2020-06-22 21:14:54 +00:00
|
|
|
|
2020-06-30 08:05:33 +00:00
|
|
|
auto device = reinterpret_cast<BluetoothDevicesSettings *>(out.GetPointer());
|
2020-06-22 21:14:54 +00:00
|
|
|
|
2020-06-30 08:05:33 +00:00
|
|
|
R_TRY(btdrvGetPairedDeviceInfoFwd(this->forward_service.get(), &address, device));
|
2020-06-28 15:32:48 +00:00
|
|
|
|
|
|
|
if (this->client_info.program_id == ncm::SystemProgramId::Btm) {
|
2020-07-11 19:10:38 +00:00
|
|
|
if (!controller::IsValidSwitchControllerName(device->name)) {
|
2020-07-27 22:57:59 +00:00
|
|
|
std::strncpy(device->name, controller::proControllerName, sizeof(BluetoothLocalName) - 1);
|
2020-06-22 21:14:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
2020-06-28 15:32:48 +00:00
|
|
|
|
2020-05-22 10:29:36 +00:00
|
|
|
Result BtdrvMitmService::FinalizeHid(void) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: FinalizeHid");
|
|
|
|
|
2020-06-13 00:08:43 +00:00
|
|
|
// Only btm should be able to make this call
|
2020-05-22 10:29:36 +00:00
|
|
|
if (this->client_info.program_id == ncm::SystemProgramId::Btm) {
|
2020-06-14 22:18:46 +00:00
|
|
|
R_TRY(btdrvFinalizeHidFwd(this->forward_service.get()));
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::GetHidEventInfo(sf::Out<bluetooth::HidEventType> out_type, const sf::OutPointerBuffer &out_buffer) {
|
2020-05-22 10:29:36 +00:00
|
|
|
|
2020-06-28 15:32:48 +00:00
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: GetHidEventInfo");
|
|
|
|
|
2020-06-22 21:14:54 +00:00
|
|
|
R_TRY(bluetooth::hid::GetEventInfo(this->client_info.program_id,
|
|
|
|
out_type.GetPointer(),
|
2020-06-14 22:18:46 +00:00
|
|
|
static_cast<u8 *>(out_buffer.GetPointer()),
|
|
|
|
static_cast<size_t>(out_buffer.GetSize())
|
|
|
|
));
|
2020-05-22 10:29:36 +00:00
|
|
|
|
2020-06-22 21:14:54 +00:00
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-06-12 21:25:09 +00:00
|
|
|
/* 1.0.0 - 3.0.2 */
|
|
|
|
Result BtdrvMitmService::RegisterHidReportEventDeprecated(sf::OutCopyHandle out_handle) {
|
|
|
|
return RegisterHidReportEvent(out_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 4.0.0+ */
|
2020-05-22 10:29:36 +00:00
|
|
|
Result BtdrvMitmService::RegisterHidReportEvent(sf::OutCopyHandle out_handle) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: RegisterHidReportEvent");
|
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
if (!bluetooth::hid::report::IsInitialized()) {
|
2020-06-02 21:24:40 +00:00
|
|
|
Handle handle = INVALID_HANDLE;
|
2020-06-14 22:18:46 +00:00
|
|
|
R_TRY(btdrvRegisterHidReportEventFwd(this->forward_service.get(), &handle));
|
|
|
|
R_TRY(bluetooth::hid::report::Initialize(handle));
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::hid::report::GetForwardEvent()));
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::hid::report::GetUserForwardEvent()));
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|
2020-05-22 10:29:36 +00:00
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
/* 1.0.0 - 6.2.0 */
|
2020-07-01 13:34:07 +00:00
|
|
|
Result _GetHidReportEventInfoDeprecated(Service *srv, sf::Out<bluetooth::HidEventType> out_type, const sf::OutPointerBuffer &out_buffer) {
|
2020-06-22 21:14:54 +00:00
|
|
|
|
2020-07-09 19:26:22 +00:00
|
|
|
//BTDRV_LOG_FMT("btdrv-mitm: GetHidReportEventInfo (deprecated)");
|
2020-06-12 21:25:09 +00:00
|
|
|
|
2020-06-22 21:14:54 +00:00
|
|
|
R_TRY(bluetooth::hid::report::GetEventInfo(out_type.GetPointer(),
|
|
|
|
static_cast<u8 *>(out_buffer.GetPointer()),
|
2020-06-12 21:25:09 +00:00
|
|
|
static_cast<size_t>(out_buffer.GetSize())
|
|
|
|
));
|
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
2020-06-12 21:25:09 +00:00
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
/* 1.0.0 - 3.0.2 */
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::GetHidReportEventInfoDeprecated1(sf::Out<bluetooth::HidEventType> out_type, const sf::OutPointerBuffer &out_buffer) {
|
2020-06-14 22:18:46 +00:00
|
|
|
return _GetHidReportEventInfoDeprecated(this->forward_service.get(), out_type, out_buffer);
|
|
|
|
}
|
2020-06-12 21:25:09 +00:00
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
/* 4.0.0 - 6.2.0 */
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::GetHidReportEventInfoDeprecated2(sf::Out<bluetooth::HidEventType> out_type, const sf::OutPointerBuffer &out_buffer) {
|
2020-06-14 22:18:46 +00:00
|
|
|
return _GetHidReportEventInfoDeprecated(this->forward_service.get(), out_type, out_buffer);
|
2020-06-12 21:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 7.0.0+ */
|
2020-05-22 10:29:36 +00:00
|
|
|
Result BtdrvMitmService::GetHidReportEventInfo(sf::OutCopyHandle out_handle) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: GetHidReportEventInfo");
|
|
|
|
|
|
|
|
Handle handle = INVALID_HANDLE;
|
2020-06-14 22:18:46 +00:00
|
|
|
R_TRY(btdrvGetHidReportEventInfoFwd(this->forward_service.get(), &handle));
|
2020-06-13 17:15:59 +00:00
|
|
|
R_TRY(bluetooth::hid::report::MapRemoteSharedMemory(handle));
|
|
|
|
out_handle.SetValue(bluetooth::hid::report::GetFakeSharedMemory()->handle);
|
2020-06-02 21:24:40 +00:00
|
|
|
|
2020-05-22 10:29:36 +00:00
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result BtdrvMitmService::InitializeBle(sf::OutCopyHandle out_handle) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: InitializeBle");
|
|
|
|
|
2020-06-14 22:18:46 +00:00
|
|
|
if (!bluetooth::ble::IsInitialized()) {
|
|
|
|
Handle handle = INVALID_HANDLE;
|
|
|
|
R_TRY(btdrvInitializeBleFwd(this->forward_service.get(), &handle));
|
|
|
|
R_TRY(bluetooth::ble::Initialize(handle));
|
2020-06-22 21:14:54 +00:00
|
|
|
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::ble::GetForwardEvent()));
|
2020-06-13 00:08:43 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-06-13 17:15:59 +00:00
|
|
|
out_handle.SetValue(os::GetReadableHandleOfSystemEvent(bluetooth::ble::GetUserForwardEvent()));
|
2020-06-13 00:08:43 +00:00
|
|
|
}
|
2020-05-22 10:29:36 +00:00
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result BtdrvMitmService::FinalizeBle(void) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: FinalizeBle");
|
|
|
|
|
|
|
|
if (this->client_info.program_id == ncm::SystemProgramId::Btm) {
|
2020-06-14 22:18:46 +00:00
|
|
|
R_TRY(btdrvFinalizeBleFwd(this->forward_service.get()));
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
2020-05-11 20:30:08 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::GetBleManagedEventInfoDeprecated(sf::Out<bluetooth::BleEventType> out_type, const sf::OutPointerBuffer &out_buffer) {
|
2020-06-14 23:14:09 +00:00
|
|
|
return GetBleManagedEventInfo(out_type, out_buffer);
|
|
|
|
}
|
|
|
|
|
2020-07-01 13:34:07 +00:00
|
|
|
Result BtdrvMitmService::GetBleManagedEventInfo(sf::Out<bluetooth::BleEventType> out_type, const sf::OutPointerBuffer &out_buffer) {
|
2020-06-22 21:14:54 +00:00
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: GetBleManagedEventInfo");
|
|
|
|
|
|
|
|
R_TRY(bluetooth::ble::GetEventInfo(this->client_info.program_id,
|
|
|
|
out_type.GetPointer(),
|
2020-06-14 23:14:09 +00:00
|
|
|
static_cast<u8 *>(out_buffer.GetPointer()),
|
|
|
|
static_cast<size_t>(out_buffer.GetSize())
|
|
|
|
));
|
|
|
|
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-08-04 20:18:15 +00:00
|
|
|
void BtdrvMitmService::RedirectCoreEvents(bool redirect) {
|
2020-06-02 21:24:40 +00:00
|
|
|
|
2020-08-04 20:18:15 +00:00
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: RedirectCoreEvents [%s]", redirect ? "on" : "off");
|
2020-06-02 21:24:40 +00:00
|
|
|
|
2020-08-04 20:18:15 +00:00
|
|
|
g_redirectCoreEvents = redirect;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BtdrvMitmService::RedirectHidEvents(bool redirect) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: RedirectHidEvents [%s]", redirect ? "on" : "off");
|
|
|
|
|
|
|
|
g_redirectHidEvents = redirect;
|
2020-06-02 21:24:40 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 17:38:53 +00:00
|
|
|
void BtdrvMitmService::RedirectHidReportEvents(bool redirect) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: RedirectHidReportEvents [%s]", redirect ? "on" : "off");
|
|
|
|
|
|
|
|
g_redirectHidReportEvents = redirect;
|
|
|
|
}
|
|
|
|
|
2020-08-04 20:18:15 +00:00
|
|
|
void BtdrvMitmService::RedirectBleEvents(bool redirect) {
|
|
|
|
|
|
|
|
BTDRV_LOG_FMT("btdrv-mitm: RedirectBleEvents [%s]", redirect ? "on" : "off");
|
|
|
|
|
|
|
|
g_redirectBleEvents = redirect;
|
|
|
|
}
|
|
|
|
|
2020-08-05 21:20:04 +00:00
|
|
|
Result BtdrvMitmService::GetRealSharedMemory(sf::OutCopyHandle out_handle) {
|
|
|
|
out_handle.SetValue(bluetooth::hid::report::GetRealSharedMemory()->handle);
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result BtdrvMitmService::GetFakeSharedMemory(sf::OutCopyHandle out_handle) {
|
|
|
|
out_handle.SetValue(bluetooth::hid::report::GetFakeSharedMemory()->handle);
|
|
|
|
return ams::ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-08-04 20:18:15 +00:00
|
|
|
|
2020-05-11 20:30:08 +00:00
|
|
|
}
|