mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-06 07:17:53 +00:00
7f506be2ee
In several places, we have request parsers where there's nothing to really parse, simply because the HLE function in question operates on buffers. In these cases we can just remove these instances altogether. In the other cases, we can retrieve the relevant members from the parser and at least log them out, giving them some use.
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <algorithm>
|
|
#include <chrono>
|
|
#include <cstdlib>
|
|
#include <ctime>
|
|
#include <functional>
|
|
#include <vector>
|
|
#include "common/logging/log.h"
|
|
#include "core/hle/ipc_helpers.h"
|
|
#include "core/hle/service/spl/csrng.h"
|
|
#include "core/hle/service/spl/module.h"
|
|
#include "core/hle/service/spl/spl.h"
|
|
#include "core/settings.h"
|
|
|
|
namespace Service::SPL {
|
|
|
|
Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
|
|
: ServiceFramework(name), module(std::move(module)),
|
|
rng(Settings::values.rng_seed.value_or(std::time(nullptr))) {}
|
|
|
|
Module::Interface::~Interface() = default;
|
|
|
|
void Module::Interface::GetRandomBytes(Kernel::HLERequestContext& ctx) {
|
|
LOG_DEBUG(Service_SPL, "called");
|
|
|
|
const std::size_t size = ctx.GetWriteBufferSize();
|
|
|
|
std::uniform_int_distribution<u16> distribution(0, std::numeric_limits<u8>::max());
|
|
std::vector<u8> data(size);
|
|
std::generate(data.begin(), data.end(), [&] { return static_cast<u8>(distribution(rng)); });
|
|
|
|
ctx.WriteBuffer(data);
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
rb.Push(RESULT_SUCCESS);
|
|
}
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
auto module = std::make_shared<Module>();
|
|
std::make_shared<CSRNG>(module)->InstallAsService(service_manager);
|
|
std::make_shared<SPL>(module)->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::SPL
|