Re: [PATCH 02/26] netfs: Fix kernel BUG in netfs_limit_iter() for ITER_KVEC iterators
Paulo Alcantara <[email protected]> Sat, 28 Mar 2026 15:21:30 -0300
| Newsgroups | dev.linux.lists.v9fs,dev.linux.lists.netfs,org.kernel.vger.ceph-devel,org.kernel.vger.linux-cifs,org.kernel.vger.linux-fsdevel,org.kernel.vger.linux-kernel,org.kernel.vger.linux-nfs,org.ozlabs.lists.linux-erofs |
|---|---|
| Message-ID | <[email protected]> |
David Howells <[email protected]> writes: > From: Deepanshu Kartikey <[email protected]> > > When a process crashes and the kernel writes a core dump to a 9P > filesystem, __kernel_write() creates an ITER_KVEC iterator. This > iterator reaches netfs_limit_iter() via netfs_unbuffered_write(), which > only handles ITER_FOLIOQ, ITER_BVEC and ITER_XARRAY iterator types, > hitting the BUG() for any other type. > > Fix this by adding netfs_limit_kvec() following the same pattern as > netfs_limit_bvec(), since both kvec and bvec are simple segment arrays > with pointer and length fields. Dispatch it from netfs_limit_iter() when > the iterator type is ITER_KVEC. > > Fixes: cae932d3aee5 ("netfs: Add func to calculate pagecount/size-limited span of an iterator") > Reported-by: [email protected] > Closes: https://syzkaller.appspot.com/bug?extid=9c058f0d63475adc97fd > Tested-by: [email protected] > Signed-off-by: Deepanshu Kartikey <[email protected]> > Signed-off-by: David Howells <[email protected]> > --- > fs/netfs/iterator.c | 43 +++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 43 insertions(+) Reviewed-by: Paulo Alcantara (Red Hat) <[email protected]>