rockchip_stack_protector.c 658 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2018-2020, 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 <plat/common/platform.h>
  9. #define RANDOM_CANARY_VALUE ((u_register_t) 3288484550995823360ULL)
  10. u_register_t plat_get_stack_protector_canary(void)
  11. {
  12. /*
  13. * Ideally, a random number should be returned instead of the
  14. * combination of a timer's value and a compile-time constant.
  15. * As the virt platform does not have any random number generator,
  16. * this is better than nothing but not necessarily really secure.
  17. */
  18. return RANDOM_CANARY_VALUE ^ read_cntpct_el0();
  19. }