123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503 |
- /*
- * hostapd / AP table
- * Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
- * Copyright (c) 2003-2004, Instant802 Networks, Inc.
- * Copyright (c) 2006, Devicescape Software, Inc.
- * Copyright (c) 2007-2008, Intel Corporation
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * Alternatively, this software may be distributed under the terms of BSD
- * license.
- *
- * See README and COPYING for more details.
- */
- #include "includes.h"
- #include "hostapd.h"
- #include "ieee802_11.h"
- #include "eloop.h"
- #include "sta_info.h"
- #include "ap_list.h"
- #include "hw_features.h"
- #include "beacon.h"
- #include "driver.h"
- struct ieee80211_frame_info {
- u32 version;
- u32 length;
- u64 mactime;
- u64 hosttime;
- u32 phytype;
- u32 channel;
- u32 datarate;
- u32 antenna;
- u32 priority;
- u32 ssi_type;
- u32 ssi_signal;
- u32 ssi_noise;
- u32 preamble;
- u32 encoding;
- /* Note: this structure is otherwise identical to capture format used
- * in linux-wlan-ng, but this additional field is used to provide meta
- * data about the frame to hostapd. This was the easiest method for
- * providing this information, but this might change in the future. */
- u32 msg_type;
- } __attribute__ ((packed));
- enum ieee80211_phytype {
- ieee80211_phytype_fhss_dot11_97 = 1,
- ieee80211_phytype_dsss_dot11_97 = 2,
- ieee80211_phytype_irbaseband = 3,
- ieee80211_phytype_dsss_dot11_b = 4,
- ieee80211_phytype_pbcc_dot11_b = 5,
- ieee80211_phytype_ofdm_dot11_g = 6,
- ieee80211_phytype_pbcc_dot11_g = 7,
- ieee80211_phytype_ofdm_dot11_a = 8,
- ieee80211_phytype_dsss_dot11_turbog = 255,
- ieee80211_phytype_dsss_dot11_turbo = 256,
- };
- /* AP list is a double linked list with head->prev pointing to the end of the
- * list and tail->next = NULL. Entries are moved to the head of the list
- * whenever a beacon has been received from the AP in question. The tail entry
- * in this link will thus be the least recently used entry. */
- static void ap_list_new_ap(struct hostapd_iface *iface, struct ap_info *ap)
- {
- wpa_printf(MSG_DEBUG, "New AP detected: " MACSTR, MAC2STR(ap->addr));
- /* TODO: could send a notification message to an external program that
- * would then determine whether a rogue AP has been detected */
- }
- static void ap_list_expired_ap(struct hostapd_iface *iface, struct ap_info *ap)
- {
- wpa_printf(MSG_DEBUG, "AP info expired: " MACSTR, MAC2STR(ap->addr));
- /* TODO: could send a notification message to an external program */
- }
- static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap)
- {
- int i;
- if (iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G ||
- ap->phytype != ieee80211_phytype_pbcc_dot11_g ||
- iface->conf->channel != ap->channel)
- return 0;
- if (ap->erp != -1 && (ap->erp & ERP_INFO_NON_ERP_PRESENT))
- return 1;
- for (i = 0; i < WLAN_SUPP_RATES_MAX; i++) {
- int rate = (ap->supported_rates[i] & 0x7f) * 5;
- if (rate == 60 || rate == 90 || rate > 110)
- return 0;
- }
- return 1;
- }
- #ifdef CONFIG_IEEE80211N
- static int ap_list_beacon_olbc_ht(struct hostapd_iface *iface,
- struct ap_info *ap)
- {
- return !ap->ht_support;
- }
- #endif /* CONFIG_IEEE80211N */
- struct ap_info * ap_get_ap(struct hostapd_iface *iface, u8 *ap)
- {
- struct ap_info *s;
- s = iface->ap_hash[STA_HASH(ap)];
- while (s != NULL && os_memcmp(s->addr, ap, ETH_ALEN) != 0)
- s = s->hnext;
- return s;
- }
- static void ap_ap_list_add(struct hostapd_iface *iface, struct ap_info *ap)
- {
- if (iface->ap_list) {
- ap->prev = iface->ap_list->prev;
- iface->ap_list->prev = ap;
- } else
- ap->prev = ap;
- ap->next = iface->ap_list;
- iface->ap_list = ap;
- }
- static void ap_ap_list_del(struct hostapd_iface *iface, struct ap_info *ap)
- {
- if (iface->ap_list == ap)
- iface->ap_list = ap->next;
- else
- ap->prev->next = ap->next;
- if (ap->next)
- ap->next->prev = ap->prev;
- else if (iface->ap_list)
- iface->ap_list->prev = ap->prev;
- }
- static void ap_ap_iter_list_add(struct hostapd_iface *iface,
- struct ap_info *ap)
- {
- if (iface->ap_iter_list) {
- ap->iter_prev = iface->ap_iter_list->iter_prev;
- iface->ap_iter_list->iter_prev = ap;
- } else
- ap->iter_prev = ap;
- ap->iter_next = iface->ap_iter_list;
- iface->ap_iter_list = ap;
- }
- static void ap_ap_iter_list_del(struct hostapd_iface *iface,
- struct ap_info *ap)
- {
- if (iface->ap_iter_list == ap)
- iface->ap_iter_list = ap->iter_next;
- else
- ap->iter_prev->iter_next = ap->iter_next;
- if (ap->iter_next)
- ap->iter_next->iter_prev = ap->iter_prev;
- else if (iface->ap_iter_list)
- iface->ap_iter_list->iter_prev = ap->iter_prev;
- }
- static void ap_ap_hash_add(struct hostapd_iface *iface, struct ap_info *ap)
- {
- ap->hnext = iface->ap_hash[STA_HASH(ap->addr)];
- iface->ap_hash[STA_HASH(ap->addr)] = ap;
- }
- static void ap_ap_hash_del(struct hostapd_iface *iface, struct ap_info *ap)
- {
- struct ap_info *s;
- s = iface->ap_hash[STA_HASH(ap->addr)];
- if (s == NULL) return;
- if (os_memcmp(s->addr, ap->addr, ETH_ALEN) == 0) {
- iface->ap_hash[STA_HASH(ap->addr)] = s->hnext;
- return;
- }
- while (s->hnext != NULL &&
- os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0)
- s = s->hnext;
- if (s->hnext != NULL)
- s->hnext = s->hnext->hnext;
- else
- printf("AP: could not remove AP " MACSTR " from hash table\n",
- MAC2STR(ap->addr));
- }
- static void ap_free_ap(struct hostapd_iface *iface, struct ap_info *ap)
- {
- ap_ap_hash_del(iface, ap);
- ap_ap_list_del(iface, ap);
- ap_ap_iter_list_del(iface, ap);
- iface->num_ap--;
- os_free(ap);
- }
- static void hostapd_free_aps(struct hostapd_iface *iface)
- {
- struct ap_info *ap, *prev;
- ap = iface->ap_list;
- while (ap) {
- prev = ap;
- ap = ap->next;
- ap_free_ap(iface, prev);
- }
- iface->ap_list = NULL;
- }
- int ap_ap_for_each(struct hostapd_iface *iface,
- int (*func)(struct ap_info *s, void *data), void *data)
- {
- struct ap_info *s;
- int ret = 0;
- s = iface->ap_list;
- while (s) {
- ret = func(s, data);
- if (ret)
- break;
- s = s->next;
- }
- return ret;
- }
- static struct ap_info * ap_ap_add(struct hostapd_iface *iface, u8 *addr)
- {
- struct ap_info *ap;
- ap = os_zalloc(sizeof(struct ap_info));
- if (ap == NULL)
- return NULL;
- /* initialize AP info data */
- os_memcpy(ap->addr, addr, ETH_ALEN);
- ap_ap_list_add(iface, ap);
- iface->num_ap++;
- ap_ap_hash_add(iface, ap);
- ap_ap_iter_list_add(iface, ap);
- if (iface->num_ap > iface->conf->ap_table_max_size && ap != ap->prev) {
- wpa_printf(MSG_DEBUG, "Removing the least recently used AP "
- MACSTR " from AP table", MAC2STR(ap->prev->addr));
- if (iface->conf->passive_scan_interval > 0)
- ap_list_expired_ap(iface, ap->prev);
- ap_free_ap(iface, ap->prev);
- }
- return ap;
- }
- void ap_list_process_beacon(struct hostapd_iface *iface,
- struct ieee80211_mgmt *mgmt,
- struct ieee802_11_elems *elems,
- struct hostapd_frame_info *fi)
- {
- struct ap_info *ap;
- int new_ap = 0;
- size_t len;
- int set_beacon = 0;
- if (iface->conf->ap_table_max_size < 1)
- return;
- ap = ap_get_ap(iface, mgmt->bssid);
- if (!ap) {
- ap = ap_ap_add(iface, mgmt->bssid);
- if (!ap) {
- printf("Failed to allocate AP information entry\n");
- return;
- }
- new_ap = 1;
- }
- ap->beacon_int = le_to_host16(mgmt->u.beacon.beacon_int);
- ap->capability = le_to_host16(mgmt->u.beacon.capab_info);
- if (elems->ssid) {
- len = elems->ssid_len;
- if (len >= sizeof(ap->ssid))
- len = sizeof(ap->ssid) - 1;
- os_memcpy(ap->ssid, elems->ssid, len);
- ap->ssid[len] = '\0';
- ap->ssid_len = len;
- }
- os_memset(ap->supported_rates, 0, WLAN_SUPP_RATES_MAX);
- len = 0;
- if (elems->supp_rates) {
- len = elems->supp_rates_len;
- if (len > WLAN_SUPP_RATES_MAX)
- len = WLAN_SUPP_RATES_MAX;
- os_memcpy(ap->supported_rates, elems->supp_rates, len);
- }
- if (elems->ext_supp_rates) {
- int len2;
- if (len + elems->ext_supp_rates_len > WLAN_SUPP_RATES_MAX)
- len2 = WLAN_SUPP_RATES_MAX - len;
- else
- len2 = elems->ext_supp_rates_len;
- os_memcpy(ap->supported_rates + len, elems->ext_supp_rates,
- len2);
- }
- ap->wpa = elems->wpa_ie != NULL;
- if (elems->erp_info && elems->erp_info_len == 1)
- ap->erp = elems->erp_info[0];
- else
- ap->erp = -1;
- if (elems->ds_params && elems->ds_params_len == 1)
- ap->channel = elems->ds_params[0];
- else if (fi)
- ap->channel = fi->channel;
- if (elems->ht_capabilities)
- ap->ht_support = 1;
- else
- ap->ht_support = 0;
- ap->num_beacons++;
- time(&ap->last_beacon);
- if (fi) {
- ap->phytype = fi->phytype;
- ap->ssi_signal = fi->ssi_signal;
- ap->datarate = fi->datarate;
- }
- if (new_ap) {
- if (iface->conf->passive_scan_interval > 0)
- ap_list_new_ap(iface, ap);
- } else if (ap != iface->ap_list) {
- /* move AP entry into the beginning of the list so that the
- * oldest entry is always in the end of the list */
- ap_ap_list_del(iface, ap);
- ap_ap_list_add(iface, ap);
- }
- if (!iface->olbc &&
- ap_list_beacon_olbc(iface, ap)) {
- iface->olbc = 1;
- wpa_printf(MSG_DEBUG, "OLBC AP detected: " MACSTR " - enable "
- "protection", MAC2STR(ap->addr));
- set_beacon++;
- }
- #ifdef CONFIG_IEEE80211N
- if (!iface->olbc_ht && ap_list_beacon_olbc_ht(iface, ap)) {
- iface->olbc_ht = 1;
- hostapd_ht_operation_update(iface);
- wpa_printf(MSG_DEBUG, "OLBC HT AP detected: " MACSTR
- " - enable protection", MAC2STR(ap->addr));
- set_beacon++;
- }
- #endif /* CONFIG_IEEE80211N */
- if (set_beacon)
- ieee802_11_set_beacons(iface);
- }
- static void ap_list_timer(void *eloop_ctx, void *timeout_ctx)
- {
- struct hostapd_iface *iface = eloop_ctx;
- time_t now;
- struct ap_info *ap;
- int set_beacon = 0;
- eloop_register_timeout(10, 0, ap_list_timer, iface, NULL);
- if (!iface->ap_list)
- return;
- time(&now);
- /* FIX: it looks like jkm-Purina ended up in busy loop in this
- * function. Apparently, something can still cause a loop in the AP
- * list.. */
- while (iface->ap_list) {
- ap = iface->ap_list->prev;
- if (ap->last_beacon + iface->conf->ap_table_expiration_time >=
- now)
- break;
- if (iface->conf->passive_scan_interval > 0)
- ap_list_expired_ap(iface, ap);
- ap_free_ap(iface, ap);
- }
- if (iface->olbc || iface->olbc_ht) {
- int olbc = 0;
- int olbc_ht = 0;
- ap = iface->ap_list;
- while (ap && (olbc == 0 || olbc_ht == 0)) {
- if (ap_list_beacon_olbc(iface, ap))
- olbc = 1;
- #ifdef CONFIG_IEEE80211N
- if (ap_list_beacon_olbc_ht(iface, ap))
- olbc_ht = 1;
- #endif /* CONFIG_IEEE80211N */
- ap = ap->next;
- }
- if (!olbc && iface->olbc) {
- wpa_printf(MSG_DEBUG, "OLBC not detected anymore");
- iface->olbc = 0;
- set_beacon++;
- }
- #ifdef CONFIG_IEEE80211N
- if (!olbc_ht && iface->olbc_ht) {
- wpa_printf(MSG_DEBUG, "OLBC HT not detected anymore");
- iface->olbc_ht = 0;
- hostapd_ht_operation_update(iface);
- set_beacon++;
- }
- #endif /* CONFIG_IEEE80211N */
- }
- if (set_beacon)
- ieee802_11_set_beacons(iface);
- }
- int ap_list_init(struct hostapd_iface *iface)
- {
- eloop_register_timeout(10, 0, ap_list_timer, iface, NULL);
- return 0;
- }
- void ap_list_deinit(struct hostapd_iface *iface)
- {
- eloop_cancel_timeout(ap_list_timer, iface, NULL);
- hostapd_free_aps(iface);
- }
- int ap_list_reconfig(struct hostapd_iface *iface,
- struct hostapd_config *oldconf)
- {
- time_t now;
- struct ap_info *ap;
- if (iface->conf->ap_table_max_size == oldconf->ap_table_max_size &&
- iface->conf->ap_table_expiration_time ==
- oldconf->ap_table_expiration_time)
- return 0;
- time(&now);
- while (iface->ap_list) {
- ap = iface->ap_list->prev;
- if (iface->num_ap <= iface->conf->ap_table_max_size &&
- ap->last_beacon + iface->conf->ap_table_expiration_time >=
- now)
- break;
- if (iface->conf->passive_scan_interval > 0)
- ap_list_expired_ap(iface, iface->ap_list->prev);
- ap_free_ap(iface, iface->ap_list->prev);
- }
- return 0;
- }
|