Now we have a table for all the cp15 registers, we can drive a generic API. x86 already has one for sparse-numbered registers, so we simply reproduce that. The only difference is that our KVM_GET_MSR_INDEX_LIST is a per-vcpu ioctl; we can't know the MSRs until we know the cpu type. Thus we add KVM_VCPU_GET_MSR_INDEX_LIST. The numbering for the indices for coprocesors is simple, if userspace cares (it might not for simple save and restore): the upper 16 bits are the coprocessor number. If it's > 15, it's something else, for future expansion. Bit 15 indicates a 64-bit register. For 64 bit registers the bottom 4 bits are CRm, the next 4 are opc1 (just like the MCRR/MRCC instruction encoding). For 32 bit registers, the bottom 4 bits are CRm, the next 3 are opc2, the next 4 CRn, and the next 3 opc1 (the same order as the MRC/MCR instruction encoding, but not the same bit positions). 64-bit coprocessor register: ...|19 18 17 16|15|14 13 12 11 10 9 8| 7 6 5 4 |3 2 1 0| ...0 0 | cp num | 1| 0 0 0 0 0 0 0| opc1 | CRm | 32-bit coprocessor register: ...|19 18 17 16|15|14|13 12 11|10 9 8 7 |6 5 4 |3 2 1 0| ...0 0 | cp num | 0| 0| opc1 | CRn | opc2 | CRm | Non-coprocessor register: | 32 31 30 29 28 27 26 25 24 23 22 21 20|19 18 17 16 15 ... | < some non-zero value > | ... Signed-off-by: Rusty Russell <rusty.russell@xxxxxxxxxx> diff --git a/arch/arm/include/asm/kvm.h b/arch/arm/include/asm/kvm.h index 6513059..b928a24 100644 --- a/arch/arm/include/asm/kvm.h +++ b/arch/arm/include/asm/kvm.h @@ -94,4 +94,35 @@ struct kvm_sync_regs { struct kvm_arch_memory_slot { }; +/* Based on x86, but we use KVM_GET_VCPU_MSR_INDEX_LIST. */ +struct kvm_msr_entry { + __u32 index; + __u32 reserved; + __u64 data; +}; + +/* for KVM_GET_MSRS and KVM_SET_MSRS */ +struct kvm_msrs { + __u32 nmsrs; /* number of msrs in entries */ + __u32 pad; + + struct kvm_msr_entry entries[0]; +}; + +/* for KVM_VCPU_GET_MSR_INDEX_LIST */ +struct kvm_msr_list { + __u32 nmsrs; /* number of msrs in entries */ + __u32 indices[0]; +}; + +/* If you need to interpret the index values, here's the key. */ +#define KVM_ARM_MSR_COPROC_MASK 0xFFFF0000 +#define KVM_ARM_MSR_64_BIT_MASK 0x00008000 +#define KVM_ARM_MSR_64_OPC1_MASK 0x000000F0 +#define KVM_ARM_MSR_64_CRM_MASK 0x0000000F +#define KVM_ARM_MSR_32_CRM_MASK 0x0000000F +#define KVM_ARM_MSR_32_OPC2_MASK 0x00000070 +#define KVM_ARM_MSR_32_CRN_MASK 0x00000780 +#define KVM_ARM_MSR_32_OPC1_MASK 0x00003800 + #endif /* __ARM_KVM_H__ */ diff --git a/arch/arm/include/asm/kvm_coproc.h b/arch/arm/include/asm/kvm_coproc.h index 06711d5..008a974 100644 --- a/arch/arm/include/asm/kvm_coproc.h +++ b/arch/arm/include/asm/kvm_coproc.h @@ -25,5 +25,12 @@ int kvm_handle_cp14_load_store(struct kvm_vcpu *vcpu, struct kvm_run *run); int kvm_handle_cp14_access(struct kvm_vcpu *vcpu, struct kvm_run *run); int kvm_handle_cp15_32(struct kvm_vcpu *vcpu, struct kvm_run *run); int kvm_handle_cp15_64(struct kvm_vcpu *vcpu, struct kvm_run *run); + +int kvm_arm_get_msrs(struct kvm_vcpu *vcpu, + struct kvm_msr_entry __user *entries, u32 num); +int kvm_arm_set_msrs(struct kvm_vcpu *vcpu, + struct kvm_msr_entry __user *entries, u32 num); +unsigned long kvm_arm_num_guest_msrs(struct kvm_vcpu *vcpu); +int kvm_arm_copy_msrindices(struct kvm_vcpu *vcpu, u32 __user *uindices); void kvm_coproc_table_init(void); #endif /* __ARM_KVM_COPROC_H__ */ diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c index 19c1f2d..cd1905f 100644 --- a/arch/arm/kvm/arm.c +++ b/arch/arm/kvm/arm.c @@ -648,6 +648,35 @@ long kvm_arch_vcpu_ioctl(struct file *filp, return kvm_vcpu_set_target(vcpu, &init); } + case KVM_VCPU_GET_MSR_INDEX_LIST: { + struct kvm_msr_list __user *user_msr_list = argp; + struct kvm_msr_list msr_list; + unsigned n; + + if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list)) + return -EFAULT; + n = msr_list.nmsrs; + msr_list.nmsrs = kvm_arm_num_guest_msrs(vcpu); + if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list)) + return -EFAULT; + if (n < msr_list.nmsrs) + return -E2BIG; + return kvm_arm_copy_msrindices(vcpu, user_msr_list->indices); + } + case KVM_GET_MSRS: { + struct kvm_msrs msrs; + struct kvm_msrs __user *umsrs = argp; + if (copy_from_user(&msrs, umsrs, sizeof(msrs)) != 0) + return -EFAULT; + return kvm_arm_get_msrs(vcpu, umsrs->entries, msrs.nmsrs); + } + case KVM_SET_MSRS: { + struct kvm_msrs msrs; + struct kvm_msrs __user *umsrs = argp; + if (copy_from_user(&msrs, umsrs, sizeof(msrs)) != 0) + return -EFAULT; + return kvm_arm_set_msrs(vcpu, umsrs->entries, msrs.nmsrs); + } default: return -EINVAL; } diff --git a/arch/arm/kvm/coproc.c b/arch/arm/kvm/coproc.c index ac00129..462f66c 100644 --- a/arch/arm/kvm/coproc.c +++ b/arch/arm/kvm/coproc.c @@ -16,6 +16,7 @@ * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include <linux/mm.h> +#include <linux/uaccess.h> #include <asm/kvm_arm.h> #include <asm/kvm_host.h> #include <asm/kvm_emulate.h> @@ -573,8 +574,157 @@ int kvm_handle_cp15_32(struct kvm_vcpu *vcpu, struct kvm_run *run) return emulate_cp15(vcpu, ¶ms); } +/****************************************************************************** + * Userspace API + *****************************************************************************/ + +/* Given a simple mask, get those bits. */ +static inline u32 get_bits(u32 index, u32 mask) +{ + return (index & mask) >> (ffs(mask) - 1); +} + +static void index_to_params(u32 index, struct coproc_params *params) +{ + if (get_bits(index, KVM_ARM_MSR_64_BIT_MASK)) { + params->is_64bit = true; + params->CRm = get_bits(index, KVM_ARM_MSR_64_CRM_MASK); + params->Op1 = get_bits(index, KVM_ARM_MSR_64_OPC1_MASK); + params->Op2 = 0; + params->CRn = 0; + } else { + params->is_64bit = false; + params->CRn = get_bits(index, KVM_ARM_MSR_32_CRN_MASK); + params->CRm = get_bits(index, KVM_ARM_MSR_32_CRM_MASK); + params->Op1 = get_bits(index, KVM_ARM_MSR_32_OPC1_MASK); + params->Op2 = get_bits(index, KVM_ARM_MSR_32_OPC2_MASK); + } +} + +/* Decode an index value, and find the cp15 coproc_reg entry. */ +static const struct coproc_reg *index_to_coproc_reg(struct kvm_vcpu *vcpu, + u32 index) +{ + size_t num; + const struct coproc_reg *table, *r; + struct coproc_params params; + + /* We only do cp15 for now. */ + if (get_bits(index, KVM_ARM_MSR_COPROC_MASK != 15)) + return NULL; + + index_to_params(index, ¶ms); + + table = get_target_table(vcpu->arch.target, &num); + r = find_reg(¶ms, table, num); + if (!r) + r = find_reg(¶ms, cp15_regs, ARRAY_SIZE(cp15_regs)); + + /* Not saved in the cp15 array? */ + if (r && !r->reg) + r = NULL; + + return r; +} + +static int get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *val) +{ + const struct coproc_reg *r; + + r = index_to_coproc_reg(vcpu, index); + if (!r) + return -ENOENT; + + *val = vcpu->arch.cp15[r->reg]; + if (r->is_64) + *val |= ((u64)vcpu->arch.cp15[r->reg+1]) << 32; + return 0; +} + +static int set_msr(struct kvm_vcpu *vcpu, u32 index, u64 val) +{ + const struct coproc_reg *r; + + r = index_to_coproc_reg(vcpu, index); + if (!r) + return -ENOENT; + + vcpu->arch.cp15[r->reg] = val; + if (r->is_64) + vcpu->arch.cp15[r->reg+1] = (val >> 32); + return 0; +} + +/* Return user adddress to get/set value from. */ +static u64 __user *get_umsr(struct kvm_msr_entry __user *uentry, u32 *idx) +{ + struct kvm_msr_entry entry; + + if (copy_from_user(&entry, uentry, sizeof(entry))) + return NULL; + *idx = entry.index; + return &uentry->data; +} + +/** + * kvm_arm_get_msrs - copy one or more special registers to userspace. + * @vcpu: the vcpu + * @entries: the array of entries + * @num: the number of entries + */ +int kvm_arm_get_msrs(struct kvm_vcpu *vcpu, + struct kvm_msr_entry __user *entries, u32 num) +{ + u32 i, index; + u64 val; + u64 __user *uval; + int ret; + + for (i = 0; i < num; i++) { + uval = get_umsr(&entries[i], &index); + if (!uval) + return -EFAULT; + if ((ret = get_msr(vcpu, index, &val)) != 0) + return ret; + if (put_user(val, uval)) + return -EFAULT; + } + return 0; +} + +/** + * kvm_arm_set_msrs - copy one or more special registers from userspace. + * @vcpu: the vcpu + * @entries: the array of entries + * @num: the number of entries + */ +int kvm_arm_set_msrs(struct kvm_vcpu *vcpu, + struct kvm_msr_entry __user *entries, u32 num) +{ + u32 i, index; + u64 val; + u64 __user *uval; + int ret; + + for (i = 0; i < num; i++) { + uval = get_umsr(&entries[i], &index); + if (!uval) + return -EFAULT; + if (copy_from_user(&val, uval, sizeof(val)) != 0) + return -EFAULT; + if ((ret = set_msr(vcpu, index, val)) != 0) + return ret; + } + return 0; +} + static int cmp_reg(const struct coproc_reg *i1, const struct coproc_reg *i2) { + BUG_ON(i1 == i2); + if (!i1) + return 1; + else if (!i2) + return -1; if (i1->CRn != i2->CRn) return i1->CRn - i2->CRn; if (i1->CRm != i2->CRm) @@ -584,6 +734,107 @@ static int cmp_reg(const struct coproc_reg *i1, const struct coproc_reg *i2) return i1->Op2 - i2->Op2; } +/* Puts in the position indicated by mask (assumes val fits in mask) */ +static inline u32 set_bits(u32 val, u32 mask) +{ + return val << (ffs(mask)-1); +} + +static u32 cp15_to_index(const struct coproc_reg *reg) +{ + u32 val = set_bits(15, KVM_ARM_MSR_COPROC_MASK); + if (reg->is_64) { + val |= set_bits(1, KVM_ARM_MSR_64_BIT_MASK); + val |= set_bits(reg->Op1, KVM_ARM_MSR_64_OPC1_MASK); + val |= set_bits(reg->CRm, KVM_ARM_MSR_64_CRM_MASK); + } else { + val |= set_bits(reg->Op1, KVM_ARM_MSR_32_OPC1_MASK); + val |= set_bits(reg->Op2, KVM_ARM_MSR_32_OPC2_MASK); + val |= set_bits(reg->CRm, KVM_ARM_MSR_32_CRM_MASK); + val |= set_bits(reg->CRn, KVM_ARM_MSR_32_CRN_MASK); + } + return val; +} + +static int copy_reg_to_user(const struct coproc_reg *reg, u32 __user **uind) +{ + if (!*uind) + return 0; + + if (put_user(cp15_to_index(reg), *uind)) + return -EFAULT; + + (*uind)++; + return 0; +} + +/* Assumed ordered tables, see kvm_coproc_table_init. */ +static int walk_msrs(struct kvm_vcpu *vcpu, u32 __user *uind) +{ + const struct coproc_reg *i1, *i2, *end1, *end2; + unsigned int total = 0; + size_t num; + + /* We check for duplicates here, to allow arch-specific overrides. */ + i1 = get_target_table(vcpu->arch.target, &num); + end1 = i1 + num; + i2 = cp15_regs; + end2 = cp15_regs + ARRAY_SIZE(cp15_regs); + + BUG_ON(i1 == end1 || i2 == end2); + + /* Walk carefully, as both tables may refer to the same register. */ + while (i1 && i2) { + int cmp = cmp_reg(i1, i2); + /* target-specific overrides generic entry. */ + if (cmp <= 0) { + /* Ignore registers we trap but don't save. */ + if (i1->reg) { + if (!copy_reg_to_user(i1, &uind)) + return -EFAULT; + total++; + } + } else { + /* Ignore registers we trap but don't save. */ + if (i2->reg) { + if (!copy_reg_to_user(i2, &uind)) + return -EFAULT; + total++; + } + } + + if (cmp <= 0 && ++i1 == end1) + i1 = NULL; + if (cmp >= 0 && ++i2 == end2) + i2 = NULL; + } + return total; +} + +/** + * kvm_arm_num_guest_msrs - how many registers do we present via KVM_GET_MSR + * + * This is for special registers, particularly cp15. + */ +unsigned long kvm_arm_num_guest_msrs(struct kvm_vcpu *vcpu) +{ + return walk_msrs(vcpu, (u32 __user *)NULL); +} + +/** + * kvm_arm_copy_msrindices - copy a series of coprocessor registers. + * + * This is for special registers, particularly cp15. + */ +int kvm_arm_copy_msrindices(struct kvm_vcpu *vcpu, u32 __user *uindices) +{ + /* NULL is a special value to walk_msrs. */ + if (uindices == (u32 __user *)NULL) + return -EFAULT; + + return walk_msrs(vcpu, uindices); +} + void kvm_coproc_table_init(void) { unsigned int i; diff --git a/include/linux/kvm.h b/include/linux/kvm.h index c9b2556..209b432 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h @@ -906,6 +906,7 @@ struct kvm_s390_ucas_mapping { /* VM is being stopped by host */ #define KVM_KVMCLOCK_CTRL _IO(KVMIO, 0xad) #define KVM_ARM_VCPU_INIT _IOW(KVMIO, 0xae, struct kvm_vcpu_init) +#define KVM_VCPU_GET_MSR_INDEX_LIST _IOWR(KVMIO, 0xaf, struct kvm_msr_list) #define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0) #define KVM_DEV_ASSIGN_PCI_2_3 (1 << 1) _______________________________________________ kvmarm mailing list kvmarm@xxxxxxxxxxxxxxxxxxxxx https://lists.cs.columbia.edu/cucslists/listinfo/kvmarm