]> git.baikalelectronics.ru Git - kernel.git/commit
nl80211: fix attrbuf access race by allocating a separate one
authorJohannes Berg <johannes.berg@intel.com>
Wed, 19 Jun 2013 08:09:57 +0000 (10:09 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 19 Jun 2013 16:31:20 +0000 (18:31 +0200)
commitf268c2de08406dde4ca5f42cb77fe8941426a0f0
treeee184cabce960d6ceaf1d2ac4efd0f406c9b5555
parent523aa4c50d8e2fce7c91d014fee9e7a55576f055
nl80211: fix attrbuf access race by allocating a separate one

Since my commit 94f76bc225 ("nl80211: allow splitting wiphy
information in dumps"), nl80211_dump_wiphy() uses the global
nl80211_fam.attrbuf for parsing the incoming data. This wouldn't
be a problem if it only did so on the first dump iteration which
is locked against other commands in generic netlink, but due to
space constraints in cb->args (the needed state doesn't fit) I
decided to always parse the original message. That's racy though
since nl80211_fam.attrbuf could be used by some other parsing in
generic netlink concurrently.

For now, fix this by allocating a separate parse buffer (it's a
bit too big for the stack, currently 1448 bytes on 64-bit). For
-next, I'll change the code to parse into the global buffer in
the first round only and then allocate a smaller buffer to keep
the data in cb->args.

Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/nl80211.c