]> git.baikalelectronics.ru Git - kernel.git/commit
xen-netback: Check for hotplug-status existence before watching
authorMichael Brown <mbrown@fensystems.co.uk>
Tue, 13 Apr 2021 15:25:12 +0000 (16:25 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 Apr 2021 22:24:14 +0000 (15:24 -0700)
commit8bfe1af096cbe955fbd4dcd0d47b051bc8c515a7
tree68d755c22e5a1ebea73397b4e1d958f88adb16a2
parenta4784bae98bffc817a310b5da1aece55353cd214
xen-netback: Check for hotplug-status existence before watching

The logic in connect() is currently written with the assumption that
xenbus_watch_pathfmt() will return an error for a node that does not
exist.  This assumption is incorrect: xenstore does allow a watch to
be registered for a nonexistent node (and will send notifications
should the node be subsequently created).

As of commit af6e0faac ("xen-netback: remove 'hotplug-status' once it
has served its purpose"), this leads to a failure when a domU
transitions into XenbusStateConnected more than once.  On the first
domU transition into Connected state, the "hotplug-status" node will
be deleted by the hotplug_status_changed() callback in dom0.  On the
second or subsequent domU transition into Connected state, the
hotplug_status_changed() callback will therefore never be invoked, and
so the backend will remain stuck in InitWait.

This failure prevents scenarios such as reloading the xen-netfront
module within a domU, or booting a domU via iPXE.  There is
unfortunately no way for the domU to work around this dom0 bug.

Fix by explicitly checking for existence of the "hotplug-status" node,
thereby creating the behaviour that was previously assumed to exist.

Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
Reviewed-by: Paul Durrant <paul@xen.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/xen-netback/xenbus.c