Skip to content

Commit

Permalink
Update getrandom impl based on ctru error codes
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-h-chamberlain committed Feb 1, 2022
1 parent af7d34f commit 754afa8
Showing 1 changed file with 29 additions and 17 deletions.
46 changes: 29 additions & 17 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,26 +74,38 @@ unsafe extern "C" fn getrandom(
mut buflen: libc::size_t,
flags: libc::c_uint,
) -> libc::ssize_t {
// TODO: is this needed? Maybe just `buflen = buflen.min(libc::ssize_t::MAX)` ?
buflen = buflen.min(0x1FFFFFF);
// Based on https://man7.org/linux/man-pages/man2/getrandom.2.html
// Technically we only have one source (no true /dev/random), but the
// behavior should be more expected this way.
let maxlen = if flags & libc::GRND_RANDOM != 0 {
512
} else {
0x1FFFFFF
};
buflen = buflen.min(maxlen);

if flags != 0 {
// no flags are supported on 3DS
*__errno() = libc::EINVAL;
return -1;
}
let ret = ctru_sys::PS_GenerateRandomBytes(buf, buflen as libc::c_uint);

let ret = ctru_sys::PS_GenerateRandomBytes(buf, buflen as libc::c_uint) as libc::ssize_t;
if ret < 0 {
// this is kind of a hack, but at least gives some visibility to the
// error code returned by PS_GenerateRandomBytes I guess? Another option
// might be to panic, which could use a payload of a specific error type
// that the ctru panic handler could decode into 3DS-specific human-readable
// errors.
*__errno() = ret as libc::c_int;
-1
} else {
// avoid conflicting a real POSIX errno by using a value < 0
// should we define this in ctru-sys somewhere or something?
const ECTRU: libc::c_int = -1;

if ctru_sys::R_SUCCEEDED(ret) {
// safe because above ensures buflen < isize::MAX
buflen as libc::ssize_t
} else {
// best-effort attempt at translating return codes
*__errno() = match ctru_sys::R_SUMMARY(ret) as libc::c_uint {
ctru_sys::RS_WOULDBLOCK => libc::EAGAIN,
ctru_sys::RS_INVALIDARG | ctru_sys::RS_WRONGARG => {
match ctru_sys::R_DESCRIPTION(ret) as libc::c_uint {
// most likely user error, forgot to initialize PS module
ctru_sys::RD_INVALID_HANDLE => ECTRU,
_ => libc::EINVAL,
}
}
_ => ECTRU,
};
-1
}
}

0 comments on commit 754afa8

Please sign in to comment.