Re: [PATCH v2] fs: btrfs: fix out of bounds write

2024-06-28 Thread Tom Rini
On Wed, 19 Jun 2024 00:41:38 +0300, Alex Shumsky wrote: > Fix btrfs_read/read_and_truncate_page write out of bounds of destination > buffer. Old behavior break bootstd malloc'd buffers of exact file size. > Previously this OOB write have not been noticed because distroboot usually > read files int

Re: [PATCH v2] fs: btrfs: fix out of bounds write

2024-06-24 Thread Tom Rini
On Tue, Jun 25, 2024 at 01:22:01AM +0300, Alex ThreeD wrote: > Hi all, > > Is there something on my side needed to push this forward? I will pick it up for -next in a while, thanks. > > On Wed, Jun 19, 2024 at 12:41 AM Alex Shumsky wrote: > > > Fix btrfs_read/read_and_truncate_page write out

Re: [PATCH v2] fs: btrfs: fix out of bounds write

2024-06-24 Thread Alex ThreeD
Hi all, Is there something on my side needed to push this forward? On Wed, Jun 19, 2024 at 12:41 AM Alex Shumsky wrote: > Fix btrfs_read/read_and_truncate_page write out of bounds of destination > buffer. Old behavior break bootstd malloc'd buffers of exact file size. > Previously this OOB writ

Re: [PATCH v2] fs: btrfs: fix out of bounds write

2024-06-18 Thread Qu Wenruo
在 2024/6/19 07:11, Alex Shumsky 写道: Fix btrfs_read/read_and_truncate_page write out of bounds of destination buffer. Old behavior break bootstd malloc'd buffers of exact file size. Previously this OOB write have not been noticed because distroboot usually read files into huge static memory are

[PATCH v2] fs: btrfs: fix out of bounds write

2024-06-18 Thread Alex Shumsky
Fix btrfs_read/read_and_truncate_page write out of bounds of destination buffer. Old behavior break bootstd malloc'd buffers of exact file size. Previously this OOB write have not been noticed because distroboot usually read files into huge static memory areas. Signed-off-by: Alex Shumsky Fixes: