random.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #include <dragonstub/dragonstub.h>
  2. typedef union efi_rng_protocol efi_rng_protocol_t;
  3. union efi_rng_protocol {
  4. struct {
  5. efi_status_t (__efiapi *get_info)(efi_rng_protocol_t *,
  6. unsigned long *,
  7. efi_guid_t *);
  8. efi_status_t (__efiapi *get_rng)(efi_rng_protocol_t *,
  9. efi_guid_t *, unsigned long,
  10. u8 *out);
  11. };
  12. struct {
  13. u32 get_info;
  14. u32 get_rng;
  15. } mixed_mode;
  16. };
  17. /**
  18. * efi_get_random_bytes() - fill a buffer with random bytes
  19. * @size: size of the buffer
  20. * @out: caller allocated buffer to receive the random bytes
  21. *
  22. * The call will fail if either the firmware does not implement the
  23. * EFI_RNG_PROTOCOL or there are not enough random bytes available to fill
  24. * the buffer.
  25. *
  26. * Return: status code
  27. */
  28. efi_status_t efi_get_random_bytes(unsigned long size, u8 *out)
  29. {
  30. efi_guid_t rng_proto = EFI_RNG_PROTOCOL_GUID;
  31. efi_status_t status;
  32. efi_rng_protocol_t *rng = NULL;
  33. status = efi_bs_call(LocateProtocol, &rng_proto, NULL, (void **)&rng);
  34. if (status != EFI_SUCCESS)
  35. return status;
  36. return efi_call_proto(rng, get_rng, NULL, size, out);
  37. }