diff mbox series

hvf: Avoid mapping regions < PAGE_SIZE as ram

Message ID 20211025082558.96864-1-agraf@csgraf.de (mailing list archive)
State New, archived
Headers show
Series hvf: Avoid mapping regions < PAGE_SIZE as ram | expand

Commit Message

Alexander Graf Oct. 25, 2021, 8:25 a.m. UTC
HVF has generic memory listener code that adds all RAM regions as HVF RAM
regions. However, HVF can only handle page aligned, page granule regions.

So let's ignore regions that are not page aligned and sized. They will be
trapped as MMIO instead.

Signed-off-by: Alexander Graf <agraf@csgraf.de>
---
 accel/hvf/hvf-accel-ops.c | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

Philippe Mathieu-Daudé Oct. 25, 2021, 10:56 a.m. UTC | #1
Hi Alex,

On 10/25/21 10:25, Alexander Graf wrote:
> HVF has generic memory listener code that adds all RAM regions as HVF RAM
> regions. However, HVF can only handle page aligned, page granule regions.
> 
> So let's ignore regions that are not page aligned and sized. They will be
> trapped as MMIO instead.
> 
> Signed-off-by: Alexander Graf <agraf@csgraf.de>
> ---
>  accel/hvf/hvf-accel-ops.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/accel/hvf/hvf-accel-ops.c b/accel/hvf/hvf-accel-ops.c
> index 6bf319d34c..090155853a 100644
> --- a/accel/hvf/hvf-accel-ops.c
> +++ b/accel/hvf/hvf-accel-ops.c
> @@ -135,6 +135,12 @@ static void hvf_set_phys_mem(MemoryRegionSection *section, bool add)
>          }
>      }
>  
> +    if (int128_get64(section->size) & (qemu_real_host_page_size - 1) ||
> +        section->offset_within_address_space & (qemu_real_host_page_size - 1)) {

Could we use QEMU_IS_ALIGNED() instead?

> +        /* Not page aligned, so we can not map as RAM */
> +        add = false;
> +    }
> +
>      mem = hvf_find_overlap_slot(
>              section->offset_within_address_space,
>              int128_get64(section->size));
>
Paolo Bonzini Oct. 25, 2021, 5:11 p.m. UTC | #2
On 25/10/21 10:25, Alexander Graf wrote:
> HVF has generic memory listener code that adds all RAM regions as HVF RAM
> regions. However, HVF can only handle page aligned, page granule regions.
> 
> So let's ignore regions that are not page aligned and sized. They will be
> trapped as MMIO instead.
> 
> Signed-off-by: Alexander Graf <agraf@csgraf.de>
> ---
>   accel/hvf/hvf-accel-ops.c | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> diff --git a/accel/hvf/hvf-accel-ops.c b/accel/hvf/hvf-accel-ops.c
> index 6bf319d34c..090155853a 100644
> --- a/accel/hvf/hvf-accel-ops.c
> +++ b/accel/hvf/hvf-accel-ops.c
> @@ -135,6 +135,12 @@ static void hvf_set_phys_mem(MemoryRegionSection *section, bool add)
>           }
>       }
>   
> +    if (int128_get64(section->size) & (qemu_real_host_page_size - 1) ||
> +        section->offset_within_address_space & (qemu_real_host_page_size - 1)) {
> +        /* Not page aligned, so we can not map as RAM */
> +        add = false;
> +    }
> +
>       mem = hvf_find_overlap_slot(
>               section->offset_within_address_space,
>               int128_get64(section->size));
> 

Queued, thanks.

Paolo
Alexander Graf Oct. 25, 2021, 7:10 p.m. UTC | #3
On 25.10.21 19:11, Paolo Bonzini wrote:
> On 25/10/21 10:25, Alexander Graf wrote:
>> HVF has generic memory listener code that adds all RAM regions as HVF 
>> RAM
>> regions. However, HVF can only handle page aligned, page granule 
>> regions.
>>
>> So let's ignore regions that are not page aligned and sized. They 
>> will be
>> trapped as MMIO instead.
>>
>> Signed-off-by: Alexander Graf <agraf@csgraf.de>
>> ---
>>   accel/hvf/hvf-accel-ops.c | 6 ++++++
>>   1 file changed, 6 insertions(+)
>>
>> diff --git a/accel/hvf/hvf-accel-ops.c b/accel/hvf/hvf-accel-ops.c
>> index 6bf319d34c..090155853a 100644
>> --- a/accel/hvf/hvf-accel-ops.c
>> +++ b/accel/hvf/hvf-accel-ops.c
>> @@ -135,6 +135,12 @@ static void hvf_set_phys_mem(MemoryRegionSection 
>> *section, bool add)
>>           }
>>       }
>>   +    if (int128_get64(section->size) & (qemu_real_host_page_size - 
>> 1) ||
>> +        section->offset_within_address_space & 
>> (qemu_real_host_page_size - 1)) {
>> +        /* Not page aligned, so we can not map as RAM */
>> +        add = false;
>> +    }
>> +
>>       mem = hvf_find_overlap_slot(
>>               section->offset_within_address_space,
>>               int128_get64(section->size));
>>
>
> Queued, thanks.


You probably want v2 instead :)

Alex
Paolo Bonzini Oct. 26, 2021, 4:34 p.m. UTC | #4
On 25/10/21 21:10, Alexander Graf wrote:
>>>           }
>>>       }
>>>   +    if (int128_get64(section->size) & (qemu_real_host_page_size - 
>>> 1) ||
>>> +        section->offset_within_address_space & 
>>> (qemu_real_host_page_size - 1)) {
>>> +        /* Not page aligned, so we can not map as RAM */
>>> +        add = false;
>>> +    }
>>> +
>>>       mem = hvf_find_overlap_slot(
>>>               section->offset_within_address_space,
>>>               int128_get64(section->size));
>>>
>>
>> Queued, thanks.
> 
> 
> You probably want v2 instead :)

That's actually what I had applied. :)

Paolo
diff mbox series

Patch

diff --git a/accel/hvf/hvf-accel-ops.c b/accel/hvf/hvf-accel-ops.c
index 6bf319d34c..090155853a 100644
--- a/accel/hvf/hvf-accel-ops.c
+++ b/accel/hvf/hvf-accel-ops.c
@@ -135,6 +135,12 @@  static void hvf_set_phys_mem(MemoryRegionSection *section, bool add)
         }
     }
 
+    if (int128_get64(section->size) & (qemu_real_host_page_size - 1) ||
+        section->offset_within_address_space & (qemu_real_host_page_size - 1)) {
+        /* Not page aligned, so we can not map as RAM */
+        add = false;
+    }
+
     mem = hvf_find_overlap_slot(
             section->offset_within_address_space,
             int128_get64(section->size));