[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240503144055.3820-1-n.zhandarovich@fintech.ru>
Date: Fri, 3 May 2024 07:40:55 -0700
From: Nikita Zhandarovich <n.zhandarovich@...tech.ru>
To: <syzbot+97b4444a5bd7bf30b3a8@...kaller.appspotmail.com>
CC: Nikita Zhandarovich <n.zhandarovich@...tech.ru>,
<syzkaller-bugs@...glegroups.com>, <linux-kernel@...r.kernel.org>
Subject: Re: [syzbot] [crypto?] KMSAN: uninit-value in skcipher_walk_virt
req->base.flags were not initialized, zero might suit in this case.
Do it with skcipher_request_set_callback() as it's common practice.
#syz test https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
---
fs/bcachefs/checksum.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/bcachefs/checksum.c b/fs/bcachefs/checksum.c
index 7ed779b411f6..088fd2e7bdf1 100644
--- a/fs/bcachefs/checksum.c
+++ b/fs/bcachefs/checksum.c
@@ -102,6 +102,7 @@ static inline int do_encrypt_sg(struct crypto_sync_skcipher *tfm,
int ret;
skcipher_request_set_sync_tfm(req, tfm);
+ skcipher_request_set_callback(req, 0, NULL, NULL);
skcipher_request_set_crypt(req, sg, sg, len, nonce.d);
ret = crypto_skcipher_encrypt(req);
Powered by blists - more mailing lists