Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Jun 2019 03:26:32 +0000
From:      bugzilla-noreply@freebsd.org
To:        virtualization@FreeBSD.org
Subject:   [Bug 238794] LAPIC register test failure with OpenBSD 6.5-snapshot guest
Message-ID:  <bug-238794-27103@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D238794

            Bug ID: 238794
           Summary: LAPIC register test failure with OpenBSD 6.5-snapshot
                    guest
           Product: Base System
           Version: 11.3-RELEASE
          Hardware: amd64
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: bhyve
          Assignee: virtualization@FreeBSD.org
          Reporter: jason@tubnor.net

OpenBSD has just imported LLVM 8.0 into -current and the way the compiler
builds code to test the LAPIC register has changed (though still valid
according to Intel documentation).

guenther@ from the OpenBSD project provided some insights based on informat=
ion
provided.  Below is an extract from the email thread:

> Below is output from bhyve.log:
>=20
> rdmsr to register 0xc80 on vcpu 0
> Failed to emulate instruction [0xf7 0x04 0x25 0x00 0xd3 0xd1 0x81 0x00 0x=
10
> 0x00 0x00 0x74 0x08 0xf3 0x90] at 0xffffffff817648f0

According to objdump -d, that's:
 f7 04 25 00 d3 d1 81    testl  $0x1000,0xffffffff81d1d300
 00 10 00 00
 74 08                   je     <forward some>
 f3 90                   pause

That's testing the LAPIC ICRLO, a memory-mapped register.  Previously, the=
=20
compiler generated code like this:

 8b 0c 25 00 63 cf 81    mov    0xffffffff81cf6300,%ecx
 f7 c1 00 10 00 00       test   $0x1000,%ecx
 74 09                   je     <forward some>
 f3 90                   pause=20=20

where it loaded the LAPIC register into %ecx and then tested that value;=20
now it combines them and does a direct test.  Congrats, that's legal=20
according to Intel (reportedly, Windows will use SSE(!) instructions to=20
read LAPIC registers), so this seems like a bug in Bhyve.

The full thread can be found here:

https://marc.info/?l=3Dopenbsd-bugs&m=3D156142900518812&w=3D2

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-238794-27103>