From: Felix Zielcke <fzielcke@z-51.de>
To: The development of GRUB 2 <grub-devel@gnu.org>
Subject: Re: [PATCH] fix an infinite loop with a corrupted pc partition table
Date: Fri, 24 Jul 2009 21:24:31 +0200 [thread overview]
Message-ID: <1248463471.3510.77.camel@fz.local> (raw)
In-Reply-To: <1248454704.3510.67.camel@fz.local>
[-- Attachment #1: Type: text/plain, Size: 1149 bytes --]
Am Freitag, den 24.07.2009, 18:58 +0200 schrieb Felix Zielcke:
>
>
> With this [0] partition table grub-probe currently loops forever:
>
> kern/disk.c:389: Reading `hd1'...
> partmap/pc.c:142: partition 0: flag 0x0, type 0x5, start 0x0, len
> 0x11177330
> partmap/pc.c:142: partition 1: flag 0x0, type 0x0, start 0x0, len 0x0
> partmap/pc.c:142: partition 2: flag 0x0, type 0x0, start 0x0, len 0x0
> partmap/pc.c:142: partition 3: flag 0x0, type 0x0, start 0x0, len 0x0
> kern/disk.c:389: Reading `hd1'...
> partmap/pc.c:142: partition 0: flag 0x0, type 0x5, start 0x0, len
> 0x11177330
> partmap/pc.c:142: partition 1: flag 0x0, type 0x0, start 0x0, len 0x0
> partmap/pc.c:142: partition 2: flag 0x0, type 0x0, start 0x0, len 0x0
> partmap/pc.c:142: partition 3: flag 0x0, type 0x0, start 0x0, len 0x0
> [...]
>
> This patch fixes it, but probable there's a better fix.
>
>
> [0]
> http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=corrupt-table.dat;att=1;bug=519223
Here's a new one after comments from Vladimir on IRC
loop count is increased to 100'000 and partitions with a starting sector
of 0 are ignored.
--
Felix Zielcke
[-- Attachment #2: corrupted_partmap.diff.2 --]
[-- Type: text/plain, Size: 1858 bytes --]
2009-07-24 Felix Zielcke <fzielcke@z-51.de>
* partmap/pc.c (pc_partition_map_iterate): Don't loop forever
in case the partition table is corrupted. Also ignore partitions
with a starting sector of 0.
diff --git a/partmap/pc.c b/partmap/pc.c
index 6f68ecf..ab58b3d 100644
--- a/partmap/pc.c
+++ b/partmap/pc.c
@@ -97,6 +97,7 @@ pc_partition_map_iterate (grub_disk_t disk,
struct grub_pc_partition_mbr mbr;
struct grub_pc_partition_disk_label label;
struct grub_disk raw;
+ int loop;
/* Enforce raw disk access. */
raw = *disk;
@@ -108,11 +109,13 @@ pc_partition_map_iterate (grub_disk_t disk,
p.data = &pcdata;
p.partmap = &grub_pc_partition_map;
- while (1)
+ loop = 0;
+ while (loop < 100000)
{
int i;
struct grub_pc_partition_entry *e;
+ loop++;
/* Read the MBR. */
if (grub_disk_read (&raw, p.offset, 0, sizeof (mbr), &mbr))
goto finish;
@@ -143,7 +146,7 @@ pc_partition_map_iterate (grub_disk_t disk,
return grub_error (GRUB_ERR_BAD_PART_TABLE, "dummy mbr");
/* If this partition is a normal one, call the hook. */
- if (! grub_pc_partition_is_empty (e->type)
+ if (e->start != 0 && ! grub_pc_partition_is_empty (e->type)
&& ! grub_pc_partition_is_extended (e->type))
{
pcdata.dos_part++;
@@ -206,7 +209,7 @@ pc_partition_map_iterate (grub_disk_t disk,
{
e = mbr.entries + i;
- if (grub_pc_partition_is_extended (e->type))
+ if (e->start != 0 && grub_pc_partition_is_extended (e->type))
{
p.offset = pcdata.ext_offset + grub_le_to_cpu32 (e->start);
if (! pcdata.ext_offset)
@@ -221,6 +224,8 @@ pc_partition_map_iterate (grub_disk_t disk,
break;
}
+ if (loop == 100000)
+ return grub_error (GRUB_ERR_BAD_PART_TABLE, "Corrupted partition table found.");
finish:
return grub_errno;
}
next prev parent reply other threads:[~2009-07-24 19:23 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-24 16:58 [PATCH] fix an infinite loop with a corrupted pc partition table Felix Zielcke
2009-07-24 19:24 ` Felix Zielcke [this message]
2009-07-24 20:28 ` Pavel Roskin
2009-07-24 20:46 ` Vladimir 'phcoder' Serbinenko
2009-07-25 16:36 ` Robert Millan
2009-07-25 16:56 ` Vladimir 'phcoder' Serbinenko
2009-07-25 22:06 ` Pavel Roskin
2009-07-25 22:35 ` Vladimir 'phcoder' Serbinenko
2009-07-25 22:58 ` Vladimir 'phcoder' Serbinenko
2009-07-25 23:20 ` Vladimir 'phcoder' Serbinenko
2009-07-26 6:49 ` Felix Zielcke
2009-07-28 17:55 ` Robert Millan
2009-08-23 15:40 ` Vladimir 'phcoder' Serbinenko
2009-08-28 17:30 ` Vladimir 'phcoder' Serbinenko
2009-09-11 21:50 ` Pavel Roskin
2009-07-24 19:56 ` Pavel Roskin
2009-07-24 20:35 ` Vladimir 'phcoder' Serbinenko
2009-07-24 21:03 ` Pavel Roskin
2009-07-25 10:48 ` Vladimir '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=1248463471.3510.77.camel@fz.local \
--to=fzielcke@z-51.de \
--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.