net/wan/fsl_ucc_hdlc: fix out of bounds write on array utdm_info
authorColin Ian King <colin.king@canonical.com>
Tue, 14 Jan 2020 14:54:48 +0000 (14:54 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jan 2020 07:21:35 +0000 (08:21 +0100)
commitc91e8519c67d0e20894751abdb11f8e4dc77ec21
tree99a29f0b38e237871ec14d1de3a3329943c5e10a
parent6dc2025f3cd9fd65986e0cdf9705a653e05ad486
net/wan/fsl_ucc_hdlc: fix out of bounds write on array utdm_info

[ Upstream commit ddf420390526ede3b9ff559ac89f58cb59d9db2f ]

Array utdm_info is declared as an array of MAX_HDLC_NUM (4) elements
however up to UCC_MAX_NUM (8) elements are potentially being written
to it.  Currently we have an array out-of-bounds write error on the
last 4 elements. Fix this by making utdm_info UCC_MAX_NUM elements in
size.

Addresses-Coverity: ("Out-of-bounds write")
Fixes: c19b6d246a35 ("drivers/net: support hdlc function for QE-UCC")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/wan/fsl_ucc_hdlc.c