]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
mac80211: fix SSID copy on IBSS JOIN
authorAntonio Quartulli <ordex@autistici.org>
Fri, 26 Oct 2012 16:54:25 +0000 (18:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Nov 2012 21:18:34 +0000 (13:18 -0800)
commit0355494503b5922528b72a129de874bbe526f9c7
treee36aa9579ed0e371132c9830199b7062aeee2e27
parent3a817522b33cb42171cd36f5fa77fa40f447f351
mac80211: fix SSID copy on IBSS JOIN

commit badecb001a310408d3473b1fc2ed5aefd0bc92a9 upstream.

The 'ssid' field of the cfg80211_ibss_params is a u8 pointer and
its length is likely to be less than IEEE80211_MAX_SSID_LEN most
of the time.

This patch fixes the ssid copy in ieee80211_ibss_join() by using
the SSID length to prevent it from reading beyond the string.

Signed-off-by: Antonio Quartulli <ordex@autistici.org>
[rewrapped commit message, small rewording]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/mac80211/ibss.c