ap_list.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. /*
  2. * hostapd / AP table
  3. * Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2003-2004, Instant802 Networks, Inc.
  5. * Copyright (c) 2006, Devicescape Software, Inc.
  6. * Copyright (c) 2007-2008, Intel Corporation
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * Alternatively, this software may be distributed under the terms of BSD
  13. * license.
  14. *
  15. * See README and COPYING for more details.
  16. */
  17. #include "includes.h"
  18. #include "common.h"
  19. #include "hostapd.h"
  20. #include "config.h"
  21. #include "ieee802_11.h"
  22. #include "eloop.h"
  23. #include "sta_info.h"
  24. #include "ap_list.h"
  25. #include "hw_features.h"
  26. #include "beacon.h"
  27. #include "drivers/driver.h"
  28. struct ieee80211_frame_info {
  29. u32 version;
  30. u32 length;
  31. u64 mactime;
  32. u64 hosttime;
  33. u32 phytype;
  34. u32 channel;
  35. u32 datarate;
  36. u32 antenna;
  37. u32 priority;
  38. u32 ssi_type;
  39. u32 ssi_signal;
  40. u32 ssi_noise;
  41. u32 preamble;
  42. u32 encoding;
  43. /* Note: this structure is otherwise identical to capture format used
  44. * in linux-wlan-ng, but this additional field is used to provide meta
  45. * data about the frame to hostapd. This was the easiest method for
  46. * providing this information, but this might change in the future. */
  47. u32 msg_type;
  48. } __attribute__ ((packed));
  49. enum ieee80211_phytype {
  50. ieee80211_phytype_fhss_dot11_97 = 1,
  51. ieee80211_phytype_dsss_dot11_97 = 2,
  52. ieee80211_phytype_irbaseband = 3,
  53. ieee80211_phytype_dsss_dot11_b = 4,
  54. ieee80211_phytype_pbcc_dot11_b = 5,
  55. ieee80211_phytype_ofdm_dot11_g = 6,
  56. ieee80211_phytype_pbcc_dot11_g = 7,
  57. ieee80211_phytype_ofdm_dot11_a = 8,
  58. ieee80211_phytype_dsss_dot11_turbog = 255,
  59. ieee80211_phytype_dsss_dot11_turbo = 256,
  60. };
  61. /* AP list is a double linked list with head->prev pointing to the end of the
  62. * list and tail->next = NULL. Entries are moved to the head of the list
  63. * whenever a beacon has been received from the AP in question. The tail entry
  64. * in this link will thus be the least recently used entry. */
  65. static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap)
  66. {
  67. int i;
  68. if (iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G ||
  69. ap->phytype != ieee80211_phytype_pbcc_dot11_g ||
  70. iface->conf->channel != ap->channel)
  71. return 0;
  72. if (ap->erp != -1 && (ap->erp & ERP_INFO_NON_ERP_PRESENT))
  73. return 1;
  74. for (i = 0; i < WLAN_SUPP_RATES_MAX; i++) {
  75. int rate = (ap->supported_rates[i] & 0x7f) * 5;
  76. if (rate == 60 || rate == 90 || rate > 110)
  77. return 0;
  78. }
  79. return 1;
  80. }
  81. #ifdef CONFIG_IEEE80211N
  82. static int ap_list_beacon_olbc_ht(struct hostapd_iface *iface,
  83. struct ap_info *ap)
  84. {
  85. return !ap->ht_support;
  86. }
  87. #endif /* CONFIG_IEEE80211N */
  88. struct ap_info * ap_get_ap(struct hostapd_iface *iface, u8 *ap)
  89. {
  90. struct ap_info *s;
  91. s = iface->ap_hash[STA_HASH(ap)];
  92. while (s != NULL && os_memcmp(s->addr, ap, ETH_ALEN) != 0)
  93. s = s->hnext;
  94. return s;
  95. }
  96. static void ap_ap_list_add(struct hostapd_iface *iface, struct ap_info *ap)
  97. {
  98. if (iface->ap_list) {
  99. ap->prev = iface->ap_list->prev;
  100. iface->ap_list->prev = ap;
  101. } else
  102. ap->prev = ap;
  103. ap->next = iface->ap_list;
  104. iface->ap_list = ap;
  105. }
  106. static void ap_ap_list_del(struct hostapd_iface *iface, struct ap_info *ap)
  107. {
  108. if (iface->ap_list == ap)
  109. iface->ap_list = ap->next;
  110. else
  111. ap->prev->next = ap->next;
  112. if (ap->next)
  113. ap->next->prev = ap->prev;
  114. else if (iface->ap_list)
  115. iface->ap_list->prev = ap->prev;
  116. }
  117. static void ap_ap_iter_list_add(struct hostapd_iface *iface,
  118. struct ap_info *ap)
  119. {
  120. if (iface->ap_iter_list) {
  121. ap->iter_prev = iface->ap_iter_list->iter_prev;
  122. iface->ap_iter_list->iter_prev = ap;
  123. } else
  124. ap->iter_prev = ap;
  125. ap->iter_next = iface->ap_iter_list;
  126. iface->ap_iter_list = ap;
  127. }
  128. static void ap_ap_iter_list_del(struct hostapd_iface *iface,
  129. struct ap_info *ap)
  130. {
  131. if (iface->ap_iter_list == ap)
  132. iface->ap_iter_list = ap->iter_next;
  133. else
  134. ap->iter_prev->iter_next = ap->iter_next;
  135. if (ap->iter_next)
  136. ap->iter_next->iter_prev = ap->iter_prev;
  137. else if (iface->ap_iter_list)
  138. iface->ap_iter_list->iter_prev = ap->iter_prev;
  139. }
  140. static void ap_ap_hash_add(struct hostapd_iface *iface, struct ap_info *ap)
  141. {
  142. ap->hnext = iface->ap_hash[STA_HASH(ap->addr)];
  143. iface->ap_hash[STA_HASH(ap->addr)] = ap;
  144. }
  145. static void ap_ap_hash_del(struct hostapd_iface *iface, struct ap_info *ap)
  146. {
  147. struct ap_info *s;
  148. s = iface->ap_hash[STA_HASH(ap->addr)];
  149. if (s == NULL) return;
  150. if (os_memcmp(s->addr, ap->addr, ETH_ALEN) == 0) {
  151. iface->ap_hash[STA_HASH(ap->addr)] = s->hnext;
  152. return;
  153. }
  154. while (s->hnext != NULL &&
  155. os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0)
  156. s = s->hnext;
  157. if (s->hnext != NULL)
  158. s->hnext = s->hnext->hnext;
  159. else
  160. printf("AP: could not remove AP " MACSTR " from hash table\n",
  161. MAC2STR(ap->addr));
  162. }
  163. static void ap_free_ap(struct hostapd_iface *iface, struct ap_info *ap)
  164. {
  165. ap_ap_hash_del(iface, ap);
  166. ap_ap_list_del(iface, ap);
  167. ap_ap_iter_list_del(iface, ap);
  168. iface->num_ap--;
  169. os_free(ap);
  170. }
  171. static void hostapd_free_aps(struct hostapd_iface *iface)
  172. {
  173. struct ap_info *ap, *prev;
  174. ap = iface->ap_list;
  175. while (ap) {
  176. prev = ap;
  177. ap = ap->next;
  178. ap_free_ap(iface, prev);
  179. }
  180. iface->ap_list = NULL;
  181. }
  182. int ap_ap_for_each(struct hostapd_iface *iface,
  183. int (*func)(struct ap_info *s, void *data), void *data)
  184. {
  185. struct ap_info *s;
  186. int ret = 0;
  187. s = iface->ap_list;
  188. while (s) {
  189. ret = func(s, data);
  190. if (ret)
  191. break;
  192. s = s->next;
  193. }
  194. return ret;
  195. }
  196. static struct ap_info * ap_ap_add(struct hostapd_iface *iface, u8 *addr)
  197. {
  198. struct ap_info *ap;
  199. ap = os_zalloc(sizeof(struct ap_info));
  200. if (ap == NULL)
  201. return NULL;
  202. /* initialize AP info data */
  203. os_memcpy(ap->addr, addr, ETH_ALEN);
  204. ap_ap_list_add(iface, ap);
  205. iface->num_ap++;
  206. ap_ap_hash_add(iface, ap);
  207. ap_ap_iter_list_add(iface, ap);
  208. if (iface->num_ap > iface->conf->ap_table_max_size && ap != ap->prev) {
  209. wpa_printf(MSG_DEBUG, "Removing the least recently used AP "
  210. MACSTR " from AP table", MAC2STR(ap->prev->addr));
  211. ap_free_ap(iface, ap->prev);
  212. }
  213. return ap;
  214. }
  215. void ap_list_process_beacon(struct hostapd_iface *iface,
  216. struct ieee80211_mgmt *mgmt,
  217. struct ieee802_11_elems *elems,
  218. struct hostapd_frame_info *fi)
  219. {
  220. struct ap_info *ap;
  221. int new_ap = 0;
  222. size_t len;
  223. int set_beacon = 0;
  224. if (iface->conf->ap_table_max_size < 1)
  225. return;
  226. ap = ap_get_ap(iface, mgmt->bssid);
  227. if (!ap) {
  228. ap = ap_ap_add(iface, mgmt->bssid);
  229. if (!ap) {
  230. printf("Failed to allocate AP information entry\n");
  231. return;
  232. }
  233. new_ap = 1;
  234. }
  235. ap->beacon_int = le_to_host16(mgmt->u.beacon.beacon_int);
  236. ap->capability = le_to_host16(mgmt->u.beacon.capab_info);
  237. if (elems->ssid) {
  238. len = elems->ssid_len;
  239. if (len >= sizeof(ap->ssid))
  240. len = sizeof(ap->ssid) - 1;
  241. os_memcpy(ap->ssid, elems->ssid, len);
  242. ap->ssid[len] = '\0';
  243. ap->ssid_len = len;
  244. }
  245. os_memset(ap->supported_rates, 0, WLAN_SUPP_RATES_MAX);
  246. len = 0;
  247. if (elems->supp_rates) {
  248. len = elems->supp_rates_len;
  249. if (len > WLAN_SUPP_RATES_MAX)
  250. len = WLAN_SUPP_RATES_MAX;
  251. os_memcpy(ap->supported_rates, elems->supp_rates, len);
  252. }
  253. if (elems->ext_supp_rates) {
  254. int len2;
  255. if (len + elems->ext_supp_rates_len > WLAN_SUPP_RATES_MAX)
  256. len2 = WLAN_SUPP_RATES_MAX - len;
  257. else
  258. len2 = elems->ext_supp_rates_len;
  259. os_memcpy(ap->supported_rates + len, elems->ext_supp_rates,
  260. len2);
  261. }
  262. ap->wpa = elems->wpa_ie != NULL;
  263. if (elems->erp_info && elems->erp_info_len == 1)
  264. ap->erp = elems->erp_info[0];
  265. else
  266. ap->erp = -1;
  267. if (elems->ds_params && elems->ds_params_len == 1)
  268. ap->channel = elems->ds_params[0];
  269. else if (fi)
  270. ap->channel = fi->channel;
  271. if (elems->ht_capabilities)
  272. ap->ht_support = 1;
  273. else
  274. ap->ht_support = 0;
  275. ap->num_beacons++;
  276. time(&ap->last_beacon);
  277. if (fi) {
  278. ap->phytype = fi->phytype;
  279. ap->ssi_signal = fi->ssi_signal;
  280. ap->datarate = fi->datarate;
  281. }
  282. if (!new_ap && ap != iface->ap_list) {
  283. /* move AP entry into the beginning of the list so that the
  284. * oldest entry is always in the end of the list */
  285. ap_ap_list_del(iface, ap);
  286. ap_ap_list_add(iface, ap);
  287. }
  288. if (!iface->olbc &&
  289. ap_list_beacon_olbc(iface, ap)) {
  290. iface->olbc = 1;
  291. wpa_printf(MSG_DEBUG, "OLBC AP detected: " MACSTR " - enable "
  292. "protection", MAC2STR(ap->addr));
  293. set_beacon++;
  294. }
  295. #ifdef CONFIG_IEEE80211N
  296. if (!iface->olbc_ht && ap_list_beacon_olbc_ht(iface, ap)) {
  297. iface->olbc_ht = 1;
  298. hostapd_ht_operation_update(iface);
  299. wpa_printf(MSG_DEBUG, "OLBC HT AP detected: " MACSTR
  300. " - enable protection", MAC2STR(ap->addr));
  301. set_beacon++;
  302. }
  303. #endif /* CONFIG_IEEE80211N */
  304. if (set_beacon)
  305. ieee802_11_set_beacons(iface);
  306. }
  307. static void ap_list_timer(void *eloop_ctx, void *timeout_ctx)
  308. {
  309. struct hostapd_iface *iface = eloop_ctx;
  310. time_t now;
  311. struct ap_info *ap;
  312. int set_beacon = 0;
  313. eloop_register_timeout(10, 0, ap_list_timer, iface, NULL);
  314. if (!iface->ap_list)
  315. return;
  316. time(&now);
  317. while (iface->ap_list) {
  318. ap = iface->ap_list->prev;
  319. if (ap->last_beacon + iface->conf->ap_table_expiration_time >=
  320. now)
  321. break;
  322. ap_free_ap(iface, ap);
  323. }
  324. if (iface->olbc || iface->olbc_ht) {
  325. int olbc = 0;
  326. int olbc_ht = 0;
  327. ap = iface->ap_list;
  328. while (ap && (olbc == 0 || olbc_ht == 0)) {
  329. if (ap_list_beacon_olbc(iface, ap))
  330. olbc = 1;
  331. #ifdef CONFIG_IEEE80211N
  332. if (ap_list_beacon_olbc_ht(iface, ap))
  333. olbc_ht = 1;
  334. #endif /* CONFIG_IEEE80211N */
  335. ap = ap->next;
  336. }
  337. if (!olbc && iface->olbc) {
  338. wpa_printf(MSG_DEBUG, "OLBC not detected anymore");
  339. iface->olbc = 0;
  340. set_beacon++;
  341. }
  342. #ifdef CONFIG_IEEE80211N
  343. if (!olbc_ht && iface->olbc_ht) {
  344. wpa_printf(MSG_DEBUG, "OLBC HT not detected anymore");
  345. iface->olbc_ht = 0;
  346. hostapd_ht_operation_update(iface);
  347. set_beacon++;
  348. }
  349. #endif /* CONFIG_IEEE80211N */
  350. }
  351. if (set_beacon)
  352. ieee802_11_set_beacons(iface);
  353. }
  354. int ap_list_init(struct hostapd_iface *iface)
  355. {
  356. eloop_register_timeout(10, 0, ap_list_timer, iface, NULL);
  357. return 0;
  358. }
  359. void ap_list_deinit(struct hostapd_iface *iface)
  360. {
  361. eloop_cancel_timeout(ap_list_timer, iface, NULL);
  362. hostapd_free_aps(iface);
  363. }
  364. int ap_list_reconfig(struct hostapd_iface *iface,
  365. struct hostapd_config *oldconf)
  366. {
  367. time_t now;
  368. struct ap_info *ap;
  369. if (iface->conf->ap_table_max_size == oldconf->ap_table_max_size &&
  370. iface->conf->ap_table_expiration_time ==
  371. oldconf->ap_table_expiration_time)
  372. return 0;
  373. time(&now);
  374. while (iface->ap_list) {
  375. ap = iface->ap_list->prev;
  376. if (iface->num_ap <= iface->conf->ap_table_max_size &&
  377. ap->last_beacon + iface->conf->ap_table_expiration_time >=
  378. now)
  379. break;
  380. ap_free_ap(iface, iface->ap_list->prev);
  381. }
  382. return 0;
  383. }