From: "Vladimir 'φ-coder/phcoder' Serbinenko" <phcoder@gmail.com>
To: The development of GNU GRUB <grub-devel@gnu.org>
Subject: Re: [PATCHv2] Unable to boot very old Linux kernels
Date: Sun, 20 Apr 2014 15:59:41 +0200 [thread overview]
Message-ID: <5353D2CD.2050108@gmail.com> (raw)
In-Reply-To: <1397563120-3509-1-git-send-email-piotras@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2222 bytes --]
Committed, thanks.
On 15.04.2014 13:58, Piotr Krysiuk wrote:
> GRUB cannot determine end of BSS section of compressed image when loading
> very old Linux kernels. Booting these kernels, grub_relocator32_start and
> new Global Descriptor Table are placed in the area overlapping with the BSS
> section of loaded image. When Linux executes, it initializes BSS also
> wiping Global Descriptor Table that is still active. This leads to failure
> on segment reload that follows.
>
> Current HEAD of GRUB repository is affected, with "Clear BSS" code from
> https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/tree/arch/x86_64/boot/compressed/head.S?h=linux-2.6.17.y#n57
> wiping GDT.
>
> Old versions of GRUB, from before relocator was introduced, placed GDT close
> to end of physical memory avoiding this issue. This patch fixes regression
> by moving GDT into conventional memory.
>
> * grub-core/lib/i386/relocator.c: Move GDT into conventional memory
> to avoid collision with BSS section of compressed Linux image for
> very old kernels.
> ---
> grub-core/lib/i386/relocator.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/grub-core/lib/i386/relocator.c b/grub-core/lib/i386/relocator.c
> index d2a1b27..ffaf25f 100644
> --- a/grub-core/lib/i386/relocator.c
> +++ b/grub-core/lib/i386/relocator.c
> @@ -81,10 +81,13 @@ grub_relocator32_boot (struct grub_relocator *rel,
> void *relst;
> grub_relocator_chunk_t ch;
>
> - err = grub_relocator_alloc_chunk_align (rel, &ch, 0,
> - (0xffffffff - RELOCATOR_SIZEOF (32))
> - + 1, RELOCATOR_SIZEOF (32), 16,
> - GRUB_RELOCATOR_PREFERENCE_NONE,
> + /* Specific memory range due to Global Descriptor Table for use by payload
> + that we will store in returned chunk. The address range and preference
> + are based on "THE LINUX/x86 BOOT PROTOCOL" specification. */
> + err = grub_relocator_alloc_chunk_align (rel, &ch, 0x1000,
> + 0x9a000 - RELOCATOR_SIZEOF (32),
> + RELOCATOR_SIZEOF (32), 16,
> + GRUB_RELOCATOR_PREFERENCE_LOW,
> avoid_efi_bootservices);
> if (err)
> return err;
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 274 bytes --]
prev parent reply other threads:[~2014-04-20 14:00 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-15 11:58 [PATCHv2] Unable to boot very old Linux kernels Piotr Krysiuk
2014-04-20 13:59 ` Vladimir 'φ-coder/phcoder' Serbinenko [this message]
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=5353D2CD.2050108@gmail.com \
--to=phcoder@gmail.com \
--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.