crypto: algif_hash - Remove bogus SGL free on zero-length error path
authorHerbert Xu <herbert@gondor.apana.org.au>
Thu, 1 Feb 2024 05:49:09 +0000 (13:49 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 2 Feb 2024 10:08:12 +0000 (18:08 +0800)
commit24c890dd712f6345e382256cae8c97abb0406b70
treeab8ac0b6ed69da9841c3cc585c2192de5fcb02dd
parent69fba378edcaffba7bc7d299fdee02e377069d30
crypto: algif_hash - Remove bogus SGL free on zero-length error path

When a zero-length message is hashed by algif_hash, and an error
is triggered, it tries to free an SG list that was never allocated
in the first place.  Fix this by not freeing the SG list on the
zero-length error path.

Reported-by: Shigeru Yoshida <syoshida@redhat.com>
Reported-by: xingwei lee <xrivendell7@gmail.com>
Fixes: b6d972f68983 ("crypto: af_alg/hash: Fix recvmsg() after sendmsg(MSG_MORE)")
Cc: <stable@vger.kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Reported-by: syzbot+3266db0c26d1fbbe3abb@syzkaller.appspotmail.com
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/algif_hash.c