blob: e940a1291482b915ab9c95fe1e978f31185d4d1b [file] [log] [blame]
Douglas Raillard306593d2017-02-24 18:14:15 +00001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Douglas Raillard306593d2017-02-24 18:14:15 +00005 */
6
Douglas Raillard306593d2017-02-24 18:14:15 +00007#include <stdint.h>
8
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <arch_helpers.h>
10#include <plat/common/platform.h>
11
Douglas Raillard306593d2017-02-24 18:14:15 +000012#define RANDOM_CANARY_VALUE ((u_register_t) 3288484550995823360ULL)
13
14u_register_t plat_get_stack_protector_canary(void)
15{
16 /*
17 * Ideally, a random number should be returned instead of the
18 * combination of a timer's value and a compile-time constant. As the
19 * FVP does not have any random number generator, this is better than
20 * nothing but not necessarily really secure.
21 */
22 return RANDOM_CANARY_VALUE ^ read_cntpct_el0();
23}
24