bss.c 32 KB

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