]> git.baikalelectronics.ru Git - kernel.git/commit
rtnl: fix info leak on RTM_GETLINK request for VF devices
authorMathias Krause <minipli@googlemail.com>
Sat, 9 Mar 2013 05:52:20 +0000 (05:52 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 10 Mar 2013 09:19:26 +0000 (05:19 -0400)
commit14be8245f76c8c5fa6f6c6a7bd4661db3608ebb3
tree8575649889787ab0ba141927e4e1d3c1d0c43f68
parenta2d8c9ca35fce8b5ca104b2b8b9369ff3dc6c039
rtnl: fix info leak on RTM_GETLINK request for VF devices

Initialize the mac address buffer with 0 as the driver specific function
will probably not fill the whole buffer. In fact, all in-kernel drivers
fill only ETH_ALEN of the MAX_ADDR_LEN bytes, i.e. 6 of the 32 possible
bytes. Therefore we currently leak 26 bytes of stack memory to userland
via the netlink interface.

Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/rtnetlink.c