diff mbox series

[v6,1/2] target/arm: kvm: Handle DABT with no valid ISS

Message ID 20200625220336.10186-2-beata.michalska@linaro.org
State New
Headers show
Series target/arm: kvm: Support for KVM DABT with no valid ISS | expand

Commit Message

Beata Michalska June 25, 2020, 10:03 p.m. UTC
On ARMv7 & ARMv8 some load/store instructions might trigger a data abort
exception with no valid ISS info to be decoded. The lack of decode info
makes it at least tricky to emulate those instruction which is one of the
(many) reasons why KVM will not even try to do so.

Add support for handling those by requesting KVM to inject external
dabt into the quest.

Signed-off-by: Beata Michalska <beata.michalska@linaro.org>

---
 target/arm/kvm.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 58 insertions(+), 1 deletion(-)

-- 
2.7.4

Comments

Andrew Jones June 26, 2020, 9 a.m. UTC | #1
On Thu, Jun 25, 2020 at 11:03:35PM +0100, Beata Michalska wrote:
> On ARMv7 & ARMv8 some load/store instructions might trigger a data abort

> exception with no valid ISS info to be decoded. The lack of decode info

> makes it at least tricky to emulate those instruction which is one of the

> (many) reasons why KVM will not even try to do so.

> 

> Add support for handling those by requesting KVM to inject external

> dabt into the quest.

> 

> Signed-off-by: Beata Michalska <beata.michalska@linaro.org>

> ---

>  target/arm/kvm.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-

>  1 file changed, 58 insertions(+), 1 deletion(-)

> 

> diff --git a/target/arm/kvm.c b/target/arm/kvm.c

> index eef3bbd..265c4b8 100644

> --- a/target/arm/kvm.c

> +++ b/target/arm/kvm.c

> @@ -39,6 +39,7 @@ const KVMCapabilityInfo kvm_arch_required_capabilities[] = {

>  

>  static bool cap_has_mp_state;

>  static bool cap_has_inject_serror_esr;

> +static bool cap_has_inject_ext_dabt;

>  

>  static ARMHostCPUFeatures arm_host_cpu_features;

>  

> @@ -245,6 +246,16 @@ int kvm_arch_init(MachineState *ms, KVMState *s)

>          ret = -EINVAL;

>      }

>  

> +    if (kvm_check_extension(s, KVM_CAP_ARM_NISV_TO_USER)) {

> +        if (kvm_vm_enable_cap(s, KVM_CAP_ARM_NISV_TO_USER, 0)) {

> +            error_report("Failed to enable KVM_CAP_ARM_NISV_TO_USER cap");

> +        } else {

> +            /* Set status for supporting the external dabt injection */

> +            cap_has_inject_ext_dabt = kvm_check_extension(s,

> +                                    KVM_CAP_ARM_INJECT_EXT_DABT);

> +        }

> +    }

> +

>      return ret;

>  }

>  

> @@ -810,6 +821,47 @@ void kvm_arm_vm_state_change(void *opaque, int running, RunState state)

>      }

>  }

>  

> +/**

> + * kvm_arm_handle_dabt_nisv:

> + * @cs: CPUState

> + * @esr_iss: ISS encoding (limited) for the exception from Data Abort

> + *           ISV bit set to '0b0' -> no valid instruction syndrome

> + * @fault_ipa: faulting address for the synchronous data abort

> + *

> + * Returns: 0 if the exception has been handled, < 0 otherwise

> + */

> +static int kvm_arm_handle_dabt_nisv(CPUState *cs, uint64_t esr_iss,

> +                             uint64_t fault_ipa)

> +{

> +    /*

> +     * Request KVM to inject the external data abort into the guest

> +     */

> +    if (cap_has_inject_ext_dabt) {

> +        struct kvm_vcpu_events events;

> +        /*

> +         * KVM_CAP_ARM_INJECT_EXT_DABT support implies one for

> +         * KVM_CAP_VCPU_EVENTS


KVM_CAP_ARM_INJECT_EXT_DABT implies KVM_CAP_VCPU_EVENTS

And this comment should probably come just before the
KVM_SET_VCPU_EVENTS ioctl.

> +         */

> +        memset(&events, 0, sizeof(events));


nit: How about using '= {0}' when declaring the variable, rather than this
memset?

> +        /*

> +         * Skipping all the overhead of syncing vcpu regs back and forth

> +         * and messing around with the vcpu_dirty flag to avoid

> +         * overwriting changes done by KVM : directly calling

> +         * the associated ioctl with the status set for external data abort,

> +         * which, in turn, will be directly delivered to the affected vcpu.


The external data abort event will be handled immediately by KVM and does
not need any other CPU state. This means we can skip CPU synchronization
and set this event, but only this event, here.

> +         */

> +        events.exception.ext_dabt_pending = 1;

> +

> +        return kvm_vcpu_ioctl(cs, KVM_SET_VCPU_EVENTS, &events);

> +    } else {

> +        error_report("Data abort exception triggered by guest memory access "

> +                     "at physical address: 0x"  TARGET_FMT_lx,

> +                     (target_ulong)fault_ipa);

> +        error_printf("KVM unable to emulate faulting instruction.\n");

> +    }

> +    return -1;

> +}

> +

>  int kvm_arch_handle_exit(CPUState *cs, struct kvm_run *run)

>  {

>      int ret = 0;

> @@ -820,7 +872,12 @@ int kvm_arch_handle_exit(CPUState *cs, struct kvm_run *run)

>              ret = EXCP_DEBUG;

>          } /* otherwise return to guest */

>          break;

> -    default:

> +    case KVM_EXIT_ARM_NISV:

> +        /* External DABT with no valid iss to decode */

> +        ret = kvm_arm_handle_dabt_nisv(cs, run->arm_nisv.esr_iss,

> +                                       run->arm_nisv.fault_ipa);

> +        break;

> +     default:

>          qemu_log_mask(LOG_UNIMP, "%s: un-handled exit reason %d\n",

>                        __func__, run->exit_reason);

>          break;

> -- 

> 2.7.4

> 

> 


Besides the suggested comment changes and the memset nit

Reviewed-by: Andrew Jones <drjones@redhat.com>


Thanks,
drew
Peter Maydell June 26, 2020, 12:59 p.m. UTC | #2
On Fri, 26 Jun 2020 at 10:01, Andrew Jones <drjones@redhat.com> wrote:
> nit: How about using '= {0}' when declaring the variable, rather than this

> memset?


We prefer "= {}" -- although "= {0}" is the C standard approved
version, some compiler versions produce spurious warnings for
it in some situations. (cf commit 039d4e3df0049bdd8f9).

thanks
-- PMM
Beata Michalska June 27, 2020, 3:29 p.m. UTC | #3
Hi Peter,
Hi Andrew

Thanks for quick review.
I have pushed the updated version.

BR
Beata

On Fri, 26 Jun 2020 at 13:59, Peter Maydell <peter.maydell@linaro.org> wrote:
>

> On Fri, 26 Jun 2020 at 10:01, Andrew Jones <drjones@redhat.com> wrote:

> > nit: How about using '= {0}' when declaring the variable, rather than this

> > memset?

>

> We prefer "= {}" -- although "= {0}" is the C standard approved

> version, some compiler versions produce spurious warnings for

> it in some situations. (cf commit 039d4e3df0049bdd8f9).

>

> thanks

> -- PMM
diff mbox series

Patch

diff --git a/target/arm/kvm.c b/target/arm/kvm.c
index eef3bbd..265c4b8 100644
--- a/target/arm/kvm.c
+++ b/target/arm/kvm.c
@@ -39,6 +39,7 @@  const KVMCapabilityInfo kvm_arch_required_capabilities[] = {
 
 static bool cap_has_mp_state;
 static bool cap_has_inject_serror_esr;
+static bool cap_has_inject_ext_dabt;
 
 static ARMHostCPUFeatures arm_host_cpu_features;
 
@@ -245,6 +246,16 @@  int kvm_arch_init(MachineState *ms, KVMState *s)
         ret = -EINVAL;
     }
 
+    if (kvm_check_extension(s, KVM_CAP_ARM_NISV_TO_USER)) {
+        if (kvm_vm_enable_cap(s, KVM_CAP_ARM_NISV_TO_USER, 0)) {
+            error_report("Failed to enable KVM_CAP_ARM_NISV_TO_USER cap");
+        } else {
+            /* Set status for supporting the external dabt injection */
+            cap_has_inject_ext_dabt = kvm_check_extension(s,
+                                    KVM_CAP_ARM_INJECT_EXT_DABT);
+        }
+    }
+
     return ret;
 }
 
@@ -810,6 +821,47 @@  void kvm_arm_vm_state_change(void *opaque, int running, RunState state)
     }
 }
 
+/**
+ * kvm_arm_handle_dabt_nisv:
+ * @cs: CPUState
+ * @esr_iss: ISS encoding (limited) for the exception from Data Abort
+ *           ISV bit set to '0b0' -> no valid instruction syndrome
+ * @fault_ipa: faulting address for the synchronous data abort
+ *
+ * Returns: 0 if the exception has been handled, < 0 otherwise
+ */
+static int kvm_arm_handle_dabt_nisv(CPUState *cs, uint64_t esr_iss,
+                             uint64_t fault_ipa)
+{
+    /*
+     * Request KVM to inject the external data abort into the guest
+     */
+    if (cap_has_inject_ext_dabt) {
+        struct kvm_vcpu_events events;
+        /*
+         * KVM_CAP_ARM_INJECT_EXT_DABT support implies one for
+         * KVM_CAP_VCPU_EVENTS
+         */
+        memset(&events, 0, sizeof(events));
+        /*
+         * Skipping all the overhead of syncing vcpu regs back and forth
+         * and messing around with the vcpu_dirty flag to avoid
+         * overwriting changes done by KVM : directly calling
+         * the associated ioctl with the status set for external data abort,
+         * which, in turn, will be directly delivered to the affected vcpu.
+         */
+        events.exception.ext_dabt_pending = 1;
+
+        return kvm_vcpu_ioctl(cs, KVM_SET_VCPU_EVENTS, &events);
+    } else {
+        error_report("Data abort exception triggered by guest memory access "
+                     "at physical address: 0x"  TARGET_FMT_lx,
+                     (target_ulong)fault_ipa);
+        error_printf("KVM unable to emulate faulting instruction.\n");
+    }
+    return -1;
+}
+
 int kvm_arch_handle_exit(CPUState *cs, struct kvm_run *run)
 {
     int ret = 0;
@@ -820,7 +872,12 @@  int kvm_arch_handle_exit(CPUState *cs, struct kvm_run *run)
             ret = EXCP_DEBUG;
         } /* otherwise return to guest */
         break;
-    default:
+    case KVM_EXIT_ARM_NISV:
+        /* External DABT with no valid iss to decode */
+        ret = kvm_arm_handle_dabt_nisv(cs, run->arm_nisv.esr_iss,
+                                       run->arm_nisv.fault_ipa);
+        break;
+     default:
         qemu_log_mask(LOG_UNIMP, "%s: un-handled exit reason %d\n",
                       __func__, run->exit_reason);
         break;