2020-02-03 05:00:36 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-07-31 03:24:12 +02: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>
|
|
|
|
const (
|
2019-10-24 13:48:20 +02:00
|
|
|
read_batch_size = 256
|
2019-07-31 03:24:12 +02:00
|
|
|
)
|
|
|
|
|
2020-07-05 00:33:36 +02:00
|
|
|
pub fn read(bytes_needed int) ?[]byte {
|
|
|
|
mut buffer := &byte(0)
|
|
|
|
unsafe {
|
|
|
|
buffer = malloc(bytes_needed)
|
|
|
|
}
|
|
|
|
mut bstart := buffer
|
2019-07-31 03:24:12 +02:00
|
|
|
mut bytes_read := 0
|
2020-07-05 00:33:36 +02:00
|
|
|
mut remaining_bytes := bytes_needed
|
2019-07-31 03:24:12 +02:00
|
|
|
// getrandom syscall wont block if requesting <= 256 bytes
|
2020-07-05 00:33:36 +02:00
|
|
|
for bytes_read < bytes_needed {
|
|
|
|
batch_size := if remaining_bytes > read_batch_size { read_batch_size } else { remaining_bytes }
|
|
|
|
unsafe {
|
|
|
|
bstart = buffer + bytes_read
|
2019-07-31 03:24:12 +02:00
|
|
|
}
|
2020-07-05 00:33:36 +02:00
|
|
|
rbytes := getrandom(batch_size, bstart)
|
|
|
|
if rbytes == -1 {
|
|
|
|
free(buffer)
|
|
|
|
return read_error
|
|
|
|
}
|
|
|
|
bytes_read += rbytes
|
2019-07-31 03:24:12 +02:00
|
|
|
}
|
|
|
|
return c_array_to_bytes_tmp(bytes_needed, buffer)
|
|
|
|
}
|
|
|
|
|
2019-10-10 19:04:11 +02:00
|
|
|
fn getrandom(bytes_needed int, buffer voidptr) int {
|
2019-10-24 13:48:20 +02:00
|
|
|
if bytes_needed > read_batch_size {
|
2020-02-02 02:50:46 +01:00
|
|
|
panic('getrandom() dont request more than $read_batch_size bytes at once.')
|
2019-07-31 03:24:12 +02:00
|
|
|
}
|
2020-07-22 20:42:51 +02:00
|
|
|
return unsafe { C.syscall(C.SYS_getrandom, buffer, bytes_needed, 0) }
|
2019-07-31 03:24:12 +02:00
|
|
|
}
|