mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] 2.6.20.4 fix kernel panic on corrupted reiserfs directory
@ 2007-04-05  6:41 lepton
  2007-04-05  7:34 ` Alexander E. Patrakov
  0 siblings, 1 reply; 3+ messages in thread
From: lepton @ 2007-04-05  6:41 UTC (permalink / raw)
  To: lkm

Hi,
  When reading corrupted reiserfs directory data, d_reclen
  could be a negative number, then memcpy will overflow
  kernel stack. This can lead to kernel panic.
  The following patch adds a sanity check. (against 2.6.20.4)
 
Signed-off-by: Lepton Wu <ytht.net@gmail.com>

diff -pru linux-2.6/fs/reiserfs/dir.c linux-2.6-lepton/fs/reiserfs/dir.c
--- linux-2.6/fs/reiserfs/dir.c	2007-02-20 14:34:32.000000000 +0800
+++ linux-2.6-lepton/fs/reiserfs/dir.c	2007-04-05 14:35:58.000000000 +0800
@@ -121,6 +121,11 @@ static int reiserfs_readdir(struct file 
 					/* it is hidden entry */
 					continue;
 				d_reclen = entry_length(bh, ih, entry_num);
+				if (d_reclen < 0) {
+					pathrelse(&path_to_entry);
+					ret = -EIO;
+					goto out;
+				}
 				d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, deh);
 				if (!d_name[d_reclen - 1])
 					d_reclen = strlen(d_name);
O

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] 2.6.20.4 fix kernel panic on corrupted reiserfs directory
  2007-04-05  6:41 [PATCH] 2.6.20.4 fix kernel panic on corrupted reiserfs directory lepton
@ 2007-04-05  7:34 ` Alexander E. Patrakov
  2007-04-05 13:22   ` lepton
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander E. Patrakov @ 2007-04-05  7:34 UTC (permalink / raw)
  To: lepton, lkm

lepton wrote:
> Hi,
>   When reading corrupted reiserfs directory data, d_reclen
>   could be a negative number, then memcpy will overflow
>   kernel stack. This can lead to kernel panic.
>   The following patch adds a sanity check. (against 2.6.20.4)

Is it possible to get a large positive number here due to other fs 
corruption and bypass your sanity check? If I read the code correctly, this 
would still oops in the "if" statement just below the part you patched.

> Signed-off-by: Lepton Wu <ytht.net@gmail.com>
> 
> diff -pru linux-2.6/fs/reiserfs/dir.c linux-2.6-lepton/fs/reiserfs/dir.c
> --- linux-2.6/fs/reiserfs/dir.c	2007-02-20 14:34:32.000000000 +0800
> +++ linux-2.6-lepton/fs/reiserfs/dir.c	2007-04-05 14:35:58.000000000 +0800
> @@ -121,6 +121,11 @@ static int reiserfs_readdir(struct file 
>  					/* it is hidden entry */
>  					continue;
>  				d_reclen = entry_length(bh, ih, entry_num);
> +				if (d_reclen < 0) {
> +					pathrelse(&path_to_entry);
> +					ret = -EIO;
> +					goto out;
> +				}
>  				d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, deh);
>  				if (!d_name[d_reclen - 1])
>  					d_reclen = strlen(d_name);
> O

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] 2.6.20.4 fix kernel panic on corrupted reiserfs directory
  2007-04-05  7:34 ` Alexander E. Patrakov
@ 2007-04-05 13:22   ` lepton
  0 siblings, 0 replies; 3+ messages in thread
From: lepton @ 2007-04-05 13:22 UTC (permalink / raw)
  To: Alexander E. Patrakov; +Cc: lkm

Yes, you are right.
I need more work on my trival patch.

On Thu, Apr 05, 2007 at 01:34:42PM +0600, Alexander E. Patrakov wrote:
> lepton wrote:
> >Hi,
> >  When reading corrupted reiserfs directory data, d_reclen
> >  could be a negative number, then memcpy will overflow
> >  kernel stack. This can lead to kernel panic.
> >  The following patch adds a sanity check. (against 2.6.20.4)
> 
> Is it possible to get a large positive number here due to other fs 
> corruption and bypass your sanity check? If I read the code correctly, this 
> would still oops in the "if" statement just below the part you patched.
> 
> >Signed-off-by: Lepton Wu <ytht.net@gmail.com>
> >
> >diff -pru linux-2.6/fs/reiserfs/dir.c linux-2.6-lepton/fs/reiserfs/dir.c
> >--- linux-2.6/fs/reiserfs/dir.c	2007-02-20 14:34:32.000000000 +0800
> >+++ linux-2.6-lepton/fs/reiserfs/dir.c	2007-04-05 
> >14:35:58.000000000 +0800
> >@@ -121,6 +121,11 @@ static int reiserfs_readdir(struct file 
> > 					/* it is hidden entry */
> > 					continue;
> > 				d_reclen = entry_length(bh, ih, entry_num);
> >+				if (d_reclen < 0) {
> >+					pathrelse(&path_to_entry);
> >+					ret = -EIO;
> >+					goto out;
> >+				}
> > 				d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, 
> > 				deh);
> > 				if (!d_name[d_reclen - 1])
> > 					d_reclen = strlen(d_name);
> >O

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-04-05 13:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-05  6:41 [PATCH] 2.6.20.4 fix kernel panic on corrupted reiserfs directory lepton
2007-04-05  7:34 ` Alexander E. Patrakov
2007-04-05 13:22   ` lepton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®