cfg80211: size various nl80211 messages correctly
authorJohannes Berg <johannes.berg@intel.com>
Mon, 9 Jan 2017 10:10:42 +0000 (11:10 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Mon, 9 Jan 2017 12:08:21 +0000 (13:08 +0100)
commit4ef8c1c93f848e360754f10eb2e7134c872b6597
tree660da7459953039341b3a597618f7a7e483f6f18
parent9b8e34e211b15af429b72388a8f2b3b1823d172e
cfg80211: size various nl80211 messages correctly

Ilan reported that sometimes nl80211 messages weren't working if
the frames being transported got very large, which was really a
problem for userspace-to-kernel messages, but prompted me to look
at the code.

Upon review, I found various places where variable-length data is
transported in an nl80211 message but the message isn't allocated
taking that into account. This shouldn't cause any problems since
the frames aren't really that long, apart in one place where two
(possibly very long frames) might not fit.

Fix all the places (that I found) that get variable length data
from the driver and put it into a message to take the length of
the variable data into account. The 100 there is just a safe
constant for the remaining message overhead (it's usually around
50 for most messages.)

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/nl80211.c