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
|
#include <linux/random.h>
#include "utils.h"
#include "ioctls.h"
static const struct ioctl random_ioctls[] = {
IOCTL(RNDGETENTCNT),
IOCTL(RNDADDTOENTCNT),
IOCTL(RNDGETPOOL),
IOCTL(RNDADDENTROPY),
IOCTL(RNDZAPENTCNT),
IOCTL(RNDCLEARPOOL),
};
static const char *const random_devs[] = {
"mem",
};
static const struct ioctl_group random_grp = {
.devtype = DEV_CHAR,
.devs = random_devs,
.devs_cnt = ARRAY_SIZE(random_devs),
.sanitise = pick_random_ioctl,
.ioctls = random_ioctls,
.ioctls_cnt = ARRAY_SIZE(random_ioctls),
};
REG_IOCTL_GROUP(random_grp)
|