qemu_stack_protector.c 785 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <stdint.h>
  7. #include <arch_helpers.h>
  8. #include <arch_features.h>
  9. #include <plat/common/platform.h>
  10. #define RANDOM_CANARY_VALUE ((u_register_t) 3288484550995823360ULL)
  11. u_register_t plat_get_stack_protector_canary(void)
  12. {
  13. /* Use the RNDR instruction if the CPU supports it */
  14. if (is_feat_rng_supported()) {
  15. return read_rndr();
  16. }
  17. /*
  18. * Ideally, a random number should be returned above. If a random
  19. * number generator is not supported, return instead a
  20. * combination of a timer's value and a compile-time constant.
  21. * This is better than nothing but not necessarily really secure.
  22. */
  23. return RANDOM_CANARY_VALUE ^ read_cntpct_el0();
  24. }