ap_list.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * Alternatively, this software may be distributed under the terms of BSD
  12. * license.
  13. *
  14. * See README and COPYING for more details.
  15. */
  16. #include "includes.h"
  17. #include "common.h"
  18. #include "hostapd.h"
  19. #include "config.h"
  20. #include "ieee802_11.h"
  21. #include "eloop.h"
  22. #include "sta_info.h"
  23. #include "ap_list.h"
  24. #include "hw_features.h"
  25. #include "beacon.h"
  26. #include "drivers/driver.h"
  27. /* AP list is a double linked list with head->prev pointing to the end of the
  28. * list and tail->next = NULL. Entries are moved to the head of the list
  29. * whenever a beacon has been received from the AP in question. The tail entry
  30. * in this link will thus be the least recently used entry. */
  31. static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap)
  32. {
  33. int i;
  34. if (iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G ||
  35. iface->conf->channel != ap->channel)
  36. return 0;
  37. if (ap->erp != -1 && (ap->erp & ERP_INFO_NON_ERP_PRESENT))
  38. return 1;
  39. for (i = 0; i < WLAN_SUPP_RATES_MAX; i++) {
  40. int rate = (ap->supported_rates[i] & 0x7f) * 5;
  41. if (rate == 60 || rate == 90 || rate > 110)
  42. return 0;
  43. }
  44. return 1;
  45. }
  46. struct ap_info * ap_get_ap(struct hostapd_iface *iface, u8 *ap)
  47. {
  48. struct ap_info *s;
  49. s = iface->ap_hash[STA_HASH(ap)];
  50. while (s != NULL && os_memcmp(s->addr, ap, ETH_ALEN) != 0)
  51. s = s->hnext;
  52. return s;
  53. }
  54. static void ap_ap_list_add(struct hostapd_iface *iface, struct ap_info *ap)
  55. {
  56. if (iface->ap_list) {
  57. ap->prev = iface->ap_list->prev;
  58. iface->ap_list->prev = ap;
  59. } else
  60. ap->prev = ap;
  61. ap->next = iface->ap_list;
  62. iface->ap_list = ap;
  63. }
  64. static void ap_ap_list_del(struct hostapd_iface *iface, struct ap_info *ap)
  65. {
  66. if (iface->ap_list == ap)
  67. iface->ap_list = ap->next;
  68. else
  69. ap->prev->next = ap->next;
  70. if (ap->next)
  71. ap->next->prev = ap->prev;
  72. else if (iface->ap_list)
  73. iface->ap_list->prev = ap->prev;
  74. }
  75. static void ap_ap_iter_list_add(struct hostapd_iface *iface,
  76. struct ap_info *ap)
  77. {
  78. if (iface->ap_iter_list) {
  79. ap->iter_prev = iface->ap_iter_list->iter_prev;
  80. iface->ap_iter_list->iter_prev = ap;
  81. } else
  82. ap->iter_prev = ap;
  83. ap->iter_next = iface->ap_iter_list;
  84. iface->ap_iter_list = ap;
  85. }
  86. static void ap_ap_iter_list_del(struct hostapd_iface *iface,
  87. struct ap_info *ap)
  88. {
  89. if (iface->ap_iter_list == ap)
  90. iface->ap_iter_list = ap->iter_next;
  91. else
  92. ap->iter_prev->iter_next = ap->iter_next;
  93. if (ap->iter_next)
  94. ap->iter_next->iter_prev = ap->iter_prev;
  95. else if (iface->ap_iter_list)
  96. iface->ap_iter_list->iter_prev = ap->iter_prev;
  97. }
  98. static void ap_ap_hash_add(struct hostapd_iface *iface, struct ap_info *ap)
  99. {
  100. ap->hnext = iface->ap_hash[STA_HASH(ap->addr)];
  101. iface->ap_hash[STA_HASH(ap->addr)] = ap;
  102. }
  103. static void ap_ap_hash_del(struct hostapd_iface *iface, struct ap_info *ap)
  104. {
  105. struct ap_info *s;
  106. s = iface->ap_hash[STA_HASH(ap->addr)];
  107. if (s == NULL) return;
  108. if (os_memcmp(s->addr, ap->addr, ETH_ALEN) == 0) {
  109. iface->ap_hash[STA_HASH(ap->addr)] = s->hnext;
  110. return;
  111. }
  112. while (s->hnext != NULL &&
  113. os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0)
  114. s = s->hnext;
  115. if (s->hnext != NULL)
  116. s->hnext = s->hnext->hnext;
  117. else
  118. printf("AP: could not remove AP " MACSTR " from hash table\n",
  119. MAC2STR(ap->addr));
  120. }
  121. static void ap_free_ap(struct hostapd_iface *iface, struct ap_info *ap)
  122. {
  123. ap_ap_hash_del(iface, ap);
  124. ap_ap_list_del(iface, ap);
  125. ap_ap_iter_list_del(iface, ap);
  126. iface->num_ap--;
  127. os_free(ap);
  128. }
  129. static void hostapd_free_aps(struct hostapd_iface *iface)
  130. {
  131. struct ap_info *ap, *prev;
  132. ap = iface->ap_list;
  133. while (ap) {
  134. prev = ap;
  135. ap = ap->next;
  136. ap_free_ap(iface, prev);
  137. }
  138. iface->ap_list = NULL;
  139. }
  140. int ap_ap_for_each(struct hostapd_iface *iface,
  141. int (*func)(struct ap_info *s, void *data), void *data)
  142. {
  143. struct ap_info *s;
  144. int ret = 0;
  145. s = iface->ap_list;
  146. while (s) {
  147. ret = func(s, data);
  148. if (ret)
  149. break;
  150. s = s->next;
  151. }
  152. return ret;
  153. }
  154. static struct ap_info * ap_ap_add(struct hostapd_iface *iface, u8 *addr)
  155. {
  156. struct ap_info *ap;
  157. ap = os_zalloc(sizeof(struct ap_info));
  158. if (ap == NULL)
  159. return NULL;
  160. /* initialize AP info data */
  161. os_memcpy(ap->addr, addr, ETH_ALEN);
  162. ap_ap_list_add(iface, ap);
  163. iface->num_ap++;
  164. ap_ap_hash_add(iface, ap);
  165. ap_ap_iter_list_add(iface, ap);
  166. if (iface->num_ap > iface->conf->ap_table_max_size && ap != ap->prev) {
  167. wpa_printf(MSG_DEBUG, "Removing the least recently used AP "
  168. MACSTR " from AP table", MAC2STR(ap->prev->addr));
  169. ap_free_ap(iface, ap->prev);
  170. }
  171. return ap;
  172. }
  173. void ap_list_process_beacon(struct hostapd_iface *iface,
  174. struct ieee80211_mgmt *mgmt,
  175. struct ieee802_11_elems *elems,
  176. struct hostapd_frame_info *fi)
  177. {
  178. struct ap_info *ap;
  179. int new_ap = 0;
  180. size_t len;
  181. int set_beacon = 0;
  182. if (iface->conf->ap_table_max_size < 1)
  183. return;
  184. ap = ap_get_ap(iface, mgmt->bssid);
  185. if (!ap) {
  186. ap = ap_ap_add(iface, mgmt->bssid);
  187. if (!ap) {
  188. printf("Failed to allocate AP information entry\n");
  189. return;
  190. }
  191. new_ap = 1;
  192. }
  193. ap->beacon_int = le_to_host16(mgmt->u.beacon.beacon_int);
  194. ap->capability = le_to_host16(mgmt->u.beacon.capab_info);
  195. if (elems->ssid) {
  196. len = elems->ssid_len;
  197. if (len >= sizeof(ap->ssid))
  198. len = sizeof(ap->ssid) - 1;
  199. os_memcpy(ap->ssid, elems->ssid, len);
  200. ap->ssid[len] = '\0';
  201. ap->ssid_len = len;
  202. }
  203. os_memset(ap->supported_rates, 0, WLAN_SUPP_RATES_MAX);
  204. len = 0;
  205. if (elems->supp_rates) {
  206. len = elems->supp_rates_len;
  207. if (len > WLAN_SUPP_RATES_MAX)
  208. len = WLAN_SUPP_RATES_MAX;
  209. os_memcpy(ap->supported_rates, elems->supp_rates, len);
  210. }
  211. if (elems->ext_supp_rates) {
  212. int len2;
  213. if (len + elems->ext_supp_rates_len > WLAN_SUPP_RATES_MAX)
  214. len2 = WLAN_SUPP_RATES_MAX - len;
  215. else
  216. len2 = elems->ext_supp_rates_len;
  217. os_memcpy(ap->supported_rates + len, elems->ext_supp_rates,
  218. len2);
  219. }
  220. ap->wpa = elems->wpa_ie != NULL;
  221. if (elems->erp_info && elems->erp_info_len == 1)
  222. ap->erp = elems->erp_info[0];
  223. else
  224. ap->erp = -1;
  225. if (elems->ds_params && elems->ds_params_len == 1)
  226. ap->channel = elems->ds_params[0];
  227. else if (fi)
  228. ap->channel = fi->channel;
  229. if (elems->ht_capabilities)
  230. ap->ht_support = 1;
  231. else
  232. ap->ht_support = 0;
  233. ap->num_beacons++;
  234. time(&ap->last_beacon);
  235. if (fi) {
  236. ap->ssi_signal = fi->ssi_signal;
  237. ap->datarate = fi->datarate;
  238. }
  239. if (!new_ap && ap != iface->ap_list) {
  240. /* move AP entry into the beginning of the list so that the
  241. * oldest entry is always in the end of the list */
  242. ap_ap_list_del(iface, ap);
  243. ap_ap_list_add(iface, ap);
  244. }
  245. if (!iface->olbc &&
  246. ap_list_beacon_olbc(iface, ap)) {
  247. iface->olbc = 1;
  248. wpa_printf(MSG_DEBUG, "OLBC AP detected: " MACSTR " - enable "
  249. "protection", MAC2STR(ap->addr));
  250. set_beacon++;
  251. }
  252. #ifdef CONFIG_IEEE80211N
  253. if (!iface->olbc_ht && !ap->ht_support) {
  254. iface->olbc_ht = 1;
  255. hostapd_ht_operation_update(iface);
  256. wpa_printf(MSG_DEBUG, "OLBC HT AP detected: " MACSTR
  257. " - enable protection", MAC2STR(ap->addr));
  258. set_beacon++;
  259. }
  260. #endif /* CONFIG_IEEE80211N */
  261. if (set_beacon)
  262. ieee802_11_set_beacons(iface);
  263. }
  264. static void ap_list_timer(void *eloop_ctx, void *timeout_ctx)
  265. {
  266. struct hostapd_iface *iface = eloop_ctx;
  267. time_t now;
  268. struct ap_info *ap;
  269. int set_beacon = 0;
  270. eloop_register_timeout(10, 0, ap_list_timer, iface, NULL);
  271. if (!iface->ap_list)
  272. return;
  273. time(&now);
  274. while (iface->ap_list) {
  275. ap = iface->ap_list->prev;
  276. if (ap->last_beacon + iface->conf->ap_table_expiration_time >=
  277. now)
  278. break;
  279. ap_free_ap(iface, ap);
  280. }
  281. if (iface->olbc || iface->olbc_ht) {
  282. int olbc = 0;
  283. int olbc_ht = 0;
  284. ap = iface->ap_list;
  285. while (ap && (olbc == 0 || olbc_ht == 0)) {
  286. if (ap_list_beacon_olbc(iface, ap))
  287. olbc = 1;
  288. if (!ap->ht_support)
  289. olbc_ht = 1;
  290. ap = ap->next;
  291. }
  292. if (!olbc && iface->olbc) {
  293. wpa_printf(MSG_DEBUG, "OLBC not detected anymore");
  294. iface->olbc = 0;
  295. set_beacon++;
  296. }
  297. #ifdef CONFIG_IEEE80211N
  298. if (!olbc_ht && iface->olbc_ht) {
  299. wpa_printf(MSG_DEBUG, "OLBC HT not detected anymore");
  300. iface->olbc_ht = 0;
  301. hostapd_ht_operation_update(iface);
  302. set_beacon++;
  303. }
  304. #endif /* CONFIG_IEEE80211N */
  305. }
  306. if (set_beacon)
  307. ieee802_11_set_beacons(iface);
  308. }
  309. int ap_list_init(struct hostapd_iface *iface)
  310. {
  311. eloop_register_timeout(10, 0, ap_list_timer, iface, NULL);
  312. return 0;
  313. }
  314. void ap_list_deinit(struct hostapd_iface *iface)
  315. {
  316. eloop_cancel_timeout(ap_list_timer, iface, NULL);
  317. hostapd_free_aps(iface);
  318. }