1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/crypto/rand/rand_linux.c.v

40 lines
1.1 KiB
V
Raw Normal View History

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>
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
)
// read returns an array of `bytes_needed` random bytes read from the OS.
pub fn read(bytes_needed int) ![]u8 {
mut buffer := unsafe { vcalloc_noscan(bytes_needed) }
2019-07-31 04:24:12 +03:00
mut bytes_read := 0
mut remaining_bytes := bytes_needed
2019-07-31 04:24:12 +03:00
// getrandom syscall wont block if requesting <= 256 bytes
for bytes_read < bytes_needed {
batch_size := if remaining_bytes > rand.read_batch_size {
rand.read_batch_size
} else {
remaining_bytes
}
rbytes := unsafe { getrandom(batch_size, buffer + bytes_read) }
if rbytes == -1 {
unsafe { free(buffer) }
2022-10-28 19:08:30 +03:00
return &ReadError{}
}
bytes_read += rbytes
2019-07-31 04:24:12 +03:00
}
return unsafe { buffer.vbytes(bytes_needed) }
2019-07-31 04:24:12 +03:00
}
fn getrandom(bytes_needed int, buffer voidptr) int {
if bytes_needed > rand.read_batch_size {
panic('getrandom() dont request more than ${rand.read_batch_size} bytes at once.')
2019-07-31 04:24:12 +03:00
}
return unsafe { C.syscall(C.SYS_getrandom, buffer, bytes_needed, 0) }
2019-07-31 04:24:12 +03:00
}