Commit Graph

4 Commits

Author SHA1 Message Date
Xiubo Li 5575369564 netfs: Fix missing xas_retry() calls in xarray iteration
Bugzilla: https://bugzilla.redhat.com/2138981

commit 7e043a80b5dae5c2d2cf84031501de7827fd6c00
Author: David Howells <dhowells@redhat.com>
Date:   Thu Nov 3 16:08:14 2022 +0000

    netfs: Fix missing xas_retry() calls in xarray iteration

    netfslib has a number of places in which it performs iteration of an xarray
    whilst being under the RCU read lock.  It *should* call xas_retry() as the
    first thing inside of the loop and do "continue" if it returns true in case
    the xarray walker passed out a special value indicating that the walk needs
    to be redone from the root[*].

    Fix this by adding the missing retry checks.

    [*] I wonder if this should be done inside xas_find(), xas_next_node() and
        suchlike, but I'm told that's not an simple change to effect.

    This can cause an oops like that below.  Note the faulting address - this
    is an internal value (|0x2) returned from xarray.

    BUG: kernel NULL pointer dereference, address: 0000000000000402
    ...
    RIP: 0010:netfs_rreq_unlock+0xef/0x380 [netfs]
    ...
    Call Trace:
     netfs_rreq_assess+0xa6/0x240 [netfs]
     netfs_readpage+0x173/0x3b0 [netfs]
     ? init_wait_var_entry+0x50/0x50
     filemap_read_page+0x33/0xf0
     filemap_get_pages+0x2f2/0x3f0
     filemap_read+0xaa/0x320
     ? do_filp_open+0xb2/0x150
     ? rmqueue+0x3be/0xe10
     ceph_read_iter+0x1fe/0x680 [ceph]
     ? new_sync_read+0x115/0x1a0
     new_sync_read+0x115/0x1a0
     vfs_read+0xf3/0x180
     ksys_read+0x5f/0xe0
     do_syscall_64+0x38/0x90
     entry_SYSCALL_64_after_hwframe+0x44/0xae

    Changes:
    ========
    ver #2)
     - Changed an unsigned int to a size_t to reduce the likelihood of an
       overflow as per Willy's suggestion.
     - Added an additional patch to fix the maths.

    Fixes: 3d3c950467 ("netfs: Provide readahead and readpage netfs helpers")
    Reported-by: George Law <glaw@redhat.com>
    Signed-off-by: David Howells <dhowells@redhat.com>
    Reviewed-by: Jeff Layton <jlayton@kernel.org>
    Reviewed-by: Jingbo Xu <jefflexu@linux.alibaba.com>
    cc: Matthew Wilcox <willy@infradead.org>
    cc: linux-cachefs@redhat.com
    cc: linux-fsdevel@vger.kernel.org
    Link: https://lore.kernel.org/r/166749229733.107206.17482609105741691452.stgit@warthog.procyon.org.uk/ # v1
    Link: https://lore.kernel.org/r/166757987929.950645.12595273010425381286.stgit@warthog.procyon.org.uk/ # v2

Signed-off-by: Xiubo Li <xiubli@redhat.com>
2022-12-19 22:21:32 +08:00
Jeffrey Layton 77a2dfa442 netfs: Split some core bits out into their own file
Bugzilla: http://bugzilla.redhat.com/1229736

commit b900f4b89b4d44aa1a79111763b6dfab51e5e3af
Author: David Howells <dhowells@redhat.com>
Date:   Tue Mar 1 15:25:00 2022 +0000

    netfs: Split some core bits out into their own file

    Split some core bits out into their own file.  More bits will be added to
    this file later.

    Signed-off-by: David Howells <dhowells@redhat.com>
    Reviewed-by: Jeff Layton <jlayton@kernel.org>
    cc: linux-cachefs@redhat.com

    Link: https://lore.kernel.org/r/164623006934.3564931.17932680017894039748.stgit@warthog.procyon.org.uk/ # v1
    Link: https://lore.kernel.org/r/164678218407.1200972.1731208226140990280.stgit@warthog.procyon.org.uk/ # v2
    Link: https://lore.kernel.org/r/164692920944.2099075.11990502173226013856.stgit@warthog.procyon.org.uk/ # v3

Signed-off-by: Jeffrey Layton <jlayton@redhat.com>
2022-08-22 12:32:26 -04:00
Jeffrey Layton fbe9d5891f netfs: Split fs/netfs/read_helper.c
Bugzilla: http://bugzilla.redhat.com/1229736

commit 16211268fcb36672a84359362c2fc2c4695b0fc4
Author: David Howells <dhowells@redhat.com>
Date:   Tue Mar 1 14:35:58 2022 +0000

    netfs: Split fs/netfs/read_helper.c

    Split fs/netfs/read_helper.c into two pieces, one to deal with buffered
    writes and one to deal with the I/O mechanism.

    Changes
    =======
    ver #2)
     - Add kdoc reference to new file.

    Signed-off-by: David Howells <dhowells@redhat.com>
    Reviewed-by: Jeff Layton <jlayton@kernel.org>
    cc: linux-cachefs@redhat.com

    Link: https://lore.kernel.org/r/164623005586.3564931.6149556072728481767.stgit@warthog.procyon.org.uk/ # v1
    Link: https://lore.kernel.org/r/164678217075.1200972.5101072043126828757.stgit@warthog.procyon.org.uk/ # v2
    Link: https://lore.kernel.org/r/164692919953.2099075.7156989585513833046.stgit@warthog.procyon.org.uk/ # v3

Signed-off-by: Jeffrey Layton <jlayton@redhat.com>
2022-08-22 12:32:26 -04:00
Jeffrey Layton 2ba6eae6b0 netfs: Rename read_helper.c to io.c
Bugzilla: http://bugzilla.redhat.com/1229736

commit 3be01750d7ac5803ad6fa76801d4d80b3814229f
Author: David Howells <dhowells@redhat.com>
Date:   Mon Mar 7 21:57:24 2022 +0000

    netfs: Rename read_helper.c to io.c

    Rename the read_helper.c file to io.c before splitting out the buffered
    read functions and some other bits.

    Changes
    =======
    ver #2)
     - Rename read_helper.c before splitting.

    Signed-off-by: David Howells <dhowells@redhat.com>
    Reviewed-by: Jeff Layton <jlayton@kernel.org>
    cc: linux-cachefs@redhat.com

    Link: https://lore.kernel.org/r/164678216109.1200972.16567696909952495832.stgit@warthog.procyon.org.uk/ # v2
    Link: https://lore.kernel.org/r/164692918076.2099075.8120961172717347610.stgit@warthog.procyon.org.uk/ # v3

Signed-off-by: Jeffrey Layton <jlayton@redhat.com>
2022-08-22 12:32:26 -04:00