summaryrefslogtreecommitdiff
path: root/rnd.c
blob: 8c123abb802997808a0fef90f5e46d75776a4e4b (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

#include "rnd.h"
#include "die.h"
#include "ioexact.h"
#include "ioops.h"

static int fdw = -1;

static void randombytes_weak(unsigned char *x, size_t xlen)
{
	int ret;

	if (fdw == -1) {
		for (;;) {
			fdw = open(LOW_ENTROPY_SOURCE, O_RDONLY);
			if (fdw != -1)
				break;
			sleep(1);
		}
	}

	while (xlen > 0) {
		if (xlen < 1048576)
			ret = xlen;
		else
			ret = 1048576;

		ret = read(fdw, x, ret);
		if (ret < 1) {
			sleep(1);
			continue;
		}

		x += ret;
		xlen -= ret;
	}
}

static void randombytes_strong(unsigned char *x, size_t xlen)
{
	int fds, ret;

	fds = open_or_die(HIG_ENTROPY_SOURCE, O_RDONLY);

	ret = read_exact(fds, x, xlen, 0);
	if (ret != (int) xlen)
		panic("Error reading from entropy source!\n");

	close(fds);
}

int secrand(void)
{
	int ret;

	randombytes_weak((void *) &ret, sizeof(ret));

	return ret;
}

void gen_key_bytes(unsigned char *area, size_t len)
{
	randombytes_strong(area, len);
}
Merge tag 'wireless-drivers-next-for-davem-2017-02-01' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next
Kalle Valo says: ==================== wireless-drivers-next patches for 4.11 It's nice to see rt2x00 development has becoming active, for example adding support for a new chip version. Also wcn36xx has been converted to use the recently merged QCOM_SMD subsystem. Otherwise new features and fixes it lots of drivers. Major changes: iwlwifi * some more work in preparation for A000 family support * add support for radiotap timestamps * some work on our firmware debugging capabilities wcn36xx * convert to a proper QCOM_SMD driver (from the platform_driver interface) ath10k * VHT160 support * dump Copy Engine registers during firmware crash * search board file extension from SMBIOS wil6210 * add disable_ap_sme module parameter rt2x00 * support RT3352 with external PA * support for RT3352 with 20MHz crystal * add support for RT5350 WiSoC brcmfmac * add support for BCM43455 sdio device rtl8xxxu * add support for D-Link DWA-131 rev E1, TP-Link TL-WN822N v4 and others ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/usb/misc/emi62.c')