2023-03-28 23:55:57 +03:00
|
|
|
// Copyright (c) 2019-2023 Alexander Medvednikov. All rights reserved.
|
2019-07-31 04:24:12 +03:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module rand
|
|
|
|
|
|
|
|
#include <sys/syscall.h>
|
2021-05-08 13:32:29 +03:00
|
|
|
|
2019-07-31 04:24:12 +03:00
|
|
|
const (
|
2019-10-24 14:48:20 +03:00
|
|
|
read_batch_size = 256
|
2019-07-31 04:24:12 +03:00
|
|
|
)
|
|
|
|
|
2021-01-23 15:33:49 +03:00
|
|
|
// read returns an array of `bytes_needed` random bytes read from the OS.
|
2022-10-20 22:14:33 +03:00
|
|
|
pub fn read(bytes_needed int) ![]u8 {
|
2021-11-28 21:35:18 +03:00
|
|
|
mut buffer := unsafe { vcalloc_noscan(bytes_needed) }
|
2019-07-31 04:24:12 +03:00
|
|
|
mut bytes_read := 0
|
2020-07-05 01:33:36 +03:00
|
|
|
mut remaining_bytes := bytes_needed
|
2019-07-31 04:24:12 +03:00
|
|
|
// getrandom syscall wont block if requesting <= 256 bytes
|
2020-07-05 01:33:36 +03:00
|
|
|
for bytes_read < bytes_needed {
|
2021-05-08 13:32:29 +03:00
|
|
|
batch_size := if remaining_bytes > rand.read_batch_size {
|
|
|
|
rand.read_batch_size
|
|
|
|
} else {
|
|
|
|
remaining_bytes
|
|
|
|
}
|
2021-02-17 22:47:19 +03:00
|
|
|
rbytes := unsafe { getrandom(batch_size, buffer + bytes_read) }
|
2020-07-05 01:33:36 +03:00
|
|
|
if rbytes == -1 {
|
2021-02-14 21:31:42 +03:00
|
|
|
unsafe { free(buffer) }
|
2022-10-28 19:08:30 +03:00
|
|
|
return &ReadError{}
|
2020-07-05 01:33:36 +03:00
|
|
|
}
|
|
|
|
bytes_read += rbytes
|
2019-07-31 04:24:12 +03:00
|
|
|
}
|
2021-05-08 13:32:29 +03:00
|
|
|
return unsafe { buffer.vbytes(bytes_needed) }
|
2019-07-31 04:24:12 +03:00
|
|
|
}
|
|
|
|
|
2019-10-10 20:04:11 +03:00
|
|
|
fn getrandom(bytes_needed int, buffer voidptr) int {
|
2021-05-08 13:32:29 +03:00
|
|
|
if bytes_needed > rand.read_batch_size {
|
2022-11-15 16:53:13 +03:00
|
|
|
panic('getrandom() dont request more than ${rand.read_batch_size} bytes at once.')
|
2019-07-31 04:24:12 +03:00
|
|
|
}
|
2020-07-22 21:42:51 +03:00
|
|
|
return unsafe { C.syscall(C.SYS_getrandom, buffer, bytes_needed, 0) }
|
2019-07-31 04:24:12 +03:00
|
|
|
}
|