rpcsx/rpcsx-os/iodev/rng.cpp

52 lines
1.6 KiB
C++
Raw Normal View History

2023-06-23 02:28:14 +02:00
#include "io-device.hpp"
2023-07-04 18:19:17 +02:00
#include "orbis/KernelAllocator.hpp"
#include "orbis/utils/Logs.hpp"
2023-06-23 02:28:14 +02:00
#include "vm.hpp"
struct RngDevice : public IoDevice {
orbis::ErrorCode open(orbis::Ref<orbis::File> *file, const char *path,
2023-07-29 21:46:28 +02:00
std::uint32_t flags, std::uint32_t mode,
orbis::Thread *thread) override;
};
struct RngFile : public orbis::File {};
2023-06-23 02:28:14 +02:00
static orbis::ErrorCode rng_ioctl(orbis::File *file, std::uint64_t request,
void *argp, orbis::Thread *thread) {
ORBIS_LOG_FATAL("Unhandled rng ioctl", request);
2023-06-23 02:28:14 +02:00
// 0x800c4802
return {};
2023-06-23 02:28:14 +02:00
}
static orbis::ErrorCode rng_mmap(orbis::File *file, void **address,
std::uint64_t size, std::int32_t prot,
std::int32_t flags, std::int64_t offset,
orbis::Thread *thread) {
ORBIS_LOG_FATAL("rng mmap", address, size, offset);
auto result = rx::vm::map(*address, size, prot, flags);
if (result == (void *)-1) {
return orbis::ErrorCode::INVAL; // TODO
}
*address = result;
return {};
2023-06-23 02:28:14 +02:00
}
static const orbis::FileOps ops = {
.ioctl = rng_ioctl,
.mmap = rng_mmap,
};
orbis::ErrorCode RngDevice::open(orbis::Ref<orbis::File> *file,
const char *path, std::uint32_t flags,
2023-07-29 21:46:28 +02:00
std::uint32_t mode, orbis::Thread *thread) {
auto newFile = orbis::knew<RngFile>();
newFile->device = this;
newFile->ops = &ops;
*file = newFile;
return {};
2023-06-23 02:28:14 +02:00
}
IoDevice *createRngCharacterDevice() { return orbis::knew<RngDevice>(); }