2019-04-25 19:12:30 +01:00
|
|
|
/*
|
2021-10-04 20:59:10 +01:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-04-25 19:12:30 +01: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/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
2021-10-10 20:57:24 +01:00
|
|
|
#include "spl_secure_monitor_manager.hpp"
|
2019-04-25 19:12:30 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::spl {
|
2019-04-25 19:12:30 +01:00
|
|
|
|
2021-01-17 23:03:51 +00:00
|
|
|
class DeprecatedService {
|
2021-10-10 20:57:24 +01:00
|
|
|
protected:
|
|
|
|
SecureMonitorManager &m_manager;
|
2019-06-21 09:36:00 +01:00
|
|
|
public:
|
2021-10-10 20:57:24 +01:00
|
|
|
explicit DeprecatedService(SecureMonitorManager *manager) : m_manager(*manager) { /* ... */ }
|
|
|
|
public:
|
|
|
|
virtual ~DeprecatedService() {
|
|
|
|
/* Free any keyslots this service is using. */
|
|
|
|
m_manager.DeallocateAesKeySlots(this);
|
|
|
|
}
|
2019-06-21 09:36:00 +01:00
|
|
|
public:
|
2020-07-08 01:07:23 +01:00
|
|
|
/* Actual commands. */
|
2021-10-10 20:57:24 +01:00
|
|
|
Result GetConfig(sf::Out<u64> out, u32 which) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.GetConfig(out.GetPointer(), static_cast<spl::ConfigItem>(which)));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result ModularExponentiate(const sf::OutPointerBuffer &out, const sf::InPointerBuffer &base, const sf::InPointerBuffer &exp, const sf::InPointerBuffer &mod) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.ModularExponentiate(out.GetPointer(), out.GetSize(), base.GetPointer(), base.GetSize(), exp.GetPointer(), exp.GetSize(), mod.GetPointer(), mod.GetSize()));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GenerateAesKek(sf::Out<AccessKey> out_access_key, KeySource key_source, u32 generation, u32 option) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.GenerateAesKek(out_access_key.GetPointer(), key_source, generation, option));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result LoadAesKey(s32 keyslot, AccessKey access_key, KeySource key_source) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.LoadAesKey(keyslot, this, access_key, key_source));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GenerateAesKey(sf::Out<AesKey> out_key, AccessKey access_key, KeySource key_source) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.GenerateAesKey(out_key.GetPointer(), access_key, key_source));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result SetConfig(u32 which, u64 value) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.SetConfig(static_cast<spl::ConfigItem>(which), value));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GenerateRandomBytes(const sf::OutPointerBuffer &out) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.GenerateRandomBytes(out.GetPointer(), out.GetSize()));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result DecryptAndStoreGcKey(const sf::InPointerBuffer &src, AccessKey access_key, KeySource key_source, u32 option) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.DecryptAndStoreGcKey(src.GetPointer(), src.GetSize(), access_key, key_source, option));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result DecryptGcMessage(sf::Out<u32> out_size, const sf::OutPointerBuffer &out, const sf::InPointerBuffer &base, const sf::InPointerBuffer &mod, const sf::InPointerBuffer &label_digest) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.DecryptGcMessage(out_size.GetPointer(), out.GetPointer(), out.GetSize(), base.GetPointer(), base.GetSize(), mod.GetPointer(), mod.GetSize(), label_digest.GetPointer(), label_digest.GetSize()));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result IsDevelopment(sf::Out<bool> is_dev) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.IsDevelopment(is_dev.GetPointer()));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GenerateSpecificAesKey(sf::Out<AesKey> out_key, KeySource key_source, u32 generation, u32 which) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.GenerateSpecificAesKey(out_key.GetPointer(), key_source, generation, which));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result DecryptDeviceUniqueData(const sf::OutPointerBuffer &dst, const sf::InPointerBuffer &src, AccessKey access_key, KeySource key_source, u32 option) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.DecryptDeviceUniqueData(dst.GetPointer(), dst.GetSize(), src.GetPointer(), src.GetSize(), access_key, key_source, option));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result DecryptAesKey(sf::Out<AesKey> out_key, KeySource key_source, u32 generation, u32 option) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.DecryptAesKey(out_key.GetPointer(), key_source, generation, option));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result ComputeCtrDeprecated(const sf::OutBuffer &out_buf, s32 keyslot, const sf::InBuffer &in_buf, IvCtr iv_ctr) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.ComputeCtr(out_buf.GetPointer(), out_buf.GetSize(), keyslot, this, in_buf.GetPointer(), in_buf.GetSize(), iv_ctr));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result ComputeCtr(const sf::OutNonSecureBuffer &out_buf, s32 keyslot, const sf::InNonSecureBuffer &in_buf, IvCtr iv_ctr) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.ComputeCtr(out_buf.GetPointer(), out_buf.GetSize(), keyslot, this, in_buf.GetPointer(), in_buf.GetSize(), iv_ctr));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result ComputeCmac(sf::Out<Cmac> out_cmac, s32 keyslot, const sf::InPointerBuffer &in_buf) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.ComputeCmac(out_cmac.GetPointer(), keyslot, this, in_buf.GetPointer(), in_buf.GetSize()));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result LoadEsDeviceKey(const sf::InPointerBuffer &src, AccessKey access_key, KeySource key_source, u32 option) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.LoadEsDeviceKey(src.GetPointer(), src.GetSize(), access_key, key_source, option));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result PrepareEsTitleKeyDeprecated(sf::Out<AccessKey> out_access_key, const sf::InPointerBuffer &base, const sf::InPointerBuffer &mod, const sf::InPointerBuffer &label_digest) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.PrepareEsTitleKey(out_access_key.GetPointer(), base.GetPointer(), base.GetSize(), mod.GetPointer(), mod.GetSize(), label_digest.GetPointer(), label_digest.GetSize(), 0));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result PrepareEsTitleKey(sf::Out<AccessKey> out_access_key, const sf::InPointerBuffer &base, const sf::InPointerBuffer &mod, const sf::InPointerBuffer &label_digest, u32 generation) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.PrepareEsTitleKey(out_access_key.GetPointer(), base.GetPointer(), base.GetSize(), mod.GetPointer(), mod.GetSize(), label_digest.GetPointer(), label_digest.GetSize(), generation));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result LoadPreparedAesKey(s32 keyslot, AccessKey access_key) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.LoadPreparedAesKey(keyslot, this, access_key));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result PrepareCommonEsTitleKeyDeprecated(sf::Out<AccessKey> out_access_key, KeySource key_source) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.PrepareCommonEsTitleKey(out_access_key.GetPointer(), key_source, 0));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result PrepareCommonEsTitleKey(sf::Out<AccessKey> out_access_key, KeySource key_source, u32 generation) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.PrepareCommonEsTitleKey(out_access_key.GetPointer(), key_source, generation));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result AllocateAesKeySlot(sf::Out<s32> out_keyslot) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.AllocateAesKeySlot(out_keyslot.GetPointer(), this));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result DeallocateAesKeySlot(s32 keyslot) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.DeallocateAesKeySlot(keyslot, this));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GetAesKeySlotAvailableEvent(sf::OutCopyHandle out_hnd) {
|
|
|
|
out_hnd.SetValue(m_manager.GetAesKeySlotAvailableEvent()->GetReadableHandle(), false);
|
2022-03-26 07:14:36 +00:00
|
|
|
R_SUCCEED();
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result SetBootReason(BootReasonValue boot_reason) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.SetBootReason(boot_reason));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GetBootReason(sf::Out<BootReasonValue> out) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(m_manager.GetBootReason(out.GetPointer()));
|
2021-10-10 20:57:24 +01:00
|
|
|
}
|
2019-06-21 09:36:00 +01:00
|
|
|
};
|
2020-07-08 01:07:23 +01:00
|
|
|
static_assert(spl::impl::IsIDeprecatedGeneralInterface<DeprecatedService>);
|
2019-06-21 09:36:00 +01:00
|
|
|
|
|
|
|
}
|