If unsure, say Y.
+config XSM_SILO
+ def_bool y
+ prompt "SILO support"
+ depends on XSM
+ ---help---
+ Enables SILO as the access control mechanism used by the XSM framework.
+ This is not the default module, add boot parameter xsm=silo to choose
+ it. This will deny any unmediated communication channels (grant tables
+ and event channels) between unprivileged VMs.
+
+ If unsure, say Y.
+
choice
prompt "Default XSM implementation"
depends on XSM
default XSM_FLASK_DEFAULT if XSM_FLASK
+ default XSM_SILO_DEFAULT if XSM_SILO
default XSM_DUMMY_DEFAULT
config XSM_DUMMY_DEFAULT
bool "Match non-XSM behavior"
config XSM_FLASK_DEFAULT
bool "FLux Advanced Security Kernel" if XSM_FLASK
+ config XSM_SILO_DEFAULT
+ bool "SILO" if XSM_SILO
endchoice
config LATE_HWDOM
--- /dev/null
+/******************************************************************************
+ * xsm/silo.c
+ *
+ * SILO module for XSM (Xen Security Modules)
+ *
+ * Copyright (c) 2018 Citrix Systems Ltd.
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; If not, see <http://www.gnu.org/licenses/>.
+ */
+#define XSM_NO_WRAPPERS
+#include <xsm/dummy.h>
+
+/*
+ * Check if inter-domain communication is allowed.
+ * Return true when pass check.
+ */
+static bool silo_mode_dom_check(const struct domain *ldom,
+ const struct domain *rdom)
+{
+ const struct domain *currd = current->domain;
+
+ return (is_control_domain(currd) || is_control_domain(ldom) ||
+ is_control_domain(rdom) || ldom == rdom);
+}
+
+static int silo_evtchn_unbound(struct domain *d1, struct evtchn *chn,
+ domid_t id2)
+{
+ int rc = -EPERM;
+ struct domain *d2 = rcu_lock_domain_by_any_id(id2);
+
+ if ( d2 == NULL )
+ rc = -ESRCH;
+ else
+ {
+ if ( silo_mode_dom_check(d1, d2) )
+ rc = xsm_evtchn_unbound(d1, chn, id2);
+ rcu_unlock_domain(d2);
+ }
+
+ return rc;
+}
+
+static int silo_evtchn_interdomain(struct domain *d1, struct evtchn *chan1,
+ struct domain *d2, struct evtchn *chan2)
+{
+ if ( silo_mode_dom_check(d1, d2) )
+ return xsm_evtchn_interdomain(d1, chan1, d2, chan2);
+ return -EPERM;
+}
+
+static int silo_grant_mapref(struct domain *d1, struct domain *d2,
+ uint32_t flags)
+{
+ if ( silo_mode_dom_check(d1, d2) )
+ return xsm_grant_mapref(d1, d2, flags);
+ return -EPERM;
+}
+
+static int silo_grant_transfer(struct domain *d1, struct domain *d2)
+{
+ if ( silo_mode_dom_check(d1, d2) )
+ return xsm_grant_transfer(d1, d2);
+ return -EPERM;
+}
+
+static int silo_grant_copy(struct domain *d1, struct domain *d2)
+{
+ if ( silo_mode_dom_check(d1, d2) )
+ return xsm_grant_copy(d1, d2);
+ return -EPERM;
+}
+
+static struct xsm_operations silo_xsm_ops = {
+ .evtchn_unbound = silo_evtchn_unbound,
+ .evtchn_interdomain = silo_evtchn_interdomain,
+ .grant_mapref = silo_grant_mapref,
+ .grant_transfer = silo_grant_transfer,
+ .grant_copy = silo_grant_copy,
+};
+
+void __init silo_init(void)
+{
+ printk("Initialising XSM SILO mode\n");
+
+ if ( register_xsm(&silo_xsm_ops) )
+ panic("SILO: Unable to register with XSM\n");
+}
+
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ */