2018-07-25 21:30:50 +02:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-04-10 19:59:41 +02:00
|
|
|
#include "core/crypto/key_manager.h"
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
2020-04-17 04:43:33 +02:00
|
|
|
#include "core/hle/service/es/es.h"
|
2018-07-25 21:30:50 +02:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service::ES {
|
|
|
|
|
2019-04-10 19:59:41 +02:00
|
|
|
constexpr ResultCode ERROR_INVALID_ARGUMENT{ErrorModule::ETicket, 2};
|
|
|
|
constexpr ResultCode ERROR_INVALID_RIGHTS_ID{ErrorModule::ETicket, 3};
|
|
|
|
|
2018-07-25 21:30:50 +02:00
|
|
|
class ETicket final : public ServiceFramework<ETicket> {
|
|
|
|
public:
|
|
|
|
explicit ETicket() : ServiceFramework{"es"} {
|
2018-10-19 10:12:26 +02:00
|
|
|
// clang-format off
|
2018-07-25 21:30:50 +02:00
|
|
|
static const FunctionInfo functions[] = {
|
2019-04-10 19:59:41 +02:00
|
|
|
{1, &ETicket::ImportTicket, "ImportTicket"},
|
2018-07-25 21:30:50 +02:00
|
|
|
{2, nullptr, "ImportTicketCertificateSet"},
|
|
|
|
{3, nullptr, "DeleteTicket"},
|
|
|
|
{4, nullptr, "DeletePersonalizedTicket"},
|
|
|
|
{5, nullptr, "DeleteAllCommonTicket"},
|
|
|
|
{6, nullptr, "DeleteAllPersonalizedTicket"},
|
|
|
|
{7, nullptr, "DeleteAllPersonalizedTicketEx"},
|
2019-04-10 20:00:39 +02:00
|
|
|
{8, &ETicket::GetTitleKey, "GetTitleKey"},
|
2019-04-10 20:02:27 +02:00
|
|
|
{9, &ETicket::CountCommonTicket, "CountCommonTicket"},
|
2019-04-10 20:03:08 +02:00
|
|
|
{10, &ETicket::CountPersonalizedTicket, "CountPersonalizedTicket"},
|
2020-06-27 02:17:51 +02:00
|
|
|
{11, &ETicket::ListCommonTicket, "ListCommonTicketRightsIds"},
|
|
|
|
{12, &ETicket::ListPersonalizedTicket, "ListPersonalizedTicketRightsIds"},
|
2018-07-25 21:30:50 +02:00
|
|
|
{13, nullptr, "ListMissingPersonalizedTicket"},
|
2019-04-10 20:06:17 +02:00
|
|
|
{14, &ETicket::GetCommonTicketSize, "GetCommonTicketSize"},
|
2019-04-10 20:07:00 +02:00
|
|
|
{15, &ETicket::GetPersonalizedTicketSize, "GetPersonalizedTicketSize"},
|
2019-04-10 20:07:49 +02:00
|
|
|
{16, &ETicket::GetCommonTicketData, "GetCommonTicketData"},
|
2019-04-10 20:08:19 +02:00
|
|
|
{17, &ETicket::GetPersonalizedTicketData, "GetPersonalizedTicketData"},
|
2018-07-25 21:30:50 +02:00
|
|
|
{18, nullptr, "OwnTicket"},
|
|
|
|
{19, nullptr, "GetTicketInfo"},
|
|
|
|
{20, nullptr, "ListLightTicketInfo"},
|
|
|
|
{21, nullptr, "SignData"},
|
|
|
|
{22, nullptr, "GetCommonTicketAndCertificateSize"},
|
|
|
|
{23, nullptr, "GetCommonTicketAndCertificateData"},
|
|
|
|
{24, nullptr, "ImportPrepurchaseRecord"},
|
|
|
|
{25, nullptr, "DeletePrepurchaseRecord"},
|
|
|
|
{26, nullptr, "DeleteAllPrepurchaseRecord"},
|
|
|
|
{27, nullptr, "CountPrepurchaseRecord"},
|
2018-10-19 10:12:26 +02:00
|
|
|
{28, nullptr, "ListPrepurchaseRecordRightsIds"},
|
2018-07-25 21:30:50 +02:00
|
|
|
{29, nullptr, "ListPrepurchaseRecordInfo"},
|
2018-10-19 10:12:26 +02:00
|
|
|
{30, nullptr, "CountTicket"},
|
|
|
|
{31, nullptr, "ListTicketRightsIds"},
|
|
|
|
{32, nullptr, "CountPrepurchaseRecordEx"},
|
|
|
|
{33, nullptr, "ListPrepurchaseRecordRightsIdsEx"},
|
|
|
|
{34, nullptr, "GetEncryptedTicketSize"},
|
|
|
|
{35, nullptr, "GetEncryptedTicketData"},
|
|
|
|
{36, nullptr, "DeleteAllInactiveELicenseRequiredPersonalizedTicket"},
|
2019-11-12 14:54:58 +01:00
|
|
|
{37, nullptr, "OwnTicket2"},
|
|
|
|
{38, nullptr, "OwnTicket3"},
|
2020-06-27 02:17:51 +02:00
|
|
|
{501, nullptr, "Unknown"},
|
|
|
|
{502, nullptr, "Unknown2"},
|
2018-10-19 10:12:26 +02:00
|
|
|
{503, nullptr, "GetTitleKey"},
|
2020-06-27 02:17:51 +02:00
|
|
|
{504, nullptr, "Unknown3"},
|
|
|
|
{508, nullptr, "Unknown4"},
|
|
|
|
{509, nullptr, "Unknown5"},
|
|
|
|
{510, nullptr, "Unknown6"},
|
|
|
|
{511, nullptr, "Unknown7"},
|
|
|
|
{1001, nullptr, "Unknown8"},
|
|
|
|
{1002, nullptr, "Unknown9"},
|
|
|
|
{1003, nullptr, "Unknown10"},
|
|
|
|
{1004, nullptr, "Unknown11"},
|
|
|
|
{1005, nullptr, "Unknown12"},
|
|
|
|
{1006, nullptr, "Unknown13"},
|
|
|
|
{1007, nullptr, "Unknown14"},
|
|
|
|
{1009, nullptr, "Unknown15"},
|
|
|
|
{1010, nullptr, "Unknown16"},
|
|
|
|
{1011, nullptr, "Unknown17"},
|
|
|
|
{1012, nullptr, "Unknown18"},
|
|
|
|
{1013, nullptr, "Unknown19"},
|
|
|
|
{1014, nullptr, "Unknown20"},
|
|
|
|
{1015, nullptr, "Unknown21"},
|
|
|
|
{1016, nullptr, "Unknown22"},
|
|
|
|
{1017, nullptr, "Unknown23"},
|
|
|
|
{1018, nullptr, "Unknown24"},
|
|
|
|
{1019, nullptr, "Unknown25"},
|
|
|
|
{1020, nullptr, "Unknown26"},
|
|
|
|
{1021, nullptr, "Unknown27"},
|
|
|
|
{1501, nullptr, "Unknown28"},
|
|
|
|
{1502, nullptr, "Unknown29"},
|
|
|
|
{1503, nullptr, "Unknown30"},
|
|
|
|
{1504, nullptr, "Unknown31"},
|
|
|
|
{1505, nullptr, "Unknown32"},
|
|
|
|
{2000, nullptr, "Unknown33"},
|
|
|
|
{2001, nullptr, "Unknown34"},
|
|
|
|
{2100, nullptr, "Unknown35"},
|
|
|
|
{2501, nullptr, "Unknown36"},
|
|
|
|
{2502, nullptr, "Unknown37"},
|
|
|
|
{3001, nullptr, "Unknown38"},
|
|
|
|
{3002, nullptr, "Unknown39"},
|
2018-07-25 21:30:50 +02:00
|
|
|
};
|
2018-10-19 10:12:26 +02:00
|
|
|
// clang-format on
|
2018-07-25 21:30:50 +02:00
|
|
|
RegisterHandlers(functions);
|
2019-04-17 17:29:21 +02:00
|
|
|
|
|
|
|
keys.PopulateTickets();
|
|
|
|
keys.SynthesizeTickets();
|
2018-07-25 21:30:50 +02:00
|
|
|
}
|
2019-04-10 19:59:41 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool CheckRightsId(Kernel::HLERequestContext& ctx, const u128& rights_id) {
|
|
|
|
if (rights_id == u128{}) {
|
|
|
|
LOG_ERROR(Service_ETicket, "The rights ID was invalid!");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(ERROR_INVALID_RIGHTS_ID);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImportTicket(Kernel::HLERequestContext& ctx) {
|
|
|
|
const auto ticket = ctx.ReadBuffer();
|
|
|
|
const auto cert = ctx.ReadBuffer(1);
|
|
|
|
|
2019-04-16 15:12:04 +02:00
|
|
|
if (ticket.size() < sizeof(Core::Crypto::Ticket)) {
|
2019-04-10 19:59:41 +02:00
|
|
|
LOG_ERROR(Service_ETicket, "The input buffer is not large enough!");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(ERROR_INVALID_ARGUMENT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-16 15:12:04 +02:00
|
|
|
Core::Crypto::Ticket raw{};
|
|
|
|
std::memcpy(&raw, ticket.data(), sizeof(Core::Crypto::Ticket));
|
2019-04-10 19:59:41 +02:00
|
|
|
|
|
|
|
if (!keys.AddTicketPersonalized(raw)) {
|
|
|
|
LOG_ERROR(Service_ETicket, "The ticket could not be imported!");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(ERROR_INVALID_ARGUMENT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:00:39 +02:00
|
|
|
void GetTitleKey(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto rights_id = rp.PopRaw<u128>();
|
|
|
|
|
|
|
|
LOG_DEBUG(Service_ETicket, "called, rights_id={:016X}{:016X}", rights_id[1], rights_id[0]);
|
|
|
|
|
|
|
|
if (!CheckRightsId(ctx, rights_id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto key =
|
|
|
|
keys.GetKey(Core::Crypto::S128KeyType::Titlekey, rights_id[1], rights_id[0]);
|
|
|
|
|
|
|
|
if (key == Core::Crypto::Key128{}) {
|
|
|
|
LOG_ERROR(Service_ETicket,
|
|
|
|
"The titlekey doesn't exist in the KeyManager or the rights ID was invalid!");
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(ERROR_INVALID_RIGHTS_ID);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.WriteBuffer(key.data(), key.size());
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:02:27 +02:00
|
|
|
void CountCommonTicket(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_ETicket, "called");
|
|
|
|
|
2019-09-29 22:45:09 +02:00
|
|
|
const u32 count = static_cast<u32>(keys.GetCommonTickets().size());
|
2019-04-10 20:02:27 +02:00
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u32>(count);
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:03:08 +02:00
|
|
|
void CountPersonalizedTicket(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_ETicket, "called");
|
|
|
|
|
2019-09-29 22:45:09 +02:00
|
|
|
const u32 count = static_cast<u32>(keys.GetPersonalizedTickets().size());
|
2019-04-10 20:03:08 +02:00
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u32>(count);
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:04:17 +02:00
|
|
|
void ListCommonTicket(Kernel::HLERequestContext& ctx) {
|
|
|
|
u32 out_entries;
|
|
|
|
if (keys.GetCommonTickets().empty())
|
|
|
|
out_entries = 0;
|
|
|
|
else
|
2019-09-29 22:45:09 +02:00
|
|
|
out_entries = static_cast<u32>(ctx.GetWriteBufferSize() / sizeof(u128));
|
2019-04-10 20:04:17 +02:00
|
|
|
|
|
|
|
LOG_DEBUG(Service_ETicket, "called, entries={:016X}", out_entries);
|
|
|
|
|
|
|
|
keys.PopulateTickets();
|
|
|
|
const auto tickets = keys.GetCommonTickets();
|
|
|
|
std::vector<u128> ids;
|
|
|
|
std::transform(tickets.begin(), tickets.end(), std::back_inserter(ids),
|
|
|
|
[](const auto& pair) { return pair.first; });
|
|
|
|
|
2019-09-29 22:45:09 +02:00
|
|
|
out_entries = static_cast<u32>(std::min<std::size_t>(ids.size(), out_entries));
|
2019-04-10 20:04:17 +02:00
|
|
|
ctx.WriteBuffer(ids.data(), out_entries * sizeof(u128));
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u32>(out_entries);
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:05:12 +02:00
|
|
|
void ListPersonalizedTicket(Kernel::HLERequestContext& ctx) {
|
|
|
|
u32 out_entries;
|
|
|
|
if (keys.GetPersonalizedTickets().empty())
|
|
|
|
out_entries = 0;
|
|
|
|
else
|
2019-09-29 22:45:09 +02:00
|
|
|
out_entries = static_cast<u32>(ctx.GetWriteBufferSize() / sizeof(u128));
|
2019-04-10 20:05:12 +02:00
|
|
|
|
|
|
|
LOG_DEBUG(Service_ETicket, "called, entries={:016X}", out_entries);
|
|
|
|
|
|
|
|
keys.PopulateTickets();
|
|
|
|
const auto tickets = keys.GetPersonalizedTickets();
|
|
|
|
std::vector<u128> ids;
|
|
|
|
std::transform(tickets.begin(), tickets.end(), std::back_inserter(ids),
|
|
|
|
[](const auto& pair) { return pair.first; });
|
|
|
|
|
2019-09-29 22:45:09 +02:00
|
|
|
out_entries = static_cast<u32>(std::min<std::size_t>(ids.size(), out_entries));
|
2019-04-10 20:05:12 +02:00
|
|
|
ctx.WriteBuffer(ids.data(), out_entries * sizeof(u128));
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u32>(out_entries);
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:06:17 +02:00
|
|
|
void GetCommonTicketSize(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto rights_id = rp.PopRaw<u128>();
|
|
|
|
|
|
|
|
LOG_DEBUG(Service_ETicket, "called, rights_id={:016X}{:016X}", rights_id[1], rights_id[0]);
|
|
|
|
|
|
|
|
if (!CheckRightsId(ctx, rights_id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto ticket = keys.GetCommonTickets().at(rights_id);
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2019-04-16 15:12:04 +02:00
|
|
|
rb.Push<u64>(ticket.GetSize());
|
2019-04-10 20:06:17 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 20:07:00 +02:00
|
|
|
void GetPersonalizedTicketSize(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto rights_id = rp.PopRaw<u128>();
|
|
|
|
|
|
|
|
LOG_DEBUG(Service_ETicket, "called, rights_id={:016X}{:016X}", rights_id[1], rights_id[0]);
|
|
|
|
|
|
|
|
if (!CheckRightsId(ctx, rights_id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto ticket = keys.GetPersonalizedTickets().at(rights_id);
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2019-04-16 15:12:04 +02:00
|
|
|
rb.Push<u64>(ticket.GetSize());
|
2019-04-10 20:07:00 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 20:07:49 +02:00
|
|
|
void GetCommonTicketData(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto rights_id = rp.PopRaw<u128>();
|
|
|
|
|
|
|
|
LOG_DEBUG(Service_ETicket, "called, rights_id={:016X}{:016X}", rights_id[1], rights_id[0]);
|
|
|
|
|
|
|
|
if (!CheckRightsId(ctx, rights_id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto ticket = keys.GetCommonTickets().at(rights_id);
|
|
|
|
|
2019-05-26 19:01:42 +02:00
|
|
|
const auto write_size = std::min<u64>(ticket.GetSize(), ctx.GetWriteBufferSize());
|
2019-04-16 15:12:04 +02:00
|
|
|
ctx.WriteBuffer(&ticket, write_size);
|
2019-04-10 20:07:49 +02:00
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u64>(write_size);
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:08:19 +02:00
|
|
|
void GetPersonalizedTicketData(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
const auto rights_id = rp.PopRaw<u128>();
|
|
|
|
|
|
|
|
LOG_DEBUG(Service_ETicket, "called, rights_id={:016X}{:016X}", rights_id[1], rights_id[0]);
|
|
|
|
|
|
|
|
if (!CheckRightsId(ctx, rights_id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto ticket = keys.GetPersonalizedTickets().at(rights_id);
|
|
|
|
|
2019-05-26 19:01:42 +02:00
|
|
|
const auto write_size = std::min<u64>(ticket.GetSize(), ctx.GetWriteBufferSize());
|
2019-04-16 15:12:04 +02:00
|
|
|
ctx.WriteBuffer(&ticket, write_size);
|
2019-04-10 20:08:19 +02:00
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u64>(write_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
Core::Crypto::KeyManager keys;
|
2018-07-25 21:30:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
|
|
std::make_shared<ETicket>()->InstallAsService(service_manager);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::ES
|