From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: Xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH v2 6/6] x86/xstate: Fix latent bugs in compress_xsave_states()
Date: Tue, 13 Sep 2016 10:35:40 +0100 [thread overview]
Message-ID: <b7fcca76-c45e-0255-a0a6-a8c89fbc4084@citrix.com> (raw)
In-Reply-To: <57D7D492020000780010E53A@prv-mh.provo.novell.com>
On 13/09/16 09:27, Jan Beulich wrote:
>>>> On 12.09.16 at 18:21, <andrew.cooper3@citrix.com> wrote:
>> compress_xsave_states() mustn't read xstate_bv or xcomp_bv before first
>> confirming that the input buffer is large enough. It also doesn't cope with
>> compressed input. Make all of these problems the callers responsbility to
>> ensure.
>>
>> Simplify the decompression logic by inlining get_xsave_addr(). As xstate_bv
>> is previously validated, dest won't ever been NULL.
>>
>> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
> Reviewed-by: Jan Beulich <jbeulich@suse.com>
> albeit, as expressed before I would prefer ...
>
>> void compress_xsave_states(struct vcpu *v, const void *src, unsigned int size)
>> {
>> struct xsave_struct *xsave = v->arch.xsave_area;
>> + void *dest;
>> uint16_t comp_offsets[sizeof(xfeature_mask)*8];
>> - u64 xstate_bv = ((const struct xsave_struct *)src)->xsave_hdr.xstate_bv;
>> - u64 valid;
>> + u64 xstate_bv, valid;
>>
>> - ASSERT(!xsave_area_compressed(src));
>> + BUG_ON(!v->arch.xcr0_accum);
>> + BUG_ON(size != xstate_ctxt_size(v->arch.xcr0_accum));
>> + BUG_ON(xsave_area_compressed(src));
> ... if at least the ASSERT() remained one.
Hmm fine. At least that is only data corruption issue, not an buffer
boundary issue.
~Andrew
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
prev parent reply other threads:[~2016-09-13 9:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-12 16:21 [PATCH v2 0/6] Fix multiple issues with xsave state handling on migrate Andrew Cooper
2016-09-12 16:21 ` [PATCH v2 1/6] x86/domctl: Introduce PV_XSAVE_HDR_SIZE and remove its opencoding Andrew Cooper
2016-09-12 16:21 ` [PATCH v2 2/6] x86/domctl: Fix TOCTOU race with the use of XEN_DOMCTL_getvcpuextstate Andrew Cooper
2016-09-12 16:21 ` [PATCH v2 3/6] x86/domctl: Simplfy XEN_DOMCTL_getvcpuextstate when xsave is not in use Andrew Cooper
2016-09-12 16:21 ` [PATCH v2 4/6] x86/xstate: Fix latent bugs in expand_xsave_states() Andrew Cooper
2016-09-13 8:23 ` Jan Beulich
2016-09-13 9:31 ` Andrew Cooper
2016-09-12 16:21 ` [PATCH v2 5/6] x86/domctl: Fix migration of guests which are not using xsave Andrew Cooper
2016-09-12 16:21 ` [PATCH v2 6/6] x86/xstate: Fix latent bugs in compress_xsave_states() Andrew Cooper
2016-09-13 8:27 ` Jan Beulich
2016-09-13 9:35 ` Andrew Cooper [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b7fcca76-c45e-0255-a0a6-a8c89fbc4084@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).