mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

Include necessary header file to use ARRAY_SIZE() macro Change-Id: I5b7caccd02c14c598b7944cf4f347606c1e7a8e7 Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
29 lines
586 B
C
29 lines
586 B
C
/*
|
|
* Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <lib/utils.h>
|
|
#include <lib/utils_def.h>
|
|
|
|
#include "rpi3_private.h"
|
|
|
|
/* Get 128 bits of entropy and fuse the values together to form the canary. */
|
|
#define TRNG_NBYTES 16U
|
|
|
|
u_register_t plat_get_stack_protector_canary(void)
|
|
{
|
|
size_t i;
|
|
u_register_t buf[TRNG_NBYTES / sizeof(u_register_t)];
|
|
u_register_t ret = 0U;
|
|
|
|
rpi3_rng_read(buf, sizeof(buf));
|
|
|
|
for (i = 0U; i < ARRAY_SIZE(buf); i++)
|
|
ret ^= buf[i];
|
|
|
|
return ret;
|
|
}
|