|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] sched_rt: sanity check input and serialization
commit 9f9ccbbacc0cdda1dd41c2e36b3fb622e434dc13
Author: Meng Xu <mengxu@xxxxxxxxxxxxx>
AuthorDate: Wed Nov 12 12:34:49 2014 +0100
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Wed Nov 12 12:34:49 2014 +0100
sched_rt: sanity check input and serialization
Sanity check input params in rt_dom_cntl();
Serialize rt_dom_cntl() against the global lock.
Reported-by: Jan Beulich <jbeulich@xxxxxxxx>
Signed-off-by: Meng Xu <mengxu@xxxxxxxxxxxxx>
Reviewed-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx>
Reviewed-by: George Dunlap <george.dunlap@xxxxxxxxxxxxx>
Release-Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx>
---
xen/common/sched_rt.c | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/xen/common/sched_rt.c b/xen/common/sched_rt.c
index 6c8faeb..8251e41 100644
--- a/xen/common/sched_rt.c
+++ b/xen/common/sched_rt.c
@@ -1042,25 +1042,36 @@ rt_dom_cntl(
struct domain *d,
struct xen_domctl_scheduler_op *op)
{
+ struct rt_private *prv = rt_priv(ops);
struct rt_dom * const sdom = rt_dom(d);
struct rt_vcpu *svc;
struct list_head *iter;
+ unsigned long flags;
int rc = 0;
switch ( op->cmd )
{
case XEN_DOMCTL_SCHEDOP_getinfo:
+ spin_lock_irqsave(&prv->lock, flags);
svc = list_entry(sdom->vcpu.next, struct rt_vcpu, sdom_elem);
op->u.rtds.period = svc->period / MICROSECS(1); /* transfer to us */
op->u.rtds.budget = svc->budget / MICROSECS(1);
+ spin_unlock_irqrestore(&prv->lock, flags);
break;
case XEN_DOMCTL_SCHEDOP_putinfo:
+ if ( op->u.rtds.period == 0 || op->u.rtds.budget == 0 )
+ {
+ rc = -EINVAL;
+ break;
+ }
+ spin_lock_irqsave(&prv->lock, flags);
list_for_each( iter, &sdom->vcpu )
{
struct rt_vcpu * svc = list_entry(iter, struct rt_vcpu, sdom_elem);
svc->period = MICROSECS(op->u.rtds.period); /* transfer to nanosec
*/
svc->budget = MICROSECS(op->u.rtds.budget);
}
+ spin_unlock_irqrestore(&prv->lock, flags);
break;
}
--
generated by git-patchbot for /home/xen/git/xen.git#master
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |