# Commit 868d9b99b39c53dc1f6ae9bfd7b148c206fd7240 # Date 2014-07-23 18:08:04 +0200 # Author Andrew Cooper # Committer Jan Beulich x86/mem_event: prevent underflow of vcpu pause counts Signed-off-by: Andrew Cooper Tested-by: Razvan Cojocaru Reviewed-by: Andres Lagar-Cavilla Tested-by: Aravindh Puthiyaparambil --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -4762,7 +4762,7 @@ static int hvm_memory_event_traps(long p if ( (p & HVMPME_MODE_MASK) == HVMPME_mode_sync ) { req.flags |= MEM_EVENT_FLAG_VCPU_PAUSED; - vcpu_pause_nosync(v); + mem_event_vcpu_pause(v); } req.gfn = value; --- a/xen/arch/x86/mm/mem_event.c +++ b/xen/arch/x86/mm/mem_event.c @@ -655,6 +655,38 @@ int mem_event_domctl(struct domain *d, x return rc; } +void mem_event_vcpu_pause(struct vcpu *v) +{ + ASSERT(v == current); + + atomic_inc(&v->mem_event_pause_count); + vcpu_pause_nosync(v); +} + +void mem_event_vcpu_unpause(struct vcpu *v) +{ + int old, new, prev = v->mem_event_pause_count.counter; + + /* All unpause requests as a result of toolstack responses. Prevent + * underflow of the vcpu pause count. */ + do + { + old = prev; + new = old - 1; + + if ( new < 0 ) + { + printk(XENLOG_G_WARNING + "d%d:v%d mem_event: Too many unpause attempts\n", + v->domain->domain_id, v->vcpu_id); + return; + } + + prev = cmpxchg(&v->mem_event_pause_count.counter, old, new); + } while ( prev != old ); + + vcpu_unpause(v); +} /* * Local variables: --- a/xen/arch/x86/mm/mem_sharing.c +++ b/xen/arch/x86/mm/mem_sharing.c @@ -568,7 +568,7 @@ int mem_sharing_notify_enomem(struct dom if ( v->domain == d ) { req.flags = MEM_EVENT_FLAG_VCPU_PAUSED; - vcpu_pause_nosync(v); + mem_event_vcpu_pause(v); } req.p2mt = p2m_ram_shared; @@ -609,7 +609,7 @@ int mem_sharing_sharing_resume(struct do /* Unpause domain/vcpu */ if ( rsp.flags & MEM_EVENT_FLAG_VCPU_PAUSED ) - vcpu_unpause(v); + mem_event_vcpu_unpause(v); } return 0; --- a/xen/arch/x86/mm/p2m.c +++ b/xen/arch/x86/mm/p2m.c @@ -1094,7 +1094,7 @@ void p2m_mem_paging_populate(struct doma /* Pause domain if request came from guest and gfn has paging type */ if ( p2m_is_paging(p2mt) && v->domain == d ) { - vcpu_pause_nosync(v); + mem_event_vcpu_pause(v); req.flags |= MEM_EVENT_FLAG_VCPU_PAUSED; } /* No need to inform pager if the gfn is not in the page-out path */ @@ -1257,7 +1257,7 @@ void p2m_mem_paging_resume(struct domain } /* Unpause domain */ if ( rsp.flags & MEM_EVENT_FLAG_VCPU_PAUSED ) - vcpu_unpause(v); + mem_event_vcpu_unpause(v); } } @@ -1352,7 +1352,7 @@ bool_t p2m_mem_access_check(paddr_t gpa, /* Pause the current VCPU */ if ( p2ma != p2m_access_n2rwx ) - vcpu_pause_nosync(v); + mem_event_vcpu_pause(v); /* VCPU may be paused, return whether we promoted automatically */ return (p2ma == p2m_access_n2rwx); @@ -1378,7 +1378,7 @@ void p2m_mem_access_resume(struct domain /* Unpause domain */ if ( rsp.flags & MEM_EVENT_FLAG_VCPU_PAUSED ) - vcpu_unpause(v); + mem_event_vcpu_unpause(v); } } --- a/xen/include/asm-x86/mem_event.h +++ b/xen/include/asm-x86/mem_event.h @@ -66,6 +66,9 @@ int do_mem_event_op(int op, uint32_t dom int mem_event_domctl(struct domain *d, xen_domctl_mem_event_op_t *mec, XEN_GUEST_HANDLE_PARAM(void) u_domctl); +void mem_event_vcpu_pause(struct vcpu *v); +void mem_event_vcpu_unpause(struct vcpu *v); + #endif /* __MEM_EVENT_H__ */ --- a/xen/include/xen/sched.h +++ b/xen/include/xen/sched.h @@ -189,6 +189,9 @@ struct vcpu unsigned long pause_flags; atomic_t pause_count; + /* VCPU paused for mem_event replies. */ + atomic_t mem_event_pause_count; + /* IRQ-safe virq_lock protects against delivering VIRQ to stale evtchn. */ evtchn_port_t virq_to_evtchn[NR_VIRQS]; spinlock_t virq_lock;