On Thu, 6 Oct 2022 at 14:16, Peter Maydell <peter.mayd...@linaro.org> wrote: > > On Fri, 30 Sept 2022 at 00:23, Jason A. Donenfeld <ja...@zx2c4.com> wrote: > > > > When the system reboots, the rng-seed that the FDT has should be > > re-randomized, so that the new boot gets a new seed. Several > > architectures require this functionality, so export a function for > > injecting a new seed into the given FDT. > > > > Cc: Alistair Francis <alistair.fran...@wdc.com> > > Cc: David Gibson <da...@gibson.dropbear.id.au> > > Signed-off-by: Jason A. Donenfeld <ja...@zx2c4.com> > > Hi; I've applied this series to target-arm.next (seems the easiest way > to take it into the tree).
Unfortunately it turns out that this breaks the reverse-debugging test that is part of 'make check-avocado'. Running all of 'check-avocado' takes a long time, so here's how to run the specific test: make -C your-build-tree check-venv # Only for the first time your-build-tree/tests/venv/bin/avocado run your-build-tree/tests/avocado/boot_linux.py Probably more convenient though is to run the equivalent commands by hand: wget -O /tmp/vmlinuz https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/29/Everything/aarch64/os/images/pxeboot/vmlinuz ./build/x86/qemu-img create -f qcow2 /tmp/disk.qcow2 128M ./build/x86/qemu-system-aarch64 -display none -machine virt -serial stdio -cpu cortex-a53 -icount shift=7,rr=record,rrfile=/tmp/qemu.rr,rrsnapshot=init -net none -drive file=/tmp/disk.qcow2 -kernel /tmp/vmlinuz # this will boot the kernel to the no-root-fs panic; hit ctrl-C when it gets there ./build/x86/qemu-system-aarch64 -display none -machine virt -serial stdio -cpu cortex-a53 -icount shift=7,rr=replay,rrfile=/tmp/qemu.rr,rrsnapshot=init -net none -drive file=/tmp/disk.qcow2 -kernel /tmp/vmlinuz # same command line, but 'replay' rather than 'record', QEMU will exit with an error: qemu-system-aarch64: Missing random event in the replay log Without these patches the replay step will replay the recorded execution up to the guest panic. The error is essentially the record-and-replay subsystem saying "the replay just asked for a random number at point when the recording did not ask for one, and so there's no 'this is what the number was' info in the record". I have had a quick look, and I think the reason for this is that load_snapshot() ("reset the VM state to the snapshot state stored in the disk image or migration stream") does a system reset. The replay process involves a lot of "load state from a snapshot and play forwards from there" operations. It doesn't expect that load_snapshot() would result in something reading random data, but now that we are calling qemu_guest_getrandom() in a reset hook, that happens. I'm not sure exactly what the best approach here is, so I've cc'd the migration and replay submaintainers. For the moment I'm dropping this patchset from target-arm.next. thanks -- PMM