]> xenbits.xensource.com Git - libvirt.git/commitdiff
conf: Drop restrictions on rng backend path
authorCole Robinson <crobinso@redhat.com>
Wed, 13 Apr 2016 19:09:30 +0000 (15:09 -0400)
committerCole Robinson <crobinso@redhat.com>
Tue, 26 Apr 2016 15:43:33 +0000 (11:43 -0400)
Currently we only allow /dev/random and /dev/hwrng as host input
for <rng><backend model='random'/> device. This was added after
various upstream discussions in commit 4932ef45

However this restriction has generated quite a few complaints over
the years, so a new discussion was initiated:

http://www.redhat.com/archives/libvir-list/2016-April/msg00987.html

Several people suggested removing the restriction, and nobody really
spoke up to defend it. So this patch drops the path restriction
entirely

https://bugzilla.redhat.com/show_bug.cgi?id=1074464

docs/formatdomain.html.in
docs/schemas/domaincommon.rng
src/conf/domain_conf.c
tests/qemuxml2argvdata/qemuxml2argv-virtio-rng-random.args
tests/qemuxml2argvdata/qemuxml2argv-virtio-rng-random.xml
tests/qemuxml2xmloutdata/qemuxml2xmlout-virtio-rng-random.xml

index a3cf86698d8061936682970c5120089a5710e5f4..d2db53b41823ecd266a3bd0d5da0b335c222bef8 100644 (file)
@@ -6244,10 +6244,10 @@ qemu-kvm -net nic,model=? /dev/null
           <dd>
             <p>
               This backend type expects a non-blocking character device as
-              input. The only accepted paths are /dev/random and /dev/hwrng.
-              The file name is specified as contents of the
+              input. The file name is specified as contents of the
               <code>backend</code> element. When no file name is specified
-              the hypervisor default is used.
+              the hypervisor default is used. For qemu, the default is
+              /dev/random
             </p>
           </dd>
           <dt><code>egd</code></dt>
index 66f41679a4eccf8a33cddd9605491c64d220d3be..f77bbcf5982886897155524354cede191fd8cd36 100644 (file)
             <value>random</value>
           </attribute>
           <choice>
-            <value>/dev/random</value>
-            <value>/dev/hwrng</value>
+            <ref name='absFilePath'/>
             <empty/>
           </choice>
         </group>
index db567f5c0790ab1be35a5b3b12bf8f00eb617767..2c6244aaf39625a0aa63bee0db10fe9cf6784436 100644 (file)
@@ -11497,14 +11497,6 @@ virDomainRNGDefParseXML(xmlNodePtr node,
     switch ((virDomainRNGBackend) def->backend) {
     case VIR_DOMAIN_RNG_BACKEND_RANDOM:
         def->source.file = virXPathString("string(./backend)", ctxt);
-        if (def->source.file &&
-            STRNEQ(def->source.file, "/dev/random") &&
-            STRNEQ(def->source.file, "/dev/hwrng")) {
-            virReportError(VIR_ERR_XML_ERROR,
-                           _("file '%s' is not a supported random source"),
-                           def->source.file);
-            goto error;
-        }
         break;
 
     case VIR_DOMAIN_RNG_BACKEND_EGD:
index ba97c1e8ee5a80eb765ac41f66d7f529dc811083..5a4d47be975c3f463bd5676b63ce3748dc56ca60 100644 (file)
@@ -18,6 +18,6 @@ QEMU_AUDIO_DRV=none \
 -boot c \
 -usb \
 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3 \
--object rng-random,id=objrng0,filename=/dev/hwrng \
+-object rng-random,id=objrng0,filename=/dev/urandom \
 -device virtio-rng-pci,rng=objrng0,id=rng0,max-bytes=123,period=1234,bus=pci.0,\
 addr=0x4
index 71bd21a65c66c8d9dfacddce392a3b418480d736..a6e91fff3e586d98f37f72d5196885b6d3acaa55 100644 (file)
@@ -21,7 +21,7 @@
     <memballoon model='virtio'/>
     <rng model='virtio'>
       <rate bytes='123' period='1234'/>
-      <backend model='random'>/dev/hwrng</backend>
+      <backend model='random'>/dev/urandom</backend>
     </rng>
   </devices>
 </domain>
index e8a047866b544d40bcaa5d0ef9bb3e4d62b8bf4d..0bdefdef4436a370bf1fe40be8a9e3281fec6262 100644 (file)
@@ -25,7 +25,7 @@
     </memballoon>
     <rng model='virtio'>
       <rate bytes='123' period='1234'/>
-      <backend model='random'>/dev/hwrng</backend>
+      <backend model='random'>/dev/urandom</backend>
       <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
     </rng>
   </devices>