Commit 30abaa88 authored by Babu Moger's avatar Babu Moger Committed by Paolo Bonzini

KVM: SVM: Change intercept_dr to generic intercepts

Modify intercept_dr to generic intercepts in vmcb_control_area. Use
the generic vmcb_set_intercept, vmcb_clr_intercept and vmcb_is_intercept
to set/clear/test the intercept_dr bits.
Signed-off-by: default avatarBabu Moger <babu.moger@amd.com>
Reviewed-by: default avatarJim Mattson <jmattson@google.com>
Message-Id: <159985249255.11252.10000868032136333355.stgit@bmoger-ubuntu>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 03bfeeb9
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
enum intercept_words { enum intercept_words {
INTERCEPT_CR = 0, INTERCEPT_CR = 0,
INTERCEPT_DR,
MAX_INTERCEPT, MAX_INTERCEPT,
}; };
...@@ -24,6 +25,23 @@ enum { ...@@ -24,6 +25,23 @@ enum {
INTERCEPT_CR3_WRITE = 16 + 3, INTERCEPT_CR3_WRITE = 16 + 3,
INTERCEPT_CR4_WRITE = 16 + 4, INTERCEPT_CR4_WRITE = 16 + 4,
INTERCEPT_CR8_WRITE = 16 + 8, INTERCEPT_CR8_WRITE = 16 + 8,
/* Byte offset 004h (word 1) */
INTERCEPT_DR0_READ = 32,
INTERCEPT_DR1_READ,
INTERCEPT_DR2_READ,
INTERCEPT_DR3_READ,
INTERCEPT_DR4_READ,
INTERCEPT_DR5_READ,
INTERCEPT_DR6_READ,
INTERCEPT_DR7_READ,
INTERCEPT_DR0_WRITE = 48,
INTERCEPT_DR1_WRITE,
INTERCEPT_DR2_WRITE,
INTERCEPT_DR3_WRITE,
INTERCEPT_DR4_WRITE,
INTERCEPT_DR5_WRITE,
INTERCEPT_DR6_WRITE,
INTERCEPT_DR7_WRITE,
}; };
enum { enum {
...@@ -79,7 +97,6 @@ enum { ...@@ -79,7 +97,6 @@ enum {
struct __attribute__ ((__packed__)) vmcb_control_area { struct __attribute__ ((__packed__)) vmcb_control_area {
u32 intercepts[MAX_INTERCEPT]; u32 intercepts[MAX_INTERCEPT];
u32 intercept_dr;
u32 intercept_exceptions; u32 intercept_exceptions;
u64 intercept; u64 intercept;
u8 reserved_1[40]; u8 reserved_1[40];
...@@ -308,23 +325,6 @@ struct vmcb { ...@@ -308,23 +325,6 @@ struct vmcb {
#define SVM_SELECTOR_READ_MASK SVM_SELECTOR_WRITE_MASK #define SVM_SELECTOR_READ_MASK SVM_SELECTOR_WRITE_MASK
#define SVM_SELECTOR_CODE_MASK (1 << 3) #define SVM_SELECTOR_CODE_MASK (1 << 3)
#define INTERCEPT_DR0_READ 0
#define INTERCEPT_DR1_READ 1
#define INTERCEPT_DR2_READ 2
#define INTERCEPT_DR3_READ 3
#define INTERCEPT_DR4_READ 4
#define INTERCEPT_DR5_READ 5
#define INTERCEPT_DR6_READ 6
#define INTERCEPT_DR7_READ 7
#define INTERCEPT_DR0_WRITE (16 + 0)
#define INTERCEPT_DR1_WRITE (16 + 1)
#define INTERCEPT_DR2_WRITE (16 + 2)
#define INTERCEPT_DR3_WRITE (16 + 3)
#define INTERCEPT_DR4_WRITE (16 + 4)
#define INTERCEPT_DR5_WRITE (16 + 5)
#define INTERCEPT_DR6_WRITE (16 + 6)
#define INTERCEPT_DR7_WRITE (16 + 7)
#define SVM_EVTINJ_VEC_MASK 0xff #define SVM_EVTINJ_VEC_MASK 0xff
#define SVM_EVTINJ_TYPE_SHIFT 8 #define SVM_EVTINJ_TYPE_SHIFT 8
......
...@@ -112,7 +112,6 @@ void recalc_intercepts(struct vcpu_svm *svm) ...@@ -112,7 +112,6 @@ void recalc_intercepts(struct vcpu_svm *svm)
for (i = 0; i < MAX_INTERCEPT; i++) for (i = 0; i < MAX_INTERCEPT; i++)
c->intercepts[i] = h->intercepts[i]; c->intercepts[i] = h->intercepts[i];
c->intercept_dr = h->intercept_dr;
c->intercept_exceptions = h->intercept_exceptions; c->intercept_exceptions = h->intercept_exceptions;
c->intercept = h->intercept; c->intercept = h->intercept;
...@@ -135,7 +134,6 @@ void recalc_intercepts(struct vcpu_svm *svm) ...@@ -135,7 +134,6 @@ void recalc_intercepts(struct vcpu_svm *svm)
for (i = 0; i < MAX_INTERCEPT; i++) for (i = 0; i < MAX_INTERCEPT; i++)
c->intercepts[i] |= g->intercepts[i]; c->intercepts[i] |= g->intercepts[i];
c->intercept_dr |= g->intercept_dr;
c->intercept_exceptions |= g->intercept_exceptions; c->intercept_exceptions |= g->intercept_exceptions;
c->intercept |= g->intercept; c->intercept |= g->intercept;
} }
...@@ -148,7 +146,6 @@ static void copy_vmcb_control_area(struct vmcb_control_area *dst, ...@@ -148,7 +146,6 @@ static void copy_vmcb_control_area(struct vmcb_control_area *dst,
for (i = 0; i < MAX_INTERCEPT; i++) for (i = 0; i < MAX_INTERCEPT; i++)
dst->intercepts[i] = from->intercepts[i]; dst->intercepts[i] = from->intercepts[i];
dst->intercept_dr = from->intercept_dr;
dst->intercept_exceptions = from->intercept_exceptions; dst->intercept_exceptions = from->intercept_exceptions;
dst->intercept = from->intercept; dst->intercept = from->intercept;
dst->iopm_base_pa = from->iopm_base_pa; dst->iopm_base_pa = from->iopm_base_pa;
...@@ -777,8 +774,7 @@ static int nested_svm_intercept(struct vcpu_svm *svm) ...@@ -777,8 +774,7 @@ static int nested_svm_intercept(struct vcpu_svm *svm)
break; break;
} }
case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: { case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
u32 bit = 1U << (exit_code - SVM_EXIT_READ_DR0); if (vmcb_is_intercept(&svm->nested.ctl, exit_code))
if (svm->nested.ctl.intercept_dr & bit)
vmexit = NESTED_EXIT_DONE; vmexit = NESTED_EXIT_DONE;
break; break;
} }
......
...@@ -2814,8 +2814,8 @@ static void dump_vmcb(struct kvm_vcpu *vcpu) ...@@ -2814,8 +2814,8 @@ static void dump_vmcb(struct kvm_vcpu *vcpu)
pr_err("VMCB Control Area:\n"); pr_err("VMCB Control Area:\n");
pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff); pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff);
pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16); pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16);
pr_err("%-20s%04x\n", "dr_read:", control->intercept_dr & 0xffff); pr_err("%-20s%04x\n", "dr_read:", control->intercepts[INTERCEPT_DR] & 0xffff);
pr_err("%-20s%04x\n", "dr_write:", control->intercept_dr >> 16); pr_err("%-20s%04x\n", "dr_write:", control->intercepts[INTERCEPT_DR] >> 16);
pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions); pr_err("%-20s%08x\n", "exceptions:", control->intercept_exceptions);
pr_err("%-20s%016llx\n", "intercepts:", control->intercept); pr_err("%-20s%016llx\n", "intercepts:", control->intercept);
pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count); pr_err("%-20s%d\n", "pause filter count:", control->pause_filter_count);
......
...@@ -260,22 +260,22 @@ static inline void set_dr_intercepts(struct vcpu_svm *svm) ...@@ -260,22 +260,22 @@ static inline void set_dr_intercepts(struct vcpu_svm *svm)
{ {
struct vmcb *vmcb = get_host_vmcb(svm); struct vmcb *vmcb = get_host_vmcb(svm);
vmcb->control.intercept_dr = (1 << INTERCEPT_DR0_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR0_READ);
| (1 << INTERCEPT_DR1_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR1_READ);
| (1 << INTERCEPT_DR2_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR2_READ);
| (1 << INTERCEPT_DR3_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR3_READ);
| (1 << INTERCEPT_DR4_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR4_READ);
| (1 << INTERCEPT_DR5_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR5_READ);
| (1 << INTERCEPT_DR6_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR6_READ);
| (1 << INTERCEPT_DR7_READ) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR7_READ);
| (1 << INTERCEPT_DR0_WRITE) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR0_WRITE);
| (1 << INTERCEPT_DR1_WRITE) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR1_WRITE);
| (1 << INTERCEPT_DR2_WRITE) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR2_WRITE);
| (1 << INTERCEPT_DR3_WRITE) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR3_WRITE);
| (1 << INTERCEPT_DR4_WRITE) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR4_WRITE);
| (1 << INTERCEPT_DR5_WRITE) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR5_WRITE);
| (1 << INTERCEPT_DR6_WRITE) vmcb_set_intercept(&vmcb->control, INTERCEPT_DR6_WRITE);
| (1 << INTERCEPT_DR7_WRITE); vmcb_set_intercept(&vmcb->control, INTERCEPT_DR7_WRITE);
recalc_intercepts(svm); recalc_intercepts(svm);
} }
...@@ -284,7 +284,7 @@ static inline void clr_dr_intercepts(struct vcpu_svm *svm) ...@@ -284,7 +284,7 @@ static inline void clr_dr_intercepts(struct vcpu_svm *svm)
{ {
struct vmcb *vmcb = get_host_vmcb(svm); struct vmcb *vmcb = get_host_vmcb(svm);
vmcb->control.intercept_dr = 0; vmcb->control.intercepts[INTERCEPT_DR] = 0;
recalc_intercepts(svm); recalc_intercepts(svm);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment