]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
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)
committerJiri Slaby <jslaby@suse.cz>
Fri, 23 Sep 2016 07:29:21 +0000 (09:29 +0200)
commitaddf8b9697f9efb97dd8f599fcf17a3e128cfd5f
tree5b5d4ab4182c9bf9fb2009159634cbcda2af70c3
parent1bc74ff3eeb249ab98674bb31e92abee566bb3d5
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: Jiri Slaby <jslaby@suse.cz>
drivers/crypto/nx/nx.c