linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [bug report] fuse: support copying large folios
@ 2025-05-23 15:59 Dan Carpenter
  2025-05-23 17:32 ` Joanne Koong
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Carpenter @ 2025-05-23 15:59 UTC (permalink / raw)
  To: Joanne Koong; +Cc: linux-fsdevel

Hello Joanne Koong,

This is a semi-automatic email about new static checker warnings.

Commit f008a4390bde ("fuse: support copying large folios") from May
12, 2025, leads to the following Smatch complaint:

    fs/fuse/dev.c:1103 fuse_copy_folio()
    warn: variable dereferenced before check 'folio' (see line 1101)

fs/fuse/dev.c
  1100		struct folio *folio = *foliop;
  1101		size_t size = folio_size(folio);
                                         ^^^^^
The patch adds an unchecked dereference

  1102	
  1103		if (folio && zeroing && count < size)
                    ^^^^^
and it also adds this check for NULL which is too late.

  1104			folio_zero_range(folio, 0, size);
  1105	

regards,
dan carpenter

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

* Re: [bug report] fuse: support copying large folios
  2025-05-23 15:59 [bug report] fuse: support copying large folios Dan Carpenter
@ 2025-05-23 17:32 ` Joanne Koong
  2025-05-23 18:51   ` Dan Carpenter
  0 siblings, 1 reply; 3+ messages in thread
From: Joanne Koong @ 2025-05-23 17:32 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: linux-fsdevel

On Fri, May 23, 2025 at 8:59 AM Dan Carpenter <dan.carpenter@linaro.org> wrote:
>
> Hello Joanne Koong,
>
> This is a semi-automatic email about new static checker warnings.
>
> Commit f008a4390bde ("fuse: support copying large folios") from May
> 12, 2025, leads to the following Smatch complaint:
>
>     fs/fuse/dev.c:1103 fuse_copy_folio()
>     warn: variable dereferenced before check 'folio' (see line 1101)
>
> fs/fuse/dev.c
>   1100          struct folio *folio = *foliop;
>   1101          size_t size = folio_size(folio);
>                                          ^^^^^
> The patch adds an unchecked dereference
>
>   1102
>   1103          if (folio && zeroing && count < size)
>                     ^^^^^
> and it also adds this check for NULL which is too late.
>
>   1104                  folio_zero_range(folio, 0, size);
>   1105

Thanks for flagging. I looked through where we call fuse_copy_folio()
and we'll never run into the case where folio is null, so all the "if
folio" branches inside there can probably be cleaned up with a WARN_ON
check.

I'll submit a patch that fixes this commit and a separate patch that
cleans up the if folio check.

>
> regards,
> dan carpenter

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

* Re: [bug report] fuse: support copying large folios
  2025-05-23 17:32 ` Joanne Koong
@ 2025-05-23 18:51   ` Dan Carpenter
  0 siblings, 0 replies; 3+ messages in thread
From: Dan Carpenter @ 2025-05-23 18:51 UTC (permalink / raw)
  To: Joanne Koong; +Cc: linux-fsdevel

On Fri, May 23, 2025 at 10:32:29AM -0700, Joanne Koong wrote:
> On Fri, May 23, 2025 at 8:59 AM Dan Carpenter <dan.carpenter@linaro.org> wrote:
> >
> > Hello Joanne Koong,
> >
> > This is a semi-automatic email about new static checker warnings.
> >
> > Commit f008a4390bde ("fuse: support copying large folios") from May
> > 12, 2025, leads to the following Smatch complaint:
> >
> >     fs/fuse/dev.c:1103 fuse_copy_folio()
> >     warn: variable dereferenced before check 'folio' (see line 1101)
> >
> > fs/fuse/dev.c
> >   1100          struct folio *folio = *foliop;
> >   1101          size_t size = folio_size(folio);
> >                                          ^^^^^
> > The patch adds an unchecked dereference
> >
> >   1102
> >   1103          if (folio && zeroing && count < size)
> >                     ^^^^^
> > and it also adds this check for NULL which is too late.
> >
> >   1104                  folio_zero_range(folio, 0, size);
> >   1105
> 
> Thanks for flagging. I looked through where we call fuse_copy_folio()
> and we'll never run into the case where folio is null, so all the "if
> folio" branches inside there can probably be cleaned up with a WARN_ON
> check.
> 
> I'll submit a patch that fixes this commit and a separate patch that
> cleans up the if folio check.

Another idea is to just crash when people pass a NULL pointer.  The stack
traces from NULL dereference bugs are normally easy to debug unless
they're caused by a race condition or memory corruption.

regards,
dan carpenter

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

end of thread, other threads:[~2025-05-23 18:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-23 15:59 [bug report] fuse: support copying large folios Dan Carpenter
2025-05-23 17:32 ` Joanne Koong
2025-05-23 18:51   ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).