FreeBSD/src 408b5f8 (r316990). MAINTAINERS

Due to time constraints remove myself as a vmm(4) maintainer.
DeltaFile
+1-1MAINTAINERS
+1-11 files

FreeBSD/src 62145ff (r285619)sys/dev/uart uart_core.c

If uart interrupts are not functioning then schedule the callout to do the
polling at device attach time [1].

Add tunables 'debug.uart_force_poll' and 'debug.uart_poll_freq' to control
uart polling.

Submitted by:   Aleksey Kuleshov (rndfax at yandex.ru) [1]
DeltaFile
+10-2sys/dev/uart/uart_core.c
+10-21 files

FreeBSD/src 5e4f29c (r285218)lib/libvmmapi vmmapi.c, sys/amd64/vmm vmm_dev.c

Move the 'devmem' device nodes from /dev/vmm to /dev/vmm.io

Some external tools just do a 'ls /dev/vmm' to figure out the bhyve virtual
machines on the host. These tools break if the devmem device nodes also
appear in /dev/vmm.

Requested by:   grehan
DeltaFile
+1-1lib/libvmmapi/vmmapi.c
+1-1sys/amd64/vmm/vmm_dev.c
+2-22 files

FreeBSD/src ccfe4c3 (r285217)usr.sbin/bhyve uart_emul.c

Always assert DCD and DSR in bhyve's uart emulation.

The /etc/ttys entry for a serial console in FreeBSD/x86 is as follows:
ttyu0   "/usr/libexec/getty 3wire"      vt100   onifconsole secure

The initial terminal type passed to getty(8) is "3wire" which sets the
CLOCAL flag. However reset(1) clears this flag and any programs that try
to open the terminal will hang waiting for DCD to be asserted.

Fix this by always asserting DCD and DSR in the emulated uart.

The following discussion on virtualization@ has more details:
https://lists.freebsd.org/pipermail/freebsd-virtualization/2015-June/003666.html

Reported by: jmg
Discussed with: grehan
DeltaFile
+34-17usr.sbin/bhyve/uart_emul.c
+34-171 files

FreeBSD/src 981e672 (r285015)sys/amd64/vmm/amd svm.c svm_support.S

MFC r284712:
Restore the host's GS.base before returning from 'svm_launch()' so the Dtrace
FBT provider works with vmm.ko on AMD.
DeltaFile
+7-31sys/amd64/vmm/amd/svm.c
+12-1sys/amd64/vmm/amd/svm_support.S
+3-1sys/amd64/vmm/amd/svm.h
+2-0sys/amd64/vmm/amd/svm_genassym.c
+24-334 files

FreeBSD/src 1f08342 (r284900)sys/amd64/vmm vmm_instruction_emul.c vmm.c, sys/amd64/vmm/amd svm.c

MFC r282209:
Emulate the 'bit test' instruction.

MFC r282259:
Re-implement RTC current time calculation to eliminate the possibility of
losing time.

MFC r282281:
Advertise the MTRR feature via CPUID and emulate the minimal set of MTRR MSRs.

MFC r282284:
When an instruction cannot be decoded just return to userspace so bhyve(8)
can dump the instruction bytes.

MFC r282287:
Don't require <sys/cpuset.h> to be always included before <machine/vmm.h>.

MFC r282296:
Emulate MSR_SYSCFG which is accessed by Linux on AMD cpus when MTRRs are

    [90 lines not shown]
DeltaFile
+153-84sys/amd64/vmm/vmm_instruction_emul.c
+127-48sys/amd64/vmm/vmm.c
+77-74usr.sbin/bhyve/task_switch.c
+103-22sys/amd64/vmm/amd/svm.c
+58-16usr.sbin/bhyve/block_if.c
+44-11sys/amd64/vmm/x86.c
+562-25535 files not shown
+852-40641 files

FreeBSD/src 00ebaa8 (r284899)sys/amd64/vmm vmm_instruction_emul.c, sys/amd64/vmm/io vrtc.c ppt.c

MFC r279444:
Allow passthrough devices to be hinted.

MFC r279683:
When ICW1 is issued the edge sense circuit is reset which means that
following an initialization a low-to-high transistion is necesary to
generate an interrupt.

MFC r279925:
Add -p parameter to list PCI device to pass through to the guest.

MFC r281559:
Fix handling of BUS_PROBE_NOWILDCARD in 'device_probe_child()'.

MFC r280447:
When fetching an instruction in non-64bit mode, consider the value of the
code segment base address.

MFC r280725:

    [44 lines not shown]
DeltaFile
+214-72sys/amd64/vmm/vmm_instruction_emul.c
+85-28sys/amd64/vmm/io/vrtc.c
+49-38usr.sbin/bhyve/pci_emul.c
+45-33sys/amd64/vmm/io/ppt.c
+21-9usr.sbin/bhyve/bhyverun.c
+9-9usr.sbin/bhyvectl/bhyvectl.c
+423-18916 files not shown
+503-21322 files

FreeBSD/src ba2b1f8 (r284894)lib/libvmmapi vmmapi.c, sys/amd64/vmm vmm_instruction_emul.c vmm.c

MFC r276428:
Replace bhyve's minimal RTC emulation with a fully featured one in vmm.ko.

MFC r276432:
Initialize all fields of 'struct vm_exception exception' before passing it
to vm_inject_exception().

MFC r276763:
Clear blocking due to STI or MOV SS in the hypervisor when an instruction is
emulated or when the vcpu incurs an exception.

MFC r277149:
Clean up usage of 'struct vm_exception' to only to communicate information
from userspace to vmm.ko when injecting an exception.

MFC r277168:
Fix typo (missing comma).

MFC r277309:

    [33 lines not shown]
DeltaFile
+952-0sys/amd64/vmm/io/vrtc.c
+25-278usr.sbin/bhyve/rtc.c
+267-4sys/amd64/vmm/vmm_instruction_emul.c
+119-60sys/amd64/vmm/vmm.c
+82-29lib/libvmmapi/vmmapi.c
+85-4usr.sbin/bhyvectl/bhyvectl.c
+1,530-37524 files not shown
+1,875-56430 files

FreeBSD/src f429b90 (r284892)usr.sbin/bhyveload bhyveload.8

Fix issues detected by 'mandoc -Tlint bhyveload.8'

Pointed out by:         wblock
Differential Revision:  https://reviews.freebsd.org/D2762
DeltaFile
+1-1usr.sbin/bhyveload/bhyveload.8
+1-11 files

FreeBSD/src 90e528f (r284712)sys/amd64/vmm/amd svm.c svm_support.S

Restore the host's GS.base before returning from 'svm_launch()'.

Previously this was done by the caller of 'svm_launch()' after it returned.
This works fine as long as no code is executed in the interim that depends
on pcpu data.

The dtrace probe 'fbt:vmm:svm_launch:return' broke this assumption because
it calls 'dtrace_probe()' which in turn relies on pcpu data.

Reported by:    avg
MFC after:      1 week
DeltaFile
+7-31sys/amd64/vmm/amd/svm.c
+12-1sys/amd64/vmm/amd/svm_support.S
+3-1sys/amd64/vmm/amd/svm.h
+2-0sys/amd64/vmm/amd/svm_genassym.c
+24-334 files

FreeBSD/src 36e8356 (r284688)lib/libvmmapi vmmapi.c

Fix a regression in "movs" emulation after r284539. The regression was caused
due to a change in behavior of the 'vm_map_gpa()'.

Prior to r284539 if 'vm_map_gpa()' was called to map an address range in the
guest MMIO region then it would return NULL. This was used by the "movs"
emulation to detect if the 'src' or 'dst' operand was in MMIO space.

Post r284539 'vm_map_gpa()' started returning a non-NULL pointer even when
mapping the guest MMIO region.

Fix this by returning non-NULL only if [gaddr, gaddr+len) is entirely
within the 'lowmem' or 'highmem' regions and NULL otherwise.

Pointy hat to:  neel
Reviewed by:    grehan
Reported by:    tychon, Ben Perrault (ben.perrault at gmail.com)
MFC after:      1 week
DeltaFile
+17-8lib/libvmmapi/vmmapi.c
+17-81 files

FreeBSD/src 9b1aa8d (r284539)lib/libvmmapi vmmapi.c, sys/amd64/vmm vmm.c vmm_dev.c

Restructure memory allocation in bhyve to support "devmem".

devmem is used to represent MMIO devices like the boot ROM or a VESA framebuffer
where doing a trap-and-emulate for every access is impractical. devmem is a
hybrid of system memory (sysmem) and emulated device models.

devmem is mapped in the guest address space via nested page tables similar
to sysmem. However the address range where devmem is mapped may be changed
by the guest at runtime (e.g. by reprogramming a PCI BAR). Also devmem is
usually mapped RO or RW as compared to RWX mappings for sysmem.

Each devmem segment is named (e.g. "bootrom") and this name is used to
create a device node for the devmem segment (e.g. /dev/vmm/testvm.bootrom).
The device node supports mmap(2) and this decouples the host mapping of
devmem from its mapping in the guest address space (which can change).

Reviewed by:    tychon
Discussed with: grehan
Differential Revision:  https://reviews.freebsd.org/D2762
MFC after:      4 weeks
DeltaFile
+291-196sys/amd64/vmm/vmm.c
+346-52sys/amd64/vmm/vmm_dev.c
+265-61lib/libvmmapi/vmmapi.c
+89-22usr.sbin/bhyvectl/bhyvectl.c
+111-0usr.sbin/bhyve/bootrom.c
+79-14usr.sbin/bhyve/bhyverun.c
+1,181-34519 files not shown
+1,418-43225 files

FreeBSD/src 647c878 (r284046)sys/amd64/vmm vmm_instruction_emul.c

The 'verify_gla()' function is used to ensure that the effective address
after decoding the instruction matches the one provided by hardware.

Prior to r283293 'vie->num_valid' used to contain the actual length of
the instruction whereas now it contains the maximum instruction length
possible. This introduced a bug when calculating a RIP-relative base address.

Fix this by using 'vie->num_processed' rather than 'vie->num_valid' as the
length of the emulated instruction.

Reported and tested by: tychon
MFC after:      1 week
DeltaFile
+1-1sys/amd64/vmm/vmm_instruction_emul.c
+1-11 files

FreeBSD/src b14bd6a (r283973)sys/amd64/vmm/amd svm.c

Use tunable 'hw.vmm.svm.features' to disable specific SVM features even
though they might be available in hardware.

Use tunable 'hw.vmm.svm.num_asids' to limit the number of ASIDs used by
the hypervisor.

MFC after:      1 week
DeltaFile
+10-5sys/amd64/vmm/amd/svm.c
+10-51 files

FreeBSD/src 248e679 (r283657)sys/amd64/include vmm.h, sys/amd64/vmm vmm.c vmm_stat.h

Fix non-deterministic delays when accessing a vcpu that was in "running" or
"sleeping" state. This is done by forcing the vcpu to transition to "idle"
by returning to userspace with an exit code of VM_EXITCODE_REQIDLE.

MFC after:      2 weeks
DeltaFile
+92-22sys/amd64/vmm/vmm.c
+20-6sys/amd64/include/vmm.h
+13-1usr.sbin/bhyve/bhyverun.c
+9-3sys/amd64/vmm/intel/vmx.c
+9-3sys/amd64/vmm/amd/svm.c
+1-0sys/amd64/vmm/vmm_stat.h
+144-351 files not shown
+145-357 files

FreeBSD/src 47b9935 (r283308)sys/amd64/vmm vmm.c

Exceptions don't deliver an error code in real mode.

MFC after:      1 week
DeltaFile
+11-0sys/amd64/vmm/vmm.c
+11-01 files

FreeBSD/src f149ce5 (r283299)sys/amd64/vmm vmm_instruction_emul.c

Remove the verification of instruction length after instruction decode. The
check has been bogus since r273375.

MFC after:      1 week
DeltaFile
+0-16sys/amd64/vmm/vmm_instruction_emul.c
+0-161 files

FreeBSD/src 1c73ea3 (r283293)sys/amd64/vmm vmm.c, sys/amd64/vmm/intel vmx.c

Don't rely on the 'VM-exit instruction length' field in the VMCS to always
have an accurate length on an EPT violation. This is not needed by the
instruction decoding code because it also has to work with AMD/SVM that
does not provide a valid instruction length on a Nested Page Fault.

In collaboration with:  Leon Dang (ldang at nahannisys.com)
Discussed with:         grehan
MFC after:              1 week
DeltaFile
+10-13sys/amd64/vmm/vmm.c
+1-0sys/amd64/vmm/intel/vmx.c
+11-132 files

FreeBSD/src 4b083d8 (r283256)usr.sbin/bhyvectl bhyvectl.c

Add an option "--get-vmcs-exit-inst-length" to display the instruction length
of the instruction that caused the VM-exit.

MFC after:      1 week
DeltaFile
+12-1usr.sbin/bhyvectl/bhyvectl.c
+12-11 files

FreeBSD/src b32d190 (r283255)sys/amd64/vmm vmm_instruction_emul.c

Emulate the "CMP r/m, reg" instruction (opcode 39H).

Reported and tested by: Leon Dang (ldang at nahannisys.com)
MFC after:      1 week
DeltaFile
+22-6sys/amd64/vmm/vmm_instruction_emul.c
+22-61 files

FreeBSD/src 4e43c1e (r282788)usr.sbin/bhyve block_if.c bhyve.8

Allow configuration of the sector size advertised to the guest.

The default behavior is to infer the logical and physical sector sizes from
the block device backend. However older versions of Windows only work with
specific logical/physical combinations:
- Vista and Windows 7:  512/512
- Windows 7 SP1:        512/512 or 512/4096

For this reason allow the sector size to be specified using the following
block device option: sectorsize=logical[/physical]

Reported by:    Leon Dang (ldang at nahannisys.com)
Reviewed by:    grehan
MFC after:      2 weeks
DeltaFile
+58-16usr.sbin/bhyve/block_if.c
+11-10usr.sbin/bhyve/bhyve.8
+69-262 files

FreeBSD/src 1cba333 (r282595)usr.sbin/bhyve pci_ahci.c

Allow byte reads of AHCI registers.

This is needed to support Windows guests that use byte reads to access certain
AHCI registers (e.g. PxTFD.Status and PxTFD.Error).

Reviewed by:    grehan, mav
Reported by:    Leon Dang (ldang at nahannisys.com)
Differential Revision:  https://reviews.freebsd.org/D2469
MFC after:      2 weeks
DeltaFile
+9-4usr.sbin/bhyve/pci_ahci.c
+9-41 files

FreeBSD/src ede0403 (r282571)sys/amd64/include vmm.h

Check 'td_owepreempt' and yield the vcpu thread if it is set.

This is done explicitly because a vcpu thread can be in a critical section
for the entire time slice alloted to it. This in turn can delay the handling
of the 'td_owepreempt'.

Reviewed by:    jhb
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D2430
DeltaFile
+7-1sys/amd64/include/vmm.h
+7-11 files

FreeBSD/src 9c4d547 (r282558)lib/libvmmapi vmmapi.c, sys/amd64/include vmm_instruction_emul.h

Deprecate the 3-way return values from vm_gla2gpa() and vm_copy_setup().

Prior to this change both functions returned 0 for success, -1 for failure
and +1 to indicate that an exception was injected into the guest.

The numerical value of ERESTART also happens to be -1 so when these functions
returned -1 it had to be translated to a positive errno value to prevent the
VM_RUN ioctl from being inadvertently restarted. This made it easy to introduce
bugs when writing emulation code.

Fix this by adding an 'int *guest_fault' parameter and setting it to '1' if
an exception was delivered to the guest. The return value is 0 or EFAULT so
no additional translation is needed.

Reviewed by:    tychon
MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D2428
DeltaFile
+77-74usr.sbin/bhyve/task_switch.c
+64-59sys/amd64/vmm/vmm_instruction_emul.c
+11-23lib/libvmmapi/vmmapi.c
+10-13sys/amd64/vmm/vmm.c
+2-12sys/amd64/vmm/vmm_dev.c
+7-5sys/amd64/include/vmm_instruction_emul.h
+171-1863 files not shown
+188-1979 files

FreeBSD/src ea91ca9 (r282520)sys/amd64/vmm x86.c x86.h, sys/amd64/vmm/amd svm.c

Do a proper emulation of guest writes to MSR_EFER.
- Must-Be-Zero bits cannot be set.
- EFER_LME and EFER_LMA should respect the long mode consistency checks.
- EFER_NXE, EFER_FFXSR, EFER_TCE can be set if allowed by CPUID capabilities.
- Flag an error if guest tries to set EFER_LMSLE since bhyve doesn't enforce
  segment limits in 64-bit mode.

MFC after:      2 weeks
DeltaFile
+84-14sys/amd64/vmm/amd/svm.c
+31-0sys/amd64/vmm/x86.c
+13-0sys/amd64/vmm/x86.h
+128-143 files

FreeBSD/src 712bd51 (r282519)sys/x86/include specialreg.h

Add macros for AMD-specific bits in MSR_EFER: LMSLE, FFXSR and TCE.

AMDID_FFXSR is at bit 25 so correct its value to 0x02000000.

MFC after:      1 week
DeltaFile
+4-1sys/x86/include/specialreg.h
+4-11 files

FreeBSD/src 6a273d5 (r282407)sys/amd64/vmm vmm_instruction_emul.c

Emulate the 'CMP r/m8, imm8' instruction encountered when booting a Windows
Vista guest.

Reported by:    Leon Dang (ldang at nahannisys.com)
MFC after:      1 week
DeltaFile
+14-2sys/amd64/vmm/vmm_instruction_emul.c
+14-21 files

FreeBSD/src 3170808 (r282351)sys/amd64/vmm x86.c

Don't advertise the Intel SMX capability to the guest.

Reported by:    Leon Dang (ldang at nahannisys.com)
MFC after:      1 week
DeltaFile
+2-1sys/amd64/vmm/x86.c
+2-11 files

FreeBSD/src 1d29bfc (r282336)sys/amd64/vmm x86.c, sys/amd64/vmm/amd svm_msr.c

Emulate machine check related MSRs to allow guest OSes like Windows to boot.

Reported by:    Leon Dang (ldang at nahannisys.com)
MFC after:      2 weeks
DeltaFile
+11-8sys/amd64/vmm/x86.c
+7-0sys/amd64/vmm/intel/vmx_msr.c
+7-0sys/amd64/vmm/amd/svm_msr.c
+25-83 files

FreeBSD/src fd4e0d4 (r282335)usr.sbin/bhyve pci_emul.c

Advertise an additional memory BAR in the "dummy" device emulation.

This is useful for testing the MOVS emulation when both the source and
destination addresses are in the MMIO space.

MFC after:      1 week
DeltaFile
+23-15usr.sbin/bhyve/pci_emul.c
+23-151 files