All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/shim: Fixes to replace_linear_mapping()
@ 2018-01-24 11:00 Andrew Cooper
  2018-01-24 11:12 ` Roger Pau Monné
  2018-01-24 11:59 ` Jan Beulich
  0 siblings, 2 replies; 3+ messages in thread
From: Andrew Cooper @ 2018-01-24 11:00 UTC (permalink / raw)
  To: Xen-devel
  Cc: Andrew Cooper, Sergey Dyasli, Wei Liu, Jan Beulich, Roger Pau Monné

The function replace_va_mapping() has multiple issues:
 * It uses linear addresses, not virtual addresses.  Fix its name.
 * Guest pagetables are allocated from the domheap not the xenheap, so need
   map_domain_page() to safely access.
 * put_page_and_type() should only apply to present mappings.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Jan Beulich <JBeulich@suse.com>
CC: Wei Liu <wei.liu2@citrix.com>
CC: Roger Pau Monné <roger.pau@citrix.com>
CC: Sergey Dyasli <sergey.dyasli@citrix.com>
---
 xen/arch/x86/pv/shim.c | 28 ++++++++++++++++------------
 1 file changed, 16 insertions(+), 12 deletions(-)

diff --git a/xen/arch/x86/pv/shim.c b/xen/arch/x86/pv/shim.c
index d5383dc..fae7818 100644
--- a/xen/arch/x86/pv/shim.c
+++ b/xen/arch/x86/pv/shim.c
@@ -119,19 +119,23 @@ uint64_t pv_shim_mem(uint64_t avail)
                  _PAGE_GUEST_KERNEL)
 #define COMPAT_L1_PROT (_PAGE_PRESENT|_PAGE_RW|_PAGE_ACCESSED)
 
-static void __init replace_va_mapping(struct domain *d, l4_pgentry_t *l4start,
-                                      unsigned long va, mfn_t mfn)
+static void __init replace_linear_mapping(
+    struct domain *d, l4_pgentry_t *l4t, unsigned long linear, mfn_t mfn)
 {
-    l4_pgentry_t *pl4e = l4start + l4_table_offset(va);
-    l3_pgentry_t *pl3e = l4e_to_l3e(*pl4e) + l3_table_offset(va);
-    l2_pgentry_t *pl2e = l3e_to_l2e(*pl3e) + l2_table_offset(va);
-    l1_pgentry_t *pl1e = l2e_to_l1e(*pl2e) + l1_table_offset(va);
-    struct page_info *page = mfn_to_page(l1e_get_mfn(*pl1e));
+    l4_pgentry_t *l4e = l4t                    + l4_table_offset(linear);
+    l3_pgentry_t *l3e = map_l3t_from_l4e(*l4e) + l3_table_offset(linear);
+    l2_pgentry_t *l2e = map_l2t_from_l3e(*l3e) + l2_table_offset(linear);
+    l1_pgentry_t *l1e = map_l1t_from_l2e(*l2e) + l1_table_offset(linear);
+    unsigned int flags = is_pv_32bit_domain(d) ? COMPAT_L1_PROT : L1_PROT;
 
-    put_page_and_type(page);
+    if ( l1e_get_flags(*l1e) & _PAGE_PRESENT )
+        put_page_and_type(l1e_get_page(*l1e));
 
-    *pl1e = l1e_from_mfn(mfn, (!is_pv_32bit_domain(d) ? L1_PROT
-                                                      : COMPAT_L1_PROT));
+    l1e_write(l1e, l1e_from_mfn(mfn, flags));
+
+    unmap_domain_page(l1e);
+    unmap_domain_page(l2e);
+    unmap_domain_page(l3e);
 }
 
 static void evtchn_reserve(struct domain *d, unsigned int port)
@@ -172,7 +176,7 @@ void __init pv_shim_setup_dom(struct domain *d, l4_pgentry_t *l4start,
     {                                                                          \
         share_xen_page_with_guest(mfn_to_page(_mfn(param)), d,                 \
                                   XENSHARE_writable);                          \
-        replace_va_mapping(d, l4start, va, _mfn(param));                       \
+        replace_linear_mapping(d, l4start, va, _mfn(param));                   \
         dom0_update_physmap(d, PFN_DOWN((va) - va_start), param, vphysmap);    \
     }                                                                          \
     else                                                                       \
@@ -200,7 +204,7 @@ void __init pv_shim_setup_dom(struct domain *d, l4_pgentry_t *l4start,
         si->console.domU.mfn = mfn_x(console_mfn);
         share_xen_page_with_guest(mfn_to_page(console_mfn), d,
                                   XENSHARE_writable);
-        replace_va_mapping(d, l4start, console_va, console_mfn);
+        replace_linear_mapping(d, l4start, console_va, console_mfn);
         dom0_update_physmap(d, (console_va - va_start) >> PAGE_SHIFT,
                             mfn_x(console_mfn), vphysmap);
         consoled_set_ring_addr(page);
-- 
2.1.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86/shim: Fixes to replace_linear_mapping()
  2018-01-24 11:00 [PATCH] x86/shim: Fixes to replace_linear_mapping() Andrew Cooper
@ 2018-01-24 11:12 ` Roger Pau Monné
  2018-01-24 11:59 ` Jan Beulich
  1 sibling, 0 replies; 3+ messages in thread
From: Roger Pau Monné @ 2018-01-24 11:12 UTC (permalink / raw)
  To: Andrew Cooper; +Cc: Sergey Dyasli, Wei Liu, Jan Beulich, Xen-devel

On Wed, Jan 24, 2018 at 11:00:05AM +0000, Andrew Cooper wrote:
> The function replace_va_mapping() has multiple issues:
>  * It uses linear addresses, not virtual addresses.  Fix its name.
>  * Guest pagetables are allocated from the domheap not the xenheap, so need
>    map_domain_page() to safely access.

This should also need changing in mark_pv_pt_pages_rdonly (which is
where I got the idea from).

>  * put_page_and_type() should only apply to present mappings.
> 
> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>

LGTM, just a couple of comments/questions.

> ---
> CC: Jan Beulich <JBeulich@suse.com>
> CC: Wei Liu <wei.liu2@citrix.com>
> CC: Roger Pau Monné <roger.pau@citrix.com>
> CC: Sergey Dyasli <sergey.dyasli@citrix.com>
> ---
>  xen/arch/x86/pv/shim.c | 28 ++++++++++++++++------------
>  1 file changed, 16 insertions(+), 12 deletions(-)
> 
> diff --git a/xen/arch/x86/pv/shim.c b/xen/arch/x86/pv/shim.c
> index d5383dc..fae7818 100644
> --- a/xen/arch/x86/pv/shim.c
> +++ b/xen/arch/x86/pv/shim.c
> @@ -119,19 +119,23 @@ uint64_t pv_shim_mem(uint64_t avail)
>                   _PAGE_GUEST_KERNEL)
>  #define COMPAT_L1_PROT (_PAGE_PRESENT|_PAGE_RW|_PAGE_ACCESSED)
>  
> -static void __init replace_va_mapping(struct domain *d, l4_pgentry_t *l4start,
> -                                      unsigned long va, mfn_t mfn)
> +static void __init replace_linear_mapping(
> +    struct domain *d, l4_pgentry_t *l4t, unsigned long linear, mfn_t mfn)

I would prefer to keep the previous style here (which is also used in
the rest of the file).

>  {
> -    l4_pgentry_t *pl4e = l4start + l4_table_offset(va);
> -    l3_pgentry_t *pl3e = l4e_to_l3e(*pl4e) + l3_table_offset(va);
> -    l2_pgentry_t *pl2e = l3e_to_l2e(*pl3e) + l2_table_offset(va);
> -    l1_pgentry_t *pl1e = l2e_to_l1e(*pl2e) + l1_table_offset(va);
> -    struct page_info *page = mfn_to_page(l1e_get_mfn(*pl1e));
> +    l4_pgentry_t *l4e = l4t                    + l4_table_offset(linear);
> +    l3_pgentry_t *l3e = map_l3t_from_l4e(*l4e) + l3_table_offset(linear);
> +    l2_pgentry_t *l2e = map_l2t_from_l3e(*l3e) + l2_table_offset(linear);
> +    l1_pgentry_t *l1e = map_l1t_from_l2e(*l2e) + l1_table_offset(linear);
> +    unsigned int flags = is_pv_32bit_domain(d) ? COMPAT_L1_PROT : L1_PROT;
>  
> -    put_page_and_type(page);
> +    if ( l1e_get_flags(*l1e) & _PAGE_PRESENT )

Given the limited usage of the function ATM, isn't this always
guaranteed?

Or are you maybe planning on using it for a different purpose?

Thanks, Roger.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86/shim: Fixes to replace_linear_mapping()
  2018-01-24 11:00 [PATCH] x86/shim: Fixes to replace_linear_mapping() Andrew Cooper
  2018-01-24 11:12 ` Roger Pau Monné
@ 2018-01-24 11:59 ` Jan Beulich
  1 sibling, 0 replies; 3+ messages in thread
From: Jan Beulich @ 2018-01-24 11:59 UTC (permalink / raw)
  To: Andrew Cooper; +Cc: Sergey Dyasli, Xen-devel, Wei Liu, Roger Pau Monné

>>> On 24.01.18 at 12:00, <andrew.cooper3@citrix.com> wrote:
> --- a/xen/arch/x86/pv/shim.c
> +++ b/xen/arch/x86/pv/shim.c
> @@ -119,19 +119,23 @@ uint64_t pv_shim_mem(uint64_t avail)
>                   _PAGE_GUEST_KERNEL)
>  #define COMPAT_L1_PROT (_PAGE_PRESENT|_PAGE_RW|_PAGE_ACCESSED)
>  
> -static void __init replace_va_mapping(struct domain *d, l4_pgentry_t *l4start,
> -                                      unsigned long va, mfn_t mfn)
> +static void __init replace_linear_mapping(
> +    struct domain *d, l4_pgentry_t *l4t, unsigned long linear, mfn_t mfn)
>  {
> -    l4_pgentry_t *pl4e = l4start + l4_table_offset(va);
> -    l3_pgentry_t *pl3e = l4e_to_l3e(*pl4e) + l3_table_offset(va);
> -    l2_pgentry_t *pl2e = l3e_to_l2e(*pl3e) + l2_table_offset(va);
> -    l1_pgentry_t *pl1e = l2e_to_l1e(*pl2e) + l1_table_offset(va);
> -    struct page_info *page = mfn_to_page(l1e_get_mfn(*pl1e));
> +    l4_pgentry_t *l4e = l4t                    + l4_table_offset(linear);
> +    l3_pgentry_t *l3e = map_l3t_from_l4e(*l4e) + l3_table_offset(linear);
> +    l2_pgentry_t *l2e = map_l2t_from_l3e(*l3e) + l2_table_offset(linear);
> +    l1_pgentry_t *l1e = map_l1t_from_l2e(*l2e) + l1_table_offset(linear);

Can we please stick to the previous naming (with an initial p), so
that "lNe" continues to mean an actual entry, and plNe a pointer
thereto?

Also I consider it bad practice to keep multiple domain pages
mapped at the same time when there's no strict need. This being
init code, it's probably not a big problem, but it would set a bad
precedent. IOW can I talk you into using map-read-unmap
sequences, even if this makes the overall source slightly larger?

Jan


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-01-24 11:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-24 11:00 [PATCH] x86/shim: Fixes to replace_linear_mapping() Andrew Cooper
2018-01-24 11:12 ` Roger Pau Monné
2018-01-24 11:59 ` Jan Beulich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.