public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/1] s390: nmi: fix virtual-physical address confusion
@ 2023-02-16 12:12 Nico Boehr
  2023-02-16 12:12 ` [PATCH v2 1/1] " Nico Boehr
  0 siblings, 1 reply; 3+ messages in thread
From: Nico Boehr @ 2023-02-16 12:12 UTC (permalink / raw)
  To: borntraeger, frankja, imbrenda, agordeev; +Cc: kvm, linux-s390

v2:
---
* remove unneeded cast (thanks Alexander)

When a machine check is received while in SIE, it is reinjected into the
guest in some cases. The respective code needs to access the sie_block,
which is taken from the backed up R14.

Since reinjection only occurs while we are in SIE (i.e. between the
labels sie_entry and sie_leave in entry.S and thus if CIF_MCCK_GUEST is
set), the backed up R14 will always contain a physical address in
s390_backup_mcck_info.

This currently works, because virtual and physical addresses are
the same.

Add phys_to_virt() to resolve the virtual-physical confusion.

Nico Boehr (1):
  s390: nmi: fix virtual-physical address confusion

 arch/s390/kernel/nmi.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

-- 
2.39.1


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

* [PATCH v2 1/1] s390: nmi: fix virtual-physical address confusion
  2023-02-16 12:12 [PATCH v2 0/1] s390: nmi: fix virtual-physical address confusion Nico Boehr
@ 2023-02-16 12:12 ` Nico Boehr
  2023-02-16 12:22   ` Claudio Imbrenda
  0 siblings, 1 reply; 3+ messages in thread
From: Nico Boehr @ 2023-02-16 12:12 UTC (permalink / raw)
  To: borntraeger, frankja, imbrenda, agordeev; +Cc: kvm, linux-s390

When a machine check is received while in SIE, it is reinjected into the
guest in some cases. The respective code needs to access the sie_block,
which is taken from the backed up R14.

Since reinjection only occurs while we are in SIE (i.e. between the
labels sie_entry and sie_leave in entry.S and thus if CIF_MCCK_GUEST is
set), the backed up R14 will always contain a physical address in
s390_backup_mcck_info.

This currently works, because virtual and physical addresses are
the same.

Add phys_to_virt() to resolve the virtual-physical confusion.

Signed-off-by: Nico Boehr <nrb@linux.ibm.com>
---
 arch/s390/kernel/nmi.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/s390/kernel/nmi.c b/arch/s390/kernel/nmi.c
index 5dbf274719a9..56d9c559afa1 100644
--- a/arch/s390/kernel/nmi.c
+++ b/arch/s390/kernel/nmi.c
@@ -346,8 +346,7 @@ static void notrace s390_backup_mcck_info(struct pt_regs *regs)
 	struct sie_page *sie_page;
 
 	/* r14 contains the sie block, which was set in sie64a */
-	struct kvm_s390_sie_block *sie_block =
-			(struct kvm_s390_sie_block *) regs->gprs[14];
+	struct kvm_s390_sie_block *sie_block = phys_to_virt(regs->gprs[14]);
 
 	if (sie_block == NULL)
 		/* Something's seriously wrong, stop system. */
-- 
2.39.1


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

* Re: [PATCH v2 1/1] s390: nmi: fix virtual-physical address confusion
  2023-02-16 12:12 ` [PATCH v2 1/1] " Nico Boehr
@ 2023-02-16 12:22   ` Claudio Imbrenda
  0 siblings, 0 replies; 3+ messages in thread
From: Claudio Imbrenda @ 2023-02-16 12:22 UTC (permalink / raw)
  To: Nico Boehr; +Cc: borntraeger, frankja, agordeev, kvm, linux-s390

On Thu, 16 Feb 2023 13:12:08 +0100
Nico Boehr <nrb@linux.ibm.com> wrote:

> When a machine check is received while in SIE, it is reinjected into the
> guest in some cases. The respective code needs to access the sie_block,
> which is taken from the backed up R14.
> 
> Since reinjection only occurs while we are in SIE (i.e. between the
> labels sie_entry and sie_leave in entry.S and thus if CIF_MCCK_GUEST is
> set), the backed up R14 will always contain a physical address in
> s390_backup_mcck_info.
> 
> This currently works, because virtual and physical addresses are
> the same.
> 
> Add phys_to_virt() to resolve the virtual-physical confusion.
> 
> Signed-off-by: Nico Boehr <nrb@linux.ibm.com>

Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>

> ---
>  arch/s390/kernel/nmi.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/arch/s390/kernel/nmi.c b/arch/s390/kernel/nmi.c
> index 5dbf274719a9..56d9c559afa1 100644
> --- a/arch/s390/kernel/nmi.c
> +++ b/arch/s390/kernel/nmi.c
> @@ -346,8 +346,7 @@ static void notrace s390_backup_mcck_info(struct pt_regs *regs)
>  	struct sie_page *sie_page;
>  
>  	/* r14 contains the sie block, which was set in sie64a */
> -	struct kvm_s390_sie_block *sie_block =
> -			(struct kvm_s390_sie_block *) regs->gprs[14];
> +	struct kvm_s390_sie_block *sie_block = phys_to_virt(regs->gprs[14]);
>  
>  	if (sie_block == NULL)
>  		/* Something's seriously wrong, stop system. */


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

end of thread, other threads:[~2023-02-16 12:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-16 12:12 [PATCH v2 0/1] s390: nmi: fix virtual-physical address confusion Nico Boehr
2023-02-16 12:12 ` [PATCH v2 1/1] " Nico Boehr
2023-02-16 12:22   ` Claudio Imbrenda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox