aboutsummaryrefslogtreecommitdiff
path: root/plat/arm/board/juno/juno_stack_protector.c
blob: ff05b5d468882010796a185749fe610b17367473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <arch_helpers.h>
#include <common/debug.h>
#include <lib/utils.h>

#include "juno_decl.h"
#include "juno_def.h"

u_register_t plat_get_stack_protector_canary(void)
{
	u_register_t c[TRNG_NBYTES / sizeof(u_register_t)];
	u_register_t ret = 0;
	size_t i;

	if (juno_getentropy(c, sizeof(c)) != 0) {
		ERROR("Not enough entropy to initialize canary value\n");
		panic();
	}

	/*
	 * On Juno we get 128-bits of entropy in one round.
	 * Fuse the values together to form the canary.
	 */
	for (i = 0; i < ARRAY_SIZE(c); i++)
		ret ^= c[i];
	return ret;
}