From 71d99ec3511d0b39f8bac06a1b5680fb04d61935 Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Mon, 19 Dec 2016 15:02:03 +0000 Subject: [PATCH] init/FreeBSD: fix xencommons so it can only be launched by Dom0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit At the moment the execution of xencommons is gated on the presence of the privcmd device, but that's not correct, since privcmd is available to all Xen domains (privileged or unprivileged). Instead of using privcmd use the xenstored device, which will only be available to the domain that's in charge of running xenstored, and thus xencommons. Signed-off-by: Roger Pau Monné Acked-by: Wei Liu (cherry picked from commit c875b9778da0c56a0c118626771465b87df31fe8) (cherry picked from commit 3667bc0394743085548c85632b8dc5c3d77483d7) --- tools/hotplug/FreeBSD/rc.d/xencommons.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hotplug/FreeBSD/rc.d/xencommons.in b/tools/hotplug/FreeBSD/rc.d/xencommons.in index d453c6b214..cd1f68fec8 100644 --- a/tools/hotplug/FreeBSD/rc.d/xencommons.in +++ b/tools/hotplug/FreeBSD/rc.d/xencommons.in @@ -16,7 +16,7 @@ start_cmd="xen_startcmd" stop_cmd="xen_stop" status_cmd="xen_status" extra_commands="status" -required_files="/dev/xen/privcmd" +required_files="/dev/xen/xenstored" XENSTORED_PIDFILE="/var/run/xenstored.pid" XENCONSOLED_PIDFILE="/var/run/xenconsoled.pid" -- 2.39.5