From: Daniel De Graaf Date: Wed, 29 Feb 2012 13:46:32 +0000 (+0000) Subject: xsm: label xen-consumer event channels X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b34f2c375070e72b634e59c763716b9aa40d83c8;p=xen.git xsm: label xen-consumer event channels Event channels created during the domain build process for HVM domains did not call the XSM creation hook. Since these channels are used internally by Xen, redirect them to DOMAIN_INVAID instead of failing to create if the XSM hook fails the permissions check. Signed-off-by: Daniel De Graaf Committed-by: Keir Fraser --- diff --git a/xen/common/event_channel.c b/xen/common/event_channel.c index 989ebae133..c69d2c753e 100644 --- a/xen/common/event_channel.c +++ b/xen/common/event_channel.c @@ -1105,7 +1105,7 @@ int alloc_unbound_xen_event_channel( { struct evtchn *chn; struct domain *d = local_vcpu->domain; - int port; + int port, rc; spin_lock(&d->event_lock); @@ -1113,10 +1113,12 @@ int alloc_unbound_xen_event_channel( goto out; chn = evtchn_from_port(d, port); + rc = xsm_evtchn_unbound(d, chn, remote_domid); + chn->state = ECS_UNBOUND; chn->xen_consumer = get_xen_consumer(notification_fn); chn->notify_vcpu_id = local_vcpu->vcpu_id; - chn->u.unbound.remote_domid = remote_domid; + chn->u.unbound.remote_domid = !rc ? remote_domid : DOMID_INVALID; out: spin_unlock(&d->event_lock);