bss.c 32 KB

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