[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH HVM v2 1/1] hvm: refactor set param
On 05.02.2021 21:39, Norbert Manthey wrote: > To prevent leaking HVM params via L1TF and similar issues on a > hyperthread pair, let's load values of domains as late as possible. > > Furthermore, speculative barriers are re-arranged to make sure we do not > allow guests running on co-located VCPUs to leak hvm parameter values of > other domains. > > This is part of the speculative hardening effort. > > Signed-off-by: Norbert Manthey <nmanthey@xxxxxxxxx> > Reported-by: Hongyan Xia <hongyxia@xxxxxxxxxxxx> Did you lose Ian's release-ack, or did you drop it for a specific reason? > --- a/xen/arch/x86/hvm/hvm.c > +++ b/xen/arch/x86/hvm/hvm.c > @@ -4060,7 +4060,7 @@ static int hvm_allow_set_param(struct domain *d, > uint32_t index, > uint64_t new_value) > { > - uint64_t value = d->arch.hvm.params[index]; > + uint64_t value; > int rc; > > rc = xsm_hvm_param(XSM_TARGET, d, HVMOP_set_param); > @@ -4108,6 +4108,13 @@ static int hvm_allow_set_param(struct domain *d, > if ( rc ) > return rc; > > + if ( index >= HVM_NR_PARAMS ) > + return -EINVAL; > + > + /* Make sure we evaluate permissions before loading data of domains. */ > + block_speculation(); > + > + value = d->arch.hvm.params[index]; > switch ( index ) > { > /* The following parameters should only be changed once. */ I don't see the need for the heavier block_speculation() here; afaict array_access_nospec() should do fine. The switch() in context above as well as the switch() further down in the function don't have any speculation susceptible code. Furthermore the first switch() doesn't use "value" at all, so you could move the access even further down. This may have the downside of adding latency, so may not be worth it, but in this case at least the description should say half a word, especially seeing it say "as late as possible" right now. > @@ -4141,6 +4148,9 @@ static int hvm_set_param(struct domain *d, uint32_t > index, uint64_t value) > if ( rc ) > return rc; > > + /* Make sure we evaluate permissions before loading data of domains. */ > + block_speculation(); > + > switch ( index ) > { > case HVM_PARAM_CALLBACK_IRQ: Like you do for the "get" path I think this similarly renders pointless the use in hvmop_set_param() (and - see below - the same consideration wrt is_hvm_domain() applies). > @@ -4388,6 +4398,10 @@ int hvm_get_param(struct domain *d, uint32_t index, > uint64_t *value) > if ( rc ) > return rc; > > + /* Make sure the index bound check in hvm_get_param is respected, as > well as > + the above domain permissions. */ > + block_speculation(); Nit: Please fix comment style here. > @@ -4428,9 +4442,6 @@ static int hvmop_get_param( > if ( a.index >= HVM_NR_PARAMS ) > return -EINVAL; > > - /* Make sure the above bound check is not bypassed during speculation. */ > - block_speculation(); > - > d = rcu_lock_domain_by_any_id(a.domid); > if ( d == NULL ) > return -ESRCH; This one really was pointless anyway, as is_hvm_domain() (used down from here) already contains a suitable barrier. Jan
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |