svm_helper.c 26.7 KB
Newer Older
B
Blue Swirl 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  x86 SVM helpers
 *
 *  Copyright (c) 2003 Fabrice Bellard
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */

#include "cpu.h"
B
Blue Swirl 已提交
21
#include "cpu-all.h"
B
Blue Swirl 已提交
22 23
#include "helper.h"

B
Blue Swirl 已提交
24 25 26 27
#if !defined(CONFIG_USER_ONLY)
#include "softmmu_exec.h"
#endif /* !defined(CONFIG_USER_ONLY) */

B
Blue Swirl 已提交
28 29 30 31
/* Secure Virtual Machine helpers */

#if defined(CONFIG_USER_ONLY)

B
Blue Swirl 已提交
32
void helper_vmrun(CPUX86State *env, int aflag, int next_eip_addend)
B
Blue Swirl 已提交
33 34 35
{
}

B
Blue Swirl 已提交
36
void helper_vmmcall(CPUX86State *env)
B
Blue Swirl 已提交
37 38 39
{
}

B
Blue Swirl 已提交
40
void helper_vmload(CPUX86State *env, int aflag)
B
Blue Swirl 已提交
41 42 43
{
}

B
Blue Swirl 已提交
44
void helper_vmsave(CPUX86State *env, int aflag)
B
Blue Swirl 已提交
45 46 47
{
}

B
Blue Swirl 已提交
48
void helper_stgi(CPUX86State *env)
B
Blue Swirl 已提交
49 50 51
{
}

B
Blue Swirl 已提交
52
void helper_clgi(CPUX86State *env)
B
Blue Swirl 已提交
53 54 55
{
}

B
Blue Swirl 已提交
56
void helper_skinit(CPUX86State *env)
B
Blue Swirl 已提交
57 58 59
{
}

B
Blue Swirl 已提交
60
void helper_invlpga(CPUX86State *env, int aflag)
B
Blue Swirl 已提交
61 62 63
{
}

B
Blue Swirl 已提交
64
void helper_vmexit(CPUX86State *env, uint32_t exit_code, uint64_t exit_info_1)
B
Blue Swirl 已提交
65 66 67 68 69 70 71
{
}

void cpu_vmexit(CPUX86State *nenv, uint32_t exit_code, uint64_t exit_info_1)
{
}

B
Blue Swirl 已提交
72 73
void helper_svm_check_intercept_param(CPUX86State *env, uint32_t type,
                                      uint64_t param)
B
Blue Swirl 已提交
74 75 76 77 78 79 80 81
{
}

void cpu_svm_check_intercept_param(CPUX86State *env, uint32_t type,
                                   uint64_t param)
{
}

B
Blue Swirl 已提交
82
void helper_svm_check_io(CPUX86State *env, uint32_t port, uint32_t param,
B
Blue Swirl 已提交
83 84 85 86 87
                         uint32_t next_eip_addend)
{
}
#else

B
Blue Swirl 已提交
88
static inline void svm_save_seg(CPUX86State *env, target_phys_addr_t addr,
B
Blue Swirl 已提交
89 90 91 92 93 94 95 96 97 98 99 100
                                const SegmentCache *sc)
{
    stw_phys(addr + offsetof(struct vmcb_seg, selector),
             sc->selector);
    stq_phys(addr + offsetof(struct vmcb_seg, base),
             sc->base);
    stl_phys(addr + offsetof(struct vmcb_seg, limit),
             sc->limit);
    stw_phys(addr + offsetof(struct vmcb_seg, attrib),
             ((sc->flags >> 8) & 0xff) | ((sc->flags >> 12) & 0x0f00));
}

B
Blue Swirl 已提交
101 102
static inline void svm_load_seg(CPUX86State *env, target_phys_addr_t addr,
                                SegmentCache *sc)
B
Blue Swirl 已提交
103 104 105 106 107 108 109 110 111 112
{
    unsigned int flags;

    sc->selector = lduw_phys(addr + offsetof(struct vmcb_seg, selector));
    sc->base = ldq_phys(addr + offsetof(struct vmcb_seg, base));
    sc->limit = ldl_phys(addr + offsetof(struct vmcb_seg, limit));
    flags = lduw_phys(addr + offsetof(struct vmcb_seg, attrib));
    sc->flags = ((flags & 0xff) << 8) | ((flags & 0x0f00) << 12);
}

B
Blue Swirl 已提交
113 114
static inline void svm_load_seg_cache(CPUX86State *env, target_phys_addr_t addr,
                                      int seg_reg)
B
Blue Swirl 已提交
115 116 117
{
    SegmentCache sc1, *sc = &sc1;

B
Blue Swirl 已提交
118
    svm_load_seg(env, addr, sc);
B
Blue Swirl 已提交
119 120 121 122
    cpu_x86_load_seg_cache(env, seg_reg, sc->selector,
                           sc->base, sc->limit, sc->flags);
}

B
Blue Swirl 已提交
123
void helper_vmrun(CPUX86State *env, int aflag, int next_eip_addend)
B
Blue Swirl 已提交
124 125 126 127 128
{
    target_ulong addr;
    uint32_t event_inj;
    uint32_t int_ctl;

B
Blue Swirl 已提交
129
    cpu_svm_check_intercept_param(env, SVM_EXIT_VMRUN, 0);
B
Blue Swirl 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162

    if (aflag == 2) {
        addr = EAX;
    } else {
        addr = (uint32_t)EAX;
    }

    qemu_log_mask(CPU_LOG_TB_IN_ASM, "vmrun! " TARGET_FMT_lx "\n", addr);

    env->vm_vmcb = addr;

    /* save the current CPU state in the hsave page */
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.base),
             env->gdt.base);
    stl_phys(env->vm_hsave + offsetof(struct vmcb, save.gdtr.limit),
             env->gdt.limit);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.idtr.base),
             env->idt.base);
    stl_phys(env->vm_hsave + offsetof(struct vmcb, save.idtr.limit),
             env->idt.limit);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr0), env->cr[0]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr2), env->cr[2]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr3), env->cr[3]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.cr4), env->cr[4]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr6), env->dr[6]);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr7), env->dr[7]);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.efer), env->efer);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rflags),
             cpu_compute_eflags(env));

B
Blue Swirl 已提交
163
    svm_save_seg(env, env->vm_hsave + offsetof(struct vmcb, save.es),
B
Blue Swirl 已提交
164
                 &env->segs[R_ES]);
B
Blue Swirl 已提交
165
    svm_save_seg(env, env->vm_hsave + offsetof(struct vmcb, save.cs),
B
Blue Swirl 已提交
166
                 &env->segs[R_CS]);
B
Blue Swirl 已提交
167
    svm_save_seg(env, env->vm_hsave + offsetof(struct vmcb, save.ss),
B
Blue Swirl 已提交
168
                 &env->segs[R_SS]);
B
Blue Swirl 已提交
169
    svm_save_seg(env, env->vm_hsave + offsetof(struct vmcb, save.ds),
B
Blue Swirl 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
                 &env->segs[R_DS]);

    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rip),
             EIP + next_eip_addend);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rsp), ESP);
    stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rax), EAX);

    /* load the interception bitmaps so we do not need to access the
       vmcb in svm mode */
    env->intercept = ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                      control.intercept));
    env->intercept_cr_read = lduw_phys(env->vm_vmcb +
                                       offsetof(struct vmcb,
                                                control.intercept_cr_read));
    env->intercept_cr_write = lduw_phys(env->vm_vmcb +
                                        offsetof(struct vmcb,
                                                 control.intercept_cr_write));
    env->intercept_dr_read = lduw_phys(env->vm_vmcb +
                                       offsetof(struct vmcb,
                                                control.intercept_dr_read));
    env->intercept_dr_write = lduw_phys(env->vm_vmcb +
                                        offsetof(struct vmcb,
                                                 control.intercept_dr_write));
    env->intercept_exceptions = ldl_phys(env->vm_vmcb +
                                         offsetof(struct vmcb,
                                                  control.intercept_exceptions
                                                  ));

    /* enable intercepts */
    env->hflags |= HF_SVMI_MASK;

    env->tsc_offset = ldq_phys(env->vm_vmcb +
                               offsetof(struct vmcb, control.tsc_offset));

    env->gdt.base  = ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                      save.gdtr.base));
    env->gdt.limit = ldl_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                      save.gdtr.limit));

    env->idt.base  = ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                      save.idtr.base));
    env->idt.limit = ldl_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                      save.idtr.limit));

    /* clear exit_info_2 so we behave like the real hardware */
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_info_2), 0);

    cpu_x86_update_cr0(env, ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                             save.cr0)));
    cpu_x86_update_cr4(env, ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                             save.cr4)));
    cpu_x86_update_cr3(env, ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                             save.cr3)));
    env->cr[2] = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr2));
    int_ctl = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl));
    env->hflags2 &= ~(HF2_HIF_MASK | HF2_VINTR_MASK);
    if (int_ctl & V_INTR_MASKING_MASK) {
        env->v_tpr = int_ctl & V_TPR_MASK;
        env->hflags2 |= HF2_VINTR_MASK;
        if (env->eflags & IF_MASK) {
            env->hflags2 |= HF2_HIF_MASK;
        }
    }

    cpu_load_efer(env,
                  ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.efer)));
    env->eflags = 0;
    cpu_load_eflags(env, ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                          save.rflags)),
                    ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
    CC_OP = CC_OP_EFLAGS;

B
Blue Swirl 已提交
242 243 244 245 246 247 248 249
    svm_load_seg_cache(env, env->vm_vmcb + offsetof(struct vmcb, save.es),
                       R_ES);
    svm_load_seg_cache(env, env->vm_vmcb + offsetof(struct vmcb, save.cs),
                       R_CS);
    svm_load_seg_cache(env, env->vm_vmcb + offsetof(struct vmcb, save.ss),
                       R_SS);
    svm_load_seg_cache(env, env->vm_vmcb + offsetof(struct vmcb, save.ds),
                       R_DS);
B
Blue Swirl 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328

    EIP = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rip));
    env->eip = EIP;
    ESP = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rsp));
    EAX = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rax));
    env->dr[7] = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr7));
    env->dr[6] = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr6));
    cpu_x86_set_cpl(env, ldub_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                           save.cpl)));

    /* FIXME: guest state consistency checks */

    switch (ldub_phys(env->vm_vmcb + offsetof(struct vmcb, control.tlb_ctl))) {
    case TLB_CONTROL_DO_NOTHING:
        break;
    case TLB_CONTROL_FLUSH_ALL_ASID:
        /* FIXME: this is not 100% correct but should work for now */
        tlb_flush(env, 1);
        break;
    }

    env->hflags2 |= HF2_GIF_MASK;

    if (int_ctl & V_IRQ_MASK) {
        env->interrupt_request |= CPU_INTERRUPT_VIRQ;
    }

    /* maybe we need to inject an event */
    event_inj = ldl_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                 control.event_inj));
    if (event_inj & SVM_EVTINJ_VALID) {
        uint8_t vector = event_inj & SVM_EVTINJ_VEC_MASK;
        uint16_t valid_err = event_inj & SVM_EVTINJ_VALID_ERR;
        uint32_t event_inj_err = ldl_phys(env->vm_vmcb +
                                          offsetof(struct vmcb,
                                                   control.event_inj_err));

        qemu_log_mask(CPU_LOG_TB_IN_ASM, "Injecting(%#hx): ", valid_err);
        /* FIXME: need to implement valid_err */
        switch (event_inj & SVM_EVTINJ_TYPE_MASK) {
        case SVM_EVTINJ_TYPE_INTR:
            env->exception_index = vector;
            env->error_code = event_inj_err;
            env->exception_is_int = 0;
            env->exception_next_eip = -1;
            qemu_log_mask(CPU_LOG_TB_IN_ASM, "INTR");
            /* XXX: is it always correct? */
            do_interrupt_x86_hardirq(env, vector, 1);
            break;
        case SVM_EVTINJ_TYPE_NMI:
            env->exception_index = EXCP02_NMI;
            env->error_code = event_inj_err;
            env->exception_is_int = 0;
            env->exception_next_eip = EIP;
            qemu_log_mask(CPU_LOG_TB_IN_ASM, "NMI");
            cpu_loop_exit(env);
            break;
        case SVM_EVTINJ_TYPE_EXEPT:
            env->exception_index = vector;
            env->error_code = event_inj_err;
            env->exception_is_int = 0;
            env->exception_next_eip = -1;
            qemu_log_mask(CPU_LOG_TB_IN_ASM, "EXEPT");
            cpu_loop_exit(env);
            break;
        case SVM_EVTINJ_TYPE_SOFT:
            env->exception_index = vector;
            env->error_code = event_inj_err;
            env->exception_is_int = 1;
            env->exception_next_eip = EIP;
            qemu_log_mask(CPU_LOG_TB_IN_ASM, "SOFT");
            cpu_loop_exit(env);
            break;
        }
        qemu_log_mask(CPU_LOG_TB_IN_ASM, " %#x %#x\n", env->exception_index,
                      env->error_code);
    }
}

B
Blue Swirl 已提交
329
void helper_vmmcall(CPUX86State *env)
B
Blue Swirl 已提交
330
{
B
Blue Swirl 已提交
331
    cpu_svm_check_intercept_param(env, SVM_EXIT_VMMCALL, 0);
B
Blue Swirl 已提交
332 333 334
    raise_exception(env, EXCP06_ILLOP);
}

B
Blue Swirl 已提交
335
void helper_vmload(CPUX86State *env, int aflag)
B
Blue Swirl 已提交
336 337 338
{
    target_ulong addr;

B
Blue Swirl 已提交
339
    cpu_svm_check_intercept_param(env, SVM_EXIT_VMLOAD, 0);
B
Blue Swirl 已提交
340 341 342 343 344 345 346 347 348

    if (aflag == 2) {
        addr = EAX;
    } else {
        addr = (uint32_t)EAX;
    }

    qemu_log_mask(CPU_LOG_TB_IN_ASM, "vmload! " TARGET_FMT_lx
                  "\nFS: %016" PRIx64 " | " TARGET_FMT_lx "\n",
B
Blue Swirl 已提交
349 350
                  addr, ldq_phys(addr + offsetof(struct vmcb,
                                                          save.fs.base)),
B
Blue Swirl 已提交
351 352
                  env->segs[R_FS].base);

B
Blue Swirl 已提交
353 354 355 356
    svm_load_seg_cache(env, addr + offsetof(struct vmcb, save.fs), R_FS);
    svm_load_seg_cache(env, addr + offsetof(struct vmcb, save.gs), R_GS);
    svm_load_seg(env, addr + offsetof(struct vmcb, save.tr), &env->tr);
    svm_load_seg(env, addr + offsetof(struct vmcb, save.ldtr), &env->ldt);
B
Blue Swirl 已提交
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372

#ifdef TARGET_X86_64
    env->kernelgsbase = ldq_phys(addr + offsetof(struct vmcb,
                                                 save.kernel_gs_base));
    env->lstar = ldq_phys(addr + offsetof(struct vmcb, save.lstar));
    env->cstar = ldq_phys(addr + offsetof(struct vmcb, save.cstar));
    env->fmask = ldq_phys(addr + offsetof(struct vmcb, save.sfmask));
#endif
    env->star = ldq_phys(addr + offsetof(struct vmcb, save.star));
    env->sysenter_cs = ldq_phys(addr + offsetof(struct vmcb, save.sysenter_cs));
    env->sysenter_esp = ldq_phys(addr + offsetof(struct vmcb,
                                                 save.sysenter_esp));
    env->sysenter_eip = ldq_phys(addr + offsetof(struct vmcb,
                                                 save.sysenter_eip));
}

B
Blue Swirl 已提交
373
void helper_vmsave(CPUX86State *env, int aflag)
B
Blue Swirl 已提交
374 375 376
{
    target_ulong addr;

B
Blue Swirl 已提交
377
    cpu_svm_check_intercept_param(env, SVM_EXIT_VMSAVE, 0);
B
Blue Swirl 已提交
378 379 380 381 382 383 384 385 386 387 388 389

    if (aflag == 2) {
        addr = EAX;
    } else {
        addr = (uint32_t)EAX;
    }

    qemu_log_mask(CPU_LOG_TB_IN_ASM, "vmsave! " TARGET_FMT_lx
                  "\nFS: %016" PRIx64 " | " TARGET_FMT_lx "\n",
                  addr, ldq_phys(addr + offsetof(struct vmcb, save.fs.base)),
                  env->segs[R_FS].base);

B
Blue Swirl 已提交
390
    svm_save_seg(env, addr + offsetof(struct vmcb, save.fs),
B
Blue Swirl 已提交
391
                 &env->segs[R_FS]);
B
Blue Swirl 已提交
392
    svm_save_seg(env, addr + offsetof(struct vmcb, save.gs),
B
Blue Swirl 已提交
393
                 &env->segs[R_GS]);
B
Blue Swirl 已提交
394
    svm_save_seg(env, addr + offsetof(struct vmcb, save.tr),
B
Blue Swirl 已提交
395
                 &env->tr);
B
Blue Swirl 已提交
396
    svm_save_seg(env, addr + offsetof(struct vmcb, save.ldtr),
B
Blue Swirl 已提交
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
                 &env->ldt);

#ifdef TARGET_X86_64
    stq_phys(addr + offsetof(struct vmcb, save.kernel_gs_base),
             env->kernelgsbase);
    stq_phys(addr + offsetof(struct vmcb, save.lstar), env->lstar);
    stq_phys(addr + offsetof(struct vmcb, save.cstar), env->cstar);
    stq_phys(addr + offsetof(struct vmcb, save.sfmask), env->fmask);
#endif
    stq_phys(addr + offsetof(struct vmcb, save.star), env->star);
    stq_phys(addr + offsetof(struct vmcb, save.sysenter_cs), env->sysenter_cs);
    stq_phys(addr + offsetof(struct vmcb, save.sysenter_esp),
             env->sysenter_esp);
    stq_phys(addr + offsetof(struct vmcb, save.sysenter_eip),
             env->sysenter_eip);
}

B
Blue Swirl 已提交
414
void helper_stgi(CPUX86State *env)
B
Blue Swirl 已提交
415
{
B
Blue Swirl 已提交
416
    cpu_svm_check_intercept_param(env, SVM_EXIT_STGI, 0);
B
Blue Swirl 已提交
417 418 419
    env->hflags2 |= HF2_GIF_MASK;
}

B
Blue Swirl 已提交
420
void helper_clgi(CPUX86State *env)
B
Blue Swirl 已提交
421
{
B
Blue Swirl 已提交
422
    cpu_svm_check_intercept_param(env, SVM_EXIT_CLGI, 0);
B
Blue Swirl 已提交
423 424 425
    env->hflags2 &= ~HF2_GIF_MASK;
}

B
Blue Swirl 已提交
426
void helper_skinit(CPUX86State *env)
B
Blue Swirl 已提交
427
{
B
Blue Swirl 已提交
428
    cpu_svm_check_intercept_param(env, SVM_EXIT_SKINIT, 0);
B
Blue Swirl 已提交
429 430 431 432
    /* XXX: not implemented */
    raise_exception(env, EXCP06_ILLOP);
}

B
Blue Swirl 已提交
433
void helper_invlpga(CPUX86State *env, int aflag)
B
Blue Swirl 已提交
434 435 436
{
    target_ulong addr;

B
Blue Swirl 已提交
437
    cpu_svm_check_intercept_param(env, SVM_EXIT_INVLPGA, 0);
B
Blue Swirl 已提交
438 439 440 441 442 443 444 445 446 447 448 449

    if (aflag == 2) {
        addr = EAX;
    } else {
        addr = (uint32_t)EAX;
    }

    /* XXX: could use the ASID to see if it is needed to do the
       flush */
    tlb_flush_page(env, addr);
}

B
Blue Swirl 已提交
450 451
void helper_svm_check_intercept_param(CPUX86State *env, uint32_t type,
                                      uint64_t param)
B
Blue Swirl 已提交
452 453 454 455 456 457 458
{
    if (likely(!(env->hflags & HF_SVMI_MASK))) {
        return;
    }
    switch (type) {
    case SVM_EXIT_READ_CR0 ... SVM_EXIT_READ_CR0 + 8:
        if (env->intercept_cr_read & (1 << (type - SVM_EXIT_READ_CR0))) {
B
Blue Swirl 已提交
459
            helper_vmexit(env, type, param);
B
Blue Swirl 已提交
460 461 462 463
        }
        break;
    case SVM_EXIT_WRITE_CR0 ... SVM_EXIT_WRITE_CR0 + 8:
        if (env->intercept_cr_write & (1 << (type - SVM_EXIT_WRITE_CR0))) {
B
Blue Swirl 已提交
464
            helper_vmexit(env, type, param);
B
Blue Swirl 已提交
465 466 467 468
        }
        break;
    case SVM_EXIT_READ_DR0 ... SVM_EXIT_READ_DR0 + 7:
        if (env->intercept_dr_read & (1 << (type - SVM_EXIT_READ_DR0))) {
B
Blue Swirl 已提交
469
            helper_vmexit(env, type, param);
B
Blue Swirl 已提交
470 471 472 473
        }
        break;
    case SVM_EXIT_WRITE_DR0 ... SVM_EXIT_WRITE_DR0 + 7:
        if (env->intercept_dr_write & (1 << (type - SVM_EXIT_WRITE_DR0))) {
B
Blue Swirl 已提交
474
            helper_vmexit(env, type, param);
B
Blue Swirl 已提交
475 476 477 478
        }
        break;
    case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 31:
        if (env->intercept_exceptions & (1 << (type - SVM_EXIT_EXCP_BASE))) {
B
Blue Swirl 已提交
479
            helper_vmexit(env, type, param);
B
Blue Swirl 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
        }
        break;
    case SVM_EXIT_MSR:
        if (env->intercept & (1ULL << (SVM_EXIT_MSR - SVM_EXIT_INTR))) {
            /* FIXME: this should be read in at vmrun (faster this way?) */
            uint64_t addr = ldq_phys(env->vm_vmcb +
                                     offsetof(struct vmcb,
                                              control.msrpm_base_pa));
            uint32_t t0, t1;

            switch ((uint32_t)ECX) {
            case 0 ... 0x1fff:
                t0 = (ECX * 2) % 8;
                t1 = (ECX * 2) / 8;
                break;
            case 0xc0000000 ... 0xc0001fff:
                t0 = (8192 + ECX - 0xc0000000) * 2;
                t1 = (t0 / 8);
                t0 %= 8;
                break;
            case 0xc0010000 ... 0xc0011fff:
                t0 = (16384 + ECX - 0xc0010000) * 2;
                t1 = (t0 / 8);
                t0 %= 8;
                break;
            default:
B
Blue Swirl 已提交
506
                helper_vmexit(env, type, param);
B
Blue Swirl 已提交
507 508 509 510 511
                t0 = 0;
                t1 = 0;
                break;
            }
            if (ldub_phys(addr + t1) & ((1 << param) << t0)) {
B
Blue Swirl 已提交
512
                helper_vmexit(env, type, param);
B
Blue Swirl 已提交
513 514 515 516 517
            }
        }
        break;
    default:
        if (env->intercept & (1ULL << (type - SVM_EXIT_INTR))) {
B
Blue Swirl 已提交
518
            helper_vmexit(env, type, param);
B
Blue Swirl 已提交
519 520 521 522 523
        }
        break;
    }
}

B
Blue Swirl 已提交
524
void cpu_svm_check_intercept_param(CPUX86State *env, uint32_t type,
B
Blue Swirl 已提交
525 526
                                   uint64_t param)
{
B
Blue Swirl 已提交
527
    helper_svm_check_intercept_param(env, type, param);
B
Blue Swirl 已提交
528 529
}

B
Blue Swirl 已提交
530
void helper_svm_check_io(CPUX86State *env, uint32_t port, uint32_t param,
B
Blue Swirl 已提交
531 532 533 534 535 536 537 538 539 540 541 542
                         uint32_t next_eip_addend)
{
    if (env->intercept & (1ULL << (SVM_EXIT_IOIO - SVM_EXIT_INTR))) {
        /* FIXME: this should be read in at vmrun (faster this way?) */
        uint64_t addr = ldq_phys(env->vm_vmcb +
                                 offsetof(struct vmcb, control.iopm_base_pa));
        uint16_t mask = (1 << ((param >> 4) & 7)) - 1;

        if (lduw_phys(addr + port / 8) & (mask << (port & 7))) {
            /* next EIP */
            stq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_info_2),
                     env->eip + next_eip_addend);
B
Blue Swirl 已提交
543
            helper_vmexit(env, SVM_EXIT_IOIO, param | (port << 16));
B
Blue Swirl 已提交
544 545 546 547 548
        }
    }
}

/* Note: currently only 32 bits of exit_code are used */
B
Blue Swirl 已提交
549
void helper_vmexit(CPUX86State *env, uint32_t exit_code, uint64_t exit_info_1)
B
Blue Swirl 已提交
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
{
    uint32_t int_ctl;

    qemu_log_mask(CPU_LOG_TB_IN_ASM, "vmexit(%08x, %016" PRIx64 ", %016"
                  PRIx64 ", " TARGET_FMT_lx ")!\n",
                  exit_code, exit_info_1,
                  ldq_phys(env->vm_vmcb + offsetof(struct vmcb,
                                                   control.exit_info_2)),
                  EIP);

    if (env->hflags & HF_INHIBIT_IRQ_MASK) {
        stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_state),
                 SVM_INTERRUPT_SHADOW_MASK);
        env->hflags &= ~HF_INHIBIT_IRQ_MASK;
    } else {
        stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_state), 0);
    }

    /* Save the VM state in the vmcb */
B
Blue Swirl 已提交
569
    svm_save_seg(env, env->vm_vmcb + offsetof(struct vmcb, save.es),
B
Blue Swirl 已提交
570
                 &env->segs[R_ES]);
B
Blue Swirl 已提交
571
    svm_save_seg(env, env->vm_vmcb + offsetof(struct vmcb, save.cs),
B
Blue Swirl 已提交
572
                 &env->segs[R_CS]);
B
Blue Swirl 已提交
573
    svm_save_seg(env, env->vm_vmcb + offsetof(struct vmcb, save.ss),
B
Blue Swirl 已提交
574
                 &env->segs[R_SS]);
B
Blue Swirl 已提交
575
    svm_save_seg(env, env->vm_vmcb + offsetof(struct vmcb, save.ds),
B
Blue Swirl 已提交
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
                 &env->segs[R_DS]);

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.base),
             env->gdt.base);
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, save.gdtr.limit),
             env->gdt.limit);

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.idtr.base),
             env->idt.base);
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, save.idtr.limit),
             env->idt.limit);

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.efer), env->efer);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr0), env->cr[0]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr2), env->cr[2]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr3), env->cr[3]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.cr4), env->cr[4]);

    int_ctl = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl));
    int_ctl &= ~(V_TPR_MASK | V_IRQ_MASK);
    int_ctl |= env->v_tpr & V_TPR_MASK;
    if (env->interrupt_request & CPU_INTERRUPT_VIRQ) {
        int_ctl |= V_IRQ_MASK;
    }
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl), int_ctl);

    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rflags),
             cpu_compute_eflags(env));
B
Blue Swirl 已提交
604 605
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rip),
             env->eip);
B
Blue Swirl 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rsp), ESP);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rax), EAX);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr7), env->dr[7]);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.dr6), env->dr[6]);
    stb_phys(env->vm_vmcb + offsetof(struct vmcb, save.cpl),
             env->hflags & HF_CPL_MASK);

    /* Reload the host state from vm_hsave */
    env->hflags2 &= ~(HF2_HIF_MASK | HF2_VINTR_MASK);
    env->hflags &= ~HF_SVMI_MASK;
    env->intercept = 0;
    env->intercept_exceptions = 0;
    env->interrupt_request &= ~CPU_INTERRUPT_VIRQ;
    env->tsc_offset = 0;

    env->gdt.base  = ldq_phys(env->vm_hsave + offsetof(struct vmcb,
                                                       save.gdtr.base));
    env->gdt.limit = ldl_phys(env->vm_hsave + offsetof(struct vmcb,
                                                       save.gdtr.limit));

    env->idt.base  = ldq_phys(env->vm_hsave + offsetof(struct vmcb,
                                                       save.idtr.base));
    env->idt.limit = ldl_phys(env->vm_hsave + offsetof(struct vmcb,
                                                       save.idtr.limit));

    cpu_x86_update_cr0(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb,
                                                              save.cr0)) |
                       CR0_PE_MASK);
    cpu_x86_update_cr4(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb,
                                                              save.cr4)));
    cpu_x86_update_cr3(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb,
                                                              save.cr3)));
    /* we need to set the efer after the crs so the hidden flags get
       set properly */
    cpu_load_efer(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb,
                                                         save.efer)));
    env->eflags = 0;
    cpu_load_eflags(env, ldq_phys(env->vm_hsave + offsetof(struct vmcb,
                                                           save.rflags)),
                    ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
    CC_OP = CC_OP_EFLAGS;

B
Blue Swirl 已提交
648 649 650 651 652 653 654 655
    svm_load_seg_cache(env, env->vm_hsave + offsetof(struct vmcb, save.es),
                       R_ES);
    svm_load_seg_cache(env, env->vm_hsave + offsetof(struct vmcb, save.cs),
                       R_CS);
    svm_load_seg_cache(env, env->vm_hsave + offsetof(struct vmcb, save.ss),
                       R_SS);
    svm_load_seg_cache(env, env->vm_hsave + offsetof(struct vmcb, save.ds),
                       R_DS);
B
Blue Swirl 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709

    EIP = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rip));
    ESP = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rsp));
    EAX = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rax));

    env->dr[6] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr6));
    env->dr[7] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr7));

    /* other setups */
    cpu_x86_set_cpl(env, 0);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_code),
             exit_code);
    stq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_info_1),
             exit_info_1);

    stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_int_info),
             ldl_phys(env->vm_vmcb + offsetof(struct vmcb,
                                              control.event_inj)));
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_int_info_err),
             ldl_phys(env->vm_vmcb + offsetof(struct vmcb,
                                              control.event_inj_err)));
    stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.event_inj), 0);

    env->hflags2 &= ~HF2_GIF_MASK;
    /* FIXME: Resets the current ASID register to zero (host ASID). */

    /* Clears the V_IRQ and V_INTR_MASKING bits inside the processor. */

    /* Clears the TSC_OFFSET inside the processor. */

    /* If the host is in PAE mode, the processor reloads the host's PDPEs
       from the page table indicated the host's CR3. If the PDPEs contain
       illegal state, the processor causes a shutdown. */

    /* Forces CR0.PE = 1, RFLAGS.VM = 0. */
    env->cr[0] |= CR0_PE_MASK;
    env->eflags &= ~VM_MASK;

    /* Disables all breakpoints in the host DR7 register. */

    /* Checks the reloaded host state for consistency. */

    /* If the host's rIP reloaded by #VMEXIT is outside the limit of the
       host's code segment or non-canonical (in the case of long mode), a
       #GP fault is delivered inside the host. */

    /* remove any pending exception */
    env->exception_index = -1;
    env->error_code = 0;
    env->old_exception = -1;

    cpu_loop_exit(env);
}

B
Blue Swirl 已提交
710
void cpu_vmexit(CPUX86State *env, uint32_t exit_code, uint64_t exit_info_1)
B
Blue Swirl 已提交
711
{
B
Blue Swirl 已提交
712
    helper_vmexit(env, exit_code, exit_info_1);
B
Blue Swirl 已提交
713 714 715
}

#endif