* [GFXBOOT] [PATCH] When switching to real-mode, pass SS in a GP register
@ 2007-09-30 4:29 Anthony Liguori
[not found] ` <46FF262C.9000900-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Anthony Liguori @ 2007-09-30 4:29 UTC (permalink / raw)
To: Steffen Winterfeldt; +Cc: kvm-devel, Avi Kivity
[-- Attachment #1: Type: text/plain, Size: 625 bytes --]
Hi Steffen,
As Avi pointed out, VT requires that SS.RPL == CS.RPL. We're seeing
gfxboot fail under KVM because ss = 0x5761 while cs = 0x4004 during the
transition from real mode to protected mode. The attached patch passes
the value of ss through ebx since KVM has to sanitize the value of ss to
make VT happy.
I've tested this with a remastered Ubuntu Gutsy install CD. I couldn't
find the right gfxboot theme for the openSuSE install CD I have so I
wasn't able to test it.
I suspect that Xen should have a very similar problem as I can't think
of a possible way to work around this.
Regards,
Anthony Liguori
[-- Attachment #2: gfxboot-3.3.38-vt.diff --]
[-- Type: text/x-patch, Size: 1073 bytes --]
Subject: [PATCH] Fix gfxboot under VT
From: Anthony Liguori <anthony-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>
This patch lets gfxboot-3.3.38 work under KVM. The fix was suggested by Avi
Kivity.
Signed-off-by: Anthony Liguori <anthony-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>
diff -ur a/bincode.asm b/bincode.asm
--- a/bincode.asm 2007-07-24 05:49:46.000000000 -0500
+++ b/bincode.asm 2007-09-29 22:14:35.000000000 -0500
@@ -15519,6 +15519,7 @@
switch_to_pm:
pushf
push eax
+ push ebx
mov eax,cr0
@@ -15534,6 +15535,11 @@
mov word [cs:rm_seg.fs],fs
mov word [cs:rm_seg.gs],gs
+ ;; ss:rpl must equal cs:rpl in PM for VT. we can't rely on ss
+ ;; maintaining it's value after the transition so we have to
+ ;; pass it in a GP register
+ mov ebx,ss
+
or al,1
o32 lgdt [cs:pm_gdt]
o32 lidt [cs:pm_idt]
@@ -15546,7 +15552,7 @@
mov ax,pm_seg.prog_d16
mov ds,ax
- mov eax,ss
+ mov eax,ebx
and esp,0ffffh
shl eax,4
add esp,eax
@@ -15557,6 +15563,7 @@
mov fs,ax
mov gs,ax
+ pop ebx
pop eax
popfw
o16 ret
[-- Attachment #3: Type: text/plain, Size: 228 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
[-- Attachment #4: Type: text/plain, Size: 186 bytes --]
_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel
^ permalink raw reply [flat|nested] 5+ messages in thread[parent not found: <46FF262C.9000900-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>]
* Re: [GFXBOOT] [PATCH] When switching to real-mode, pass SS in a GP register [not found] ` <46FF262C.9000900-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org> @ 2007-09-30 6:10 ` Avi Kivity [not found] ` <46FF3DF3.7040503-atKUWr5tajBWk0Htik3J/w@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Avi Kivity @ 2007-09-30 6:10 UTC (permalink / raw) To: Anthony Liguori; +Cc: kvm-devel, Steffen Winterfeldt Anthony Liguori wrote: > Hi Steffen, > > As Avi pointed out, VT requires that SS.RPL == CS.RPL. We're seeing > gfxboot fail under KVM because ss = 0x5761 while cs = 0x4004 during > the transition from real mode to protected mode. The attached patch > passes the value of ss through ebx since KVM has to sanitize the value > of ss to make VT happy. > > I've tested this with a remastered Ubuntu Gutsy install CD. I > couldn't find the right gfxboot theme for the openSuSE install CD I > have so I wasn't able to test it. > > I suspect that Xen should have a very similar problem as I can't think > of a possible way to work around this. > > diff -ur a/bincode.asm b/bincode.asm > --- a/bincode.asm 2007-07-24 05:49:46.000000000 -0500 > +++ b/bincode.asm 2007-09-29 22:14:35.000000000 -0500 > @@ -15519,6 +15519,7 @@ > switch_to_pm: > pushf > push eax > + push ebx > > mov eax,cr0 > > @@ -15534,6 +15535,11 @@ > mov word [cs:rm_seg.fs],fs > mov word [cs:rm_seg.gs],gs > > + ;; ss:rpl must equal cs:rpl in PM for VT. we can't rely on ss > + ;; maintaining it's value after the transition so we have to > + ;; pass it in a GP register > + mov ebx,ss > + > or al,1 > o32 lgdt [cs:pm_gdt] > o32 lidt [cs:pm_idt] > @@ -15546,7 +15552,7 @@ > mov ax,pm_seg.prog_d16 > mov ds,ax > > - mov eax,ss > + mov eax,ebx > and esp,0ffffh > shl eax,4 > This is subtly wrong, I think. First, note that 'mov eax,ss' only affects ax, not the high 16 bits. The note that the original code happily shifts eax which is half ss, half garbage left by 4 bits and uses that to generate a 32-bit result. The reason it worked before was that bits 16-29 of eax are already clear by virtue of having come from cr0. But now you're using ebx which hasn't had that magic clearing. In your comment to the kvm bug you say that the patch allows you to boot, so perhaps bits 16-29 of ebx are already clear here, or my analysis is mistaken. > add esp,eax > @@ -15557,6 +15563,7 @@ > mov fs,ax > mov gs,ax > > + pop ebx > pop eax > popfw > o16 ret > -- Do not meddle in the internals of kernels, for they are subtle and quick to panic. ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <46FF3DF3.7040503-atKUWr5tajBWk0Htik3J/w@public.gmane.org>]
* Re: [GFXBOOT] [PATCH] When switching to real-mode, pass SS in a GP register [not found] ` <46FF3DF3.7040503-atKUWr5tajBWk0Htik3J/w@public.gmane.org> @ 2007-09-30 7:08 ` Anthony Liguori [not found] ` <46FF4B53.5070807-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Anthony Liguori @ 2007-09-30 7:08 UTC (permalink / raw) To: Avi Kivity; +Cc: kvm-devel, Steffen Winterfeldt [-- Attachment #1: Type: text/plain, Size: 2411 bytes --] Avi Kivity wrote: > Anthony Liguori wrote: > >> Hi Steffen, >> >> As Avi pointed out, VT requires that SS.RPL == CS.RPL. We're seeing >> gfxboot fail under KVM because ss = 0x5761 while cs = 0x4004 during >> the transition from real mode to protected mode. The attached patch >> passes the value of ss through ebx since KVM has to sanitize the value >> of ss to make VT happy. >> >> I've tested this with a remastered Ubuntu Gutsy install CD. I >> couldn't find the right gfxboot theme for the openSuSE install CD I >> have so I wasn't able to test it. >> >> I suspect that Xen should have a very similar problem as I can't think >> of a possible way to work around this. >> >> > > >> diff -ur a/bincode.asm b/bincode.asm >> --- a/bincode.asm 2007-07-24 05:49:46.000000000 -0500 >> +++ b/bincode.asm 2007-09-29 22:14:35.000000000 -0500 >> @@ -15519,6 +15519,7 @@ >> switch_to_pm: >> pushf >> push eax >> + push ebx >> >> mov eax,cr0 >> >> @@ -15534,6 +15535,11 @@ >> mov word [cs:rm_seg.fs],fs >> mov word [cs:rm_seg.gs],gs >> >> + ;; ss:rpl must equal cs:rpl in PM for VT. we can't rely on ss >> + ;; maintaining it's value after the transition so we have to >> + ;; pass it in a GP register >> + mov ebx,ss >> + >> or al,1 >> o32 lgdt [cs:pm_gdt] >> o32 lidt [cs:pm_idt] >> @@ -15546,7 +15552,7 @@ >> mov ax,pm_seg.prog_d16 >> mov ds,ax >> >> - mov eax,ss >> + mov eax,ebx >> and esp,0ffffh >> shl eax,4 >> >> > > This is subtly wrong, I think. First, note that 'mov eax,ss' only > affects ax, not the high 16 bits. The note that the original code > happily shifts eax which is half ss, half garbage left by 4 bits and > uses that to generate a 32-bit result. > > The reason it worked before was that bits 16-29 of eax are already clear > by virtue of having come from cr0. But now you're using ebx which > hasn't had that magic clearing. > You're right. Good catch! > In your comment to the kvm bug you say that the patch allows you to > boot, so perhaps bits 16-29 of ebx are already clear here, or my > analysis is mistaken. > Yeah, I just got lucky with ebx I guess :-) Attached is an updated patch that fixes this problem. Regards, Anthony Liguori >> add esp,eax >> @@ -15557,6 +15563,7 @@ >> mov fs,ax >> mov gs,ax >> >> + pop ebx >> pop eax >> popfw >> o16 ret >> >> > > > > [-- Attachment #2: gfxboot-3.3.38-vt-1.diff --] [-- Type: text/x-patch, Size: 792 bytes --] diff -ur a/bincode.asm b/bincode.asm --- a/bincode.asm 2007-07-24 05:49:46.000000000 -0500 +++ b/bincode.asm 2007-09-30 01:56:48.000000000 -0500 @@ -15519,6 +15519,7 @@ switch_to_pm: pushf push eax + push ebx mov eax,cr0 @@ -15534,6 +15535,11 @@ mov word [cs:rm_seg.fs],fs mov word [cs:rm_seg.gs],gs + ;; ss:rpl must equal cs:rpl in PM for VT. we can't rely on ss + ;; maintaining it's value after the transition so we have to + ;; pass it in a GP register + mov ebx,ss + or al,1 o32 lgdt [cs:pm_gdt] o32 lidt [cs:pm_idt] @@ -15546,7 +15552,7 @@ mov ax,pm_seg.prog_d16 mov ds,ax - mov eax,ss + mov ax,bx and esp,0ffffh shl eax,4 add esp,eax @@ -15557,6 +15563,7 @@ mov fs,ax mov gs,ax + pop ebx pop eax popfw o16 ret [-- Attachment #3: Type: text/plain, Size: 228 bytes --] ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ [-- Attachment #4: Type: text/plain, Size: 186 bytes --] _______________________________________________ kvm-devel mailing list kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/kvm-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <46FF4B53.5070807-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>]
* Re: [GFXBOOT] [PATCH] When switching to real-mode, pass SS in a GP register [not found] ` <46FF4B53.5070807-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org> @ 2007-10-08 10:52 ` Steffen Winterfeldt [not found] ` <Pine.LNX.4.64.0710081237050.22177-128n8RpADxRbpigZmTR7Iw@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Steffen Winterfeldt @ 2007-10-08 10:52 UTC (permalink / raw) To: Anthony Liguori; +Cc: kvm-devel, Avi Kivity Hi, sorry for the delay, but I've been on vacation. :-) On Sun, 30 Sep 2007, Anthony Liguori wrote: > Avi Kivity wrote: > > Anthony Liguori wrote: > >> As Avi pointed out, VT requires that SS.RPL == CS.RPL. We're seeing > >> gfxboot fail under KVM because ss = 0x5761 while cs = 0x4004 during > >> the transition from real mode to protected mode. The attached patch > >> passes the value of ss through ebx since KVM has to sanitize the value > >> of ss to make VT happy. Uh, that's weird! Thanks for pointing this out. [patch] > > This is subtly wrong, I think. First, note that 'mov eax,ss' only > > affects ax, not the high 16 bits. The note that the original code > > happily shifts eax which is half ss, half garbage left by 4 bits and > > uses that to generate a 32-bit result. > > > > The reason it worked before was that bits 16-29 of eax are already clear > > by virtue of having come from cr0. But now you're using ebx which > > hasn't had that magic clearing. > > > > You're right. Good catch! Actually that is not true. 'mov eax,ss' does implicitly clear the upper 16 bits (both processor docs and hardware agree here). > > In your comment to the kvm bug you say that the patch allows you to > > boot, so perhaps bits 16-29 of ebx are already clear here, or my > > analysis is mistaken. > > > > Yeah, I just got lucky with ebx I guess :-) Attached is an updated patch that > fixes this problem. Anyway, ss is already saved, so no need for an extra register. Here is my version (tested and works on my machine): --- bincode.asm (revision 650) +++ bincode.asm (working copy) @@ -15546,7 +15546,11 @@ mov ax,pm_seg.prog_d16 mov ds,ax - mov eax,ss + ; needed for KVM: + ; ss:rpl must equal cs:rpl in PM for VT. We can't rely on ss + ; maintaining its value after the transition. + + movzx eax,word [rm_seg.ss] and esp,0ffffh shl eax,4 add esp,eax ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <Pine.LNX.4.64.0710081237050.22177-128n8RpADxRbpigZmTR7Iw@public.gmane.org>]
* Re: [GFXBOOT] [PATCH] When switching to real-mode, pass SS in a GP register [not found] ` <Pine.LNX.4.64.0710081237050.22177-128n8RpADxRbpigZmTR7Iw@public.gmane.org> @ 2007-10-11 14:53 ` Anthony Liguori 0 siblings, 0 replies; 5+ messages in thread From: Anthony Liguori @ 2007-10-11 14:53 UTC (permalink / raw) To: Steffen Winterfeldt; +Cc: kvm-devel, Avi Kivity Steffen Winterfeldt wrote: > Hi, > > sorry for the delay, but I've been on vacation. :-) > No worries :-) >> You're right. Good catch! >> > > Actually that is not true. 'mov eax,ss' does implicitly clear the upper > 16 bits (both processor docs and hardware agree here). > I wasn't able to find anything definitive in my manuals but I didn't look very hard. I figured that erring on the safe side is better anyway. > Anyway, ss is already saved, so no need for an extra register. Here is > my version (tested and works on my machine): > This patch works for me under KVM. Thanks! Regards, Anthony Liguori > --- bincode.asm (revision 650) > +++ bincode.asm (working copy) > @@ -15546,7 +15546,11 @@ > mov ax,pm_seg.prog_d16 > mov ds,ax > > - mov eax,ss > + ; needed for KVM: > + ; ss:rpl must equal cs:rpl in PM for VT. We can't rely on ss > + ; maintaining its value after the transition. > + > + movzx eax,word [rm_seg.ss] > and esp,0ffffh > shl eax,4 > add esp,eax > > ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-10-11 14:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-30 4:29 [GFXBOOT] [PATCH] When switching to real-mode, pass SS in a GP register Anthony Liguori
[not found] ` <46FF262C.9000900-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>
2007-09-30 6:10 ` Avi Kivity
[not found] ` <46FF3DF3.7040503-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-09-30 7:08 ` Anthony Liguori
[not found] ` <46FF4B53.5070807-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>
2007-10-08 10:52 ` Steffen Winterfeldt
[not found] ` <Pine.LNX.4.64.0710081237050.22177-128n8RpADxRbpigZmTR7Iw@public.gmane.org>
2007-10-11 14:53 ` Anthony Liguori
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox