]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
lib/mpi: Fix karactx leak in mpi_powm
authorHerbert Xu <herbert@gondor.apana.org.au>
Mon, 24 Jun 2019 10:32:26 +0000 (18:32 +0800)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Wed, 14 Aug 2019 09:18:49 +0000 (11:18 +0200)
commitcad14c8c96938b5365a42401d938051eb5afb1bb
tree43f54a193a1f4aa92130bb66b925e2b1bb6612bf
parent82fcb1bd7865bc68930625410b91c750b1d4788e
lib/mpi: Fix karactx leak in mpi_powm

BugLink: https://bugs.launchpad.net/bugs/1838824
commit c8ea9fce2baf7b643384f36f29e4194fa40d33a6 upstream.

Sometimes mpi_powm will leak karactx because a memory allocation
failure causes a bail-out that skips the freeing of karactx.  This
patch moves the freeing of karactx to the end of the function like
everything else so that it can't be skipped.

Reported-by: syzbot+f7baccc38dcc1e094e77@syzkaller.appspotmail.com
Fixes: cdec9cb5167a ("crypto: GnuPG based MPI lib - source files...")
Cc: <stable@vger.kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Reviewed-by: Eric Biggers <ebiggers@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
lib/mpi/mpi-pow.c