VirtualBox

Changeset 21942 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Aug 3, 2009 2:39:00 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
50627
Message:

VMM: detect syscall usage on the host.

Location:
trunk/src/VBox/VMM
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp

    r21937 r21942  
    6161
    6262    /*
    63      * Check for sysenter if it's used.
     63     * Check for sysenter and syscall usage.
    6464     */
    6565    if (ASMHasCpuId())
    6666    {
     67        /*
     68         * SYSENTER/SYSEXIT
     69         *
     70         * Intel docs claim you should test both the flag and family, model &
     71         * stepping because some Pentium Pro CPUs have the SEP cpuid flag set,
     72         * but don't support it.  AMD CPUs may support this feature in legacy
     73         * mode, they've banned it from long mode.  Since we switch to 32-bit
     74         * mode when entering raw-mode context the feature would become
     75         * accessible again on AMD CPUs, so we have to check regardless of
     76         * host bitness.
     77         */
    6778        uint32_t u32CpuVersion;
    6879        uint32_t u32Dummy;
    69         uint32_t u32Features;
    70         ASMCpuId(1, &u32CpuVersion, &u32Dummy, &u32Dummy, &u32Features);
     80        uint32_t fFeatures;
     81        ASMCpuId(1, &u32CpuVersion, &u32Dummy, &u32Dummy, &fFeatures);
    7182        uint32_t u32Family   = u32CpuVersion >> 8;
    7283        uint32_t u32Model    = (u32CpuVersion >> 4) & 0xF;
    7384        uint32_t u32Stepping = u32CpuVersion & 0xF;
    74 
    75         /*
    76          * Intel docs claim you should test both the flag and family, model & stepping.
    77          * Some Pentium Pro cpus have the SEP cpuid flag set, but don't support it.
    78          */
    79         if (    (u32Features & X86_CPUID_FEATURE_EDX_SEP)
    80             && !(u32Family == 6 && u32Model < 3 && u32Stepping < 3))
     85        if (    (fFeatures & X86_CPUID_FEATURE_EDX_SEP)
     86            &&  (   u32Family   != 6    /* (> pentium pro) */
     87                 || u32Model    >= 3
     88                 || u32Stepping >= 3
     89                 || !ASMIsIntelCpu())
     90           )
    8191        {
    8292            /*
     
    91101        }
    92102
    93         /** @todo check for AMD and syscall!!!!!! */
     103        /*
     104         * SYSCALL/SYSRET
     105         *
     106         * This feature is indicated by the SEP bit returned in EDX by CPUID
     107         * function 0x80000001.  Intel CPUs only supports this feature in
     108         * long mode.  Since we're not running 64-bit guests in raw-mode there
     109         * are no issues with 32-bit intel hosts.
     110         */
     111        uint32_t cExt = 0;
     112        ASMCpuId(0x80000000, &cExt, &u32Dummy, &u32Dummy, &u32Dummy);
     113        if (    cExt >= 0x80000001
     114            &&  cExt <= 0x8000ffff)
     115        {
     116            uint32_t fExtFeaturesEDX = ASMCpuId_EDX(0x80000001);
     117            if (fExtFeaturesEDX & X86_CPUID_AMD_FEATURE_EDX_SEP)
     118            {
     119#ifdef RT_ARCH_X86
     120# ifdef VBOX_WITH_HYBRID_32BIT_KERNEL
     121                if (fExtFeaturesEDX & X86_CPUID_AMD_FEATURE_EDX_LONG_MODE)
     122# else
     123                if (!ASMIsIntelCpu())
     124# endif
     125#endif
     126                {
     127                    uint64_t fEfer = ASMRdMsr(MSR_K6_EFER);
     128                    if (fEfer & MSR_K6_EFER_SCE)
     129                    {
     130                        pVM->cpum.s.fHostUseFlags |= CPUM_USE_SYSCALL;
     131                        Log(("CPUMR0Init: host uses syscall\n"));
     132                    }
     133                }
     134            }
     135        }
    94136    }
    95137
  • trunk/src/VBox/VMM/VMMSwitcher.cpp

    r20864 r21942  
    558558
    559559            /*
    560              * Insert relative jump to specified target it SYSENTER isn't used by the host.
     560             * Insert relative jump to specified target it SYSCALL isn't used by the host.
    561561             */
    562562            case FIX_NO_SYSCALL_JMP:
     
    564564                uint32_t offTrg = *u.pu32++;
    565565                Assert(offTrg < pSwitcher->cbCode);
    566                 if (!CPUMIsHostUsingSysEnter(pVM))
     566                if (!CPUMIsHostUsingSysCall(pVM))
    567567                {
    568568                    *uSrc.pu8++ = 0xe9; /* jmp rel32 */
  • trunk/src/VBox/VMM/VMMSwitcher/PAEand32Bit.mac

    r18927 r21942  
    157157htg_no_sysenter:
    158158
     159    FIXUP FIX_NO_SYSCALL_JMP, 0, htg_no_syscall - NAME(Start) ; this will insert a jmp htg_no_syscall if host doesn't use syscall.
     160    ; clear MSR_K6_EFER_SCE.
     161    mov     ebx, edx                    ; save edx
     162    mov     ecx, MSR_K6_EFER
     163    rdmsr                               ; edx:eax <- MSR[ecx]
     164    and     eax, ~MSR_K6_EFER_SCE
     165    wrmsr
     166    mov     edx, ebx                    ; restore edx
     167    jmp short htg_no_syscall
     168
     169ALIGNCODE(16)
     170htg_no_syscall:
     171
    159172    ;; handle use flags.
    160173    mov     esi, [edx + CPUMCPU.fUseFlags] ; esi == use flags.
     
    216229    ; Store the hypervisor cr3 for later loading
    217230    mov     ebp, [edx + CPUMCPU.Hyper.cr3]
    218    
     231
    219232    ;;
    220233    ;; Load Intermediate memory context.
     
    381394    ; callees expect CPUM ptr
    382395    CPUM_FROM_CPUMCPU(edx)
    383    
     396
    384397%ifdef VBOX_WITH_STATISTICS
    385398    FIXUP FIX_GC_VM_OFF, 1, VM.StatSwitcherToGC
     
    420433    mov     eax, dr3
    421434    mov     [edx + CPUMCPU.Host.dr3], eax
    422    
     435
    423436    ; load hyper DR0-7
    424437    mov     ebx, [edx + CPUMCPU.Hyper.dr]
     
    864877gth_sysenter_no:
    865878
    866     ;; @todo AMD syscall
     879    FIXUP FIX_NO_SYSCALL_JMP, 0, gth_syscall_no - NAME(Start) ; this will insert a jmp gth_syscall_no if host doesn't use syscall.
     880    ; set MSR_K6_EFER_SCE.
     881    mov     ebx, edx                    ; save edx
     882    mov     ecx, MSR_K6_EFER
     883    rdmsr
     884    or      eax, MSR_K6_EFER_SCE
     885    wrmsr
     886    mov     edx, ebx                    ; restore edx
     887    jmp short gth_syscall_no
     888
     889ALIGNCODE(16)
     890gth_syscall_no:
    867891
    868892    ; Restore FPU if guest has used it.
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette