Function getrandom [src]

Obtain a series of random bytes. These bytes can be used to seed user-space random number generators or for cryptographic purposes. When linking against libc, this calls the appropriate OS-specific library call. Otherwise it uses the zig standard library implementation.

Prototype

pub fn getrandom(buffer: []u8) GetRandomError!void

Parameters

buffer: []u8

Possible Errors

AccessDenied OpenError

In WASI, this error may occur when the file descriptor does not hold the required rights to open a new resource relative to it.

BadPathName OpenError

Path contains characters that are disallowed by the underlying filesystem.

DeviceBusy OpenError
FileBusy OpenError

One of these three things:

  • pathname refers to an executable image which is currently being executed and write access was requested.
  • pathname refers to a file that is currently in use as a swap file, and the O_TRUNC flag was specified.
  • pathname refers to a file that is currently being read by the kernel (e.g., for module/firmware loading), and write access was requested.
FileLocksNotSupported OpenError

The underlying filesystem does not support file locks

FileNotFound OpenError

Either:

  • One of the path components does not exist.
  • Cwd was used, but cwd has been deleted.
  • The path associated with the open directory handle has been deleted.
  • On macOS, multiple processes or threads raced to create the same file with O.EXCL set to false.
FileTooBig OpenError

The file is too large to be opened. This error is unreachable for 64-bit targets, as well as when opening directories.

InvalidUtf8 OpenError

WASI-only; file paths must be valid UTF-8.

InvalidWtf8 OpenError

Windows-only; file paths provided by the user must be valid WTF-8. https://simonsapin.github.io/wtf-8/

IsDir OpenError

The path refers to directory but the DIRECTORY flag was not provided.

NameTooLong OpenError

The path exceeded max_path_bytes bytes.

NetworkNotFound OpenError

On Windows, \\server or \\server\share was not found.

NoDevice OpenError
NoSpaceLeft OpenError

A new path cannot be created because the device has no room for the new file. This error is only reachable when the CREAT flag is provided.

NotDir OpenError

A component used as a directory in the path was not, in fact, a directory, or DIRECTORY was specified and the path was not a directory.

PathAlreadyExists OpenError

The path already exists and the CREAT and EXCL flags were provided.

PermissionDenied OpenError
ProcessFdQuotaExceeded OpenError
SymLinkLoop OpenError
SystemFdQuotaExceeded OpenError
SystemResources OpenError

Insufficient kernel memory was available, or the named file is a FIFO and per-user hard limit on memory allocation for pipes has been reached.

Unexpected UnexpectedError

The Operating System returned an undocumented error code.

This error is in theory not possible, but it would be better to handle this error than to invoke undefined behavior.

When this error code is observed, it usually means the Zig Standard Library needs a small patch to add the error code to the error set for the respective function.

WouldBlock OpenError

Source

pub fn getrandom(buffer: []u8) GetRandomError!void { if (native_os == .windows) { return windows.RtlGenRandom(buffer); } if (builtin.link_libc and @TypeOf(system.arc4random_buf) != void) { system.arc4random_buf(buffer.ptr, buffer.len); return; } if (native_os == .wasi) switch (wasi.random_get(buffer.ptr, buffer.len)) { .SUCCESS => return, else => |err| return unexpectedErrno(err), }; if (@TypeOf(system.getrandom) != void) { var buf = buffer; const use_c = native_os != .linux or std.c.versionCheck(std.SemanticVersion{ .major = 2, .minor = 25, .patch = 0 }); while (buf.len != 0) { const num_read: usize, const err = if (use_c) res: { const rc = std.c.getrandom(buf.ptr, buf.len, 0); break :res .{ @bitCast(rc), errno(rc) }; } else res: { const rc = linux.getrandom(buf.ptr, buf.len, 0); break :res .{ rc, linux.E.init(rc) }; }; switch (err) { .SUCCESS => buf = buf[num_read..], .INVAL => unreachable, .FAULT => unreachable, .INTR => continue, else => return unexpectedErrno(err), } } return; } if (native_os == .emscripten) { const err = errno(std.c.getentropy(buffer.ptr, buffer.len)); switch (err) { .SUCCESS => return, else => return unexpectedErrno(err), } } return getRandomBytesDevURandom(buffer); }