| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- // SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #include "common/logging/log.h"
- #include "core/core.h"
- #include "core/hid/hid_types.h"
- #include "core/hle/kernel/k_event.h"
- #include "core/hle/service/ipc_helpers.h"
- #include "core/hle/service/nfc/common/device.h"
- #include "core/hle/service/nfc/common/device_manager.h"
- #include "core/hle/service/nfc/nfc_types.h"
- #include "core/hle/service/nfp/nfp_interface.h"
- #include "core/hle/service/nfp/nfp_result.h"
- #include "core/hle/service/nfp/nfp_types.h"
- namespace Service::NFP {
- Interface::Interface(Core::System& system_, const char* name)
- : NfcInterface{system_, name, NFC::BackendType::Nfp} {}
- Interface::~Interface() = default;
- void Interface::InitializeSystem(HLERequestContext& ctx) {
- Initialize(ctx);
- }
- void Interface::InitializeDebug(HLERequestContext& ctx) {
- Initialize(ctx);
- }
- void Interface::FinalizeSystem(HLERequestContext& ctx) {
- Finalize(ctx);
- }
- void Interface::FinalizeDebug(HLERequestContext& ctx) {
- Finalize(ctx);
- }
- void Interface::Mount(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto model_type{rp.PopEnum<ModelType>()};
- const auto mount_target{rp.PopEnum<MountTarget>()};
- LOG_INFO(Service_NFP, "called, device_handle={}, model_type={}, mount_target={}", device_handle,
- model_type, mount_target);
- auto result = GetManager()->Mount(device_handle, model_type, mount_target);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::Unmount(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->Unmount(device_handle);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::OpenApplicationArea(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto access_id{rp.Pop<u32>()};
- LOG_INFO(Service_NFP, "called, device_handle={}, access_id={}", device_handle, access_id);
- auto result = GetManager()->OpenApplicationArea(device_handle, access_id);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::GetApplicationArea(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto data_size = ctx.GetWriteBufferSize();
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- std::vector<u8> data(data_size);
- auto result = GetManager()->GetApplicationArea(device_handle, data);
- result = TranslateResultToServiceError(result);
- if (result.IsError()) {
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- return;
- }
- ctx.WriteBuffer(data);
- IPC::ResponseBuilder rb{ctx, 3};
- rb.Push(result);
- rb.Push(static_cast<u32>(data_size));
- }
- void Interface::SetApplicationArea(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto data{ctx.ReadBuffer()};
- LOG_INFO(Service_NFP, "called, device_handle={}, data_size={}", device_handle, data.size());
- auto result = GetManager()->SetApplicationArea(device_handle, data);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::Flush(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->Flush(device_handle);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::Restore(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->Restore(device_handle);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::CreateApplicationArea(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto access_id{rp.Pop<u32>()};
- const auto data{ctx.ReadBuffer()};
- LOG_INFO(Service_NFP, "called, device_handle={}, data_size={}, access_id={}", device_handle,
- access_id, data.size());
- auto result = GetManager()->CreateApplicationArea(device_handle, access_id, data);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::GetRegisterInfo(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- RegisterInfo register_info{};
- auto result = GetManager()->GetRegisterInfo(device_handle, register_info);
- result = TranslateResultToServiceError(result);
- if (result.IsSuccess()) {
- ctx.WriteBuffer(register_info);
- }
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::GetCommonInfo(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- CommonInfo common_info{};
- auto result = GetManager()->GetCommonInfo(device_handle, common_info);
- result = TranslateResultToServiceError(result);
- if (result.IsSuccess()) {
- ctx.WriteBuffer(common_info);
- }
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::GetModelInfo(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- ModelInfo model_info{};
- auto result = GetManager()->GetModelInfo(device_handle, model_info);
- result = TranslateResultToServiceError(result);
- if (result.IsSuccess()) {
- ctx.WriteBuffer(model_info);
- }
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::GetApplicationAreaSize(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_DEBUG(Service_NFP, "called, device_handle={}", device_handle);
- IPC::ResponseBuilder rb{ctx, 3};
- rb.Push(ResultSuccess);
- rb.Push(GetManager()->GetApplicationAreaSize());
- }
- void Interface::RecreateApplicationArea(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto access_id{rp.Pop<u32>()};
- const auto data{ctx.ReadBuffer()};
- LOG_INFO(Service_NFP, "called, device_handle={}, data_size={}, access_id={}", device_handle,
- access_id, data.size());
- auto result = GetManager()->RecreateApplicationArea(device_handle, access_id, data);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::Format(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->Format(device_handle);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::GetAdminInfo(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- AdminInfo admin_info{};
- auto result = GetManager()->GetAdminInfo(device_handle, admin_info);
- result = TranslateResultToServiceError(result);
- if (result.IsSuccess()) {
- ctx.WriteBuffer(admin_info);
- }
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::GetRegisterInfoPrivate(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- RegisterInfoPrivate register_info{};
- auto result = GetManager()->GetRegisterInfoPrivate(device_handle, register_info);
- result = TranslateResultToServiceError(result);
- if (result.IsSuccess()) {
- ctx.WriteBuffer(register_info);
- }
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::SetRegisterInfoPrivate(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto register_info_buffer{ctx.ReadBuffer()};
- LOG_INFO(Service_NFP, "called, device_handle={}, buffer_size={}", device_handle,
- register_info_buffer.size());
- RegisterInfoPrivate register_info{};
- memcpy(®ister_info, register_info_buffer.data(), sizeof(RegisterInfoPrivate));
- auto result = GetManager()->SetRegisterInfoPrivate(device_handle, register_info);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::DeleteRegisterInfo(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->DeleteRegisterInfo(device_handle);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::DeleteApplicationArea(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->DeleteApplicationArea(device_handle);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::ExistsApplicationArea(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- bool has_application_area = false;
- auto result = GetManager()->ExistsApplicationArea(device_handle, has_application_area);
- result = TranslateResultToServiceError(result);
- if (result.IsError()) {
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- return;
- }
- IPC::ResponseBuilder rb{ctx, 3};
- rb.Push(result);
- rb.Push(has_application_area);
- }
- void Interface::GetAll(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- NfpData nfp_data{};
- auto result = GetManager()->GetAll(device_handle, nfp_data);
- result = TranslateResultToServiceError(result);
- if (result.IsSuccess()) {
- ctx.WriteBuffer(nfp_data);
- }
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::SetAll(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto nfp_data_buffer{ctx.ReadBuffer()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- NfpData nfp_data{};
- memcpy(&nfp_data, nfp_data_buffer.data(), sizeof(NfpData));
- auto result = GetManager()->SetAll(device_handle, nfp_data);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::FlushDebug(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->FlushDebug(device_handle);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::BreakTag(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto break_type{rp.PopEnum<BreakType>()};
- LOG_WARNING(Service_NFP, "(STUBBED) called, device_handle={}, break_type={}", device_handle,
- break_type);
- auto result = GetManager()->BreakTag(device_handle, break_type);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::ReadBackupData(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- std::vector<u8> backup_data{};
- auto result = GetManager()->ReadBackupData(device_handle, backup_data);
- result = TranslateResultToServiceError(result);
- if (result.IsSuccess()) {
- ctx.WriteBuffer(backup_data);
- }
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::WriteBackupData(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto backup_data_buffer{ctx.ReadBuffer()};
- LOG_INFO(Service_NFP, "called, device_handle={}", device_handle);
- auto result = GetManager()->WriteBackupData(device_handle, backup_data_buffer);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- void Interface::WriteNtf(HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- const auto device_handle{rp.Pop<u64>()};
- const auto write_type{rp.PopEnum<WriteType>()};
- const auto ntf_data_buffer{ctx.ReadBuffer()};
- LOG_WARNING(Service_NFP, "(STUBBED) called, device_handle={}", device_handle);
- auto result = GetManager()->WriteNtf(device_handle, write_type, ntf_data_buffer);
- result = TranslateResultToServiceError(result);
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(result);
- }
- } // namespace Service::NFP
|