On 2023/12/26 23:28, syzbot wrote: > Hello, > > syzbot found the following issue on: > > HEAD commit: 39676dfe5233 Add linux-next specific files for 20231222 > git tree: linux-next > console+strace: https://syzkaller.appspot.com/x/log.txt?x=172080a1e80000 > kernel config: https://syzkaller.appspot.com/x/.config?x=f3761490b734dc96 > dashboard link: https://syzkaller.appspot.com/bug?extid=3eff5e51bf1db122a16e > compiler: gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40 > syz repro: https://syzkaller.appspot.com/x/repro.syz?x=178f6e26e80000 > C reproducer: https://syzkaller.appspot.com/x/repro.c?x=15c399e9e80000 > > Downloadable assets: > disk image: https://storage.googleapis.com/syzbot-assets/360542c2ca67/disk-39676dfe.raw.xz > vmlinux: https://storage.googleapis.com/syzbot-assets/900dfb21ca8a/vmlinux-39676dfe.xz > kernel image: https://storage.googleapis.com/syzbot-assets/c94a2a3ea0e0/bzImage-39676dfe.xz > > The issue was bisected to: > > commit 7bc134496bbbaacb0d4423b819da4eca850a839d > Author: Chengming Zhou <zhouchengming@xxxxxxxxxxxxx> > Date: Mon Dec 18 11:50:31 2023 +0000 > > mm/zswap: change dstmem size to one page > > bisection log: https://syzkaller.appspot.com/x/bisect.txt?x=15f60c36e80000 > final oops: https://syzkaller.appspot.com/x/report.txt?x=17f60c36e80000 > console output: https://syzkaller.appspot.com/x/log.txt?x=13f60c36e80000 > > IMPORTANT: if you fix the issue, please add the following tag to the commit: > Reported-by: syzbot+3eff5e51bf1db122a16e@xxxxxxxxxxxxxxxxxxxxxxxxx > Fixes: 7bc134496bbb ("mm/zswap: change dstmem size to one page") > #syz test diff --git a/crypto/scompress.c b/crypto/scompress.c index 442a82c9de7d..b108a30a7600 100644 --- a/crypto/scompress.c +++ b/crypto/scompress.c @@ -117,6 +117,7 @@ static int scomp_acomp_comp_decomp(struct acomp_req *req, int dir) struct crypto_scomp *scomp = *tfm_ctx; void **ctx = acomp_request_ctx(req); struct scomp_scratch *scratch; + unsigned int dlen; int ret; if (!req->src || !req->slen || req->slen > SCOMP_SCRATCH_SIZE) @@ -128,6 +129,8 @@ static int scomp_acomp_comp_decomp(struct acomp_req *req, int dir) if (!req->dlen || req->dlen > SCOMP_SCRATCH_SIZE) req->dlen = SCOMP_SCRATCH_SIZE; + dlen = req->dlen; + scratch = raw_cpu_ptr(&scomp_scratch); spin_lock(&scratch->lock); @@ -145,6 +148,9 @@ static int scomp_acomp_comp_decomp(struct acomp_req *req, int dir) ret = -ENOMEM; goto out; } + } else if (req->dlen > dlen) { + ret = -ENOSPC; + goto out; } scatterwalk_map_and_copy(scratch->dst, req->dst, 0, req->dlen, 1);