Re: [PATCH] Fixed null-ptr-deref Read in drop_buffers

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Nov 08, 2024 at 08:07:17AM +0530, Saru2003 wrote:
> Signed-off-by: Saru2003 <sarvesh20123@xxxxxxxxx>
> ---
>  fs/buffer.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/fs/buffer.c b/fs/buffer.c
> index 1fc9a50def0b..e32420d8b9e3 100644
> --- a/fs/buffer.c
> +++ b/fs/buffer.c
> @@ -2888,14 +2888,23 @@ drop_buffers(struct folio *folio, struct buffer_head **buffers_to_free)
>  	struct buffer_head *head = folio_buffers(folio);
>  	struct buffer_head *bh;
>  
> +	if (!head) {
> +		goto failed;
> +	}

Which caller can hit that?

>  	bh = head;
>  	do {
> +		if (!bh)
> +			goto failed;

Huh?  How the hell can _that_ happen?  "Somehow got called for a folio
without associated buffer_heads" is one thing, but this would require
an obvious memory corruption; a NULL forward pointer in the middle of
a cyclic list.

>  		if (buffer_busy(bh))
>  			goto failed;
>  		bh = bh->b_this_page;
>  	} while (bh != head);
>  
>  	do {
> +		if (!bh)
> +			goto failed;

NAK.  In the best case you are papering over unrelated memory corruption.

Please, explain what's going on.  Random checks for pointers being NULL
are not magical unicorn piss to be sprinkled all over the place...

And "fixed null-pointer-deref" does *not* work as an explanation - not
with otherwise empty commit message.




[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [NTFS 3]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [NTFS 3]     [Samba]     [Device Mapper]     [CEPH Development]

  Powered by Linux