All of lore.kernel.org
 help / color / mirror / Atom feed
From: Josh Triplett <josh@joshtriplett.org>
To: grub-devel@gnu.org
Cc: 584846@bugs.debian.org
Subject: [PATCH] grub2 int15 hook for e820/e801 does not return CF correctly; makes recent Linux detect only 64MB (via BIOS-88)
Date: Fri, 25 Jun 2010 14:28:01 -0700	[thread overview]
Message-ID: <20100625212757.GA25312@feather> (raw)

As I originally reported in http://bugs.debian.org/584846 , and later
tracked down, grub2's int15 hook, used to augment functions e820/e801/88
for additional reserved memory (such as for drivemap), fails to return
its error status correctly, causing recent Linux (and possibly other
OSes) to detect only 64MB via BIOS-88, ignoring e820 and e801.

This occurs because the interrupt must return a status in CF, but after
using clc or stc to clear or set CF, it calls iret, which restores the
flags from the stack.  Since recent Linux has CF set when it calls
int15, CF remains set when the interrupt returns, indicating an error.
Linux's detect_memory_e820 and detect_memory_e801 functions thus cannot
retrieve any memory map, and Linux must fall back to function 88, which
cannot return more than 64MB.

To reproduce this problem, just use the "drivemap" command and then boot
a recent Linux kernel (git commit
c549e71d073a6e9a4847497344db28a784061455 or newer, meaning v2.6.30-rc1
or newer).  In my case, I booted a USB drive with grub2 on it, used
"drivemap -s (hd1) (hd0)", then chainloaded the hard drive.

The following patch against latest bzr fixes this problem.  (Thanks to
H. Peter Anvin for noticing a bug in my original patch and suggesting a
fix.)  With this patch, Linux's memory detection can use e820 again, and
detect all memory.

=== modified file 'mmap/i386/pc/mmap_helper.S'
--- mmap/i386/pc/mmap_helper.S	2010-03-26 23:04:14 +0000
+++ mmap/i386/pc/mmap_helper.S	2010-06-25 21:03:04 +0000
@@ -59,7 +59,7 @@
 	movw %bx, %dx
 	pop %ds
 	clc
-	iret
+	jmp LOCAL (iret_cf)
 
 LOCAL (h88):
 	popf
@@ -69,7 +69,7 @@
 	movw DS (LOCAL (kbin16mb)), %ax
 	pop %ds
 	clc
-	iret
+	jmp LOCAL (iret_cf)
 
 LOCAL (e820):
 	popf
@@ -101,12 +101,19 @@
 	mov $0x534d4150, %eax
 	pop %ds
 	clc
-	iret
+	jmp LOCAL (iret_cf)
 LOCAL (errexit):
 	mov $0x534d4150, %eax
 	pop %ds
+	xor %bx, %bx
 	stc
-	xor %bx, %bx
+	jmp LOCAL (iret_cf)
+
+LOCAL (iret_cf):
+	push %bp
+	mov %sp, %bp
+	setc 6(%bp)
+	pop %bp
 	iret
 
 VARIABLE(grub_machine_mmaphook_mmap_num)


ChangeLog entry for this patch:


2010-06-25  Josh Triplett  <josh@joshtriplett.org>

	* mmap/i386/pc/mmap_helper.S: Preserve CF by propagating it into the
	flags on the stack before popping them with iret.  Add a new iret_cf
	label implementing this logic, and make the e820, e801, and 88
	handlers jump to it after setting or clearing CF.  This fixes memory
	detection with recent Linux (git commit
	c549e71d073a6e9a4847497344db28a784061455 or newer, meaning v2.6.30-rc1
	or newer), which sets CF on entry to int15, and treats the preserved
	CF on exit as an error in e820 and e801; without this change, it can
	only successfully use BIOS-88 and detect only up to 64MB of RAM.
	Originally reported as Debian bug #584846.


- Josh Triplett


             reply	other threads:[~2010-06-25 21:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-25 21:28 Josh Triplett [this message]
2010-06-25 22:20 ` [PATCHv2] grub2 int15 hook for e820/e801 does not return CF correctly; makes recent Linux detect only 64MB (via BIOS-88) Josh Triplett
2010-06-28  8:18   ` Vladimir 'φ-coder/phcoder' Serbinenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100625212757.GA25312@feather \
    --to=josh@joshtriplett.org \
    --cc=584846@bugs.debian.org \
    --cc=grub-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.