v/vlib/crypto/rand/rand_linux.c.v

41 lines
1.1 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 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
)
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
mut remaining_bytes := bytes_needed
2019-07-31 03:24:12 +02:00
// getrandom syscall wont block if requesting <= 256 bytes
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
}
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)
}
fn getrandom(bytes_needed int, buffer voidptr) int {
2019-10-24 13:48:20 +02:00
if bytes_needed > read_batch_size {
panic('getrandom() dont request more than $read_batch_size bytes at once.')
2019-07-31 03:24:12 +02:00
}
return unsafe { C.syscall(C.SYS_getrandom, buffer, bytes_needed, 0) }
2019-07-31 03:24:12 +02:00
}