~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/kvm/lib/x86_64/ucall.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * ucall support. A ucall is a "hypercall to userspace".
  4  *
  5  * Copyright (C) 2018, Red Hat, Inc.
  6  */
  7 #include "kvm_util.h"
  8 
  9 #define UCALL_PIO_PORT ((uint16_t)0x1000)
 10 
 11 void ucall_arch_do_ucall(vm_vaddr_t uc)
 12 {
 13         /*
 14          * FIXME: Revert this hack (the entire commit that added it) once nVMX
 15          * preserves L2 GPRs across a nested VM-Exit.  If a ucall from L2, e.g.
 16          * to do a GUEST_SYNC(), lands the vCPU in L1, any and all GPRs can be
 17          * clobbered by L1.  Save and restore non-volatile GPRs (clobbering RBP
 18          * in particular is problematic) along with RDX and RDI (which are
 19          * inputs), and clobber volatile GPRs. *sigh*
 20          */
 21 #define HORRIFIC_L2_UCALL_CLOBBER_HACK  \
 22         "rcx", "rsi", "r8", "r9", "r10", "r11"
 23 
 24         asm volatile("push %%rbp\n\t"
 25                      "push %%r15\n\t"
 26                      "push %%r14\n\t"
 27                      "push %%r13\n\t"
 28                      "push %%r12\n\t"
 29                      "push %%rbx\n\t"
 30                      "push %%rdx\n\t"
 31                      "push %%rdi\n\t"
 32                      "in %[port], %%al\n\t"
 33                      "pop %%rdi\n\t"
 34                      "pop %%rdx\n\t"
 35                      "pop %%rbx\n\t"
 36                      "pop %%r12\n\t"
 37                      "pop %%r13\n\t"
 38                      "pop %%r14\n\t"
 39                      "pop %%r15\n\t"
 40                      "pop %%rbp\n\t"
 41                 : : [port] "d" (UCALL_PIO_PORT), "D" (uc) : "rax", "memory",
 42                      HORRIFIC_L2_UCALL_CLOBBER_HACK);
 43 }
 44 
 45 void *ucall_arch_get_ucall(struct kvm_vcpu *vcpu)
 46 {
 47         struct kvm_run *run = vcpu->run;
 48 
 49         if (run->exit_reason == KVM_EXIT_IO && run->io.port == UCALL_PIO_PORT) {
 50                 struct kvm_regs regs;
 51 
 52                 vcpu_regs_get(vcpu, &regs);
 53                 return (void *)regs.rdi;
 54         }
 55         return NULL;
 56 }
 57 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php