public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/2] hwrng, virtio-rng: init-time fixes
@ 2014-07-10 10:12 Amit Shah
  2014-07-10 10:12 ` [PATCH v3 1/2] hwrng: fetch randomness only after device init Amit Shah
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Amit Shah @ 2014-07-10 10:12 UTC (permalink / raw)
  To: linux-kernel
  Cc: Virtualization List, Rusty Russell, herbert, keescook, jason,
	Amit Shah

v3:
 - Kees Cook pointed out a weird side-effect: devices which have
   ->init() registered get their randomness added to the system each
   time they're switched in, but devices that don't have the init
   callback don't contribute to system randomness more than once.  The
   weirdness is resolved here by using the randomness each time
   hwrng_init() is attempted, irrespective of the existence of the
   device's ->init() callback.

v2:
 - this now separates both the patches; the virtio-rng fix is self-contained
 - re-work hwrng core to fetch randomness at device init time if
   ->init() is registered by the device, instead of not calling it at all.
 - virtio-rng: introduce a probe_done bool to ensure we don't ask host
   for data before successful probe

Hi,

When booting a recent kernel under KVM with the virtio-rng device
enabled, the boot process was stalling.  Bisect pointed to a commit
made during the 3.15 window to fetch randomness from newly-registered
devices in the hwrng core.  The details are in the patches.

Turns out there were two bugs: the initial randomness was being
fetched w/o the device being initialized in cases where the init
callback was registered and the device wasn't the first device being
added to the hwrng core (unrelated to the virtio-rng case).  The
second bug is virtio can't communicate with the host without the
device probe is successfully completed.

The impact of this change is that a sole virtio-rng device in a system 
won't be able to contribute to the initial randomness.  If a second 
virtio-rng device is hot-plugged, its input will be used.  Though that 
scenario is extremely unlikely (why have two virtio-rng devices at 
all?). 

This isn't any different from the current behaviour, though - virtio-rng 
currently doesn't contribute to initial system randomness, and continues 
not to do so.  A better way to get virtio-rng to contribute initially
to the system random pool can be worked out later.

Please apply,

Amit Shah (2):
  hwrng: fetch randomness only after device init
  virtio: rng: ensure reads happen after successful probe

 drivers/char/hw_random/core.c       | 47 ++++++++++++++++++++++++++++++-------
 drivers/char/hw_random/virtio-rng.c | 10 ++++++++
 2 files changed, 49 insertions(+), 8 deletions(-)

-- 
1.9.3


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-07-15  4:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-10 10:12 [PATCH v3 0/2] hwrng, virtio-rng: init-time fixes Amit Shah
2014-07-10 10:12 ` [PATCH v3 1/2] hwrng: fetch randomness only after device init Amit Shah
2014-07-10 11:13   ` Jason Cooper
2014-07-10 10:12 ` [PATCH v3 2/2] virtio: rng: ensure reads happen after successful probe Amit Shah
2014-07-14 12:50 ` [PATCH v3 0/2] hwrng, virtio-rng: init-time fixes Herbert Xu
2014-07-15  4:40   ` Amit Shah
2014-07-15  4:45     ` Herbert Xu
2014-07-15  4:49       ` Amit Shah

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox