staging: rtl8712: memory corruption in wpa_set_encryption()
authorDan Carpenter <dan.carpenter@oracle.com>
Sat, 30 Jan 2016 14:41:10 +0000 (17:41 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Feb 2016 03:52:30 +0000 (19:52 -0800)
commitaea48157ce1b1fb527747256baf9ec39d0d121a2
tree9702f2c6106541f2f6fb95c073b15fff1324790b
parenteaf0e7966d485b4524c1fc278922e4197ec273cc
staging: rtl8712: memory corruption in wpa_set_encryption()

->KeyMaterial is declared as a 16 byte array, but we only ever allocate
either 5 or 13 bytes of it.  The problem is that we memset() all 16
bytes to zero so we're memsetting past the end of the allocated memory.

I fixed this in slightly lazy way, by just allocating 16 bytes.  This
works but there is a lot more cleanup you could do to this code if you
wanted.  Which is why this code is in staging.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_ioctl_linux.c