1 This patch fixes the detection of hidden SSIDs as transmitted
4 Signed-off-by: Felix Fietkau <nbd@openwrt.org>
6 --- a/net80211/ieee80211_scan_sta.c
7 +++ b/net80211/ieee80211_scan_sta.c
8 @@ -209,6 +209,19 @@ saveie(u_int8_t **iep, const u_int8_t *i
9 ieee80211_saveie(iep, ie);
13 +static inline int is_empty_ssid(u_int8_t *ssid)
19 + if ((ssid[1] == 1) && (ssid[2] == 0))
26 * Process a beacon or probe response frame; create an
27 * entry in the scan cache or update any previous entry.
28 @@ -233,8 +246,8 @@ sta_add(struct ieee80211_scan_state *ss,
29 SCAN_STA_LOCK_IRQ(st);
30 LIST_FOREACH(se, &st->st_hash[hash], se_hash)
31 if (IEEE80211_ADDR_EQ(se->base.se_macaddr, macaddr) &&
32 - sp->ssid[1] == se->base.se_ssid[1] &&
33 - !memcmp(se->base.se_ssid+2, sp->ssid+2, se->base.se_ssid[1]))
34 + (is_empty_ssid(sp->ssid) || (sp->ssid[1] == se->base.se_ssid[1] &&
35 + !memcmp(se->base.se_ssid+2, sp->ssid+2, se->base.se_ssid[1]))))
38 MALLOC(se, struct sta_entry *, sizeof(struct sta_entry),
39 @@ -252,8 +265,8 @@ found:
42 /* XXX ap beaconing multiple ssid w/ same bssid */
43 - if (sp->ssid[1] != 0 &&
44 - (ISPROBE(subtype) || ise->se_ssid[1] == 0))
45 + if (!is_empty_ssid(sp->ssid) &&
46 + (ISPROBE(subtype) || is_empty_ssid(ise->se_ssid)))
47 memcpy(ise->se_ssid, sp->ssid, 2 + sp->ssid[1]);
49 memcpy(ise->se_rates, sp->rates,