* [PATCH] espfix/xen: Fix allocation of pages for paravirt page tables
@ 2014-07-09 17:18 Boris Ostrovsky
2014-07-09 18:13 ` Konrad Rzeszutek Wilk
2014-07-14 22:25 ` [tip:x86/urgent] x86/espfix/xen: " tip-bot for Boris Ostrovsky
0 siblings, 2 replies; 3+ messages in thread
From: Boris Ostrovsky @ 2014-07-09 17:18 UTC (permalink / raw)
To: hpa
Cc: konrad.wilk, david.vrabel, linux, xen-devel, linux-kernel,
boris.ostrovsky
init_espfix_ap() is currently off by one level when informing hypervisor
that allocated pages will be used for ministacks' page tables.
The most immediate effect of this on a PV guest is that if
'stack_page = __get_free_page()' returns a non-zeroed-out page the hypervisor
will refuse to use it for a page table (which it shouldn't be anyway). This will
result in warnings by both Xen and Linux.
More importantly, a subsequent write to that page (again, by a PV guest) is
likely to result in fatal page fault.
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
---
arch/x86/kernel/espfix_64.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/arch/x86/kernel/espfix_64.c b/arch/x86/kernel/espfix_64.c
index 6afbb16..94d857f 100644
--- a/arch/x86/kernel/espfix_64.c
+++ b/arch/x86/kernel/espfix_64.c
@@ -175,7 +175,7 @@ void init_espfix_ap(void)
if (!pud_present(pud)) {
pmd_p = (pmd_t *)__get_free_page(PGALLOC_GFP);
pud = __pud(__pa(pmd_p) | (PGTABLE_PROT & ptemask));
- paravirt_alloc_pud(&init_mm, __pa(pmd_p) >> PAGE_SHIFT);
+ paravirt_alloc_pmd(&init_mm, __pa(pmd_p) >> PAGE_SHIFT);
for (n = 0; n < ESPFIX_PUD_CLONES; n++)
set_pud(&pud_p[n], pud);
}
@@ -185,7 +185,7 @@ void init_espfix_ap(void)
if (!pmd_present(pmd)) {
pte_p = (pte_t *)__get_free_page(PGALLOC_GFP);
pmd = __pmd(__pa(pte_p) | (PGTABLE_PROT & ptemask));
- paravirt_alloc_pmd(&init_mm, __pa(pte_p) >> PAGE_SHIFT);
+ paravirt_alloc_pte(&init_mm, __pa(pte_p) >> PAGE_SHIFT);
for (n = 0; n < ESPFIX_PMD_CLONES; n++)
set_pmd(&pmd_p[n], pmd);
}
@@ -193,7 +193,6 @@ void init_espfix_ap(void)
pte_p = pte_offset_kernel(&pmd, addr);
stack_page = (void *)__get_free_page(GFP_KERNEL);
pte = __pte(__pa(stack_page) | (__PAGE_KERNEL_RO & ptemask));
- paravirt_alloc_pte(&init_mm, __pa(stack_page) >> PAGE_SHIFT);
for (n = 0; n < ESPFIX_PTE_CLONES; n++)
set_pte(&pte_p[n*PTE_STRIDE], pte);
--
1.8.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] espfix/xen: Fix allocation of pages for paravirt page tables
2014-07-09 17:18 [PATCH] espfix/xen: Fix allocation of pages for paravirt page tables Boris Ostrovsky
@ 2014-07-09 18:13 ` Konrad Rzeszutek Wilk
2014-07-14 22:25 ` [tip:x86/urgent] x86/espfix/xen: " tip-bot for Boris Ostrovsky
1 sibling, 0 replies; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-07-09 18:13 UTC (permalink / raw)
To: Boris Ostrovsky; +Cc: hpa, david.vrabel, linux, xen-devel, linux-kernel
On Wed, Jul 09, 2014 at 01:18:18PM -0400, Boris Ostrovsky wrote:
> init_espfix_ap() is currently off by one level when informing hypervisor
> that allocated pages will be used for ministacks' page tables.
>
> The most immediate effect of this on a PV guest is that if
> 'stack_page = __get_free_page()' returns a non-zeroed-out page the hypervisor
> will refuse to use it for a page table (which it shouldn't be anyway). This will
> result in warnings by both Xen and Linux.
>
> More importantly, a subsequent write to that page (again, by a PV guest) is
> likely to result in fatal page fault.
>
> Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
<sigh>
> ---
> arch/x86/kernel/espfix_64.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/arch/x86/kernel/espfix_64.c b/arch/x86/kernel/espfix_64.c
> index 6afbb16..94d857f 100644
> --- a/arch/x86/kernel/espfix_64.c
> +++ b/arch/x86/kernel/espfix_64.c
> @@ -175,7 +175,7 @@ void init_espfix_ap(void)
> if (!pud_present(pud)) {
> pmd_p = (pmd_t *)__get_free_page(PGALLOC_GFP);
> pud = __pud(__pa(pmd_p) | (PGTABLE_PROT & ptemask));
> - paravirt_alloc_pud(&init_mm, __pa(pmd_p) >> PAGE_SHIFT);
> + paravirt_alloc_pmd(&init_mm, __pa(pmd_p) >> PAGE_SHIFT);
> for (n = 0; n < ESPFIX_PUD_CLONES; n++)
> set_pud(&pud_p[n], pud);
> }
> @@ -185,7 +185,7 @@ void init_espfix_ap(void)
> if (!pmd_present(pmd)) {
> pte_p = (pte_t *)__get_free_page(PGALLOC_GFP);
> pmd = __pmd(__pa(pte_p) | (PGTABLE_PROT & ptemask));
> - paravirt_alloc_pmd(&init_mm, __pa(pte_p) >> PAGE_SHIFT);
> + paravirt_alloc_pte(&init_mm, __pa(pte_p) >> PAGE_SHIFT);
> for (n = 0; n < ESPFIX_PMD_CLONES; n++)
> set_pmd(&pmd_p[n], pmd);
> }
> @@ -193,7 +193,6 @@ void init_espfix_ap(void)
> pte_p = pte_offset_kernel(&pmd, addr);
> stack_page = (void *)__get_free_page(GFP_KERNEL);
> pte = __pte(__pa(stack_page) | (__PAGE_KERNEL_RO & ptemask));
> - paravirt_alloc_pte(&init_mm, __pa(stack_page) >> PAGE_SHIFT);
> for (n = 0; n < ESPFIX_PTE_CLONES; n++)
> set_pte(&pte_p[n*PTE_STRIDE], pte);
>
> --
> 1.8.1.4
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:x86/urgent] x86/espfix/xen: Fix allocation of pages for paravirt page tables
2014-07-09 17:18 [PATCH] espfix/xen: Fix allocation of pages for paravirt page tables Boris Ostrovsky
2014-07-09 18:13 ` Konrad Rzeszutek Wilk
@ 2014-07-14 22:25 ` tip-bot for Boris Ostrovsky
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Boris Ostrovsky @ 2014-07-14 22:25 UTC (permalink / raw)
To: linux-tip-commits
Cc: linux-kernel, hpa, mingo, konrad.wilk, boris.ostrovsky, stable,
tglx, hpa
Commit-ID: 8762e5092828c4dc0f49da5a47a644c670df77f3
Gitweb: http://git.kernel.org/tip/8762e5092828c4dc0f49da5a47a644c670df77f3
Author: Boris Ostrovsky <boris.ostrovsky@oracle.com>
AuthorDate: Wed, 9 Jul 2014 13:18:18 -0400
Committer: H. Peter Anvin <hpa@linux.intel.com>
CommitDate: Mon, 14 Jul 2014 13:47:32 -0700
x86/espfix/xen: Fix allocation of pages for paravirt page tables
init_espfix_ap() is currently off by one level when informing hypervisor
that allocated pages will be used for ministacks' page tables.
The most immediate effect of this on a PV guest is that if
'stack_page = __get_free_page()' returns a non-zeroed-out page the hypervisor
will refuse to use it for a page table (which it shouldn't be anyway). This will
result in warnings by both Xen and Linux.
More importantly, a subsequent write to that page (again, by a PV guest) is
likely to result in fatal page fault.
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Link: http://lkml.kernel.org/r/1404926298-5565-1-git-send-email-boris.ostrovsky@oracle.com
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Cc: <stable@vger.kernel.org>
---
arch/x86/kernel/espfix_64.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/arch/x86/kernel/espfix_64.c b/arch/x86/kernel/espfix_64.c
index 6afbb16..94d857f 100644
--- a/arch/x86/kernel/espfix_64.c
+++ b/arch/x86/kernel/espfix_64.c
@@ -175,7 +175,7 @@ void init_espfix_ap(void)
if (!pud_present(pud)) {
pmd_p = (pmd_t *)__get_free_page(PGALLOC_GFP);
pud = __pud(__pa(pmd_p) | (PGTABLE_PROT & ptemask));
- paravirt_alloc_pud(&init_mm, __pa(pmd_p) >> PAGE_SHIFT);
+ paravirt_alloc_pmd(&init_mm, __pa(pmd_p) >> PAGE_SHIFT);
for (n = 0; n < ESPFIX_PUD_CLONES; n++)
set_pud(&pud_p[n], pud);
}
@@ -185,7 +185,7 @@ void init_espfix_ap(void)
if (!pmd_present(pmd)) {
pte_p = (pte_t *)__get_free_page(PGALLOC_GFP);
pmd = __pmd(__pa(pte_p) | (PGTABLE_PROT & ptemask));
- paravirt_alloc_pmd(&init_mm, __pa(pte_p) >> PAGE_SHIFT);
+ paravirt_alloc_pte(&init_mm, __pa(pte_p) >> PAGE_SHIFT);
for (n = 0; n < ESPFIX_PMD_CLONES; n++)
set_pmd(&pmd_p[n], pmd);
}
@@ -193,7 +193,6 @@ void init_espfix_ap(void)
pte_p = pte_offset_kernel(&pmd, addr);
stack_page = (void *)__get_free_page(GFP_KERNEL);
pte = __pte(__pa(stack_page) | (__PAGE_KERNEL_RO & ptemask));
- paravirt_alloc_pte(&init_mm, __pa(stack_page) >> PAGE_SHIFT);
for (n = 0; n < ESPFIX_PTE_CLONES; n++)
set_pte(&pte_p[n*PTE_STRIDE], pte);
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-07-14 22:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-09 17:18 [PATCH] espfix/xen: Fix allocation of pages for paravirt page tables Boris Ostrovsky
2014-07-09 18:13 ` Konrad Rzeszutek Wilk
2014-07-14 22:25 ` [tip:x86/urgent] x86/espfix/xen: " tip-bot for Boris Ostrovsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox