2012-01-25 15:17:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2012-01-25 15:17:46 +00:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2012-02-10 04:51:47 +00:00
|
|
|
#include <inttypes.h>
|
2012-08-10 13:01:23 +00:00
|
|
|
#include <math.h>
|
2012-08-14 17:36:38 +00:00
|
|
|
#include <strings.h>
|
2012-01-25 15:17:46 +00:00
|
|
|
|
|
|
|
#include "virrandom.h"
|
2012-12-13 15:49:48 +00:00
|
|
|
#include "virthread.h"
|
2012-01-25 15:17:46 +00:00
|
|
|
#include "count-one-bits.h"
|
2012-12-13 17:44:57 +00:00
|
|
|
#include "virutil.h"
|
2012-12-13 18:21:53 +00:00
|
|
|
#include "virerror.h"
|
2012-12-12 17:59:27 +00:00
|
|
|
#include "virlog.h"
|
2013-04-03 10:36:23 +00:00
|
|
|
#include "virstring.h"
|
2012-02-10 04:51:47 +00:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2012-01-25 15:17:46 +00:00
|
|
|
static char randomState[128];
|
|
|
|
static struct random_data randomData;
|
|
|
|
static virMutex randomLock;
|
|
|
|
|
|
|
|
|
2012-08-03 23:15:00 +00:00
|
|
|
static int
|
|
|
|
virRandomOnceInit(void)
|
2012-01-25 15:17:46 +00:00
|
|
|
{
|
2012-08-03 23:15:00 +00:00
|
|
|
unsigned int seed = time(NULL) ^ getpid();
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* Normally we want a decent seed. But if reproducible debugging
|
|
|
|
* of a fixed pseudo-random sequence is ever required, uncomment
|
|
|
|
* this block to let an environment variable force the seed. */
|
|
|
|
const char *debug = getenv("VIR_DEBUG_RANDOM_SEED");
|
|
|
|
|
|
|
|
if (debug && virStrToLong_ui(debug, NULL, 0, &seed) < 0)
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
|
2012-01-25 15:17:46 +00:00
|
|
|
if (virMutexInit(&randomLock) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (initstate_r(seed,
|
|
|
|
randomState,
|
|
|
|
sizeof(randomState),
|
|
|
|
&randomData) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-03 23:15:00 +00:00
|
|
|
VIR_ONCE_GLOBAL_INIT(virRandom)
|
|
|
|
|
2012-01-25 16:38:37 +00:00
|
|
|
/* The algorithm of virRandomBits requires that RAND_MAX == 2^n-1 for
|
|
|
|
* some n; gnulib's random_r meets this property. */
|
|
|
|
verify(((RAND_MAX + 1U) & RAND_MAX) == 0);
|
|
|
|
|
|
|
|
/**
|
2012-01-25 15:17:46 +00:00
|
|
|
* virRandomBits:
|
|
|
|
* @nbits: Number of bits of randommess required
|
|
|
|
*
|
|
|
|
* Generate an evenly distributed random number between [0,2^nbits), where
|
|
|
|
* @nbits must be in the range (0,64].
|
|
|
|
*
|
|
|
|
* Return: a random number with @nbits entropy
|
|
|
|
*/
|
|
|
|
uint64_t virRandomBits(int nbits)
|
|
|
|
{
|
|
|
|
int bits_per_iter = count_one_bits(RAND_MAX);
|
|
|
|
uint64_t ret = 0;
|
|
|
|
int32_t bits;
|
|
|
|
|
2012-08-03 23:15:00 +00:00
|
|
|
if (virRandomInitialize() < 0) {
|
|
|
|
/* You're already hosed, so this particular non-random value
|
|
|
|
* isn't any worse. */
|
|
|
|
VIR_WARN("random number generation is broken");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-25 15:17:46 +00:00
|
|
|
virMutexLock(&randomLock);
|
|
|
|
|
|
|
|
while (nbits > bits_per_iter) {
|
|
|
|
random_r(&randomData, &bits);
|
|
|
|
ret = (ret << bits_per_iter) | (bits & RAND_MAX);
|
|
|
|
nbits -= bits_per_iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
random_r(&randomData, &bits);
|
|
|
|
ret = (ret << nbits) | (bits & ((1 << nbits) - 1));
|
|
|
|
|
|
|
|
virMutexUnlock(&randomLock);
|
|
|
|
return ret;
|
|
|
|
}
|
2012-02-10 04:51:47 +00:00
|
|
|
|
2012-08-10 13:01:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* virRandom:
|
|
|
|
*
|
|
|
|
* Generate an evenly distributed random number between [0.0,1.0)
|
|
|
|
*
|
|
|
|
* Return: a random number with 48 bits of entropy
|
|
|
|
*/
|
|
|
|
double virRandom(void)
|
|
|
|
{
|
|
|
|
uint64_t val = virRandomBits(48);
|
|
|
|
|
|
|
|
return ldexp(val, -48);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virRandomInt:
|
|
|
|
* @max: upper limit
|
|
|
|
*
|
|
|
|
* Generate an evenly distributed random integer between [0, @max)
|
|
|
|
*
|
|
|
|
* Return: a random number between [0,@max)
|
|
|
|
*/
|
|
|
|
uint32_t virRandomInt(uint32_t max)
|
|
|
|
{
|
2012-08-14 17:36:38 +00:00
|
|
|
if ((max & (max - 1)) == 0)
|
|
|
|
return virRandomBits(ffs(max) - 1);
|
|
|
|
|
2012-08-10 13:01:23 +00:00
|
|
|
double val = virRandom();
|
|
|
|
return val * max;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-10 04:51:47 +00:00
|
|
|
#define QUMRANET_OUI "001a4a"
|
|
|
|
#define VMWARE_OUI "000569"
|
|
|
|
#define MICROSOFT_OUI "0050f2"
|
|
|
|
#define XEN_OUI "00163e"
|
|
|
|
|
|
|
|
int
|
|
|
|
virRandomGenerateWWN(char **wwn,
|
|
|
|
const char *virt_type) {
|
|
|
|
const char *oui = NULL;
|
|
|
|
|
|
|
|
if (!virt_type) {
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INVALID_ARG, "%s",
|
2012-02-10 04:51:47 +00:00
|
|
|
_("argument virt_type must not be NULL"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (STREQ(virt_type, "QEMU")) {
|
|
|
|
oui = QUMRANET_OUI;
|
|
|
|
} else if (STREQ(virt_type, "Xen") ||
|
|
|
|
STREQ(virt_type, "xenlight") ||
|
|
|
|
STREQ(virt_type, "XenAPI")) {
|
|
|
|
oui = XEN_OUI;
|
|
|
|
} else if (STREQ(virt_type, "ESX") ||
|
|
|
|
STREQ(virt_type, "VMWARE")) {
|
|
|
|
oui = VMWARE_OUI;
|
|
|
|
} else if (STREQ(virt_type, "HYPER-V")) {
|
|
|
|
oui = MICROSOFT_OUI;
|
|
|
|
} else {
|
2012-07-18 10:26:24 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
2012-02-10 04:51:47 +00:00
|
|
|
_("Unsupported virt type"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-02-10 11:21:53 +00:00
|
|
|
if (virAsprintf(wwn, "5" "%s%09llx", oui,
|
|
|
|
(unsigned long long)virRandomBits(36)) < 0) {
|
2012-02-10 04:51:47 +00:00
|
|
|
virReportOOMError();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|