summaryrefslogtreecommitdiff
path: root/userland/libc/sys
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-23 17:01:55 +0100
committerAnton Kling <anton@kling.gg>2023-11-23 17:01:55 +0100
commit6757803629574fe46e9047be8567e0c7e0522973 (patch)
treecf31247efa27997b0b43bfed559ffbb42bfb8f3e /userland/libc/sys
parentb8da260dd01175529feb57d5a73570f469decb08 (diff)
Kernel/LibC: Add randomfill() syscall.
This syscall aims to fill the given buffer with cryptographically secure random data. If the syscall returns and does not cause a page fault it will **always** have filled the buffer with random data and never gives back any error value.
Diffstat (limited to 'userland/libc/sys')
-rw-r--r--userland/libc/sys/random/randomfill.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/userland/libc/sys/random/randomfill.c b/userland/libc/sys/random/randomfill.c
new file mode 100644
index 0000000..18ec04d
--- /dev/null
+++ b/userland/libc/sys/random/randomfill.c
@@ -0,0 +1,6 @@
+#include <sys/random.h>
+#include <syscall.h>
+
+void randomfill(void *buffer, uint32_t size) {
+ syscall(SYS_RANDOMFILL, buffer, size, 0, 0, 0);
+}