Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:15.4:ARM
xen.11173
5b9784ad-x86-HVM-drop-hvm_fetch_from_guest_line...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 5b9784ad-x86-HVM-drop-hvm_fetch_from_guest_linear.patch of Package xen.11173
References: bsc#1094508 # Commit d9067986c93b14371056bd25507ac9606e86c962 # Date 2018-09-11 11:02:37 +0200 # Author Jan Beulich <jbeulich@suse.com> # Committer Jan Beulich <jbeulich@suse.com> x86/HVM: drop hvm_fetch_from_guest_linear() It can easily be expressed through hvm_copy_from_guest_linear(), and in two cases this even simplifies callers. Suggested-by: Paul Durrant <paul.durrant@citrix.com> Signed-off-by: Jan Beulich <jbeulich@suse.com> Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com> Tested-by: Olaf Hering <olaf@aepfle.de> Reviewed-by: Paul Durrant <paul.durrant@citrix.com> Index: xen-4.10.3-testing/xen/arch/x86/hvm/emulate.c =================================================================== --- xen-4.10.3-testing.orig/xen/arch/x86/hvm/emulate.c +++ xen-4.10.3-testing/xen/arch/x86/hvm/emulate.c @@ -1063,6 +1063,8 @@ static int __hvmemul_read( pfec |= PFEC_implicit; else if ( hvmemul_ctxt->seg_reg[x86_seg_ss].dpl == 3 ) pfec |= PFEC_user_mode; + if ( access_type == hvm_access_insn_fetch ) + pfec |= PFEC_insn_fetch; rc = hvmemul_virtual_to_linear( seg, offset, bytes, &reps, access_type, hvmemul_ctxt, &addr); @@ -1074,9 +1076,7 @@ static int __hvmemul_read( (vio->mmio_gla == (addr & PAGE_MASK)) ) return hvmemul_linear_mmio_read(addr, bytes, p_data, pfec, hvmemul_ctxt, 1); - rc = ((access_type == hvm_access_insn_fetch) ? - hvm_fetch_from_guest_linear(p_data, addr, bytes, pfec, &pfinfo) : - hvm_copy_from_guest_linear(p_data, addr, bytes, pfec, &pfinfo)); + rc = hvm_copy_from_guest_linear(p_data, addr, bytes, pfec, &pfinfo); switch ( rc ) { @@ -2363,9 +2363,10 @@ void hvm_emulate_init_per_insn( hvm_access_insn_fetch, &hvmemul_ctxt->seg_reg[x86_seg_cs], &addr) && - hvm_fetch_from_guest_linear(hvmemul_ctxt->insn_buf, addr, - sizeof(hvmemul_ctxt->insn_buf), - pfec, NULL) == HVMTRANS_okay) ? + hvm_copy_from_guest_linear(hvmemul_ctxt->insn_buf, addr, + sizeof(hvmemul_ctxt->insn_buf), + pfec | PFEC_insn_fetch, + NULL) == HVMTRANS_okay) ? sizeof(hvmemul_ctxt->insn_buf) : 0; } else Index: xen-4.10.3-testing/xen/arch/x86/hvm/hvm.c =================================================================== --- xen-4.10.3-testing.orig/xen/arch/x86/hvm/hvm.c +++ xen-4.10.3-testing/xen/arch/x86/hvm/hvm.c @@ -3304,15 +3304,6 @@ enum hvm_translation_result hvm_copy_fro PFEC_page_present | pfec, pfinfo); } -enum hvm_translation_result hvm_fetch_from_guest_linear( - void *buf, unsigned long addr, int size, uint32_t pfec, - pagefault_info_t *pfinfo) -{ - return __hvm_copy(buf, addr, size, current, - HVMCOPY_from_guest | HVMCOPY_linear, - PFEC_page_present | PFEC_insn_fetch | pfec, pfinfo); -} - unsigned long copy_to_user_hvm(void *to, const void *from, unsigned int len) { int rc; @@ -3744,16 +3735,16 @@ void hvm_ud_intercept(struct cpu_user_re if ( opt_hvm_fep ) { const struct segment_register *cs = &ctxt.seg_reg[x86_seg_cs]; - uint32_t walk = (ctxt.seg_reg[x86_seg_ss].dpl == 3) - ? PFEC_user_mode : 0; + uint32_t walk = ((ctxt.seg_reg[x86_seg_ss].dpl == 3) + ? PFEC_user_mode : 0) | PFEC_insn_fetch; unsigned long addr; char sig[5]; /* ud2; .ascii "xen" */ if ( hvm_virtual_to_linear_addr(x86_seg_cs, cs, regs->rip, sizeof(sig), hvm_access_insn_fetch, cs, &addr) && - (hvm_fetch_from_guest_linear(sig, addr, sizeof(sig), - walk, NULL) == HVMTRANS_okay) && + (hvm_copy_from_guest_linear(sig, addr, sizeof(sig), + walk, NULL) == HVMTRANS_okay) && (memcmp(sig, "\xf\xbxen", sizeof(sig)) == 0) ) { regs->rip += sizeof(sig); Index: xen-4.10.3-testing/xen/arch/x86/mm/shadow/common.c =================================================================== --- xen-4.10.3-testing.orig/xen/arch/x86/mm/shadow/common.c +++ xen-4.10.3-testing/xen/arch/x86/mm/shadow/common.c @@ -189,10 +189,10 @@ hvm_read(enum x86_segment seg, if ( rc || !bytes ) return rc; - if ( access_type == hvm_access_insn_fetch ) - rc = hvm_fetch_from_guest_linear(p_data, addr, bytes, 0, &pfinfo); - else - rc = hvm_copy_from_guest_linear(p_data, addr, bytes, 0, &pfinfo); + rc = hvm_copy_from_guest_linear(p_data, addr, bytes, + (access_type == hvm_access_insn_fetch + ? PFEC_insn_fetch : 0), + &pfinfo); switch ( rc ) { @@ -347,8 +347,9 @@ const struct x86_emulate_ops *shadow_ini (!hvm_translate_virtual_addr( x86_seg_cs, regs->rip, sizeof(sh_ctxt->insn_buf), hvm_access_insn_fetch, sh_ctxt, &addr) && - !hvm_fetch_from_guest_linear( - sh_ctxt->insn_buf, addr, sizeof(sh_ctxt->insn_buf), 0, NULL)) + !hvm_copy_from_guest_linear( + sh_ctxt->insn_buf, addr, sizeof(sh_ctxt->insn_buf), + PFEC_insn_fetch, NULL)) ? sizeof(sh_ctxt->insn_buf) : 0; return &hvm_shadow_emulator_ops; @@ -376,8 +377,9 @@ void shadow_continue_emulation(struct sh (!hvm_translate_virtual_addr( x86_seg_cs, regs->rip, sizeof(sh_ctxt->insn_buf), hvm_access_insn_fetch, sh_ctxt, &addr) && - !hvm_fetch_from_guest_linear( - sh_ctxt->insn_buf, addr, sizeof(sh_ctxt->insn_buf), 0, NULL)) + !hvm_copy_from_guest_linear( + sh_ctxt->insn_buf, addr, sizeof(sh_ctxt->insn_buf), + PFEC_insn_fetch, NULL)) ? sizeof(sh_ctxt->insn_buf) : 0; sh_ctxt->insn_buf_eip = regs->rip; } Index: xen-4.10.3-testing/xen/include/asm-x86/hvm/support.h =================================================================== --- xen-4.10.3-testing.orig/xen/include/asm-x86/hvm/support.h +++ xen-4.10.3-testing/xen/include/asm-x86/hvm/support.h @@ -100,9 +100,6 @@ enum hvm_translation_result hvm_copy_to_ enum hvm_translation_result hvm_copy_from_guest_linear( void *buf, unsigned long addr, int size, uint32_t pfec, pagefault_info_t *pfinfo); -enum hvm_translation_result hvm_fetch_from_guest_linear( - void *buf, unsigned long addr, int size, uint32_t pfec, - pagefault_info_t *pfinfo); /* * Get a reference on the page under an HVM physical or linear address. If
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor