wl12xx cards require knowledge of the real SSID when operating as AP with SSID hidden in beacon data. Allow passing the real SSID from usermode apart from beacon data. Signed-off-by: Arik Nemtsov <arik@xxxxxxxxxx> --- include/net/cfg80211.h | 5 +++++ net/wireless/nl80211.c | 8 ++++++++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 1322695..03b1b0c 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -607,6 +607,9 @@ struct mpath_info { * @ap_isolate: do not forward packets between connected stations * @ht_opmode: HT Operation mode * (u16 = opmode, -1 = do not change) + * @ssid_len: length of ssid string + * (>0 = ssid_len, -1 = do not change) + * @ssid: SSID string (for AP mode). NULL termination not required. */ struct bss_parameters { int use_cts_prot; @@ -616,6 +619,8 @@ struct bss_parameters { u8 basic_rates_len; int ap_isolate; int ht_opmode; + int ssid_len; + u8 *ssid; }; /* diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 9b62710..ce5453d 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -2576,6 +2576,7 @@ static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info) params.use_short_slot_time = -1; params.ap_isolate = -1; params.ht_opmode = -1; + params.ssid_len = -1; if (info->attrs[NL80211_ATTR_BSS_CTS_PROT]) params.use_cts_prot = @@ -2597,6 +2598,13 @@ static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info) if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE]) params.ht_opmode = nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]); + if (info->attrs[NL80211_ATTR_SSID]) { + params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); + params.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]); + if (params.ssid_len == 0 || + params.ssid_len > IEEE80211_MAX_SSID_LEN) + return -EINVAL; + } if (!rdev->ops->change_bss) return -EOPNOTSUPP; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html