2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2015 Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Non-random number generator based on system timer
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* This module provides a non-random implementation of sys_rand32_get(), which
|
|
|
|
* is not meant to be used in a final product as a truly random number
|
|
|
|
* generator. It was provided to allow testing on a platform that does not (yet)
|
|
|
|
* provide a random number generator.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2017-10-14 06:45:02 +08:00
|
|
|
#include <random/rand32.h>
|
2019-06-22 00:55:37 +08:00
|
|
|
#include <drivers/timer/system_timer.h>
|
2016-12-05 04:59:37 +08:00
|
|
|
#include <kernel.h>
|
2019-06-26 00:25:32 +08:00
|
|
|
#include <sys/atomic.h>
|
2019-07-24 03:16:24 +08:00
|
|
|
#include <string.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
|
2015-05-25 23:07:09 +08:00
|
|
|
/*
|
|
|
|
* Symbols used to ensure a rapid series of calls to random number generator
|
|
|
|
* return different values.
|
|
|
|
*/
|
2015-10-15 07:12:09 +08:00
|
|
|
static atomic_val_t _rand32_counter;
|
2015-05-25 23:07:09 +08:00
|
|
|
|
2021-08-06 20:06:02 +08:00
|
|
|
#define _RAND32_INC 1000000003U
|
2015-05-25 23:07:09 +08:00
|
|
|
|
2015-07-02 05:22:39 +08:00
|
|
|
/**
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Get a 32 bit random number
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
|
|
|
* The non-random number generator returns values that are based off the
|
2015-05-25 23:07:09 +08:00
|
|
|
* target's clock counter, which means that successive calls will return
|
|
|
|
* different values.
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-07-02 05:29:04 +08:00
|
|
|
* @return a 32-bit number
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2020-06-05 02:00:45 +08:00
|
|
|
uint32_t z_impl_sys_rand32_get(void)
|
2015-04-11 07:44:37 +08:00
|
|
|
{
|
2017-01-17 19:25:15 +08:00
|
|
|
return k_cycle_get_32() + atomic_add(&_rand32_counter, _RAND32_INC);
|
2015-04-11 07:44:37 +08:00
|
|
|
}
|
|
|
|
|
2019-07-24 03:16:24 +08:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief Fill destination buffer with random numbers
|
|
|
|
*
|
|
|
|
* The non-random number generator returns values that are based off the
|
|
|
|
* target's clock counter, which means that successive calls will return
|
|
|
|
* different values.
|
|
|
|
*
|
|
|
|
* @param dst destination buffer to fill
|
|
|
|
* @param outlen size of destination buffer to fill
|
|
|
|
*
|
|
|
|
* @return N/A
|
|
|
|
*/
|
|
|
|
|
2020-06-05 02:00:45 +08:00
|
|
|
void z_impl_sys_rand_get(void *dst, size_t outlen)
|
2019-07-24 03:16:24 +08:00
|
|
|
{
|
2021-04-09 23:52:14 +08:00
|
|
|
uint8_t *udst = dst;
|
|
|
|
uint32_t blocksize;
|
2020-05-28 00:26:57 +08:00
|
|
|
uint32_t ret;
|
2019-07-24 03:16:24 +08:00
|
|
|
|
2021-04-09 23:52:14 +08:00
|
|
|
while (outlen) {
|
2019-07-24 03:16:24 +08:00
|
|
|
ret = sys_rand32_get();
|
2021-04-09 23:52:14 +08:00
|
|
|
blocksize = MIN(outlen, sizeof(ret));
|
|
|
|
(void)memcpy((void *)udst, &ret, blocksize);
|
|
|
|
udst += blocksize;
|
|
|
|
outlen -= blocksize;
|
2019-07-24 03:16:24 +08:00
|
|
|
}
|
|
|
|
}
|
2015-04-11 07:44:37 +08:00
|
|
|
#endif /* __GNUC__ */
|