crypto: nx - off by one bug in nx_of_update_msc()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 15 Jul 2016 11:09:13 +0000 (14:09 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 7 Sep 2016 06:32:44 +0000 (08:32 +0200)
commit71d27af29aa5ef06716a8aab15b3bb5144281dc4
tree57a23f88d2eff3dc29f63c459c79764614bf352f
parent9781b971f456189f3664d6f5bd2d5643893c0408
crypto: nx - off by one bug in nx_of_update_msc()

commit e514cc0a492a3f39ef71b31590a7ef67537ee04b upstream.

The props->ap[] array is defined like this:

struct alg_props ap[NX_MAX_FC][NX_MAX_MODE][3];

So we can see that if msc->fc and msc->mode are == to NX_MAX_FC or
NX_MAX_MODE then we're off by one.

Fixes: ae0222b7289d ('powerpc/crypto: nx driver code supporting nx encryption')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/crypto/nx/nx.c