blob: c226158ad64c7de6da2b34a7324dc86926f65006 [file] [log] [blame]
Michalis Pappase4c00bb2018-03-20 14:30:00 +08001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Michalis Pappase4c00bb2018-03-20 14:30:00 +08007#include <stdint.h>
8
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <arch_helpers.h>
10#include <plat/common/platform.h>
11
Michalis Pappase4c00bb2018-03-20 14:30:00 +080012#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.
19 * As the virt platform does not have any random number generator,
20 * this is better than nothing but not necessarily really secure.
21 */
22 return RANDOM_CANARY_VALUE ^ read_cntpct_el0();
23}
24