usb: iowarrior: replace kmalloc with kmalloc_array
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Thu, 23 Aug 2018 17:55:27 +0000 (12:55 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 10 Sep 2018 18:05:28 +0000 (20:05 +0200)
commit23feefda22392d44ee4101dfcf946bc87a6c74b3
tree1c23cf16b2fda498cea4ef422e48d2102c76c960
parent87f88dfcde0ecde2a1136b8364099dddb9895b12
usb: iowarrior: replace kmalloc with kmalloc_array

A common flaw in the kernel is integer overflow during memory allocation
size calculations. In an effort to reduce the frequency of these bugs,
kmalloc_array was implemented, which allocates memory for an array,
while at the same time detects integer overflow.

This patch replaces cases of:

kmalloc(a * b, gfp)

with:
kmalloc_array(a, b, gfp)

Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/iowarrior.c