Fix infinite recursion in host-based bt_rand function. This would call HCI LE Random Number command, which would in turn call bt_rand, causing an infinite recursion. bt_rand -> prng_reseed -> BT_HCI_OP_LE_RAND -> le_rand -> bt_rand To solve this issue the controller should avoid doing calls into the host, so all calls to bt_rand in the controller should be replaced with a call to a controller function. Fixes #22202 Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
21 lines
392 B
C
21 lines
392 B
C
/*
|
|
* Copyright (c) 2016 Nordic Semiconductor ASA
|
|
* Copyright (c) 2016 Vinayak Kariappa Chettimada
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef DOUBLE_BUFFER_SIZE
|
|
#define DOUBLE_BUFFER_SIZE 2
|
|
#endif
|
|
|
|
#ifndef TRIPLE_BUFFER_SIZE
|
|
#define TRIPLE_BUFFER_SIZE 3
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
u8_t util_ones_count_get(u8_t *octets, u8_t octets_len);
|
|
|
|
int util_rand(void *buf, size_t len);
|