bss.c 31 KB

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