/* * Copyright (c) 2024 Google LLC * * SPDX-License-Identifier: Apache-2.0 */ #include #include #include #include #define ENTROPY_NODE DT_CHOSEN(zephyr_entropy) int getentropy(void *buffer, size_t length) { const struct device * const entropy = DEVICE_DT_GET(ENTROPY_NODE); if (!buffer) { errno = EFAULT; return -1; } if (length > 256) { errno = EIO; return -1; } if (!device_is_ready(entropy)) { errno = EIO; return -1; } /* * getentropy() uses size_t to represent buffer size, but Zephyr uses * uint16_t. The length check above allows us to safely cast without * overflow. */ if (entropy_get_entropy(entropy, buffer, (uint16_t)length)) { errno = EIO; return -1; } return 0; }