aboutsummaryrefslogtreecommitdiff
path: root/plat/qti/common/src/qti_stack_protector.c
blob: 572830f9ce144338d3cff1c36e5eef5e57b4ef7b (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
/*
 * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <assert.h>
#include <stdint.h>

#include <platform.h>
#include <platform_def.h>
#include <qti_rng.h>
#include <qtiseclib_interface.h>

u_register_t plat_get_stack_protector_canary(void)
{
	u_register_t random = 0x0;

	/*
	 * get random data , the below API doesn't return random = 0 on success
	 */
	qti_rng_get_data((uint8_t *) &random, sizeof(random));
	assert(random != 0x0);

	return random;
}