bss.c 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213
  1. /*
  2. * BSS table
  3. * Copyright (c) 2009-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "drivers/driver.h"
  13. #include "wpa_supplicant_i.h"
  14. #include "config.h"
  15. #include "notify.h"
  16. #include "scan.h"
  17. #include "bss.h"
  18. /**
  19. * WPA_BSS_EXPIRATION_PERIOD - Period of expiration run in seconds
  20. */
  21. #define WPA_BSS_EXPIRATION_PERIOD 10
  22. #define WPA_BSS_FREQ_CHANGED_FLAG BIT(0)
  23. #define WPA_BSS_SIGNAL_CHANGED_FLAG BIT(1)
  24. #define WPA_BSS_PRIVACY_CHANGED_FLAG BIT(2)
  25. #define WPA_BSS_MODE_CHANGED_FLAG BIT(3)
  26. #define WPA_BSS_WPAIE_CHANGED_FLAG BIT(4)
  27. #define WPA_BSS_RSNIE_CHANGED_FLAG BIT(5)
  28. #define WPA_BSS_WPS_CHANGED_FLAG BIT(6)
  29. #define WPA_BSS_RATES_CHANGED_FLAG BIT(7)
  30. #define WPA_BSS_IES_CHANGED_FLAG BIT(8)
  31. static void wpa_bss_set_hessid(struct wpa_bss *bss)
  32. {
  33. #ifdef CONFIG_INTERWORKING
  34. const u8 *ie = wpa_bss_get_ie(bss, WLAN_EID_INTERWORKING);
  35. if (ie == NULL || (ie[1] != 7 && ie[1] != 9)) {
  36. os_memset(bss->hessid, 0, ETH_ALEN);
  37. return;
  38. }
  39. if (ie[1] == 7)
  40. os_memcpy(bss->hessid, ie + 3, ETH_ALEN);
  41. else
  42. os_memcpy(bss->hessid, ie + 5, ETH_ALEN);
  43. #endif /* CONFIG_INTERWORKING */
  44. }
  45. /**
  46. * wpa_bss_anqp_alloc - Allocate ANQP data structure for a BSS entry
  47. * Returns: Allocated ANQP data structure or %NULL on failure
  48. *
  49. * The allocated ANQP data structure has its users count set to 1. It may be
  50. * shared by multiple BSS entries and each shared entry is freed with
  51. * wpa_bss_anqp_free().
  52. */
  53. struct wpa_bss_anqp * wpa_bss_anqp_alloc(void)
  54. {
  55. struct wpa_bss_anqp *anqp;
  56. anqp = os_zalloc(sizeof(*anqp));
  57. if (anqp == NULL)
  58. return NULL;
  59. anqp->users = 1;
  60. return anqp;
  61. }
  62. /**
  63. * wpa_bss_anqp_clone - Clone an ANQP data structure
  64. * @anqp: ANQP data structure from wpa_bss_anqp_alloc()
  65. * Returns: Cloned ANQP data structure or %NULL on failure
  66. */
  67. static struct wpa_bss_anqp * wpa_bss_anqp_clone(struct wpa_bss_anqp *anqp)
  68. {
  69. struct wpa_bss_anqp *n;
  70. n = os_zalloc(sizeof(*n));
  71. if (n == NULL)
  72. return NULL;
  73. #define ANQP_DUP(f) if (anqp->f) n->f = wpabuf_dup(anqp->f)
  74. #ifdef CONFIG_INTERWORKING
  75. ANQP_DUP(venue_name);
  76. ANQP_DUP(network_auth_type);
  77. ANQP_DUP(roaming_consortium);
  78. ANQP_DUP(ip_addr_type_availability);
  79. ANQP_DUP(nai_realm);
  80. ANQP_DUP(anqp_3gpp);
  81. ANQP_DUP(domain_name);
  82. #endif /* CONFIG_INTERWORKING */
  83. #ifdef CONFIG_HS20
  84. ANQP_DUP(hs20_operator_friendly_name);
  85. ANQP_DUP(hs20_wan_metrics);
  86. ANQP_DUP(hs20_connection_capability);
  87. ANQP_DUP(hs20_operating_class);
  88. #endif /* CONFIG_HS20 */
  89. #undef ANQP_DUP
  90. return n;
  91. }
  92. /**
  93. * wpa_bss_anqp_unshare_alloc - Unshare ANQP data (if shared) in a BSS entry
  94. * @bss: BSS entry
  95. * Returns: 0 on success, -1 on failure
  96. *
  97. * This function ensures the specific BSS entry has an ANQP data structure that
  98. * is not shared with any other BSS entry.
  99. */
  100. int wpa_bss_anqp_unshare_alloc(struct wpa_bss *bss)
  101. {
  102. struct wpa_bss_anqp *anqp;
  103. if (bss->anqp && bss->anqp->users > 1) {
  104. /* allocated, but shared - clone an unshared copy */
  105. anqp = wpa_bss_anqp_clone(bss->anqp);
  106. if (anqp == NULL)
  107. return -1;
  108. anqp->users = 1;
  109. bss->anqp->users--;
  110. bss->anqp = anqp;
  111. return 0;
  112. }
  113. if (bss->anqp)
  114. return 0; /* already allocated and not shared */
  115. /* not allocated - allocate a new storage area */
  116. bss->anqp = wpa_bss_anqp_alloc();
  117. return bss->anqp ? 0 : -1;
  118. }
  119. /**
  120. * wpa_bss_anqp_free - Free an ANQP data structure
  121. * @anqp: ANQP data structure from wpa_bss_anqp_alloc() or wpa_bss_anqp_clone()
  122. */
  123. static void wpa_bss_anqp_free(struct wpa_bss_anqp *anqp)
  124. {
  125. if (anqp == NULL)
  126. return;
  127. anqp->users--;
  128. if (anqp->users > 0) {
  129. /* Another BSS entry holds a pointer to this ANQP info */
  130. return;
  131. }
  132. #ifdef CONFIG_INTERWORKING
  133. wpabuf_free(anqp->venue_name);
  134. wpabuf_free(anqp->network_auth_type);
  135. wpabuf_free(anqp->roaming_consortium);
  136. wpabuf_free(anqp->ip_addr_type_availability);
  137. wpabuf_free(anqp->nai_realm);
  138. wpabuf_free(anqp->anqp_3gpp);
  139. wpabuf_free(anqp->domain_name);
  140. #endif /* CONFIG_INTERWORKING */
  141. #ifdef CONFIG_HS20
  142. wpabuf_free(anqp->hs20_operator_friendly_name);
  143. wpabuf_free(anqp->hs20_wan_metrics);
  144. wpabuf_free(anqp->hs20_connection_capability);
  145. wpabuf_free(anqp->hs20_operating_class);
  146. #endif /* CONFIG_HS20 */
  147. os_free(anqp);
  148. }
  149. static void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  150. const char *reason)
  151. {
  152. if (wpa_s->last_scan_res) {
  153. unsigned int i;
  154. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  155. if (wpa_s->last_scan_res[i] == bss) {
  156. os_memmove(&wpa_s->last_scan_res[i],
  157. &wpa_s->last_scan_res[i + 1],
  158. (wpa_s->last_scan_res_used - i - 1)
  159. * sizeof(struct wpa_bss *));
  160. wpa_s->last_scan_res_used--;
  161. break;
  162. }
  163. }
  164. }
  165. dl_list_del(&bss->list);
  166. dl_list_del(&bss->list_id);
  167. wpa_s->num_bss--;
  168. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Remove id %u BSSID " MACSTR
  169. " SSID '%s' due to %s", bss->id, MAC2STR(bss->bssid),
  170. wpa_ssid_txt(bss->ssid, bss->ssid_len), reason);
  171. wpas_notify_bss_removed(wpa_s, bss->bssid, bss->id);
  172. wpa_bss_anqp_free(bss->anqp);
  173. os_free(bss);
  174. }
  175. /**
  176. * wpa_bss_get - Fetch a BSS table entry based on BSSID and SSID
  177. * @wpa_s: Pointer to wpa_supplicant data
  178. * @bssid: BSSID
  179. * @ssid: SSID
  180. * @ssid_len: Length of @ssid
  181. * Returns: Pointer to the BSS entry or %NULL if not found
  182. */
  183. struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
  184. const u8 *ssid, size_t ssid_len)
  185. {
  186. struct wpa_bss *bss;
  187. if (!wpa_supplicant_filter_bssid_match(wpa_s, bssid))
  188. return NULL;
  189. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  190. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0 &&
  191. bss->ssid_len == ssid_len &&
  192. os_memcmp(bss->ssid, ssid, ssid_len) == 0)
  193. return bss;
  194. }
  195. return NULL;
  196. }
  197. static void calculate_update_time(const struct os_time *fetch_time,
  198. unsigned int age_ms,
  199. struct os_time *update_time)
  200. {
  201. os_time_t usec;
  202. update_time->sec = fetch_time->sec;
  203. update_time->usec = fetch_time->usec;
  204. update_time->sec -= age_ms / 1000;
  205. usec = (age_ms % 1000) * 1000;
  206. if (update_time->usec < usec) {
  207. update_time->sec--;
  208. update_time->usec += 1000000;
  209. }
  210. update_time->usec -= usec;
  211. }
  212. static void wpa_bss_copy_res(struct wpa_bss *dst, struct wpa_scan_res *src,
  213. struct os_time *fetch_time)
  214. {
  215. dst->flags = src->flags;
  216. os_memcpy(dst->bssid, src->bssid, ETH_ALEN);
  217. dst->freq = src->freq;
  218. dst->beacon_int = src->beacon_int;
  219. dst->caps = src->caps;
  220. dst->qual = src->qual;
  221. dst->noise = src->noise;
  222. dst->level = src->level;
  223. dst->tsf = src->tsf;
  224. calculate_update_time(fetch_time, src->age, &dst->last_update);
  225. }
  226. static int wpa_bss_known(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  227. {
  228. struct wpa_ssid *ssid;
  229. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  230. if (ssid->ssid == NULL || ssid->ssid_len == 0)
  231. continue;
  232. if (ssid->ssid_len == bss->ssid_len &&
  233. os_memcmp(ssid->ssid, bss->ssid, ssid->ssid_len) == 0)
  234. return 1;
  235. }
  236. return 0;
  237. }
  238. static int wpa_bss_in_use(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  239. {
  240. return bss == wpa_s->current_bss ||
  241. os_memcmp(bss->bssid, wpa_s->bssid, ETH_ALEN) == 0 ||
  242. os_memcmp(bss->bssid, wpa_s->pending_bssid, ETH_ALEN) == 0;
  243. }
  244. static int wpa_bss_remove_oldest_unknown(struct wpa_supplicant *wpa_s)
  245. {
  246. struct wpa_bss *bss;
  247. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  248. if (!wpa_bss_known(wpa_s, bss)) {
  249. wpa_bss_remove(wpa_s, bss, __func__);
  250. return 0;
  251. }
  252. }
  253. return -1;
  254. }
  255. static int wpa_bss_remove_oldest(struct wpa_supplicant *wpa_s)
  256. {
  257. struct wpa_bss *bss;
  258. /*
  259. * Remove the oldest entry that does not match with any configured
  260. * network.
  261. */
  262. if (wpa_bss_remove_oldest_unknown(wpa_s) == 0)
  263. return 0;
  264. /*
  265. * Remove the oldest entry that isn't currently in use.
  266. */
  267. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  268. if (!wpa_bss_in_use(wpa_s, bss)) {
  269. wpa_bss_remove(wpa_s, bss, __func__);
  270. return 0;
  271. }
  272. }
  273. return -1;
  274. }
  275. static struct wpa_bss * wpa_bss_add(struct wpa_supplicant *wpa_s,
  276. const u8 *ssid, size_t ssid_len,
  277. struct wpa_scan_res *res,
  278. struct os_time *fetch_time)
  279. {
  280. struct wpa_bss *bss;
  281. bss = os_zalloc(sizeof(*bss) + res->ie_len + res->beacon_ie_len);
  282. if (bss == NULL)
  283. return NULL;
  284. bss->id = wpa_s->bss_next_id++;
  285. bss->last_update_idx = wpa_s->bss_update_idx;
  286. wpa_bss_copy_res(bss, res, fetch_time);
  287. os_memcpy(bss->ssid, ssid, ssid_len);
  288. bss->ssid_len = ssid_len;
  289. bss->ie_len = res->ie_len;
  290. bss->beacon_ie_len = res->beacon_ie_len;
  291. os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
  292. wpa_bss_set_hessid(bss);
  293. if (wpa_s->num_bss + 1 > wpa_s->conf->bss_max_count &&
  294. wpa_bss_remove_oldest(wpa_s) != 0) {
  295. wpa_printf(MSG_ERROR, "Increasing the MAX BSS count to %d "
  296. "because all BSSes are in use. We should normally "
  297. "not get here!", (int) wpa_s->num_bss + 1);
  298. wpa_s->conf->bss_max_count = wpa_s->num_bss + 1;
  299. }
  300. dl_list_add_tail(&wpa_s->bss, &bss->list);
  301. dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
  302. wpa_s->num_bss++;
  303. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Add new id %u BSSID " MACSTR
  304. " SSID '%s'",
  305. bss->id, MAC2STR(bss->bssid), wpa_ssid_txt(ssid, ssid_len));
  306. wpas_notify_bss_added(wpa_s, bss->bssid, bss->id);
  307. return bss;
  308. }
  309. static int are_ies_equal(const struct wpa_bss *old,
  310. const struct wpa_scan_res *new, u32 ie)
  311. {
  312. const u8 *old_ie, *new_ie;
  313. struct wpabuf *old_ie_buff = NULL;
  314. struct wpabuf *new_ie_buff = NULL;
  315. int new_ie_len, old_ie_len, ret, is_multi;
  316. switch (ie) {
  317. case WPA_IE_VENDOR_TYPE:
  318. old_ie = wpa_bss_get_vendor_ie(old, ie);
  319. new_ie = wpa_scan_get_vendor_ie(new, ie);
  320. is_multi = 0;
  321. break;
  322. case WPS_IE_VENDOR_TYPE:
  323. old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie);
  324. new_ie_buff = wpa_scan_get_vendor_ie_multi(new, ie);
  325. is_multi = 1;
  326. break;
  327. case WLAN_EID_RSN:
  328. case WLAN_EID_SUPP_RATES:
  329. case WLAN_EID_EXT_SUPP_RATES:
  330. old_ie = wpa_bss_get_ie(old, ie);
  331. new_ie = wpa_scan_get_ie(new, ie);
  332. is_multi = 0;
  333. break;
  334. default:
  335. wpa_printf(MSG_DEBUG, "bss: %s: cannot compare IEs", __func__);
  336. return 0;
  337. }
  338. if (is_multi) {
  339. /* in case of multiple IEs stored in buffer */
  340. old_ie = old_ie_buff ? wpabuf_head_u8(old_ie_buff) : NULL;
  341. new_ie = new_ie_buff ? wpabuf_head_u8(new_ie_buff) : NULL;
  342. old_ie_len = old_ie_buff ? wpabuf_len(old_ie_buff) : 0;
  343. new_ie_len = new_ie_buff ? wpabuf_len(new_ie_buff) : 0;
  344. } else {
  345. /* in case of single IE */
  346. old_ie_len = old_ie ? old_ie[1] + 2 : 0;
  347. new_ie_len = new_ie ? new_ie[1] + 2 : 0;
  348. }
  349. if (!old_ie || !new_ie)
  350. ret = !old_ie && !new_ie;
  351. else
  352. ret = (old_ie_len == new_ie_len &&
  353. os_memcmp(old_ie, new_ie, old_ie_len) == 0);
  354. wpabuf_free(old_ie_buff);
  355. wpabuf_free(new_ie_buff);
  356. return ret;
  357. }
  358. static u32 wpa_bss_compare_res(const struct wpa_bss *old,
  359. const struct wpa_scan_res *new)
  360. {
  361. u32 changes = 0;
  362. int caps_diff = old->caps ^ new->caps;
  363. if (old->freq != new->freq)
  364. changes |= WPA_BSS_FREQ_CHANGED_FLAG;
  365. if (old->level != new->level)
  366. changes |= WPA_BSS_SIGNAL_CHANGED_FLAG;
  367. if (caps_diff & IEEE80211_CAP_PRIVACY)
  368. changes |= WPA_BSS_PRIVACY_CHANGED_FLAG;
  369. if (caps_diff & IEEE80211_CAP_IBSS)
  370. changes |= WPA_BSS_MODE_CHANGED_FLAG;
  371. if (old->ie_len == new->ie_len &&
  372. os_memcmp(old + 1, new + 1, old->ie_len) == 0)
  373. return changes;
  374. changes |= WPA_BSS_IES_CHANGED_FLAG;
  375. if (!are_ies_equal(old, new, WPA_IE_VENDOR_TYPE))
  376. changes |= WPA_BSS_WPAIE_CHANGED_FLAG;
  377. if (!are_ies_equal(old, new, WLAN_EID_RSN))
  378. changes |= WPA_BSS_RSNIE_CHANGED_FLAG;
  379. if (!are_ies_equal(old, new, WPS_IE_VENDOR_TYPE))
  380. changes |= WPA_BSS_WPS_CHANGED_FLAG;
  381. if (!are_ies_equal(old, new, WLAN_EID_SUPP_RATES) ||
  382. !are_ies_equal(old, new, WLAN_EID_EXT_SUPP_RATES))
  383. changes |= WPA_BSS_RATES_CHANGED_FLAG;
  384. return changes;
  385. }
  386. static void notify_bss_changes(struct wpa_supplicant *wpa_s, u32 changes,
  387. const struct wpa_bss *bss)
  388. {
  389. if (changes & WPA_BSS_FREQ_CHANGED_FLAG)
  390. wpas_notify_bss_freq_changed(wpa_s, bss->id);
  391. if (changes & WPA_BSS_SIGNAL_CHANGED_FLAG)
  392. wpas_notify_bss_signal_changed(wpa_s, bss->id);
  393. if (changes & WPA_BSS_PRIVACY_CHANGED_FLAG)
  394. wpas_notify_bss_privacy_changed(wpa_s, bss->id);
  395. if (changes & WPA_BSS_MODE_CHANGED_FLAG)
  396. wpas_notify_bss_mode_changed(wpa_s, bss->id);
  397. if (changes & WPA_BSS_WPAIE_CHANGED_FLAG)
  398. wpas_notify_bss_wpaie_changed(wpa_s, bss->id);
  399. if (changes & WPA_BSS_RSNIE_CHANGED_FLAG)
  400. wpas_notify_bss_rsnie_changed(wpa_s, bss->id);
  401. if (changes & WPA_BSS_WPS_CHANGED_FLAG)
  402. wpas_notify_bss_wps_changed(wpa_s, bss->id);
  403. if (changes & WPA_BSS_IES_CHANGED_FLAG)
  404. wpas_notify_bss_ies_changed(wpa_s, bss->id);
  405. if (changes & WPA_BSS_RATES_CHANGED_FLAG)
  406. wpas_notify_bss_rates_changed(wpa_s, bss->id);
  407. }
  408. static struct wpa_bss *
  409. wpa_bss_update(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  410. struct wpa_scan_res *res, struct os_time *fetch_time)
  411. {
  412. u32 changes;
  413. changes = wpa_bss_compare_res(bss, res);
  414. bss->scan_miss_count = 0;
  415. bss->last_update_idx = wpa_s->bss_update_idx;
  416. wpa_bss_copy_res(bss, res, fetch_time);
  417. /* Move the entry to the end of the list */
  418. dl_list_del(&bss->list);
  419. #ifdef CONFIG_P2P
  420. if (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
  421. !wpa_scan_get_vendor_ie(res, P2P_IE_VENDOR_TYPE)) {
  422. /*
  423. * This can happen when non-P2P station interface runs a scan
  424. * without P2P IE in the Probe Request frame. P2P GO would reply
  425. * to that with a Probe Response that does not include P2P IE.
  426. * Do not update the IEs in this BSS entry to avoid such loss of
  427. * information that may be needed for P2P operations to
  428. * determine group information.
  429. */
  430. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Do not update scan IEs for "
  431. MACSTR " since that would remove P2P IE information",
  432. MAC2STR(bss->bssid));
  433. } else
  434. #endif /* CONFIG_P2P */
  435. if (bss->ie_len + bss->beacon_ie_len >=
  436. res->ie_len + res->beacon_ie_len) {
  437. os_memcpy(bss + 1, res + 1, res->ie_len + res->beacon_ie_len);
  438. bss->ie_len = res->ie_len;
  439. bss->beacon_ie_len = res->beacon_ie_len;
  440. } else {
  441. struct wpa_bss *nbss;
  442. struct dl_list *prev = bss->list_id.prev;
  443. dl_list_del(&bss->list_id);
  444. nbss = os_realloc(bss, sizeof(*bss) + res->ie_len +
  445. res->beacon_ie_len);
  446. if (nbss) {
  447. unsigned int i;
  448. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  449. if (wpa_s->last_scan_res[i] == bss) {
  450. wpa_s->last_scan_res[i] = nbss;
  451. break;
  452. }
  453. }
  454. if (wpa_s->current_bss == bss)
  455. wpa_s->current_bss = nbss;
  456. bss = nbss;
  457. os_memcpy(bss + 1, res + 1,
  458. res->ie_len + res->beacon_ie_len);
  459. bss->ie_len = res->ie_len;
  460. bss->beacon_ie_len = res->beacon_ie_len;
  461. }
  462. dl_list_add(prev, &bss->list_id);
  463. }
  464. if (changes & WPA_BSS_IES_CHANGED_FLAG)
  465. wpa_bss_set_hessid(bss);
  466. dl_list_add_tail(&wpa_s->bss, &bss->list);
  467. notify_bss_changes(wpa_s, changes, bss);
  468. return bss;
  469. }
  470. /**
  471. * wpa_bss_update_start - Start a BSS table update from scan results
  472. * @wpa_s: Pointer to wpa_supplicant data
  473. *
  474. * This function is called at the start of each BSS table update round for new
  475. * scan results. The actual scan result entries are indicated with calls to
  476. * wpa_bss_update_scan_res() and the update round is finished with a call to
  477. * wpa_bss_update_end().
  478. */
  479. void wpa_bss_update_start(struct wpa_supplicant *wpa_s)
  480. {
  481. wpa_s->bss_update_idx++;
  482. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Start scan result update %u",
  483. wpa_s->bss_update_idx);
  484. wpa_s->last_scan_res_used = 0;
  485. }
  486. /**
  487. * wpa_bss_update_scan_res - Update a BSS table entry based on a scan result
  488. * @wpa_s: Pointer to wpa_supplicant data
  489. * @res: Scan result
  490. * @fetch_time: Time when the result was fetched from the driver
  491. *
  492. * This function updates a BSS table entry (or adds one) based on a scan result.
  493. * This is called separately for each scan result between the calls to
  494. * wpa_bss_update_start() and wpa_bss_update_end().
  495. */
  496. void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
  497. struct wpa_scan_res *res,
  498. struct os_time *fetch_time)
  499. {
  500. const u8 *ssid, *p2p;
  501. struct wpa_bss *bss;
  502. if (wpa_s->conf->ignore_old_scan_res) {
  503. struct os_time update;
  504. calculate_update_time(fetch_time, res->age, &update);
  505. if (os_time_before(&update, &wpa_s->scan_trigger_time)) {
  506. struct os_time age;
  507. os_time_sub(&wpa_s->scan_trigger_time, &update, &age);
  508. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Ignore driver BSS "
  509. "table entry that is %u.%06u seconds older "
  510. "than our scan trigger",
  511. (unsigned int) age.sec,
  512. (unsigned int) age.usec);
  513. return;
  514. }
  515. }
  516. ssid = wpa_scan_get_ie(res, WLAN_EID_SSID);
  517. if (ssid == NULL) {
  518. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: No SSID IE included for "
  519. MACSTR, MAC2STR(res->bssid));
  520. return;
  521. }
  522. if (ssid[1] > 32) {
  523. wpa_dbg(wpa_s, MSG_DEBUG, "BSS: Too long SSID IE included for "
  524. MACSTR, MAC2STR(res->bssid));
  525. return;
  526. }
  527. p2p = wpa_scan_get_vendor_ie(res, P2P_IE_VENDOR_TYPE);
  528. #ifdef CONFIG_P2P
  529. if (p2p == NULL &&
  530. wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  531. /*
  532. * If it's a P2P specific interface, then don't update
  533. * the scan result without a P2P IE.
  534. */
  535. wpa_printf(MSG_DEBUG, "BSS: No P2P IE - skipping BSS " MACSTR
  536. " update for P2P interface", MAC2STR(res->bssid));
  537. return;
  538. }
  539. #endif /* CONFIG_P2P */
  540. if (p2p && ssid[1] == P2P_WILDCARD_SSID_LEN &&
  541. os_memcmp(ssid + 2, P2P_WILDCARD_SSID, P2P_WILDCARD_SSID_LEN) == 0)
  542. return; /* Skip P2P listen discovery results here */
  543. /* TODO: add option for ignoring BSSes we are not interested in
  544. * (to save memory) */
  545. bss = wpa_bss_get(wpa_s, res->bssid, ssid + 2, ssid[1]);
  546. if (bss == NULL)
  547. bss = wpa_bss_add(wpa_s, ssid + 2, ssid[1], res, fetch_time);
  548. else {
  549. bss = wpa_bss_update(wpa_s, bss, res, fetch_time);
  550. if (wpa_s->last_scan_res) {
  551. unsigned int i;
  552. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  553. if (bss == wpa_s->last_scan_res[i]) {
  554. /* Already in the list */
  555. return;
  556. }
  557. }
  558. }
  559. }
  560. if (bss == NULL)
  561. return;
  562. if (wpa_s->last_scan_res_used >= wpa_s->last_scan_res_size) {
  563. struct wpa_bss **n;
  564. unsigned int siz;
  565. if (wpa_s->last_scan_res_size == 0)
  566. siz = 32;
  567. else
  568. siz = wpa_s->last_scan_res_size * 2;
  569. n = os_realloc_array(wpa_s->last_scan_res, siz,
  570. sizeof(struct wpa_bss *));
  571. if (n == NULL)
  572. return;
  573. wpa_s->last_scan_res = n;
  574. wpa_s->last_scan_res_size = siz;
  575. }
  576. wpa_s->last_scan_res[wpa_s->last_scan_res_used++] = bss;
  577. }
  578. static int wpa_bss_included_in_scan(const struct wpa_bss *bss,
  579. const struct scan_info *info)
  580. {
  581. int found;
  582. size_t i;
  583. if (info == NULL)
  584. return 1;
  585. if (info->num_freqs) {
  586. found = 0;
  587. for (i = 0; i < info->num_freqs; i++) {
  588. if (bss->freq == info->freqs[i]) {
  589. found = 1;
  590. break;
  591. }
  592. }
  593. if (!found)
  594. return 0;
  595. }
  596. if (info->num_ssids) {
  597. found = 0;
  598. for (i = 0; i < info->num_ssids; i++) {
  599. const struct wpa_driver_scan_ssid *s = &info->ssids[i];
  600. if ((s->ssid == NULL || s->ssid_len == 0) ||
  601. (s->ssid_len == bss->ssid_len &&
  602. os_memcmp(s->ssid, bss->ssid, bss->ssid_len) ==
  603. 0)) {
  604. found = 1;
  605. break;
  606. }
  607. }
  608. if (!found)
  609. return 0;
  610. }
  611. return 1;
  612. }
  613. /**
  614. * wpa_bss_update_end - End a BSS table update from scan results
  615. * @wpa_s: Pointer to wpa_supplicant data
  616. * @info: Information about scan parameters
  617. * @new_scan: Whether this update round was based on a new scan
  618. *
  619. * This function is called at the end of each BSS table update round for new
  620. * scan results. The start of the update was indicated with a call to
  621. * wpa_bss_update_start().
  622. */
  623. void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
  624. int new_scan)
  625. {
  626. struct wpa_bss *bss, *n;
  627. wpa_s->last_scan_full = 0;
  628. os_get_time(&wpa_s->last_scan);
  629. if (!new_scan)
  630. return; /* do not expire entries without new scan */
  631. if (info && !info->aborted && !info->freqs) {
  632. size_t i;
  633. if (info->num_ssids == 0) {
  634. wpa_s->last_scan_full = 1;
  635. } else {
  636. for (i = 0; i < info->num_ssids; i++) {
  637. if (info->ssids[i].ssid == NULL ||
  638. info->ssids[i].ssid_len == 0) {
  639. wpa_s->last_scan_full = 1;
  640. break;
  641. }
  642. }
  643. }
  644. }
  645. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  646. if (wpa_bss_in_use(wpa_s, bss))
  647. continue;
  648. if (!wpa_bss_included_in_scan(bss, info))
  649. continue; /* expire only BSSes that were scanned */
  650. if (bss->last_update_idx < wpa_s->bss_update_idx)
  651. bss->scan_miss_count++;
  652. if (bss->scan_miss_count >=
  653. wpa_s->conf->bss_expiration_scan_count) {
  654. wpa_bss_remove(wpa_s, bss, "no match in scan");
  655. }
  656. }
  657. wpa_printf(MSG_DEBUG, "BSS: last_scan_res_used=%u/%u "
  658. "last_scan_full=%d",
  659. wpa_s->last_scan_res_used, wpa_s->last_scan_res_size,
  660. wpa_s->last_scan_full);
  661. }
  662. /**
  663. * wpa_bss_flush_by_age - Flush old BSS entries
  664. * @wpa_s: Pointer to wpa_supplicant data
  665. * @age: Maximum entry age in seconds
  666. *
  667. * Remove BSS entries that have not been updated during the last @age seconds.
  668. */
  669. void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age)
  670. {
  671. struct wpa_bss *bss, *n;
  672. struct os_time t;
  673. if (dl_list_empty(&wpa_s->bss))
  674. return;
  675. os_get_time(&t);
  676. t.sec -= age;
  677. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  678. if (wpa_bss_in_use(wpa_s, bss))
  679. continue;
  680. if (os_time_before(&bss->last_update, &t)) {
  681. wpa_bss_remove(wpa_s, bss, __func__);
  682. } else
  683. break;
  684. }
  685. }
  686. static void wpa_bss_timeout(void *eloop_ctx, void *timeout_ctx)
  687. {
  688. struct wpa_supplicant *wpa_s = eloop_ctx;
  689. wpa_bss_flush_by_age(wpa_s, wpa_s->conf->bss_expiration_age);
  690. eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
  691. wpa_bss_timeout, wpa_s, NULL);
  692. }
  693. /**
  694. * wpa_bss_init - Initialize BSS table
  695. * @wpa_s: Pointer to wpa_supplicant data
  696. * Returns: 0 on success, -1 on failure
  697. *
  698. * This prepares BSS table lists and timer for periodic updates. The BSS table
  699. * is deinitialized with wpa_bss_deinit() once not needed anymore.
  700. */
  701. int wpa_bss_init(struct wpa_supplicant *wpa_s)
  702. {
  703. dl_list_init(&wpa_s->bss);
  704. dl_list_init(&wpa_s->bss_id);
  705. eloop_register_timeout(WPA_BSS_EXPIRATION_PERIOD, 0,
  706. wpa_bss_timeout, wpa_s, NULL);
  707. return 0;
  708. }
  709. /**
  710. * wpa_bss_flush - Flush all unused BSS entries
  711. * @wpa_s: Pointer to wpa_supplicant data
  712. */
  713. void wpa_bss_flush(struct wpa_supplicant *wpa_s)
  714. {
  715. struct wpa_bss *bss, *n;
  716. if (wpa_s->bss.next == NULL)
  717. return; /* BSS table not yet initialized */
  718. dl_list_for_each_safe(bss, n, &wpa_s->bss, struct wpa_bss, list) {
  719. if (wpa_bss_in_use(wpa_s, bss))
  720. continue;
  721. wpa_bss_remove(wpa_s, bss, __func__);
  722. }
  723. }
  724. /**
  725. * wpa_bss_deinit - Deinitialize BSS table
  726. * @wpa_s: Pointer to wpa_supplicant data
  727. */
  728. void wpa_bss_deinit(struct wpa_supplicant *wpa_s)
  729. {
  730. eloop_cancel_timeout(wpa_bss_timeout, wpa_s, NULL);
  731. wpa_bss_flush(wpa_s);
  732. }
  733. /**
  734. * wpa_bss_get_bssid - Fetch a BSS table entry based on BSSID
  735. * @wpa_s: Pointer to wpa_supplicant data
  736. * @bssid: BSSID
  737. * Returns: Pointer to the BSS entry or %NULL if not found
  738. */
  739. struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
  740. const u8 *bssid)
  741. {
  742. struct wpa_bss *bss;
  743. if (!wpa_supplicant_filter_bssid_match(wpa_s, bssid))
  744. return NULL;
  745. dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss, list) {
  746. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0)
  747. return bss;
  748. }
  749. return NULL;
  750. }
  751. /**
  752. * wpa_bss_get_bssid_latest - Fetch the latest BSS table entry based on BSSID
  753. * @wpa_s: Pointer to wpa_supplicant data
  754. * @bssid: BSSID
  755. * Returns: Pointer to the BSS entry or %NULL if not found
  756. *
  757. * This function is like wpa_bss_get_bssid(), but full BSS table is iterated to
  758. * find the entry that has the most recent update. This can help in finding the
  759. * correct entry in cases where the SSID of the AP may have changed recently
  760. * (e.g., in WPS reconfiguration cases).
  761. */
  762. struct wpa_bss * wpa_bss_get_bssid_latest(struct wpa_supplicant *wpa_s,
  763. const u8 *bssid)
  764. {
  765. struct wpa_bss *bss, *found = NULL;
  766. if (!wpa_supplicant_filter_bssid_match(wpa_s, bssid))
  767. return NULL;
  768. dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss, list) {
  769. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) != 0)
  770. continue;
  771. if (found == NULL ||
  772. os_time_before(&found->last_update, &bss->last_update))
  773. found = bss;
  774. }
  775. return found;
  776. }
  777. #ifdef CONFIG_P2P
  778. /**
  779. * wpa_bss_get_p2p_dev_addr - Fetch a BSS table entry based on P2P Device Addr
  780. * @wpa_s: Pointer to wpa_supplicant data
  781. * @dev_addr: P2P Device Address of the GO
  782. * Returns: Pointer to the BSS entry or %NULL if not found
  783. */
  784. struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
  785. const u8 *dev_addr)
  786. {
  787. struct wpa_bss *bss;
  788. dl_list_for_each_reverse(bss, &wpa_s->bss, struct wpa_bss, list) {
  789. u8 addr[ETH_ALEN];
  790. if (p2p_parse_dev_addr((const u8 *) (bss + 1), bss->ie_len,
  791. addr) == 0 &&
  792. os_memcmp(addr, dev_addr, ETH_ALEN) == 0)
  793. return bss;
  794. }
  795. return NULL;
  796. }
  797. #endif /* CONFIG_P2P */
  798. /**
  799. * wpa_bss_get_id - Fetch a BSS table entry based on identifier
  800. * @wpa_s: Pointer to wpa_supplicant data
  801. * @id: Unique identifier (struct wpa_bss::id) assigned for the entry
  802. * Returns: Pointer to the BSS entry or %NULL if not found
  803. */
  804. struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
  805. {
  806. struct wpa_bss *bss;
  807. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  808. if (bss->id == id)
  809. return bss;
  810. }
  811. return NULL;
  812. }
  813. /**
  814. * wpa_bss_get_id_range - Fetch a BSS table entry based on identifier range
  815. * @wpa_s: Pointer to wpa_supplicant data
  816. * @idf: Smallest allowed identifier assigned for the entry
  817. * @idf: Largest allowed identifier assigned for the entry
  818. * Returns: Pointer to the BSS entry or %NULL if not found
  819. *
  820. * This function is similar to wpa_bss_get_id() but allows a BSS entry with the
  821. * smallest id value to be fetched within the specified range without the
  822. * caller having to know the exact id.
  823. */
  824. struct wpa_bss * wpa_bss_get_id_range(struct wpa_supplicant *wpa_s,
  825. unsigned int idf, unsigned int idl)
  826. {
  827. struct wpa_bss *bss;
  828. dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
  829. if (bss->id >= idf && bss->id <= idl)
  830. return bss;
  831. }
  832. return NULL;
  833. }
  834. /**
  835. * wpa_bss_get_ie - Fetch a specified information element from a BSS entry
  836. * @bss: BSS table entry
  837. * @ie: Information element identitifier (WLAN_EID_*)
  838. * Returns: Pointer to the information element (id field) or %NULL if not found
  839. *
  840. * This function returns the first matching information element in the BSS
  841. * entry.
  842. */
  843. const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie)
  844. {
  845. const u8 *end, *pos;
  846. pos = (const u8 *) (bss + 1);
  847. end = pos + bss->ie_len;
  848. while (pos + 1 < end) {
  849. if (pos + 2 + pos[1] > end)
  850. break;
  851. if (pos[0] == ie)
  852. return pos;
  853. pos += 2 + pos[1];
  854. }
  855. return NULL;
  856. }
  857. /**
  858. * wpa_bss_get_vendor_ie - Fetch a vendor information element from a BSS entry
  859. * @bss: BSS table entry
  860. * @vendor_type: Vendor type (four octets starting the IE payload)
  861. * Returns: Pointer to the information element (id field) or %NULL if not found
  862. *
  863. * This function returns the first matching information element in the BSS
  864. * entry.
  865. */
  866. const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type)
  867. {
  868. const u8 *end, *pos;
  869. pos = (const u8 *) (bss + 1);
  870. end = pos + bss->ie_len;
  871. while (pos + 1 < end) {
  872. if (pos + 2 + pos[1] > end)
  873. break;
  874. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  875. vendor_type == WPA_GET_BE32(&pos[2]))
  876. return pos;
  877. pos += 2 + pos[1];
  878. }
  879. return NULL;
  880. }
  881. /**
  882. * wpa_bss_get_vendor_ie_beacon - Fetch a vendor information from a BSS entry
  883. * @bss: BSS table entry
  884. * @vendor_type: Vendor type (four octets starting the IE payload)
  885. * Returns: Pointer to the information element (id field) or %NULL if not found
  886. *
  887. * This function returns the first matching information element in the BSS
  888. * entry.
  889. *
  890. * This function is like wpa_bss_get_vendor_ie(), but uses IE buffer only
  891. * from Beacon frames instead of either Beacon or Probe Response frames.
  892. */
  893. const u8 * wpa_bss_get_vendor_ie_beacon(const struct wpa_bss *bss,
  894. u32 vendor_type)
  895. {
  896. const u8 *end, *pos;
  897. if (bss->beacon_ie_len == 0)
  898. return NULL;
  899. pos = (const u8 *) (bss + 1);
  900. pos += bss->ie_len;
  901. end = pos + bss->beacon_ie_len;
  902. while (pos + 1 < end) {
  903. if (pos + 2 + pos[1] > end)
  904. break;
  905. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  906. vendor_type == WPA_GET_BE32(&pos[2]))
  907. return pos;
  908. pos += 2 + pos[1];
  909. }
  910. return NULL;
  911. }
  912. /**
  913. * wpa_bss_get_vendor_ie_multi - Fetch vendor IE data from a BSS entry
  914. * @bss: BSS table entry
  915. * @vendor_type: Vendor type (four octets starting the IE payload)
  916. * Returns: Pointer to the information element payload or %NULL if not found
  917. *
  918. * This function returns concatenated payload of possibly fragmented vendor
  919. * specific information elements in the BSS entry. The caller is responsible for
  920. * freeing the returned buffer.
  921. */
  922. struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
  923. u32 vendor_type)
  924. {
  925. struct wpabuf *buf;
  926. const u8 *end, *pos;
  927. buf = wpabuf_alloc(bss->ie_len);
  928. if (buf == NULL)
  929. return NULL;
  930. pos = (const u8 *) (bss + 1);
  931. end = pos + bss->ie_len;
  932. while (pos + 1 < end) {
  933. if (pos + 2 + pos[1] > end)
  934. break;
  935. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  936. vendor_type == WPA_GET_BE32(&pos[2]))
  937. wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
  938. pos += 2 + pos[1];
  939. }
  940. if (wpabuf_len(buf) == 0) {
  941. wpabuf_free(buf);
  942. buf = NULL;
  943. }
  944. return buf;
  945. }
  946. /**
  947. * wpa_bss_get_vendor_ie_multi_beacon - Fetch vendor IE data from a BSS entry
  948. * @bss: BSS table entry
  949. * @vendor_type: Vendor type (four octets starting the IE payload)
  950. * Returns: Pointer to the information element payload or %NULL if not found
  951. *
  952. * This function returns concatenated payload of possibly fragmented vendor
  953. * specific information elements in the BSS entry. The caller is responsible for
  954. * freeing the returned buffer.
  955. *
  956. * This function is like wpa_bss_get_vendor_ie_multi(), but uses IE buffer only
  957. * from Beacon frames instead of either Beacon or Probe Response frames.
  958. */
  959. struct wpabuf * wpa_bss_get_vendor_ie_multi_beacon(const struct wpa_bss *bss,
  960. u32 vendor_type)
  961. {
  962. struct wpabuf *buf;
  963. const u8 *end, *pos;
  964. buf = wpabuf_alloc(bss->beacon_ie_len);
  965. if (buf == NULL)
  966. return NULL;
  967. pos = (const u8 *) (bss + 1);
  968. pos += bss->ie_len;
  969. end = pos + bss->beacon_ie_len;
  970. while (pos + 1 < end) {
  971. if (pos + 2 + pos[1] > end)
  972. break;
  973. if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
  974. vendor_type == WPA_GET_BE32(&pos[2]))
  975. wpabuf_put_data(buf, pos + 2 + 4, pos[1] - 4);
  976. pos += 2 + pos[1];
  977. }
  978. if (wpabuf_len(buf) == 0) {
  979. wpabuf_free(buf);
  980. buf = NULL;
  981. }
  982. return buf;
  983. }
  984. /**
  985. * wpa_bss_get_max_rate - Get maximum legacy TX rate supported in a BSS
  986. * @bss: BSS table entry
  987. * Returns: Maximum legacy rate in units of 500 kbps
  988. */
  989. int wpa_bss_get_max_rate(const struct wpa_bss *bss)
  990. {
  991. int rate = 0;
  992. const u8 *ie;
  993. int i;
  994. ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
  995. for (i = 0; ie && i < ie[1]; i++) {
  996. if ((ie[i + 2] & 0x7f) > rate)
  997. rate = ie[i + 2] & 0x7f;
  998. }
  999. ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
  1000. for (i = 0; ie && i < ie[1]; i++) {
  1001. if ((ie[i + 2] & 0x7f) > rate)
  1002. rate = ie[i + 2] & 0x7f;
  1003. }
  1004. return rate;
  1005. }
  1006. /**
  1007. * wpa_bss_get_bit_rates - Get legacy TX rates supported in a BSS
  1008. * @bss: BSS table entry
  1009. * @rates: Buffer for returning a pointer to the rates list (units of 500 kbps)
  1010. * Returns: number of legacy TX rates or -1 on failure
  1011. *
  1012. * The caller is responsible for freeing the returned buffer with os_free() in
  1013. * case of success.
  1014. */
  1015. int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates)
  1016. {
  1017. const u8 *ie, *ie2;
  1018. int i, j;
  1019. unsigned int len;
  1020. u8 *r;
  1021. ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
  1022. ie2 = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
  1023. len = (ie ? ie[1] : 0) + (ie2 ? ie2[1] : 0);
  1024. r = os_malloc(len);
  1025. if (!r)
  1026. return -1;
  1027. for (i = 0; ie && i < ie[1]; i++)
  1028. r[i] = ie[i + 2] & 0x7f;
  1029. for (j = 0; ie2 && j < ie2[1]; j++)
  1030. r[i + j] = ie2[j + 2] & 0x7f;
  1031. *rates = r;
  1032. return len;
  1033. }