]> git.baikalelectronics.ru Git - kernel.git/commit
nl80211: Use different attrs for BSSID and random MAC addr in scan req
authorVamsi Krishna <vamsin@qti.qualcomm.com>
Fri, 2 Dec 2016 21:59:08 +0000 (23:59 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 9 Dec 2016 11:47:19 +0000 (12:47 +0100)
commita8dda635f8bb57d6ea4633e9ee3809400af94599
tree952e77eef1b4e811b0b3df7a681465857570df2c
parent0bc72050f41a3bae8aea61e7646a6fe9e7cbff64
nl80211: Use different attrs for BSSID and random MAC addr in scan req

NL80211_ATTR_MAC was used to set both the specific BSSID to be scanned
and the random MAC address to be used when privacy is enabled. When both
the features are enabled, both the BSSID and the local MAC address were
getting same value causing Probe Request frames to go with unintended
DA. Hence, this has been fixed by using a different NL80211_ATTR_BSSID
attribute to set the specific BSSID (which was the more recent addition
in cfg80211) for a scan.

Backwards compatibility with old userspace software is maintained to
some extent by allowing NL80211_ATTR_MAC to be used to set the specific
BSSID when scanning without enabling random MAC address use.

Scanning with random source MAC address was introduced by commit
85a6ea4ce9b0 ("cfg80211: allow drivers to support random MAC addresses
for scan") and the issue was introduced with the addition of the second
user for the same attribute in commit c7b22c06dbf2 ("cfg80211: Allow a
scan request for a specific BSSID").

Fixes: c7b22c06dbf2 ("cfg80211: Allow a scan request for a specific BSSID")
Signed-off-by: Vamsi Krishna <vamsin@qti.qualcomm.com>
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
include/uapi/linux/nl80211.h
net/wireless/nl80211.c