mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
es: Implement ETicket GetCommonTicketData (16)
Copies the raw common ticket data for the specified rights ID into the buffer provided.
This commit is contained in:
parent
44b0c19f6a
commit
c6a32dc077
1 changed files with 20 additions and 1 deletions
|
@ -31,7 +31,7 @@ public:
|
||||||
{13, nullptr, "ListMissingPersonalizedTicket"},
|
{13, nullptr, "ListMissingPersonalizedTicket"},
|
||||||
{14, &ETicket::GetCommonTicketSize, "GetCommonTicketSize"},
|
{14, &ETicket::GetCommonTicketSize, "GetCommonTicketSize"},
|
||||||
{15, &ETicket::GetPersonalizedTicketSize, "GetPersonalizedTicketSize"},
|
{15, &ETicket::GetPersonalizedTicketSize, "GetPersonalizedTicketSize"},
|
||||||
{16, nullptr, "GetCommonTicketData"},
|
{16, &ETicket::GetCommonTicketData, "GetCommonTicketData"},
|
||||||
{17, nullptr, "GetPersonalizedTicketData"},
|
{17, nullptr, "GetPersonalizedTicketData"},
|
||||||
{18, nullptr, "OwnTicket"},
|
{18, nullptr, "OwnTicket"},
|
||||||
{19, nullptr, "GetTicketInfo"},
|
{19, nullptr, "GetTicketInfo"},
|
||||||
|
@ -222,6 +222,25 @@ private:
|
||||||
rb.Push<u64>(ticket.size());
|
rb.Push<u64>(ticket.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
|
const auto write_size = std::min(ticket.size(), ctx.GetWriteBufferSize());
|
||||||
|
ctx.WriteBuffer(ticket.data(), write_size);
|
||||||
|
|
||||||
|
IPC::ResponseBuilder rb{ctx, 4};
|
||||||
|
rb.Push(RESULT_SUCCESS);
|
||||||
|
rb.Push<u64>(write_size);
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
||||||
|
|
Loading…
Reference in a new issue