From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752824AbeDKR32 (ORCPT ); Wed, 11 Apr 2018 13:29:28 -0400 Received: from mail-pg0-f65.google.com ([74.125.83.65]:37951 "EHLO mail-pg0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750734AbeDKR30 (ORCPT ); Wed, 11 Apr 2018 13:29:26 -0400 X-Google-Smtp-Source: AIpwx48HlB/AcXlgz3pG/0ziNS6mGjz+mAZFafrUEq56pwhW8sXcbh752H/O+473vh9SQtoTUr1gvA== Date: Wed, 11 Apr 2018 10:29:23 -0700 From: Eric Biggers To: Stephan =?iso-8859-1?Q?M=FCller?= Cc: Dmitry Vyukov , "Theodore Y. Ts'o" , Matthew Wilcox , Herbert Xu , David Miller , linux-crypto@vger.kernel.org, syzbot , linux-fsdevel , LKML , syzkaller-bugs , Al Viro Subject: Re: [PATCH] crypto: drbg - set freed buffers to NULL Message-ID: <20180411172923.GA94221@gmail.com> References: <001a114467482dbc4b05692df8f9@google.com> <2186798.qrgUIDAn9S@positron.chronox.de> <20316956.hJt0ZTxKTH@positron.chronox.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20316956.hJt0ZTxKTH@positron.chronox.de> User-Agent: Mutt/1.9.2 (2017-12-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 11, 2018 at 04:31:01PM +0200, Stephan Müller wrote: > Sorry, this time with the proper subject line. > > ---8<--- > > During freeing of the internal buffers used by the DRBG, set the pointer > to NULL. It is possible that the context with the freed buffers is > reused. In case of an error during initialization where the pointers > do not yet point to allocated memory, the NULL value prevents a double > free. > > Signed-off-by: Stephan Mueller > Reported-by: syzbot+75397ee3df5c70164154@syzkaller.appspotmail.com > --- > crypto/drbg.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/crypto/drbg.c b/crypto/drbg.c > index 4faa2781c964..466a112a4446 100644 > --- a/crypto/drbg.c > +++ b/crypto/drbg.c > @@ -1134,8 +1134,10 @@ static inline void drbg_dealloc_state(struct drbg_state *drbg) > if (!drbg) > return; > kzfree(drbg->Vbuf); > + drbg->Vbuf = NULL; > drbg->V = NULL; > kzfree(drbg->Cbuf); > + drbg->Cbuf = NULL; > drbg->C = NULL; > kzfree(drbg->scratchpadbuf); > drbg->scratchpadbuf = NULL; Can you please add Fixes and Cc stable? - Eric