mmio.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * Copyright (C) 2012 - Virtual Open Systems and Columbia University
  3. * Author: Christoffer Dall <c.dall@virtualopensystems.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License, version 2, as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. */
  18. #include <linux/kvm_host.h>
  19. #include <asm/kvm_mmio.h>
  20. #include <asm/kvm_emulate.h>
  21. #include <trace/events/kvm.h>
  22. #include "trace.h"
  23. /**
  24. * kvm_handle_mmio_return -- Handle MMIO loads after user space emulation
  25. * @vcpu: The VCPU pointer
  26. * @run: The VCPU run struct containing the mmio data
  27. *
  28. * This should only be called after returning from userspace for MMIO load
  29. * emulation.
  30. */
  31. int kvm_handle_mmio_return(struct kvm_vcpu *vcpu, struct kvm_run *run)
  32. {
  33. unsigned long *dest;
  34. unsigned int len;
  35. int mask;
  36. if (!run->mmio.is_write) {
  37. dest = vcpu_reg(vcpu, vcpu->arch.mmio_decode.rt);
  38. *dest = 0;
  39. len = run->mmio.len;
  40. if (len > sizeof(unsigned long))
  41. return -EINVAL;
  42. memcpy(dest, run->mmio.data, len);
  43. trace_kvm_mmio(KVM_TRACE_MMIO_READ, len, run->mmio.phys_addr,
  44. *((u64 *)run->mmio.data));
  45. if (vcpu->arch.mmio_decode.sign_extend &&
  46. len < sizeof(unsigned long)) {
  47. mask = 1U << ((len * 8) - 1);
  48. *dest = (*dest ^ mask) - mask;
  49. }
  50. }
  51. return 0;
  52. }
  53. static int decode_hsr(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
  54. struct kvm_exit_mmio *mmio)
  55. {
  56. unsigned long rt;
  57. int len;
  58. bool is_write, sign_extend;
  59. if (kvm_vcpu_dabt_isextabt(vcpu)) {
  60. /* cache operation on I/O addr, tell guest unsupported */
  61. kvm_inject_dabt(vcpu, kvm_vcpu_get_hfar(vcpu));
  62. return 1;
  63. }
  64. if (kvm_vcpu_dabt_iss1tw(vcpu)) {
  65. /* page table accesses IO mem: tell guest to fix its TTBR */
  66. kvm_inject_dabt(vcpu, kvm_vcpu_get_hfar(vcpu));
  67. return 1;
  68. }
  69. len = kvm_vcpu_dabt_get_as(vcpu);
  70. if (unlikely(len < 0))
  71. return len;
  72. is_write = kvm_vcpu_dabt_iswrite(vcpu);
  73. sign_extend = kvm_vcpu_dabt_issext(vcpu);
  74. rt = kvm_vcpu_dabt_get_rd(vcpu);
  75. mmio->is_write = is_write;
  76. mmio->phys_addr = fault_ipa;
  77. mmio->len = len;
  78. vcpu->arch.mmio_decode.sign_extend = sign_extend;
  79. vcpu->arch.mmio_decode.rt = rt;
  80. /*
  81. * The MMIO instruction is emulated and should not be re-executed
  82. * in the guest.
  83. */
  84. kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
  85. return 0;
  86. }
  87. int io_mem_abort(struct kvm_vcpu *vcpu, struct kvm_run *run,
  88. phys_addr_t fault_ipa)
  89. {
  90. struct kvm_exit_mmio mmio;
  91. unsigned long rt;
  92. int ret;
  93. /*
  94. * Prepare MMIO operation. First stash it in a private
  95. * structure that we can use for in-kernel emulation. If the
  96. * kernel can't handle it, copy it into run->mmio and let user
  97. * space do its magic.
  98. */
  99. if (kvm_vcpu_dabt_isvalid(vcpu)) {
  100. ret = decode_hsr(vcpu, fault_ipa, &mmio);
  101. if (ret)
  102. return ret;
  103. } else {
  104. kvm_err("load/store instruction decoding not implemented\n");
  105. return -ENOSYS;
  106. }
  107. rt = vcpu->arch.mmio_decode.rt;
  108. trace_kvm_mmio((mmio.is_write) ? KVM_TRACE_MMIO_WRITE :
  109. KVM_TRACE_MMIO_READ_UNSATISFIED,
  110. mmio.len, fault_ipa,
  111. (mmio.is_write) ? *vcpu_reg(vcpu, rt) : 0);
  112. if (mmio.is_write)
  113. memcpy(mmio.data, vcpu_reg(vcpu, rt), mmio.len);
  114. if (vgic_handle_mmio(vcpu, run, &mmio))
  115. return 1;
  116. kvm_prepare_mmio(run, &mmio);
  117. return 0;
  118. }