2008-12-11 22:26:05

by Duane Griffin

[permalink] [raw]
Subject: [PATCH, v2] ext3: ensure link targets are NULL-terminated

Ensure link targets are NUL-terminated, even if corrupted on-disk.

Signed-off-by: Duane Griffin <[email protected]>
---

V2: terminate when the link is read instead of every time it is
followed, as suggested by Dave Kleikamp.

diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c
index f8424ad..c168781 100644
--- a/fs/ext3/inode.c
+++ b/fs/ext3/inode.c
@@ -2817,9 +2817,10 @@ struct inode *ext3_iget(struct super_block *sb, unsigned long ino)
inode->i_op = &ext3_dir_inode_operations;
inode->i_fop = &ext3_dir_operations;
} else if (S_ISLNK(inode->i_mode)) {
- if (ext3_inode_is_fast_symlink(inode))
+ if (ext3_inode_is_fast_symlink(inode)) {
inode->i_op = &ext3_fast_symlink_inode_operations;
- else {
+ ((char *) ei->i_data)[inode->i_size] = '\0';
+ } else {
inode->i_op = &ext3_symlink_inode_operations;
ext3_set_aops(inode);
}
--
"I never could learn to drink that blood and call it wine" - Bob Dylan


2008-12-12 03:32:28

by Andrew Morton

[permalink] [raw]
Subject: Re: [PATCH, v2] ext3: ensure link targets are NULL-terminated

On Thu, 11 Dec 2008 22:26:05 +0000 "Duane Griffin" <[email protected]> wrote:

> Ensure link targets are NUL-terminated, even if corrupted on-disk.
>
> Signed-off-by: Duane Griffin <[email protected]>
> ---
>
> V2: terminate when the link is read instead of every time it is
> followed, as suggested by Dave Kleikamp.
>
> diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c
> index f8424ad..c168781 100644
> --- a/fs/ext3/inode.c
> +++ b/fs/ext3/inode.c
> @@ -2817,9 +2817,10 @@ struct inode *ext3_iget(struct super_block *sb, unsigned long ino)
> inode->i_op = &ext3_dir_inode_operations;
> inode->i_fop = &ext3_dir_operations;
> } else if (S_ISLNK(inode->i_mode)) {
> - if (ext3_inode_is_fast_symlink(inode))
> + if (ext3_inode_is_fast_symlink(inode)) {
> inode->i_op = &ext3_fast_symlink_inode_operations;
> - else {
> + ((char *) ei->i_data)[inode->i_size] = '\0';
> + } else {
> inode->i_op = &ext3_symlink_inode_operations;
> ext3_set_aops(inode);
> }

Really? The ext2 on-disk format requires that the fast symlink be
null-terminated on disk? Even though the length is already in i_size?

It seems that's true. How un-ext2-like.

ext2 and ext4 need the same fix, yes?

2008-12-12 09:40:46

by Duane Griffin

[permalink] [raw]
Subject: Re: [PATCH, v2] ext3: ensure link targets are NULL-terminated

2008/12/12 Andrew Morton <[email protected]>:
> Really? The ext2 on-disk format requires that the fast symlink be
> null-terminated on disk? Even though the length is already in i_size?
>
> It seems that's true. How un-ext2-like.
>
> ext2 and ext4 need the same fix, yes?

Yes. I've sent them out already, but thanks to a monumental cock-up
with the CCs they may not have made it to the list. I'll check and
resend to real addresses if necessary.

Cheers,
Duane.

--
"I never could learn to drink that blood and call it wine" - Bob Dylan

2008-12-12 10:19:20

by Duane Griffin

[permalink] [raw]
Subject: Re: [PATCH, v2] ext3: ensure link targets are NULL-terminated

2008/12/12 Duane Griffin <[email protected]>:
> 2008/12/12 Andrew Morton <[email protected]>:
>> Really? The ext2 on-disk format requires that the fast symlink be
>> null-terminated on disk? Even though the length is already in i_size?
>>
>> It seems that's true. How un-ext2-like.
>>
>> ext2 and ext4 need the same fix, yes?
>
> Yes. I've sent them out already, but thanks to a monumental cock-up
> with the CCs they may not have made it to the list. I'll check and
> resend to real addresses if necessary.

Seems they did make it:
http://marc.info/?l=linux-kernel&m=122903437006575&w=2
http://marc.info/?l=linux-kernel&m=122903451306859&w=2

Cheers,
Duane.

--
"I never could learn to drink that blood and call it wine" - Bob Dylan

2008-12-16 00:10:13

by Andrew Morton

[permalink] [raw]
Subject: Re: [PATCH, v2] ext3: ensure link targets are NULL-terminated

On Fri, 12 Dec 2008 10:19:20 +0000
"Duane Griffin" <[email protected]> wrote:

> 2008/12/12 Duane Griffin <[email protected]>:
> > 2008/12/12 Andrew Morton <[email protected]>:
> >> Really? The ext2 on-disk format requires that the fast symlink be
> >> null-terminated on disk? Even though the length is already in i_size?
> >>
> >> It seems that's true. How un-ext2-like.
> >>
> >> ext2 and ext4 need the same fix, yes?
> >
> > Yes. I've sent them out already, but thanks to a monumental cock-up
> > with the CCs they may not have made it to the list. I'll check and
> > resend to real addresses if necessary.
>
> Seems they did make it:
> http://marc.info/?l=linux-kernel&m=122903437006575&w=2
> http://marc.info/?l=linux-kernel&m=122903451306859&w=2
>

OK, thanks, it seems I was sneakily not cc'ed ;)

As Al points out, the code which you implemented is still vulnerable to
on-disk corruption: bad values of i_size will cause the kernel to write
a zero byte to any address within the entire CPU address range.