xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: "Jan Beulich" <JBeulich@suse.com>
To: Razvan Cojocaru <rcojocaru@bitdefender.com>
Cc: jun.nakajima@intel.com, kevin.tian@intel.com,
	wei.liu2@citrix.com, ian.campbell@citrix.com,
	stefano.stabellini@eu.citrix.com, george.dunlap@eu.citrix.com,
	andrew.cooper3@citrix.com, ian.jackson@eu.citrix.com,
	xen-devel@lists.xen.org, eddie.dong@intel.com,
	Aravind.Gopalakrishnan@amd.com, suravee.suthikulpanit@amd.com,
	tlengyel@novetta.com, keir@xen.org, boris.ostrovsky@oracle.com
Subject: Re: [PATCH V5 3/3] xen/vm_event: Deny register writes if refused by vm_event reply
Date: Tue, 14 Jul 2015 16:55:48 +0100	[thread overview]
Message-ID: <55A54D240200007800090DF6@mail.emea.novell.com> (raw)
In-Reply-To: <55A5250B.8050305@bitdefender.com>

>>> On 14.07.15 at 17:04, <rcojocaru@bitdefender.com> wrote:
> On 07/14/2015 05:41 PM, Jan Beulich wrote:
>>>>> On 14.07.15 at 15:45, <rcojocaru@bitdefender.com> wrote:
>>> On 07/14/2015 03:35 PM, Jan Beulich wrote:
>>>>>>> On 13.07.15 at 19:14, <rcojocaru@bitdefender.com> wrote:
>>>>> --- a/xen/arch/x86/vm_event.c
>>>>> +++ b/xen/arch/x86/vm_event.c
>>>>> @@ -22,11 +22,19 @@
>>>>>  
>>>>>  #include <xen/sched.h>
>>>>>  #include <asm/hvm/hvm.h>
>>>>> +#include <asm/vm_event.h>
>>>>>  
>>>>>  int vm_event_init_domain(struct domain *d)
>>>>>  {
>>>>>      struct vcpu *v;
>>>>>  
>>>>> +    if ( !d->arch.event_write_data )
>>>>> +        d->arch.event_write_data = xzalloc_array(struct monitor_write_data,
>>>>> +                                                 d->max_vcpus);
>>>>
>>>> Looking at this again I wonder why the data isn't being made part of
>>>> struct arch_vcpu's vm_event sub-structure. That would also address
>>>> the complaint I have here about this not being a guaranteed maximum
>>>> page size runtime allocation.
>>>
>>> I think this is just how the initial suggestion was worded, I'll change it.
>> 
>> Right - after having sent the reply I started wondering whether
>> maybe I had asked for this. But if I did, then surely not with
>> xzalloc_array(), but vzalloc().
>> 
>> If you moved this into struct arch_vcpu (again), then its size would
>> likely call for the whole vm_event structure to become indirectly
>> accessed and allocated.
> 
> In that case would it suffice to just switch to vzalloc() in this case?

For now, yes.

> I'm not opposed to just placing all the data (this and the
> memory-content hiding data) in struct vm_event and allocate that as a
> whole, but that would change patch 1/3, 3/3 and also touch other code.

Would be a nice thing to clean up post-4.6.

Jan

  reply	other threads:[~2015-07-14 15:55 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-13 17:14 [PATCH V5 0/3] Vm_event memory introspection helpers Razvan Cojocaru
2015-07-13 17:14 ` [PATCH V5 1/3] xen/mem_access: Support for memory-content hiding Razvan Cojocaru
2015-07-13 17:32   ` Lengyel, Tamas
2015-07-13 17:36     ` Razvan Cojocaru
2015-07-14 12:22   ` Jan Beulich
2015-07-14 13:26     ` Razvan Cojocaru
2015-07-14 13:37       ` Jan Beulich
2015-07-14 13:41         ` Razvan Cojocaru
2015-07-13 17:14 ` [PATCH V5 2/3] xen/vm_event: Support for guest-requested events Razvan Cojocaru
2015-07-13 17:14 ` [PATCH V5 3/3] xen/vm_event: Deny register writes if refused by vm_event reply Razvan Cojocaru
2015-07-14 12:35   ` Jan Beulich
2015-07-14 13:45     ` Razvan Cojocaru
2015-07-14 14:41       ` Jan Beulich
2015-07-14 15:04         ` Razvan Cojocaru
2015-07-14 15:55           ` Jan Beulich [this message]
2015-07-14 16:25             ` Razvan Cojocaru
2015-07-14 14:37     ` Razvan Cojocaru
2015-07-14 10:50 ` [PATCH V5 0/3] Vm_event memory introspection helpers Jan Beulich
2015-07-14 11:45   ` Razvan Cojocaru
2015-07-14 11:53     ` Jan Beulich
2015-07-14 13:08     ` Ian Campbell

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=55A54D240200007800090DF6@mail.emea.novell.com \
    --to=jbeulich@suse.com \
    --cc=Aravind.Gopalakrishnan@amd.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=eddie.dong@intel.com \
    --cc=george.dunlap@eu.citrix.com \
    --cc=ian.campbell@citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=jun.nakajima@intel.com \
    --cc=keir@xen.org \
    --cc=kevin.tian@intel.com \
    --cc=rcojocaru@bitdefender.com \
    --cc=stefano.stabellini@eu.citrix.com \
    --cc=suravee.suthikulpanit@amd.com \
    --cc=tlengyel@novetta.com \
    --cc=wei.liu2@citrix.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).