[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20171129015347.GA24001@zzz.localdomain>
Date: Tue, 28 Nov 2017 17:53:47 -0800
From: Eric Biggers <ebiggers3@...il.com>
To: syzbot
<bot+6f724d52da8e3ff8872545bd8444f50f0d174c5f@...kaller.appspotmail.com>
Cc: davem@...emloft.net, herbert@...dor.apana.org.au,
linux-crypto@...r.kernel.org, linux-kernel@...r.kernel.org,
syzkaller-bugs@...glegroups.com
Subject: Re: KASAN: stack-out-of-bounds Write in sha3_update
On Tue, Nov 28, 2017 at 12:58:45PM -0800, Eric Biggers wrote:
> diff --git a/crypto/hmac.c b/crypto/hmac.c
> index 92871dc2a63e..82436db6b6a6 100644
> --- a/crypto/hmac.c
> +++ b/crypto/hmac.c
> @@ -196,6 +196,11 @@ static int hmac_create(struct crypto_template *tmpl, struct rtattr **tb)
> if (IS_ERR(salg))
> return PTR_ERR(salg);
>
> + /* The underlying hash algorithm must be unkeyed */
> + err = -EINVAL;
> + if (crypto_shash_alg_has_setkey(salg))
> + goto out_put_alg;
> +
> err = -EINVAL;
> ds = salg->digestsize;
> ss = salg->statesize;
I messed this up; it needs to initialize 'alg' first. I'll send a fixed
version.
Eric
Powered by blists - more mailing lists