1f0706e82SJiri Benc /* 2f0706e82SJiri Benc * Copyright 2002-2005, Instant802 Networks, Inc. 3f0706e82SJiri Benc * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> 4d98ad83eSJohannes Berg * Copyright 2013-2014 Intel Mobile Communications GmbH 5f59374ebSSara Sharon * Copyright (C) 2015 - 2016 Intel Deutschland GmbH 6f0706e82SJiri Benc * 7f0706e82SJiri Benc * This program is free software; you can redistribute it and/or modify 8f0706e82SJiri Benc * it under the terms of the GNU General Public License version 2 as 9f0706e82SJiri Benc * published by the Free Software Foundation. 10f0706e82SJiri Benc */ 11f0706e82SJiri Benc 12f0706e82SJiri Benc #include <linux/module.h> 13f0706e82SJiri Benc #include <linux/init.h> 14888d04dfSFelix Fietkau #include <linux/etherdevice.h> 15f0706e82SJiri Benc #include <linux/netdevice.h> 16f0706e82SJiri Benc #include <linux/types.h> 17f0706e82SJiri Benc #include <linux/slab.h> 18f0706e82SJiri Benc #include <linux/skbuff.h> 19f0706e82SJiri Benc #include <linux/if_arp.h> 200d174406SJohannes Berg #include <linux/timer.h> 21d0709a65SJohannes Berg #include <linux/rtnetlink.h> 22f0706e82SJiri Benc 23f0706e82SJiri Benc #include <net/mac80211.h> 24f0706e82SJiri Benc #include "ieee80211_i.h" 2524487981SJohannes Berg #include "driver-ops.h" 262c8dccc7SJohannes Berg #include "rate.h" 27f0706e82SJiri Benc #include "sta_info.h" 28e9f207f0SJiri Benc #include "debugfs_sta.h" 29ee385855SLuis Carlos Cobo #include "mesh.h" 30ce662b44SJohannes Berg #include "wme.h" 31f0706e82SJiri Benc 32d0709a65SJohannes Berg /** 33d0709a65SJohannes Berg * DOC: STA information lifetime rules 34d0709a65SJohannes Berg * 35d0709a65SJohannes Berg * STA info structures (&struct sta_info) are managed in a hash table 36d0709a65SJohannes Berg * for faster lookup and a list for iteration. They are managed using 37d0709a65SJohannes Berg * RCU, i.e. access to the list and hash table is protected by RCU. 38d0709a65SJohannes Berg * 3934e89507SJohannes Berg * Upon allocating a STA info structure with sta_info_alloc(), the caller 4034e89507SJohannes Berg * owns that structure. It must then insert it into the hash table using 4134e89507SJohannes Berg * either sta_info_insert() or sta_info_insert_rcu(); only in the latter 4234e89507SJohannes Berg * case (which acquires an rcu read section but must not be called from 4334e89507SJohannes Berg * within one) will the pointer still be valid after the call. Note that 4434e89507SJohannes Berg * the caller may not do much with the STA info before inserting it, in 4534e89507SJohannes Berg * particular, it may not start any mesh peer link management or add 4634e89507SJohannes Berg * encryption keys. 4793e5deb1SJohannes Berg * 4893e5deb1SJohannes Berg * When the insertion fails (sta_info_insert()) returns non-zero), the 4993e5deb1SJohannes Berg * structure will have been freed by sta_info_insert()! 50d0709a65SJohannes Berg * 5134e89507SJohannes Berg * Station entries are added by mac80211 when you establish a link with a 527e189a12SLuis R. Rodriguez * peer. This means different things for the different type of interfaces 537e189a12SLuis R. Rodriguez * we support. For a regular station this mean we add the AP sta when we 5425985edcSLucas De Marchi * receive an association response from the AP. For IBSS this occurs when 5534e89507SJohannes Berg * get to know about a peer on the same IBSS. For WDS we add the sta for 5625985edcSLucas De Marchi * the peer immediately upon device open. When using AP mode we add stations 5734e89507SJohannes Berg * for each respective station upon request from userspace through nl80211. 587e189a12SLuis R. Rodriguez * 5934e89507SJohannes Berg * In order to remove a STA info structure, various sta_info_destroy_*() 6034e89507SJohannes Berg * calls are available. 61d0709a65SJohannes Berg * 6234e89507SJohannes Berg * There is no concept of ownership on a STA entry, each structure is 6334e89507SJohannes Berg * owned by the global hash table/list until it is removed. All users of 6434e89507SJohannes Berg * the structure need to be RCU protected so that the structure won't be 6534e89507SJohannes Berg * freed before they are done using it. 66d0709a65SJohannes Berg */ 67f0706e82SJiri Benc 687bedd0cfSJohannes Berg static const struct rhashtable_params sta_rht_params = { 697bedd0cfSJohannes Berg .nelem_hint = 3, /* start small */ 70b6bf8c68SBen Greear .insecure_elasticity = true, /* Disable chain-length checks. */ 71caf22d31SJohannes Berg .automatic_shrinking = true, 727bedd0cfSJohannes Berg .head_offset = offsetof(struct sta_info, hash_node), 73ac100ce5SJohannes Berg .key_offset = offsetof(struct sta_info, addr), 747bedd0cfSJohannes Berg .key_len = ETH_ALEN, 757bedd0cfSJohannes Berg .hashfn = sta_addr_hash, 76ebd82b39SJohannes Berg .max_size = CONFIG_MAC80211_STA_HASH_MAX_SIZE, 777bedd0cfSJohannes Berg }; 787bedd0cfSJohannes Berg 794d33960bSJohannes Berg /* Caller must hold local->sta_mtx */ 80be8755e1SMichael Wu static int sta_info_hash_del(struct ieee80211_local *local, 81f0706e82SJiri Benc struct sta_info *sta) 82f0706e82SJiri Benc { 837bedd0cfSJohannes Berg return rhashtable_remove_fast(&local->sta_hash, &sta->hash_node, 847bedd0cfSJohannes Berg sta_rht_params); 85f0706e82SJiri Benc } 86f0706e82SJiri Benc 875108ca82SJohannes Berg static void __cleanup_single_sta(struct sta_info *sta) 88b22cfcfcSEliad Peller { 89b22cfcfcSEliad Peller int ac, i; 90b22cfcfcSEliad Peller struct tid_ampdu_tx *tid_tx; 91b22cfcfcSEliad Peller struct ieee80211_sub_if_data *sdata = sta->sdata; 92b22cfcfcSEliad Peller struct ieee80211_local *local = sdata->local; 93fa962b92SMichal Kazior struct fq *fq = &local->fq; 94d012a605SMarco Porsch struct ps_data *ps; 95b22cfcfcSEliad Peller 96e3685e03SJohannes Berg if (test_sta_flag(sta, WLAN_STA_PS_STA) || 975ac2e350SJohannes Berg test_sta_flag(sta, WLAN_STA_PS_DRIVER) || 985ac2e350SJohannes Berg test_sta_flag(sta, WLAN_STA_PS_DELIVER)) { 99d012a605SMarco Porsch if (sta->sdata->vif.type == NL80211_IFTYPE_AP || 100d012a605SMarco Porsch sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) 101d012a605SMarco Porsch ps = &sdata->bss->ps; 1023f52b7e3SMarco Porsch else if (ieee80211_vif_is_mesh(&sdata->vif)) 1033f52b7e3SMarco Porsch ps = &sdata->u.mesh.ps; 104d012a605SMarco Porsch else 105d012a605SMarco Porsch return; 106b22cfcfcSEliad Peller 107b22cfcfcSEliad Peller clear_sta_flag(sta, WLAN_STA_PS_STA); 108e3685e03SJohannes Berg clear_sta_flag(sta, WLAN_STA_PS_DRIVER); 1095ac2e350SJohannes Berg clear_sta_flag(sta, WLAN_STA_PS_DELIVER); 110b22cfcfcSEliad Peller 111d012a605SMarco Porsch atomic_dec(&ps->num_sta_ps); 112b22cfcfcSEliad Peller } 113b22cfcfcSEliad Peller 114ba8c3d6fSFelix Fietkau if (sta->sta.txq[0]) { 115ba8c3d6fSFelix Fietkau for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) { 116ba8c3d6fSFelix Fietkau struct txq_info *txqi = to_txq_info(sta->sta.txq[i]); 117ba8c3d6fSFelix Fietkau 118fa962b92SMichal Kazior spin_lock_bh(&fq->lock); 119fa962b92SMichal Kazior ieee80211_txq_purge(local, txqi); 120fa962b92SMichal Kazior spin_unlock_bh(&fq->lock); 121ba8c3d6fSFelix Fietkau } 122ba8c3d6fSFelix Fietkau } 123ba8c3d6fSFelix Fietkau 124b22cfcfcSEliad Peller for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { 125b22cfcfcSEliad Peller local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]); 1261f98ab7fSFelix Fietkau ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]); 1271f98ab7fSFelix Fietkau ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]); 128b22cfcfcSEliad Peller } 129b22cfcfcSEliad Peller 13045b5028eSThomas Pedersen if (ieee80211_vif_is_mesh(&sdata->vif)) 13145b5028eSThomas Pedersen mesh_sta_cleanup(sta); 132b22cfcfcSEliad Peller 1335ac2e350SJohannes Berg cancel_work_sync(&sta->drv_deliver_wk); 134b22cfcfcSEliad Peller 135b22cfcfcSEliad Peller /* 136b22cfcfcSEliad Peller * Destroy aggregation state here. It would be nice to wait for the 137b22cfcfcSEliad Peller * driver to finish aggregation stop and then clean up, but for now 138b22cfcfcSEliad Peller * drivers have to handle aggregation stop being requested, followed 139b22cfcfcSEliad Peller * directly by station destruction. 140b22cfcfcSEliad Peller */ 1415a306f58SJohannes Berg for (i = 0; i < IEEE80211_NUM_TIDS; i++) { 142661eb381SJohannes Berg kfree(sta->ampdu_mlme.tid_start_tx[i]); 143b22cfcfcSEliad Peller tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]); 144b22cfcfcSEliad Peller if (!tid_tx) 145b22cfcfcSEliad Peller continue; 1461f98ab7fSFelix Fietkau ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending); 147b22cfcfcSEliad Peller kfree(tid_tx); 148b22cfcfcSEliad Peller } 1495108ca82SJohannes Berg } 150b22cfcfcSEliad Peller 1515108ca82SJohannes Berg static void cleanup_single_sta(struct sta_info *sta) 1525108ca82SJohannes Berg { 1535108ca82SJohannes Berg struct ieee80211_sub_if_data *sdata = sta->sdata; 1545108ca82SJohannes Berg struct ieee80211_local *local = sdata->local; 1555108ca82SJohannes Berg 1565108ca82SJohannes Berg __cleanup_single_sta(sta); 157b22cfcfcSEliad Peller sta_info_free(local, sta); 158b22cfcfcSEliad Peller } 159b22cfcfcSEliad Peller 160d0709a65SJohannes Berg /* protected by RCU */ 161abe60632SJohannes Berg struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata, 162abe60632SJohannes Berg const u8 *addr) 16343ba7e95SJohannes Berg { 164abe60632SJohannes Berg struct ieee80211_local *local = sdata->local; 16560f4b626SJohannes Berg struct sta_info *sta; 16660f4b626SJohannes Berg struct rhash_head *tmp; 16760f4b626SJohannes Berg const struct bucket_table *tbl; 16843ba7e95SJohannes Berg 16960f4b626SJohannes Berg rcu_read_lock(); 17060f4b626SJohannes Berg tbl = rht_dereference_rcu(local->sta_hash.tbl, &local->sta_hash); 17160f4b626SJohannes Berg 17260f4b626SJohannes Berg for_each_sta_info(local, tbl, addr, sta, tmp) { 17360f4b626SJohannes Berg if (sta->sdata == sdata) { 17460f4b626SJohannes Berg rcu_read_unlock(); 17560f4b626SJohannes Berg /* this is safe as the caller must already hold 17660f4b626SJohannes Berg * another rcu read section or the mutex 17760f4b626SJohannes Berg */ 17860f4b626SJohannes Berg return sta; 17960f4b626SJohannes Berg } 18060f4b626SJohannes Berg } 18160f4b626SJohannes Berg rcu_read_unlock(); 18260f4b626SJohannes Berg return NULL; 18343ba7e95SJohannes Berg } 18443ba7e95SJohannes Berg 1850e5ded5aSFelix Fietkau /* 1860e5ded5aSFelix Fietkau * Get sta info either from the specified interface 1870e5ded5aSFelix Fietkau * or from one of its vlans 1880e5ded5aSFelix Fietkau */ 1890e5ded5aSFelix Fietkau struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata, 1900e5ded5aSFelix Fietkau const u8 *addr) 1910e5ded5aSFelix Fietkau { 1920e5ded5aSFelix Fietkau struct ieee80211_local *local = sdata->local; 1930e5ded5aSFelix Fietkau struct sta_info *sta; 1947bedd0cfSJohannes Berg struct rhash_head *tmp; 1957bedd0cfSJohannes Berg const struct bucket_table *tbl; 1960e5ded5aSFelix Fietkau 1977bedd0cfSJohannes Berg rcu_read_lock(); 1987bedd0cfSJohannes Berg tbl = rht_dereference_rcu(local->sta_hash.tbl, &local->sta_hash); 1997bedd0cfSJohannes Berg 2007bedd0cfSJohannes Berg for_each_sta_info(local, tbl, addr, sta, tmp) { 2017bedd0cfSJohannes Berg if (sta->sdata == sdata || 2027bedd0cfSJohannes Berg (sta->sdata->bss && sta->sdata->bss == sdata->bss)) { 2037bedd0cfSJohannes Berg rcu_read_unlock(); 2047bedd0cfSJohannes Berg /* this is safe as the caller must already hold 2057bedd0cfSJohannes Berg * another rcu read section or the mutex 2067bedd0cfSJohannes Berg */ 2070e5ded5aSFelix Fietkau return sta; 2080e5ded5aSFelix Fietkau } 2097bedd0cfSJohannes Berg } 2107bedd0cfSJohannes Berg rcu_read_unlock(); 2117bedd0cfSJohannes Berg return NULL; 2127bedd0cfSJohannes Berg } 2130e5ded5aSFelix Fietkau 2143b53fde8SJohannes Berg struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata, 2153b53fde8SJohannes Berg int idx) 216ee385855SLuis Carlos Cobo { 2173b53fde8SJohannes Berg struct ieee80211_local *local = sdata->local; 218ee385855SLuis Carlos Cobo struct sta_info *sta; 219ee385855SLuis Carlos Cobo int i = 0; 220ee385855SLuis Carlos Cobo 221d0709a65SJohannes Berg list_for_each_entry_rcu(sta, &local->sta_list, list) { 2223b53fde8SJohannes Berg if (sdata != sta->sdata) 2232a8ca29aSLuis Carlos Cobo continue; 224ee385855SLuis Carlos Cobo if (i < idx) { 225ee385855SLuis Carlos Cobo ++i; 226ee385855SLuis Carlos Cobo continue; 227ee385855SLuis Carlos Cobo } 2282a8ca29aSLuis Carlos Cobo return sta; 229ee385855SLuis Carlos Cobo } 230ee385855SLuis Carlos Cobo 231ee385855SLuis Carlos Cobo return NULL; 232ee385855SLuis Carlos Cobo } 233f0706e82SJiri Benc 23493e5deb1SJohannes Berg /** 235d9a7ddb0SJohannes Berg * sta_info_free - free STA 23693e5deb1SJohannes Berg * 2376ef307bcSRandy Dunlap * @local: pointer to the global information 23893e5deb1SJohannes Berg * @sta: STA info to free 23993e5deb1SJohannes Berg * 24093e5deb1SJohannes Berg * This function must undo everything done by sta_info_alloc() 241d9a7ddb0SJohannes Berg * that may happen before sta_info_insert(). It may only be 242d9a7ddb0SJohannes Berg * called when sta_info_insert() has not been attempted (and 243d9a7ddb0SJohannes Berg * if that fails, the station is freed anyway.) 24493e5deb1SJohannes Berg */ 245d9a7ddb0SJohannes Berg void sta_info_free(struct ieee80211_local *local, struct sta_info *sta) 24693e5deb1SJohannes Berg { 247889cbb91SJohannes Berg if (sta->rate_ctrl) 2484b7679a5SJohannes Berg rate_control_free_sta(sta); 24993e5deb1SJohannes Berg 250bdcbd8e0SJohannes Berg sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr); 25193e5deb1SJohannes Berg 252ba8c3d6fSFelix Fietkau if (sta->sta.txq[0]) 253ba8c3d6fSFelix Fietkau kfree(to_txq_info(sta->sta.txq[0])); 25453d04525SFelix Fietkau kfree(rcu_dereference_raw(sta->sta.rates)); 255433f5bc1SJohannes Berg #ifdef CONFIG_MAC80211_MESH 256433f5bc1SJohannes Berg kfree(sta->mesh); 257433f5bc1SJohannes Berg #endif 258c9c5962bSJohannes Berg free_percpu(sta->pcpu_rx_stats); 25993e5deb1SJohannes Berg kfree(sta); 26093e5deb1SJohannes Berg } 26193e5deb1SJohannes Berg 2624d33960bSJohannes Berg /* Caller must hold local->sta_mtx */ 26362b14b24SJohannes Berg static int sta_info_hash_add(struct ieee80211_local *local, 264d0709a65SJohannes Berg struct sta_info *sta) 265f0706e82SJiri Benc { 26662b14b24SJohannes Berg return rhashtable_insert_fast(&local->sta_hash, &sta->hash_node, 2677bedd0cfSJohannes Berg sta_rht_params); 268f0706e82SJiri Benc } 269f0706e82SJiri Benc 2705ac2e350SJohannes Berg static void sta_deliver_ps_frames(struct work_struct *wk) 271af818581SJohannes Berg { 272af818581SJohannes Berg struct sta_info *sta; 273af818581SJohannes Berg 2745ac2e350SJohannes Berg sta = container_of(wk, struct sta_info, drv_deliver_wk); 275af818581SJohannes Berg 276af818581SJohannes Berg if (sta->dead) 277af818581SJohannes Berg return; 278af818581SJohannes Berg 27954420473SHelmut Schaa local_bh_disable(); 2805ac2e350SJohannes Berg if (!test_sta_flag(sta, WLAN_STA_PS_STA)) 281af818581SJohannes Berg ieee80211_sta_ps_deliver_wakeup(sta); 2825ac2e350SJohannes Berg else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL)) 283af818581SJohannes Berg ieee80211_sta_ps_deliver_poll_response(sta); 2845ac2e350SJohannes Berg else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD)) 28547086fc5SJohannes Berg ieee80211_sta_ps_deliver_uapsd(sta); 286ce662b44SJohannes Berg local_bh_enable(); 287af818581SJohannes Berg } 288af818581SJohannes Berg 289af65cd96SJohannes Berg static int sta_prepare_rate_control(struct ieee80211_local *local, 290af65cd96SJohannes Berg struct sta_info *sta, gfp_t gfp) 291af65cd96SJohannes Berg { 29230686bf7SJohannes Berg if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) 293af65cd96SJohannes Berg return 0; 294af65cd96SJohannes Berg 295889cbb91SJohannes Berg sta->rate_ctrl = local->rate_ctrl; 296af65cd96SJohannes Berg sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl, 29735c347acSJohannes Berg sta, gfp); 298889cbb91SJohannes Berg if (!sta->rate_ctrl_priv) 299af65cd96SJohannes Berg return -ENOMEM; 300af65cd96SJohannes Berg 301af65cd96SJohannes Berg return 0; 302af65cd96SJohannes Berg } 303af65cd96SJohannes Berg 30473651ee6SJohannes Berg struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, 30556544160SJohannes Berg const u8 *addr, gfp_t gfp) 306f0706e82SJiri Benc { 307d0709a65SJohannes Berg struct ieee80211_local *local = sdata->local; 308ba8c3d6fSFelix Fietkau struct ieee80211_hw *hw = &local->hw; 309f0706e82SJiri Benc struct sta_info *sta; 31016c5f15cSRon Rindjunsky int i; 311f0706e82SJiri Benc 312ba8c3d6fSFelix Fietkau sta = kzalloc(sizeof(*sta) + hw->sta_data_size, gfp); 313f0706e82SJiri Benc if (!sta) 31473651ee6SJohannes Berg return NULL; 315f0706e82SJiri Benc 316c9c5962bSJohannes Berg if (ieee80211_hw_check(hw, USES_RSS)) { 317c9c5962bSJohannes Berg sta->pcpu_rx_stats = 318c9c5962bSJohannes Berg alloc_percpu(struct ieee80211_sta_rx_stats); 319c9c5962bSJohannes Berg if (!sta->pcpu_rx_stats) 320c9c5962bSJohannes Berg goto free; 321c9c5962bSJohannes Berg } 322c9c5962bSJohannes Berg 32307346f81SJohannes Berg spin_lock_init(&sta->lock); 3241d147bfaSEmmanuel Grumbach spin_lock_init(&sta->ps_lock); 3255ac2e350SJohannes Berg INIT_WORK(&sta->drv_deliver_wk, sta_deliver_ps_frames); 32667c282c0SJohannes Berg INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work); 327a93e3644SJohannes Berg mutex_init(&sta->ampdu_mlme.mtx); 32887f59c70SThomas Pedersen #ifdef CONFIG_MAC80211_MESH 329433f5bc1SJohannes Berg if (ieee80211_vif_is_mesh(&sdata->vif)) { 330433f5bc1SJohannes Berg sta->mesh = kzalloc(sizeof(*sta->mesh), gfp); 331433f5bc1SJohannes Berg if (!sta->mesh) 332433f5bc1SJohannes Berg goto free; 333433f5bc1SJohannes Berg spin_lock_init(&sta->mesh->plink_lock); 33487f59c70SThomas Pedersen if (ieee80211_vif_is_mesh(&sdata->vif) && 33587f59c70SThomas Pedersen !sdata->u.mesh.user_mpm) 336433f5bc1SJohannes Berg init_timer(&sta->mesh->plink_timer); 337433f5bc1SJohannes Berg sta->mesh->nonpeer_pm = NL80211_MESH_POWER_ACTIVE; 338433f5bc1SJohannes Berg } 33987f59c70SThomas Pedersen #endif 34007346f81SJohannes Berg 341ac100ce5SJohannes Berg memcpy(sta->addr, addr, ETH_ALEN); 34217741cdcSJohannes Berg memcpy(sta->sta.addr, addr, ETH_ALEN); 343480dd46bSMaxim Altshul sta->sta.max_rx_aggregation_subframes = 344480dd46bSMaxim Altshul local->hw.max_rx_aggregation_subframes; 345480dd46bSMaxim Altshul 346d0709a65SJohannes Berg sta->local = local; 347d0709a65SJohannes Berg sta->sdata = sdata; 348e5a9f8d0SJohannes Berg sta->rx_stats.last_rx = jiffies; 349f0706e82SJiri Benc 3500f9c5a61SJohannes Berg u64_stats_init(&sta->rx_stats.syncp); 3510f9c5a61SJohannes Berg 35271ec375cSJohannes Berg sta->sta_state = IEEE80211_STA_NONE; 35371ec375cSJohannes Berg 354b6da911bSLiad Kaufman /* Mark TID as unreserved */ 355b6da911bSLiad Kaufman sta->reserved_tid = IEEE80211_TID_UNRESERVED; 356b6da911bSLiad Kaufman 35784b00607SArnd Bergmann sta->last_connected = ktime_get_seconds(); 3580be6ed13SJohannes Berg ewma_signal_init(&sta->rx_stats_avg.signal); 3590be6ed13SJohannes Berg for (i = 0; i < ARRAY_SIZE(sta->rx_stats_avg.chain_signal); i++) 3600be6ed13SJohannes Berg ewma_signal_init(&sta->rx_stats_avg.chain_signal[i]); 361541a45a1SBruno Randolf 362ba8c3d6fSFelix Fietkau if (local->ops->wake_tx_queue) { 363ba8c3d6fSFelix Fietkau void *txq_data; 364ba8c3d6fSFelix Fietkau int size = sizeof(struct txq_info) + 365ba8c3d6fSFelix Fietkau ALIGN(hw->txq_data_size, sizeof(void *)); 366ba8c3d6fSFelix Fietkau 367ba8c3d6fSFelix Fietkau txq_data = kcalloc(ARRAY_SIZE(sta->sta.txq), size, gfp); 368ba8c3d6fSFelix Fietkau if (!txq_data) 369ba8c3d6fSFelix Fietkau goto free; 370ba8c3d6fSFelix Fietkau 371ba8c3d6fSFelix Fietkau for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) { 372ba8c3d6fSFelix Fietkau struct txq_info *txq = txq_data + i * size; 373ba8c3d6fSFelix Fietkau 374fa962b92SMichal Kazior ieee80211_txq_init(sdata, sta, txq, i); 375abfbc3afSJohannes Berg } 376ba8c3d6fSFelix Fietkau } 377ba8c3d6fSFelix Fietkau 378ba8c3d6fSFelix Fietkau if (sta_prepare_rate_control(local, sta, gfp)) 379ba8c3d6fSFelix Fietkau goto free_txq; 380f0706e82SJiri Benc 3815a306f58SJohannes Berg for (i = 0; i < IEEE80211_NUM_TIDS; i++) { 382a622ab72SJohannes Berg /* 383a622ab72SJohannes Berg * timer_to_tid must be initialized with identity mapping 384a622ab72SJohannes Berg * to enable session_timer's data differentiation. See 385a622ab72SJohannes Berg * sta_rx_agg_session_timer_expired for usage. 386a622ab72SJohannes Berg */ 38716c5f15cSRon Rindjunsky sta->timer_to_tid[i] = i; 38816c5f15cSRon Rindjunsky } 389948d887dSJohannes Berg for (i = 0; i < IEEE80211_NUM_ACS; i++) { 390948d887dSJohannes Berg skb_queue_head_init(&sta->ps_tx_buf[i]); 391948d887dSJohannes Berg skb_queue_head_init(&sta->tx_filtered[i]); 392948d887dSJohannes Berg } 39373651ee6SJohannes Berg 3945a306f58SJohannes Berg for (i = 0; i < IEEE80211_NUM_TIDS; i++) 3954be929beSAlexey Dobriyan sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX); 396cccaec98SSenthil Balasubramanian 397af0ed69bSJohannes Berg sta->sta.smps_mode = IEEE80211_SMPS_OFF; 398687da132SEmmanuel Grumbach if (sdata->vif.type == NL80211_IFTYPE_AP || 399687da132SEmmanuel Grumbach sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { 400687da132SEmmanuel Grumbach struct ieee80211_supported_band *sband = 401ba8c3d6fSFelix Fietkau hw->wiphy->bands[ieee80211_get_sdata_band(sdata)]; 402687da132SEmmanuel Grumbach u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 403687da132SEmmanuel Grumbach IEEE80211_HT_CAP_SM_PS_SHIFT; 404687da132SEmmanuel Grumbach /* 405687da132SEmmanuel Grumbach * Assume that hostapd advertises our caps in the beacon and 406687da132SEmmanuel Grumbach * this is the known_smps_mode for a station that just assciated 407687da132SEmmanuel Grumbach */ 408687da132SEmmanuel Grumbach switch (smps) { 409687da132SEmmanuel Grumbach case WLAN_HT_SMPS_CONTROL_DISABLED: 410687da132SEmmanuel Grumbach sta->known_smps_mode = IEEE80211_SMPS_OFF; 411687da132SEmmanuel Grumbach break; 412687da132SEmmanuel Grumbach case WLAN_HT_SMPS_CONTROL_STATIC: 413687da132SEmmanuel Grumbach sta->known_smps_mode = IEEE80211_SMPS_STATIC; 414687da132SEmmanuel Grumbach break; 415687da132SEmmanuel Grumbach case WLAN_HT_SMPS_CONTROL_DYNAMIC: 416687da132SEmmanuel Grumbach sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC; 417687da132SEmmanuel Grumbach break; 418687da132SEmmanuel Grumbach default: 419687da132SEmmanuel Grumbach WARN_ON(1); 420687da132SEmmanuel Grumbach } 421687da132SEmmanuel Grumbach } 422af0ed69bSJohannes Berg 4236e0456b5SFelix Fietkau sta->sta.max_rc_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_BA; 4246e0456b5SFelix Fietkau 425bdcbd8e0SJohannes Berg sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr); 426ef04a297SJohannes Berg 427abfbc3afSJohannes Berg return sta; 428ba8c3d6fSFelix Fietkau 429ba8c3d6fSFelix Fietkau free_txq: 430ba8c3d6fSFelix Fietkau if (sta->sta.txq[0]) 431ba8c3d6fSFelix Fietkau kfree(to_txq_info(sta->sta.txq[0])); 432ba8c3d6fSFelix Fietkau free: 433433f5bc1SJohannes Berg #ifdef CONFIG_MAC80211_MESH 434433f5bc1SJohannes Berg kfree(sta->mesh); 435433f5bc1SJohannes Berg #endif 436ba8c3d6fSFelix Fietkau kfree(sta); 437ba8c3d6fSFelix Fietkau return NULL; 43873651ee6SJohannes Berg } 43973651ee6SJohannes Berg 4408c71df7aSGuy Eilam static int sta_info_insert_check(struct sta_info *sta) 44134e89507SJohannes Berg { 44234e89507SJohannes Berg struct ieee80211_sub_if_data *sdata = sta->sdata; 44334e89507SJohannes Berg 44403e4497eSJohannes Berg /* 44503e4497eSJohannes Berg * Can't be a WARN_ON because it can be triggered through a race: 44603e4497eSJohannes Berg * something inserts a STA (on one CPU) without holding the RTNL 44703e4497eSJohannes Berg * and another CPU turns off the net device. 44803e4497eSJohannes Berg */ 4498c71df7aSGuy Eilam if (unlikely(!ieee80211_sdata_running(sdata))) 4508c71df7aSGuy Eilam return -ENETDOWN; 45103e4497eSJohannes Berg 452b203ca39SJoe Perches if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) || 4538c71df7aSGuy Eilam is_multicast_ether_addr(sta->sta.addr))) 4548c71df7aSGuy Eilam return -EINVAL; 4558c71df7aSGuy Eilam 45631104891SJohannes Berg /* Strictly speaking this isn't necessary as we hold the mutex, but 45731104891SJohannes Berg * the rhashtable code can't really deal with that distinction. We 45831104891SJohannes Berg * do require the mutex for correctness though. 45931104891SJohannes Berg */ 46031104891SJohannes Berg rcu_read_lock(); 46131104891SJohannes Berg lockdep_assert_held(&sdata->local->sta_mtx); 46231104891SJohannes Berg if (ieee80211_hw_check(&sdata->local->hw, NEEDS_UNIQUE_STA_ADDR) && 46331104891SJohannes Berg ieee80211_find_sta_by_ifaddr(&sdata->local->hw, sta->addr, NULL)) { 46431104891SJohannes Berg rcu_read_unlock(); 46531104891SJohannes Berg return -ENOTUNIQ; 46631104891SJohannes Berg } 46731104891SJohannes Berg rcu_read_unlock(); 46831104891SJohannes Berg 4698c71df7aSGuy Eilam return 0; 47093e5deb1SJohannes Berg } 47144213b5eSJohannes Berg 472f09603a2SJohannes Berg static int sta_info_insert_drv_state(struct ieee80211_local *local, 473f09603a2SJohannes Berg struct ieee80211_sub_if_data *sdata, 474f09603a2SJohannes Berg struct sta_info *sta) 475f09603a2SJohannes Berg { 476f09603a2SJohannes Berg enum ieee80211_sta_state state; 477f09603a2SJohannes Berg int err = 0; 478f09603a2SJohannes Berg 479f09603a2SJohannes Berg for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) { 480f09603a2SJohannes Berg err = drv_sta_state(local, sdata, sta, state, state + 1); 481f09603a2SJohannes Berg if (err) 482f09603a2SJohannes Berg break; 483f09603a2SJohannes Berg } 484f09603a2SJohannes Berg 485f09603a2SJohannes Berg if (!err) { 486a4ec45a4SJohannes Berg /* 487a4ec45a4SJohannes Berg * Drivers using legacy sta_add/sta_remove callbacks only 488a4ec45a4SJohannes Berg * get uploaded set to true after sta_add is called. 489a4ec45a4SJohannes Berg */ 490a4ec45a4SJohannes Berg if (!local->ops->sta_add) 491f09603a2SJohannes Berg sta->uploaded = true; 492f09603a2SJohannes Berg return 0; 493f09603a2SJohannes Berg } 494f09603a2SJohannes Berg 495f09603a2SJohannes Berg if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { 496bdcbd8e0SJohannes Berg sdata_info(sdata, 497bdcbd8e0SJohannes Berg "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n", 498bdcbd8e0SJohannes Berg sta->sta.addr, state + 1, err); 499f09603a2SJohannes Berg err = 0; 500f09603a2SJohannes Berg } 501f09603a2SJohannes Berg 502f09603a2SJohannes Berg /* unwind on error */ 503f09603a2SJohannes Berg for (; state > IEEE80211_STA_NOTEXIST; state--) 504f09603a2SJohannes Berg WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1)); 505f09603a2SJohannes Berg 506f09603a2SJohannes Berg return err; 507f09603a2SJohannes Berg } 508f09603a2SJohannes Berg 50934e89507SJohannes Berg /* 5108c71df7aSGuy Eilam * should be called with sta_mtx locked 5118c71df7aSGuy Eilam * this function replaces the mutex lock 5128c71df7aSGuy Eilam * with a RCU lock 5138c71df7aSGuy Eilam */ 5144d33960bSJohannes Berg static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU) 5158c71df7aSGuy Eilam { 5168c71df7aSGuy Eilam struct ieee80211_local *local = sta->local; 5178c71df7aSGuy Eilam struct ieee80211_sub_if_data *sdata = sta->sdata; 5180ef049dcSArnd Bergmann struct station_info *sinfo; 5198c71df7aSGuy Eilam int err = 0; 5208c71df7aSGuy Eilam 5218c71df7aSGuy Eilam lockdep_assert_held(&local->sta_mtx); 5228c71df7aSGuy Eilam 5230ef049dcSArnd Bergmann sinfo = kzalloc(sizeof(struct station_info), GFP_KERNEL); 5240ef049dcSArnd Bergmann if (!sinfo) { 5250ef049dcSArnd Bergmann err = -ENOMEM; 5260ef049dcSArnd Bergmann goto out_err; 5270ef049dcSArnd Bergmann } 5280ef049dcSArnd Bergmann 5297852e361SJohannes Berg /* check if STA exists already */ 5307852e361SJohannes Berg if (sta_info_get_bss(sdata, sta->sta.addr)) { 5314d33960bSJohannes Berg err = -EEXIST; 5324d33960bSJohannes Berg goto out_err; 53334e89507SJohannes Berg } 53434e89507SJohannes Berg 5354d33960bSJohannes Berg local->num_sta++; 5364d33960bSJohannes Berg local->sta_generation++; 5374d33960bSJohannes Berg smp_mb(); 5384d33960bSJohannes Berg 5395108ca82SJohannes Berg /* simplify things and don't accept BA sessions yet */ 5405108ca82SJohannes Berg set_sta_flag(sta, WLAN_STA_BLOCK_BA); 5415108ca82SJohannes Berg 5424d33960bSJohannes Berg /* make the station visible */ 54362b14b24SJohannes Berg err = sta_info_hash_add(local, sta); 54462b14b24SJohannes Berg if (err) 54562b14b24SJohannes Berg goto out_drop_sta; 5464d33960bSJohannes Berg 5472bad7748SArik Nemtsov list_add_tail_rcu(&sta->list, &local->sta_list); 54883d5cc01SJohannes Berg 5495108ca82SJohannes Berg /* notify driver */ 5505108ca82SJohannes Berg err = sta_info_insert_drv_state(local, sdata, sta); 5515108ca82SJohannes Berg if (err) 5525108ca82SJohannes Berg goto out_remove; 5535108ca82SJohannes Berg 55483d5cc01SJohannes Berg set_sta_flag(sta, WLAN_STA_INSERTED); 5555108ca82SJohannes Berg /* accept BA sessions now */ 5565108ca82SJohannes Berg clear_sta_flag(sta, WLAN_STA_BLOCK_BA); 5574d33960bSJohannes Berg 5584d33960bSJohannes Berg ieee80211_sta_debugfs_add(sta); 5594d33960bSJohannes Berg rate_control_add_sta_debugfs(sta); 5604d33960bSJohannes Berg 5610ef049dcSArnd Bergmann sinfo->generation = local->sta_generation; 5620ef049dcSArnd Bergmann cfg80211_new_sta(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL); 5630ef049dcSArnd Bergmann kfree(sinfo); 564d0709a65SJohannes Berg 565bdcbd8e0SJohannes Berg sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr); 566f0706e82SJiri Benc 56734e89507SJohannes Berg /* move reference to rcu-protected */ 56834e89507SJohannes Berg rcu_read_lock(); 56934e89507SJohannes Berg mutex_unlock(&local->sta_mtx); 570e9f207f0SJiri Benc 57173651ee6SJohannes Berg if (ieee80211_vif_is_mesh(&sdata->vif)) 57273651ee6SJohannes Berg mesh_accept_plinks_update(sdata); 57373651ee6SJohannes Berg 57473651ee6SJohannes Berg return 0; 5755108ca82SJohannes Berg out_remove: 5765108ca82SJohannes Berg sta_info_hash_del(local, sta); 5775108ca82SJohannes Berg list_del_rcu(&sta->list); 57862b14b24SJohannes Berg out_drop_sta: 5795108ca82SJohannes Berg local->num_sta--; 5805108ca82SJohannes Berg synchronize_net(); 5815108ca82SJohannes Berg __cleanup_single_sta(sta); 5824d33960bSJohannes Berg out_err: 5834d33960bSJohannes Berg mutex_unlock(&local->sta_mtx); 584ea32f065SSudip Mukherjee kfree(sinfo); 5854d33960bSJohannes Berg rcu_read_lock(); 5864d33960bSJohannes Berg return err; 5878c71df7aSGuy Eilam } 5888c71df7aSGuy Eilam 5898c71df7aSGuy Eilam int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU) 5908c71df7aSGuy Eilam { 5918c71df7aSGuy Eilam struct ieee80211_local *local = sta->local; 592308f7fcfSZhao, Gang int err; 5938c71df7aSGuy Eilam 5944d33960bSJohannes Berg might_sleep(); 5954d33960bSJohannes Berg 59631104891SJohannes Berg mutex_lock(&local->sta_mtx); 59731104891SJohannes Berg 5988c71df7aSGuy Eilam err = sta_info_insert_check(sta); 5998c71df7aSGuy Eilam if (err) { 60031104891SJohannes Berg mutex_unlock(&local->sta_mtx); 6018c71df7aSGuy Eilam rcu_read_lock(); 6028c71df7aSGuy Eilam goto out_free; 6038c71df7aSGuy Eilam } 6048c71df7aSGuy Eilam 6054d33960bSJohannes Berg err = sta_info_insert_finish(sta); 6068c71df7aSGuy Eilam if (err) 607004c872eSJohannes Berg goto out_free; 608d0709a65SJohannes Berg 609004c872eSJohannes Berg return 0; 61093e5deb1SJohannes Berg out_free: 611d9a7ddb0SJohannes Berg sta_info_free(local, sta); 61293e5deb1SJohannes Berg return err; 613f0706e82SJiri Benc } 614f0706e82SJiri Benc 61534e89507SJohannes Berg int sta_info_insert(struct sta_info *sta) 61634e89507SJohannes Berg { 61734e89507SJohannes Berg int err = sta_info_insert_rcu(sta); 61834e89507SJohannes Berg 61934e89507SJohannes Berg rcu_read_unlock(); 62034e89507SJohannes Berg 62134e89507SJohannes Berg return err; 62234e89507SJohannes Berg } 62334e89507SJohannes Berg 624d012a605SMarco Porsch static inline void __bss_tim_set(u8 *tim, u16 id) 625004c872eSJohannes Berg { 626004c872eSJohannes Berg /* 627004c872eSJohannes Berg * This format has been mandated by the IEEE specifications, 628004c872eSJohannes Berg * so this line may not be changed to use the __set_bit() format. 629004c872eSJohannes Berg */ 630d012a605SMarco Porsch tim[id / 8] |= (1 << (id % 8)); 631004c872eSJohannes Berg } 632004c872eSJohannes Berg 633d012a605SMarco Porsch static inline void __bss_tim_clear(u8 *tim, u16 id) 634004c872eSJohannes Berg { 635004c872eSJohannes Berg /* 636004c872eSJohannes Berg * This format has been mandated by the IEEE specifications, 637004c872eSJohannes Berg * so this line may not be changed to use the __clear_bit() format. 638004c872eSJohannes Berg */ 639d012a605SMarco Porsch tim[id / 8] &= ~(1 << (id % 8)); 640004c872eSJohannes Berg } 641004c872eSJohannes Berg 6423d5839b6SIlan Peer static inline bool __bss_tim_get(u8 *tim, u16 id) 6433d5839b6SIlan Peer { 6443d5839b6SIlan Peer /* 6453d5839b6SIlan Peer * This format has been mandated by the IEEE specifications, 6463d5839b6SIlan Peer * so this line may not be changed to use the test_bit() format. 6473d5839b6SIlan Peer */ 6483d5839b6SIlan Peer return tim[id / 8] & (1 << (id % 8)); 6493d5839b6SIlan Peer } 6503d5839b6SIlan Peer 651948d887dSJohannes Berg static unsigned long ieee80211_tids_for_ac(int ac) 652004c872eSJohannes Berg { 653948d887dSJohannes Berg /* If we ever support TIDs > 7, this obviously needs to be adjusted */ 654948d887dSJohannes Berg switch (ac) { 655948d887dSJohannes Berg case IEEE80211_AC_VO: 656948d887dSJohannes Berg return BIT(6) | BIT(7); 657948d887dSJohannes Berg case IEEE80211_AC_VI: 658948d887dSJohannes Berg return BIT(4) | BIT(5); 659948d887dSJohannes Berg case IEEE80211_AC_BE: 660948d887dSJohannes Berg return BIT(0) | BIT(3); 661948d887dSJohannes Berg case IEEE80211_AC_BK: 662948d887dSJohannes Berg return BIT(1) | BIT(2); 663948d887dSJohannes Berg default: 664948d887dSJohannes Berg WARN_ON(1); 665948d887dSJohannes Berg return 0; 666d0709a65SJohannes Berg } 667004c872eSJohannes Berg } 668004c872eSJohannes Berg 6699b7a86f3SJohannes Berg static void __sta_info_recalc_tim(struct sta_info *sta, bool ignore_pending) 670004c872eSJohannes Berg { 671c868cb35SJohannes Berg struct ieee80211_local *local = sta->local; 672d012a605SMarco Porsch struct ps_data *ps; 673948d887dSJohannes Berg bool indicate_tim = false; 674948d887dSJohannes Berg u8 ignore_for_tim = sta->sta.uapsd_queues; 675948d887dSJohannes Berg int ac; 676a69bd8e6SBob Copeland u16 id = sta->sta.aid; 677004c872eSJohannes Berg 678d012a605SMarco Porsch if (sta->sdata->vif.type == NL80211_IFTYPE_AP || 679d012a605SMarco Porsch sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { 680c868cb35SJohannes Berg if (WARN_ON_ONCE(!sta->sdata->bss)) 681c868cb35SJohannes Berg return; 6823e122be0SJohannes Berg 683d012a605SMarco Porsch ps = &sta->sdata->bss->ps; 6843f52b7e3SMarco Porsch #ifdef CONFIG_MAC80211_MESH 6853f52b7e3SMarco Porsch } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) { 6863f52b7e3SMarco Porsch ps = &sta->sdata->u.mesh.ps; 6873f52b7e3SMarco Porsch #endif 688d012a605SMarco Porsch } else { 689d012a605SMarco Porsch return; 690d012a605SMarco Porsch } 691d012a605SMarco Porsch 692c868cb35SJohannes Berg /* No need to do anything if the driver does all */ 693c68df2e7SEmmanuel Grumbach if (!local->ops->set_tim) 694c868cb35SJohannes Berg return; 695004c872eSJohannes Berg 696c868cb35SJohannes Berg if (sta->dead) 697c868cb35SJohannes Berg goto done; 6983e122be0SJohannes Berg 699948d887dSJohannes Berg /* 700948d887dSJohannes Berg * If all ACs are delivery-enabled then we should build 701948d887dSJohannes Berg * the TIM bit for all ACs anyway; if only some are then 702948d887dSJohannes Berg * we ignore those and build the TIM bit using only the 703948d887dSJohannes Berg * non-enabled ones. 704948d887dSJohannes Berg */ 705948d887dSJohannes Berg if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1) 706948d887dSJohannes Berg ignore_for_tim = 0; 707948d887dSJohannes Berg 7089b7a86f3SJohannes Berg if (ignore_pending) 7099b7a86f3SJohannes Berg ignore_for_tim = BIT(IEEE80211_NUM_ACS) - 1; 7109b7a86f3SJohannes Berg 711948d887dSJohannes Berg for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { 712948d887dSJohannes Berg unsigned long tids; 713948d887dSJohannes Berg 714948d887dSJohannes Berg if (ignore_for_tim & BIT(ac)) 715948d887dSJohannes Berg continue; 716948d887dSJohannes Berg 717948d887dSJohannes Berg indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) || 718948d887dSJohannes Berg !skb_queue_empty(&sta->ps_tx_buf[ac]); 719948d887dSJohannes Berg if (indicate_tim) 720948d887dSJohannes Berg break; 721948d887dSJohannes Berg 722948d887dSJohannes Berg tids = ieee80211_tids_for_ac(ac); 723948d887dSJohannes Berg 724948d887dSJohannes Berg indicate_tim |= 725948d887dSJohannes Berg sta->driver_buffered_tids & tids; 726ba8c3d6fSFelix Fietkau indicate_tim |= 727ba8c3d6fSFelix Fietkau sta->txq_buffered_tids & tids; 728004c872eSJohannes Berg } 729004c872eSJohannes Berg 730c868cb35SJohannes Berg done: 73165f704a5SJohannes Berg spin_lock_bh(&local->tim_lock); 732004c872eSJohannes Berg 7333d5839b6SIlan Peer if (indicate_tim == __bss_tim_get(ps->tim, id)) 7343d5839b6SIlan Peer goto out_unlock; 7353d5839b6SIlan Peer 736948d887dSJohannes Berg if (indicate_tim) 737d012a605SMarco Porsch __bss_tim_set(ps->tim, id); 738c868cb35SJohannes Berg else 739d012a605SMarco Porsch __bss_tim_clear(ps->tim, id); 7403e122be0SJohannes Berg 7419b7a86f3SJohannes Berg if (local->ops->set_tim && !WARN_ON(sta->dead)) { 742c868cb35SJohannes Berg local->tim_in_locked_section = true; 743948d887dSJohannes Berg drv_set_tim(local, &sta->sta, indicate_tim); 744c868cb35SJohannes Berg local->tim_in_locked_section = false; 745004c872eSJohannes Berg } 746004c872eSJohannes Berg 7473d5839b6SIlan Peer out_unlock: 74865f704a5SJohannes Berg spin_unlock_bh(&local->tim_lock); 749004c872eSJohannes Berg } 750004c872eSJohannes Berg 7519b7a86f3SJohannes Berg void sta_info_recalc_tim(struct sta_info *sta) 7529b7a86f3SJohannes Berg { 7539b7a86f3SJohannes Berg __sta_info_recalc_tim(sta, false); 7549b7a86f3SJohannes Berg } 7559b7a86f3SJohannes Berg 756cd0b8d89SJohannes Berg static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb) 757f0706e82SJiri Benc { 758e039fa4aSJohannes Berg struct ieee80211_tx_info *info; 759f0706e82SJiri Benc int timeout; 760f0706e82SJiri Benc 761f0706e82SJiri Benc if (!skb) 762cd0b8d89SJohannes Berg return false; 763f0706e82SJiri Benc 764e039fa4aSJohannes Berg info = IEEE80211_SKB_CB(skb); 765f0706e82SJiri Benc 766f0706e82SJiri Benc /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */ 76757c4d7b4SJohannes Berg timeout = (sta->listen_interval * 76857c4d7b4SJohannes Berg sta->sdata->vif.bss_conf.beacon_int * 76957c4d7b4SJohannes Berg 32 / 15625) * HZ; 770f0706e82SJiri Benc if (timeout < STA_TX_BUFFER_EXPIRE) 771f0706e82SJiri Benc timeout = STA_TX_BUFFER_EXPIRE; 772e039fa4aSJohannes Berg return time_after(jiffies, info->control.jiffies + timeout); 773f0706e82SJiri Benc } 774f0706e82SJiri Benc 775f0706e82SJiri Benc 776948d887dSJohannes Berg static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local, 777948d887dSJohannes Berg struct sta_info *sta, int ac) 778f0706e82SJiri Benc { 779f0706e82SJiri Benc unsigned long flags; 780f0706e82SJiri Benc struct sk_buff *skb; 781f0706e82SJiri Benc 78260750397SJohannes Berg /* 78360750397SJohannes Berg * First check for frames that should expire on the filtered 78460750397SJohannes Berg * queue. Frames here were rejected by the driver and are on 78560750397SJohannes Berg * a separate queue to avoid reordering with normal PS-buffered 78660750397SJohannes Berg * frames. They also aren't accounted for right now in the 78760750397SJohannes Berg * total_ps_buffered counter. 78860750397SJohannes Berg */ 789f0706e82SJiri Benc for (;;) { 790948d887dSJohannes Berg spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags); 791948d887dSJohannes Berg skb = skb_peek(&sta->tx_filtered[ac]); 79257c4d7b4SJohannes Berg if (sta_info_buffer_expired(sta, skb)) 793948d887dSJohannes Berg skb = __skb_dequeue(&sta->tx_filtered[ac]); 794836341a7SJohannes Berg else 795f0706e82SJiri Benc skb = NULL; 796948d887dSJohannes Berg spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags); 797f0706e82SJiri Benc 79860750397SJohannes Berg /* 79960750397SJohannes Berg * Frames are queued in order, so if this one 80060750397SJohannes Berg * hasn't expired yet we can stop testing. If 80160750397SJohannes Berg * we actually reached the end of the queue we 80260750397SJohannes Berg * also need to stop, of course. 80360750397SJohannes Berg */ 80460750397SJohannes Berg if (!skb) 80560750397SJohannes Berg break; 806d4fa14cdSFelix Fietkau ieee80211_free_txskb(&local->hw, skb); 80760750397SJohannes Berg } 80860750397SJohannes Berg 80960750397SJohannes Berg /* 81060750397SJohannes Berg * Now also check the normal PS-buffered queue, this will 81160750397SJohannes Berg * only find something if the filtered queue was emptied 81260750397SJohannes Berg * since the filtered frames are all before the normal PS 81360750397SJohannes Berg * buffered frames. 81460750397SJohannes Berg */ 815f0706e82SJiri Benc for (;;) { 816948d887dSJohannes Berg spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags); 817948d887dSJohannes Berg skb = skb_peek(&sta->ps_tx_buf[ac]); 818f0706e82SJiri Benc if (sta_info_buffer_expired(sta, skb)) 819948d887dSJohannes Berg skb = __skb_dequeue(&sta->ps_tx_buf[ac]); 820f0706e82SJiri Benc else 821f0706e82SJiri Benc skb = NULL; 822948d887dSJohannes Berg spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags); 823f0706e82SJiri Benc 82460750397SJohannes Berg /* 82560750397SJohannes Berg * frames are queued in order, so if this one 82660750397SJohannes Berg * hasn't expired yet (or we reached the end of 82760750397SJohannes Berg * the queue) we can stop testing 82860750397SJohannes Berg */ 829836341a7SJohannes Berg if (!skb) 830836341a7SJohannes Berg break; 831836341a7SJohannes Berg 832f0706e82SJiri Benc local->total_ps_buffered--; 833bdcbd8e0SJohannes Berg ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n", 834bdcbd8e0SJohannes Berg sta->sta.addr); 835d4fa14cdSFelix Fietkau ieee80211_free_txskb(&local->hw, skb); 836f0706e82SJiri Benc } 8373393a608SJuuso Oikarinen 83860750397SJohannes Berg /* 83960750397SJohannes Berg * Finally, recalculate the TIM bit for this station -- it might 84060750397SJohannes Berg * now be clear because the station was too slow to retrieve its 84160750397SJohannes Berg * frames. 84260750397SJohannes Berg */ 84360750397SJohannes Berg sta_info_recalc_tim(sta); 84460750397SJohannes Berg 84560750397SJohannes Berg /* 84660750397SJohannes Berg * Return whether there are any frames still buffered, this is 84760750397SJohannes Berg * used to check whether the cleanup timer still needs to run, 84860750397SJohannes Berg * if there are no frames we don't need to rearm the timer. 84960750397SJohannes Berg */ 850948d887dSJohannes Berg return !(skb_queue_empty(&sta->ps_tx_buf[ac]) && 851948d887dSJohannes Berg skb_queue_empty(&sta->tx_filtered[ac])); 852948d887dSJohannes Berg } 853948d887dSJohannes Berg 854948d887dSJohannes Berg static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local, 855948d887dSJohannes Berg struct sta_info *sta) 856948d887dSJohannes Berg { 857948d887dSJohannes Berg bool have_buffered = false; 858948d887dSJohannes Berg int ac; 859948d887dSJohannes Berg 8603f52b7e3SMarco Porsch /* This is only necessary for stations on BSS/MBSS interfaces */ 8613f52b7e3SMarco Porsch if (!sta->sdata->bss && 8623f52b7e3SMarco Porsch !ieee80211_vif_is_mesh(&sta->sdata->vif)) 863948d887dSJohannes Berg return false; 864948d887dSJohannes Berg 865948d887dSJohannes Berg for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) 866948d887dSJohannes Berg have_buffered |= 867948d887dSJohannes Berg sta_info_cleanup_expire_buffered_ac(local, sta, ac); 868948d887dSJohannes Berg 869948d887dSJohannes Berg return have_buffered; 870f0706e82SJiri Benc } 871f0706e82SJiri Benc 872d778207bSJohannes Berg static int __must_check __sta_info_destroy_part1(struct sta_info *sta) 87334e89507SJohannes Berg { 87434e89507SJohannes Berg struct ieee80211_local *local; 87534e89507SJohannes Berg struct ieee80211_sub_if_data *sdata; 8766d10e46bSJohannes Berg int ret; 87734e89507SJohannes Berg 87834e89507SJohannes Berg might_sleep(); 87934e89507SJohannes Berg 88034e89507SJohannes Berg if (!sta) 88134e89507SJohannes Berg return -ENOENT; 88234e89507SJohannes Berg 88334e89507SJohannes Berg local = sta->local; 88434e89507SJohannes Berg sdata = sta->sdata; 88534e89507SJohannes Berg 88683d5cc01SJohannes Berg lockdep_assert_held(&local->sta_mtx); 88783d5cc01SJohannes Berg 888098a6070SJohannes Berg /* 889098a6070SJohannes Berg * Before removing the station from the driver and 890098a6070SJohannes Berg * rate control, it might still start new aggregation 891098a6070SJohannes Berg * sessions -- block that to make sure the tear-down 892098a6070SJohannes Berg * will be sufficient. 893098a6070SJohannes Berg */ 894c2c98fdeSJohannes Berg set_sta_flag(sta, WLAN_STA_BLOCK_BA); 895c82c4a80SJohannes Berg ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA); 896098a6070SJohannes Berg 897f59374ebSSara Sharon /* 898f59374ebSSara Sharon * Before removing the station from the driver there might be pending 899f59374ebSSara Sharon * rx frames on RSS queues sent prior to the disassociation - wait for 900f59374ebSSara Sharon * all such frames to be processed. 901f59374ebSSara Sharon */ 902f59374ebSSara Sharon drv_sync_rx_queues(local, sta); 903f59374ebSSara Sharon 90434e89507SJohannes Berg ret = sta_info_hash_del(local, sta); 905b01711beSJohannes Berg if (WARN_ON(ret)) 90634e89507SJohannes Berg return ret; 90734e89507SJohannes Berg 908a7a6bdd0SArik Nemtsov /* 909a7a6bdd0SArik Nemtsov * for TDLS peers, make sure to return to the base channel before 910a7a6bdd0SArik Nemtsov * removal. 911a7a6bdd0SArik Nemtsov */ 912a7a6bdd0SArik Nemtsov if (test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) { 913a7a6bdd0SArik Nemtsov drv_tdls_cancel_channel_switch(local, sdata, &sta->sta); 914a7a6bdd0SArik Nemtsov clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL); 915a7a6bdd0SArik Nemtsov } 916a7a6bdd0SArik Nemtsov 917794454ceSArik Nemtsov list_del_rcu(&sta->list); 918ef044763SEliad Peller sta->removed = true; 9194d33960bSJohannes Berg 9206a9d1b91SJohannes Berg drv_sta_pre_rcu_remove(local, sta->sdata, sta); 9216a9d1b91SJohannes Berg 922a710c816SJohannes Berg if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN && 923a710c816SJohannes Berg rcu_access_pointer(sdata->u.vlan.sta) == sta) 924a710c816SJohannes Berg RCU_INIT_POINTER(sdata->u.vlan.sta, NULL); 925a710c816SJohannes Berg 926d778207bSJohannes Berg return 0; 927d778207bSJohannes Berg } 928d778207bSJohannes Berg 929d778207bSJohannes Berg static void __sta_info_destroy_part2(struct sta_info *sta) 930d778207bSJohannes Berg { 931d778207bSJohannes Berg struct ieee80211_local *local = sta->local; 932d778207bSJohannes Berg struct ieee80211_sub_if_data *sdata = sta->sdata; 9330ef049dcSArnd Bergmann struct station_info *sinfo; 934d778207bSJohannes Berg int ret; 935d778207bSJohannes Berg 936d778207bSJohannes Berg /* 937d778207bSJohannes Berg * NOTE: This assumes at least synchronize_net() was done 938d778207bSJohannes Berg * after _part1 and before _part2! 939d778207bSJohannes Berg */ 940d778207bSJohannes Berg 941d778207bSJohannes Berg might_sleep(); 942d778207bSJohannes Berg lockdep_assert_held(&local->sta_mtx); 943d778207bSJohannes Berg 944c8782078SJohannes Berg /* now keys can no longer be reached */ 9456d10e46bSJohannes Berg ieee80211_free_sta_keys(local, sta); 94634e89507SJohannes Berg 9479b7a86f3SJohannes Berg /* disable TIM bit - last chance to tell driver */ 9489b7a86f3SJohannes Berg __sta_info_recalc_tim(sta, true); 9499b7a86f3SJohannes Berg 95034e89507SJohannes Berg sta->dead = true; 95134e89507SJohannes Berg 95234e89507SJohannes Berg local->num_sta--; 95334e89507SJohannes Berg local->sta_generation++; 95434e89507SJohannes Berg 95583d5cc01SJohannes Berg while (sta->sta_state > IEEE80211_STA_NONE) { 956f09603a2SJohannes Berg ret = sta_info_move_state(sta, sta->sta_state - 1); 957f09603a2SJohannes Berg if (ret) { 95883d5cc01SJohannes Berg WARN_ON_ONCE(1); 95983d5cc01SJohannes Berg break; 96083d5cc01SJohannes Berg } 96183d5cc01SJohannes Berg } 962d9a7ddb0SJohannes Berg 963f09603a2SJohannes Berg if (sta->uploaded) { 964f09603a2SJohannes Berg ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE, 965f09603a2SJohannes Berg IEEE80211_STA_NOTEXIST); 966f09603a2SJohannes Berg WARN_ON_ONCE(ret != 0); 967f09603a2SJohannes Berg } 96834e89507SJohannes Berg 969bdcbd8e0SJohannes Berg sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr); 970bdcbd8e0SJohannes Berg 9710ef049dcSArnd Bergmann sinfo = kzalloc(sizeof(*sinfo), GFP_KERNEL); 9720ef049dcSArnd Bergmann if (sinfo) 9730ef049dcSArnd Bergmann sta_set_sinfo(sta, sinfo); 9740ef049dcSArnd Bergmann cfg80211_del_sta_sinfo(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL); 9750ef049dcSArnd Bergmann kfree(sinfo); 976ec15e68bSJouni Malinen 97734e89507SJohannes Berg rate_control_remove_sta_debugfs(sta); 97834e89507SJohannes Berg ieee80211_sta_debugfs_remove(sta); 97934e89507SJohannes Berg 980d34ba216SJohannes Berg cleanup_single_sta(sta); 981d778207bSJohannes Berg } 982d778207bSJohannes Berg 983d778207bSJohannes Berg int __must_check __sta_info_destroy(struct sta_info *sta) 984d778207bSJohannes Berg { 985d778207bSJohannes Berg int err = __sta_info_destroy_part1(sta); 986d778207bSJohannes Berg 987d778207bSJohannes Berg if (err) 988d778207bSJohannes Berg return err; 989d778207bSJohannes Berg 990d778207bSJohannes Berg synchronize_net(); 991d778207bSJohannes Berg 992d778207bSJohannes Berg __sta_info_destroy_part2(sta); 99334e89507SJohannes Berg 99434e89507SJohannes Berg return 0; 99534e89507SJohannes Berg } 99634e89507SJohannes Berg 99734e89507SJohannes Berg int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr) 99834e89507SJohannes Berg { 99934e89507SJohannes Berg struct sta_info *sta; 100034e89507SJohannes Berg int ret; 100134e89507SJohannes Berg 100234e89507SJohannes Berg mutex_lock(&sdata->local->sta_mtx); 10037852e361SJohannes Berg sta = sta_info_get(sdata, addr); 100434e89507SJohannes Berg ret = __sta_info_destroy(sta); 100534e89507SJohannes Berg mutex_unlock(&sdata->local->sta_mtx); 100634e89507SJohannes Berg 100734e89507SJohannes Berg return ret; 100834e89507SJohannes Berg } 100934e89507SJohannes Berg 101034e89507SJohannes Berg int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata, 101134e89507SJohannes Berg const u8 *addr) 101234e89507SJohannes Berg { 101334e89507SJohannes Berg struct sta_info *sta; 101434e89507SJohannes Berg int ret; 101534e89507SJohannes Berg 101634e89507SJohannes Berg mutex_lock(&sdata->local->sta_mtx); 10177852e361SJohannes Berg sta = sta_info_get_bss(sdata, addr); 101834e89507SJohannes Berg ret = __sta_info_destroy(sta); 101934e89507SJohannes Berg mutex_unlock(&sdata->local->sta_mtx); 102034e89507SJohannes Berg 102134e89507SJohannes Berg return ret; 102234e89507SJohannes Berg } 1023f0706e82SJiri Benc 1024f0706e82SJiri Benc static void sta_info_cleanup(unsigned long data) 1025f0706e82SJiri Benc { 1026f0706e82SJiri Benc struct ieee80211_local *local = (struct ieee80211_local *) data; 1027f0706e82SJiri Benc struct sta_info *sta; 10283393a608SJuuso Oikarinen bool timer_needed = false; 1029f0706e82SJiri Benc 1030d0709a65SJohannes Berg rcu_read_lock(); 1031d0709a65SJohannes Berg list_for_each_entry_rcu(sta, &local->sta_list, list) 10323393a608SJuuso Oikarinen if (sta_info_cleanup_expire_buffered(local, sta)) 10333393a608SJuuso Oikarinen timer_needed = true; 1034d0709a65SJohannes Berg rcu_read_unlock(); 1035f0706e82SJiri Benc 10365bb644a0SJohannes Berg if (local->quiescing) 10375bb644a0SJohannes Berg return; 10385bb644a0SJohannes Berg 10393393a608SJuuso Oikarinen if (!timer_needed) 10403393a608SJuuso Oikarinen return; 10413393a608SJuuso Oikarinen 104226d59535SJohannes Berg mod_timer(&local->sta_cleanup, 104326d59535SJohannes Berg round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL)); 1044f0706e82SJiri Benc } 1045f0706e82SJiri Benc 10467bedd0cfSJohannes Berg u32 sta_addr_hash(const void *key, u32 length, u32 seed) 1047f0706e82SJiri Benc { 10487bedd0cfSJohannes Berg return jhash(key, ETH_ALEN, seed); 10497bedd0cfSJohannes Berg } 10507bedd0cfSJohannes Berg 10517bedd0cfSJohannes Berg int sta_info_init(struct ieee80211_local *local) 10527bedd0cfSJohannes Berg { 10537bedd0cfSJohannes Berg int err; 10547bedd0cfSJohannes Berg 10557bedd0cfSJohannes Berg err = rhashtable_init(&local->sta_hash, &sta_rht_params); 10567bedd0cfSJohannes Berg if (err) 10577bedd0cfSJohannes Berg return err; 10587bedd0cfSJohannes Berg 10594d33960bSJohannes Berg spin_lock_init(&local->tim_lock); 106034e89507SJohannes Berg mutex_init(&local->sta_mtx); 1061f0706e82SJiri Benc INIT_LIST_HEAD(&local->sta_list); 1062f0706e82SJiri Benc 1063b24b8a24SPavel Emelyanov setup_timer(&local->sta_cleanup, sta_info_cleanup, 1064b24b8a24SPavel Emelyanov (unsigned long)local); 10657bedd0cfSJohannes Berg return 0; 1066f0706e82SJiri Benc } 1067f0706e82SJiri Benc 1068f0706e82SJiri Benc void sta_info_stop(struct ieee80211_local *local) 1069f0706e82SJiri Benc { 1070a56f992cSJohannes Berg del_timer_sync(&local->sta_cleanup); 10717bedd0cfSJohannes Berg rhashtable_destroy(&local->sta_hash); 1072f0706e82SJiri Benc } 1073f0706e82SJiri Benc 1074051007d9SJohannes Berg 1075e716251dSJohannes Berg int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans) 1076f0706e82SJiri Benc { 1077b998e8bbSJohannes Berg struct ieee80211_local *local = sdata->local; 1078f0706e82SJiri Benc struct sta_info *sta, *tmp; 1079d778207bSJohannes Berg LIST_HEAD(free_list); 108044213b5eSJohannes Berg int ret = 0; 1081f0706e82SJiri Benc 1082d0709a65SJohannes Berg might_sleep(); 1083d0709a65SJohannes Berg 1084e716251dSJohannes Berg WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP); 1085e716251dSJohannes Berg WARN_ON(vlans && !sdata->bss); 1086e716251dSJohannes Berg 108734e89507SJohannes Berg mutex_lock(&local->sta_mtx); 108834e89507SJohannes Berg list_for_each_entry_safe(sta, tmp, &local->sta_list, list) { 1089e716251dSJohannes Berg if (sdata == sta->sdata || 1090e716251dSJohannes Berg (vlans && sdata->bss == sta->sdata->bss)) { 1091d778207bSJohannes Berg if (!WARN_ON(__sta_info_destroy_part1(sta))) 1092d778207bSJohannes Berg list_add(&sta->free_list, &free_list); 109334316837SJohannes Berg ret++; 109434316837SJohannes Berg } 109534e89507SJohannes Berg } 1096d778207bSJohannes Berg 1097d778207bSJohannes Berg if (!list_empty(&free_list)) { 1098d778207bSJohannes Berg synchronize_net(); 1099d778207bSJohannes Berg list_for_each_entry_safe(sta, tmp, &free_list, free_list) 1100d778207bSJohannes Berg __sta_info_destroy_part2(sta); 1101d778207bSJohannes Berg } 110234e89507SJohannes Berg mutex_unlock(&local->sta_mtx); 110344213b5eSJohannes Berg 1104051007d9SJohannes Berg return ret; 1105051007d9SJohannes Berg } 1106051007d9SJohannes Berg 110724723d1bSJohannes Berg void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata, 110824723d1bSJohannes Berg unsigned long exp_time) 110924723d1bSJohannes Berg { 111024723d1bSJohannes Berg struct ieee80211_local *local = sdata->local; 111124723d1bSJohannes Berg struct sta_info *sta, *tmp; 111224723d1bSJohannes Berg 111334e89507SJohannes Berg mutex_lock(&local->sta_mtx); 1114e46a2cf9SMohammed Shafi Shajakhan 1115e46a2cf9SMohammed Shafi Shajakhan list_for_each_entry_safe(sta, tmp, &local->sta_list, list) { 1116b8da6b6aSJohannes Berg unsigned long last_active = ieee80211_sta_last_active(sta); 1117b8da6b6aSJohannes Berg 1118ec2b774eSMarek Lindner if (sdata != sta->sdata) 1119ec2b774eSMarek Lindner continue; 1120ec2b774eSMarek Lindner 1121b8da6b6aSJohannes Berg if (time_is_before_jiffies(last_active + exp_time)) { 1122eea57d42SMohammed Shafi Shajakhan sta_dbg(sta->sdata, "expiring inactive STA %pM\n", 1123bdcbd8e0SJohannes Berg sta->sta.addr); 11243f52b7e3SMarco Porsch 11253f52b7e3SMarco Porsch if (ieee80211_vif_is_mesh(&sdata->vif) && 11263f52b7e3SMarco Porsch test_sta_flag(sta, WLAN_STA_PS_STA)) 11273f52b7e3SMarco Porsch atomic_dec(&sdata->u.mesh.ps.num_sta_ps); 11283f52b7e3SMarco Porsch 112934e89507SJohannes Berg WARN_ON(__sta_info_destroy(sta)); 113024723d1bSJohannes Berg } 1131e46a2cf9SMohammed Shafi Shajakhan } 1132e46a2cf9SMohammed Shafi Shajakhan 113334e89507SJohannes Berg mutex_unlock(&local->sta_mtx); 113424723d1bSJohannes Berg } 113517741cdcSJohannes Berg 1136686b9cb9SBen Greear struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw, 1137686b9cb9SBen Greear const u8 *addr, 1138686b9cb9SBen Greear const u8 *localaddr) 113917741cdcSJohannes Berg { 11407bedd0cfSJohannes Berg struct ieee80211_local *local = hw_to_local(hw); 11417bedd0cfSJohannes Berg struct sta_info *sta; 11427bedd0cfSJohannes Berg struct rhash_head *tmp; 11437bedd0cfSJohannes Berg const struct bucket_table *tbl; 11447bedd0cfSJohannes Berg 11457bedd0cfSJohannes Berg tbl = rht_dereference_rcu(local->sta_hash.tbl, &local->sta_hash); 114617741cdcSJohannes Berg 1147686b9cb9SBen Greear /* 1148686b9cb9SBen Greear * Just return a random station if localaddr is NULL 1149686b9cb9SBen Greear * ... first in list. 1150686b9cb9SBen Greear */ 11517bedd0cfSJohannes Berg for_each_sta_info(local, tbl, addr, sta, tmp) { 1152686b9cb9SBen Greear if (localaddr && 1153b203ca39SJoe Perches !ether_addr_equal(sta->sdata->vif.addr, localaddr)) 1154686b9cb9SBen Greear continue; 1155f7c65594SJohannes Berg if (!sta->uploaded) 1156f7c65594SJohannes Berg return NULL; 115717741cdcSJohannes Berg return &sta->sta; 1158f7c65594SJohannes Berg } 1159f7c65594SJohannes Berg 1160abe60632SJohannes Berg return NULL; 116117741cdcSJohannes Berg } 1162686b9cb9SBen Greear EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr); 11635ed176e1SJohannes Berg 11645ed176e1SJohannes Berg struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif, 11655ed176e1SJohannes Berg const u8 *addr) 11665ed176e1SJohannes Berg { 1167f7c65594SJohannes Berg struct sta_info *sta; 11685ed176e1SJohannes Berg 11695ed176e1SJohannes Berg if (!vif) 11705ed176e1SJohannes Berg return NULL; 11715ed176e1SJohannes Berg 1172f7c65594SJohannes Berg sta = sta_info_get_bss(vif_to_sdata(vif), addr); 1173f7c65594SJohannes Berg if (!sta) 1174f7c65594SJohannes Berg return NULL; 11755ed176e1SJohannes Berg 1176f7c65594SJohannes Berg if (!sta->uploaded) 1177f7c65594SJohannes Berg return NULL; 1178f7c65594SJohannes Berg 1179f7c65594SJohannes Berg return &sta->sta; 11805ed176e1SJohannes Berg } 118117741cdcSJohannes Berg EXPORT_SYMBOL(ieee80211_find_sta); 1182af818581SJohannes Berg 1183e3685e03SJohannes Berg /* powersave support code */ 1184e3685e03SJohannes Berg void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta) 118550a9432dSJohannes Berg { 1186608383bfSHelmut Schaa struct ieee80211_sub_if_data *sdata = sta->sdata; 1187e3685e03SJohannes Berg struct ieee80211_local *local = sdata->local; 1188e3685e03SJohannes Berg struct sk_buff_head pending; 1189ba8c3d6fSFelix Fietkau int filtered = 0, buffered = 0, ac, i; 1190e3685e03SJohannes Berg unsigned long flags; 1191d012a605SMarco Porsch struct ps_data *ps; 1192d012a605SMarco Porsch 11933918edb0SFelix Fietkau if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) 11943918edb0SFelix Fietkau sdata = container_of(sdata->bss, struct ieee80211_sub_if_data, 11953918edb0SFelix Fietkau u.ap); 11963918edb0SFelix Fietkau 11973918edb0SFelix Fietkau if (sdata->vif.type == NL80211_IFTYPE_AP) 1198d012a605SMarco Porsch ps = &sdata->bss->ps; 11993f52b7e3SMarco Porsch else if (ieee80211_vif_is_mesh(&sdata->vif)) 12003f52b7e3SMarco Porsch ps = &sdata->u.mesh.ps; 1201d012a605SMarco Porsch else 1202d012a605SMarco Porsch return; 120350a9432dSJohannes Berg 1204c2c98fdeSJohannes Berg clear_sta_flag(sta, WLAN_STA_SP); 120547086fc5SJohannes Berg 12065a306f58SJohannes Berg BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1); 1207948d887dSJohannes Berg sta->driver_buffered_tids = 0; 1208ba8c3d6fSFelix Fietkau sta->txq_buffered_tids = 0; 1209948d887dSJohannes Berg 121030686bf7SJohannes Berg if (!ieee80211_hw_check(&local->hw, AP_LINK_PS)) 121112375ef9SJohannes Berg drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta); 1212af818581SJohannes Berg 1213ba8c3d6fSFelix Fietkau if (sta->sta.txq[0]) { 1214ba8c3d6fSFelix Fietkau for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) { 1215*bb42f2d1SToke Høiland-Jørgensen if (!txq_has_queue(sta->sta.txq[i])) 1216ba8c3d6fSFelix Fietkau continue; 1217ba8c3d6fSFelix Fietkau 1218*bb42f2d1SToke Høiland-Jørgensen drv_wake_tx_queue(local, to_txq_info(sta->sta.txq[i])); 1219ba8c3d6fSFelix Fietkau } 1220ba8c3d6fSFelix Fietkau } 1221ba8c3d6fSFelix Fietkau 1222948d887dSJohannes Berg skb_queue_head_init(&pending); 1223af818581SJohannes Berg 12241d147bfaSEmmanuel Grumbach /* sync with ieee80211_tx_h_unicast_ps_buf */ 12251d147bfaSEmmanuel Grumbach spin_lock(&sta->ps_lock); 1226af818581SJohannes Berg /* Send all buffered frames to the station */ 1227948d887dSJohannes Berg for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { 1228948d887dSJohannes Berg int count = skb_queue_len(&pending), tmp; 1229948d887dSJohannes Berg 1230987c285cSArik Nemtsov spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags); 1231948d887dSJohannes Berg skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending); 1232987c285cSArik Nemtsov spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags); 1233948d887dSJohannes Berg tmp = skb_queue_len(&pending); 1234948d887dSJohannes Berg filtered += tmp - count; 1235948d887dSJohannes Berg count = tmp; 1236948d887dSJohannes Berg 1237987c285cSArik Nemtsov spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags); 1238948d887dSJohannes Berg skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending); 1239987c285cSArik Nemtsov spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags); 1240948d887dSJohannes Berg tmp = skb_queue_len(&pending); 1241948d887dSJohannes Berg buffered += tmp - count; 1242948d887dSJohannes Berg } 1243948d887dSJohannes Berg 1244e3685e03SJohannes Berg ieee80211_add_pending_skbs(local, &pending); 12455ac2e350SJohannes Berg 12465ac2e350SJohannes Berg /* now we're no longer in the deliver code */ 12475ac2e350SJohannes Berg clear_sta_flag(sta, WLAN_STA_PS_DELIVER); 12485ac2e350SJohannes Berg 12495ac2e350SJohannes Berg /* The station might have polled and then woken up before we responded, 12505ac2e350SJohannes Berg * so clear these flags now to avoid them sticking around. 12515ac2e350SJohannes Berg */ 12525ac2e350SJohannes Berg clear_sta_flag(sta, WLAN_STA_PSPOLL); 12535ac2e350SJohannes Berg clear_sta_flag(sta, WLAN_STA_UAPSD); 12541d147bfaSEmmanuel Grumbach spin_unlock(&sta->ps_lock); 1255948d887dSJohannes Berg 1256e3685e03SJohannes Berg atomic_dec(&ps->num_sta_ps); 1257e3685e03SJohannes Berg 1258687da132SEmmanuel Grumbach /* This station just woke up and isn't aware of our SMPS state */ 1259062f1d6dSChun-Yeow Yeoh if (!ieee80211_vif_is_mesh(&sdata->vif) && 1260062f1d6dSChun-Yeow Yeoh !ieee80211_smps_is_restrictive(sta->known_smps_mode, 1261687da132SEmmanuel Grumbach sdata->smps_mode) && 1262687da132SEmmanuel Grumbach sta->known_smps_mode != sdata->bss->req_smps && 1263687da132SEmmanuel Grumbach sta_info_tx_streams(sta) != 1) { 1264687da132SEmmanuel Grumbach ht_dbg(sdata, 1265687da132SEmmanuel Grumbach "%pM just woke up and MIMO capable - update SMPS\n", 1266687da132SEmmanuel Grumbach sta->sta.addr); 1267687da132SEmmanuel Grumbach ieee80211_send_smps_action(sdata, sdata->bss->req_smps, 1268687da132SEmmanuel Grumbach sta->sta.addr, 1269687da132SEmmanuel Grumbach sdata->vif.bss_conf.bssid); 1270687da132SEmmanuel Grumbach } 1271687da132SEmmanuel Grumbach 1272af818581SJohannes Berg local->total_ps_buffered -= buffered; 1273af818581SJohannes Berg 1274c868cb35SJohannes Berg sta_info_recalc_tim(sta); 1275c868cb35SJohannes Berg 1276bdcbd8e0SJohannes Berg ps_dbg(sdata, 1277bdcbd8e0SJohannes Berg "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n", 1278bdcbd8e0SJohannes Berg sta->sta.addr, sta->sta.aid, filtered, buffered); 127917c18bf8SJohannes Berg 128017c18bf8SJohannes Berg ieee80211_check_fast_xmit(sta); 1281af818581SJohannes Berg } 1282af818581SJohannes Berg 12830ead2510SEmmanuel Grumbach static void ieee80211_send_null_response(struct sta_info *sta, int tid, 1284b77cf4f8SJohannes Berg enum ieee80211_frame_release_type reason, 12850ead2510SEmmanuel Grumbach bool call_driver, bool more_data) 1286ce662b44SJohannes Berg { 12870ead2510SEmmanuel Grumbach struct ieee80211_sub_if_data *sdata = sta->sdata; 1288ce662b44SJohannes Berg struct ieee80211_local *local = sdata->local; 1289ce662b44SJohannes Berg struct ieee80211_qos_hdr *nullfunc; 1290ce662b44SJohannes Berg struct sk_buff *skb; 1291ce662b44SJohannes Berg int size = sizeof(*nullfunc); 1292ce662b44SJohannes Berg __le16 fc; 1293a74a8c84SJohannes Berg bool qos = sta->sta.wme; 1294ce662b44SJohannes Berg struct ieee80211_tx_info *info; 129555de908aSJohannes Berg struct ieee80211_chanctx_conf *chanctx_conf; 1296ce662b44SJohannes Berg 1297ce662b44SJohannes Berg if (qos) { 1298ce662b44SJohannes Berg fc = cpu_to_le16(IEEE80211_FTYPE_DATA | 1299ce662b44SJohannes Berg IEEE80211_STYPE_QOS_NULLFUNC | 1300ce662b44SJohannes Berg IEEE80211_FCTL_FROMDS); 1301ce662b44SJohannes Berg } else { 1302ce662b44SJohannes Berg size -= 2; 1303ce662b44SJohannes Berg fc = cpu_to_le16(IEEE80211_FTYPE_DATA | 1304ce662b44SJohannes Berg IEEE80211_STYPE_NULLFUNC | 1305ce662b44SJohannes Berg IEEE80211_FCTL_FROMDS); 1306ce662b44SJohannes Berg } 1307ce662b44SJohannes Berg 1308ce662b44SJohannes Berg skb = dev_alloc_skb(local->hw.extra_tx_headroom + size); 1309ce662b44SJohannes Berg if (!skb) 1310ce662b44SJohannes Berg return; 1311ce662b44SJohannes Berg 1312ce662b44SJohannes Berg skb_reserve(skb, local->hw.extra_tx_headroom); 1313ce662b44SJohannes Berg 1314ce662b44SJohannes Berg nullfunc = (void *) skb_put(skb, size); 1315ce662b44SJohannes Berg nullfunc->frame_control = fc; 1316ce662b44SJohannes Berg nullfunc->duration_id = 0; 1317ce662b44SJohannes Berg memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN); 1318ce662b44SJohannes Berg memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN); 1319ce662b44SJohannes Berg memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN); 1320864a6040SJohannes Berg nullfunc->seq_ctrl = 0; 1321ce662b44SJohannes Berg 1322ce662b44SJohannes Berg skb->priority = tid; 1323ce662b44SJohannes Berg skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]); 132459b66255SJohannes Berg if (qos) { 1325ce662b44SJohannes Berg nullfunc->qos_ctrl = cpu_to_le16(tid); 1326ce662b44SJohannes Berg 13270ead2510SEmmanuel Grumbach if (reason == IEEE80211_FRAME_RELEASE_UAPSD) { 1328ce662b44SJohannes Berg nullfunc->qos_ctrl |= 1329ce662b44SJohannes Berg cpu_to_le16(IEEE80211_QOS_CTL_EOSP); 13300ead2510SEmmanuel Grumbach if (more_data) 13310ead2510SEmmanuel Grumbach nullfunc->frame_control |= 13320ead2510SEmmanuel Grumbach cpu_to_le16(IEEE80211_FCTL_MOREDATA); 13330ead2510SEmmanuel Grumbach } 1334ce662b44SJohannes Berg } 1335ce662b44SJohannes Berg 1336ce662b44SJohannes Berg info = IEEE80211_SKB_CB(skb); 1337ce662b44SJohannes Berg 1338ce662b44SJohannes Berg /* 1339ce662b44SJohannes Berg * Tell TX path to send this frame even though the 1340ce662b44SJohannes Berg * STA may still remain is PS mode after this frame 1341deeaee19SJohannes Berg * exchange. Also set EOSP to indicate this packet 1342deeaee19SJohannes Berg * ends the poll/service period. 1343ce662b44SJohannes Berg */ 134402f2f1a9SJohannes Berg info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER | 1345deeaee19SJohannes Berg IEEE80211_TX_STATUS_EOSP | 1346ce662b44SJohannes Berg IEEE80211_TX_CTL_REQ_TX_STATUS; 1347ce662b44SJohannes Berg 13486b127c71SSujith Manoharan info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE; 13496b127c71SSujith Manoharan 1350b77cf4f8SJohannes Berg if (call_driver) 1351b77cf4f8SJohannes Berg drv_allow_buffered_frames(local, sta, BIT(tid), 1, 1352b77cf4f8SJohannes Berg reason, false); 135340b96408SJohannes Berg 135489afe614SJohannes Berg skb->dev = sdata->dev; 135589afe614SJohannes Berg 135655de908aSJohannes Berg rcu_read_lock(); 135755de908aSJohannes Berg chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); 135855de908aSJohannes Berg if (WARN_ON(!chanctx_conf)) { 135955de908aSJohannes Berg rcu_read_unlock(); 136055de908aSJohannes Berg kfree_skb(skb); 136155de908aSJohannes Berg return; 136255de908aSJohannes Berg } 136355de908aSJohannes Berg 136473c4e195SJohannes Berg info->band = chanctx_conf->def.chan->band; 13657c10770fSJohannes Berg ieee80211_xmit(sdata, sta, skb); 136655de908aSJohannes Berg rcu_read_unlock(); 1367ce662b44SJohannes Berg } 1368ce662b44SJohannes Berg 13690a1cb809SJohannes Berg static int find_highest_prio_tid(unsigned long tids) 13700a1cb809SJohannes Berg { 13710a1cb809SJohannes Berg /* lower 3 TIDs aren't ordered perfectly */ 13720a1cb809SJohannes Berg if (tids & 0xF8) 13730a1cb809SJohannes Berg return fls(tids) - 1; 13740a1cb809SJohannes Berg /* TID 0 is BE just like TID 3 */ 13750a1cb809SJohannes Berg if (tids & BIT(0)) 13760a1cb809SJohannes Berg return 0; 13770a1cb809SJohannes Berg return fls(tids) - 1; 13780a1cb809SJohannes Berg } 13790a1cb809SJohannes Berg 13800ead2510SEmmanuel Grumbach /* Indicates if the MORE_DATA bit should be set in the last 13810ead2510SEmmanuel Grumbach * frame obtained by ieee80211_sta_ps_get_frames. 13820ead2510SEmmanuel Grumbach * Note that driver_release_tids is relevant only if 13830ead2510SEmmanuel Grumbach * reason = IEEE80211_FRAME_RELEASE_PSPOLL 13840ead2510SEmmanuel Grumbach */ 13850ead2510SEmmanuel Grumbach static bool 13860ead2510SEmmanuel Grumbach ieee80211_sta_ps_more_data(struct sta_info *sta, u8 ignored_acs, 13870ead2510SEmmanuel Grumbach enum ieee80211_frame_release_type reason, 13880ead2510SEmmanuel Grumbach unsigned long driver_release_tids) 13890ead2510SEmmanuel Grumbach { 13900ead2510SEmmanuel Grumbach int ac; 13910ead2510SEmmanuel Grumbach 13920ead2510SEmmanuel Grumbach /* If the driver has data on more than one TID then 13930ead2510SEmmanuel Grumbach * certainly there's more data if we release just a 13940ead2510SEmmanuel Grumbach * single frame now (from a single TID). This will 13950ead2510SEmmanuel Grumbach * only happen for PS-Poll. 13960ead2510SEmmanuel Grumbach */ 13970ead2510SEmmanuel Grumbach if (reason == IEEE80211_FRAME_RELEASE_PSPOLL && 13980ead2510SEmmanuel Grumbach hweight16(driver_release_tids) > 1) 13990ead2510SEmmanuel Grumbach return true; 14000ead2510SEmmanuel Grumbach 14010ead2510SEmmanuel Grumbach for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { 14020ead2510SEmmanuel Grumbach if (ignored_acs & BIT(ac)) 14030ead2510SEmmanuel Grumbach continue; 14040ead2510SEmmanuel Grumbach 14050ead2510SEmmanuel Grumbach if (!skb_queue_empty(&sta->tx_filtered[ac]) || 14060ead2510SEmmanuel Grumbach !skb_queue_empty(&sta->ps_tx_buf[ac])) 14070ead2510SEmmanuel Grumbach return true; 14080ead2510SEmmanuel Grumbach } 14090ead2510SEmmanuel Grumbach 14100ead2510SEmmanuel Grumbach return false; 14110ead2510SEmmanuel Grumbach } 14120ead2510SEmmanuel Grumbach 141347086fc5SJohannes Berg static void 14140ead2510SEmmanuel Grumbach ieee80211_sta_ps_get_frames(struct sta_info *sta, int n_frames, u8 ignored_acs, 14150ead2510SEmmanuel Grumbach enum ieee80211_frame_release_type reason, 14160ead2510SEmmanuel Grumbach struct sk_buff_head *frames, 14170ead2510SEmmanuel Grumbach unsigned long *driver_release_tids) 1418af818581SJohannes Berg { 1419af818581SJohannes Berg struct ieee80211_sub_if_data *sdata = sta->sdata; 1420af818581SJohannes Berg struct ieee80211_local *local = sdata->local; 1421948d887dSJohannes Berg int ac; 1422af818581SJohannes Berg 1423f9f760b4SJohannes Berg /* Get response frame(s) and more data bit for the last one. */ 1424948d887dSJohannes Berg for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { 14254049e09aSJohannes Berg unsigned long tids; 14264049e09aSJohannes Berg 142747086fc5SJohannes Berg if (ignored_acs & BIT(ac)) 1428948d887dSJohannes Berg continue; 1429948d887dSJohannes Berg 14304049e09aSJohannes Berg tids = ieee80211_tids_for_ac(ac); 14314049e09aSJohannes Berg 1432f9f760b4SJohannes Berg /* if we already have frames from software, then we can't also 1433f9f760b4SJohannes Berg * release from hardware queues 1434f9f760b4SJohannes Berg */ 14350ead2510SEmmanuel Grumbach if (skb_queue_empty(frames)) { 14360ead2510SEmmanuel Grumbach *driver_release_tids |= 14370ead2510SEmmanuel Grumbach sta->driver_buffered_tids & tids; 14380ead2510SEmmanuel Grumbach *driver_release_tids |= sta->txq_buffered_tids & tids; 1439ba8c3d6fSFelix Fietkau } 1440f9f760b4SJohannes Berg 14410ead2510SEmmanuel Grumbach if (!*driver_release_tids) { 144247086fc5SJohannes Berg struct sk_buff *skb; 144347086fc5SJohannes Berg 144447086fc5SJohannes Berg while (n_frames > 0) { 1445948d887dSJohannes Berg skb = skb_dequeue(&sta->tx_filtered[ac]); 1446948d887dSJohannes Berg if (!skb) { 144747086fc5SJohannes Berg skb = skb_dequeue( 144847086fc5SJohannes Berg &sta->ps_tx_buf[ac]); 1449af818581SJohannes Berg if (skb) 1450af818581SJohannes Berg local->total_ps_buffered--; 1451af818581SJohannes Berg } 145247086fc5SJohannes Berg if (!skb) 145347086fc5SJohannes Berg break; 145447086fc5SJohannes Berg n_frames--; 14550ead2510SEmmanuel Grumbach __skb_queue_tail(frames, skb); 145647086fc5SJohannes Berg } 1457948d887dSJohannes Berg } 1458948d887dSJohannes Berg 14590ead2510SEmmanuel Grumbach /* If we have more frames buffered on this AC, then abort the 14600ead2510SEmmanuel Grumbach * loop since we can't send more data from other ACs before 14610ead2510SEmmanuel Grumbach * the buffered frames from this. 14624049e09aSJohannes Berg */ 1463948d887dSJohannes Berg if (!skb_queue_empty(&sta->tx_filtered[ac]) || 14640ead2510SEmmanuel Grumbach !skb_queue_empty(&sta->ps_tx_buf[ac])) 1465948d887dSJohannes Berg break; 1466948d887dSJohannes Berg } 1467948d887dSJohannes Berg } 1468af818581SJohannes Berg 14690ead2510SEmmanuel Grumbach static void 14700ead2510SEmmanuel Grumbach ieee80211_sta_ps_deliver_response(struct sta_info *sta, 14710ead2510SEmmanuel Grumbach int n_frames, u8 ignored_acs, 14720ead2510SEmmanuel Grumbach enum ieee80211_frame_release_type reason) 14730ead2510SEmmanuel Grumbach { 14740ead2510SEmmanuel Grumbach struct ieee80211_sub_if_data *sdata = sta->sdata; 14750ead2510SEmmanuel Grumbach struct ieee80211_local *local = sdata->local; 14760ead2510SEmmanuel Grumbach unsigned long driver_release_tids = 0; 14770ead2510SEmmanuel Grumbach struct sk_buff_head frames; 14780ead2510SEmmanuel Grumbach bool more_data; 14790ead2510SEmmanuel Grumbach 14800ead2510SEmmanuel Grumbach /* Service or PS-Poll period starts */ 14810ead2510SEmmanuel Grumbach set_sta_flag(sta, WLAN_STA_SP); 14820ead2510SEmmanuel Grumbach 14830ead2510SEmmanuel Grumbach __skb_queue_head_init(&frames); 14840ead2510SEmmanuel Grumbach 14850ead2510SEmmanuel Grumbach ieee80211_sta_ps_get_frames(sta, n_frames, ignored_acs, reason, 14860ead2510SEmmanuel Grumbach &frames, &driver_release_tids); 14870ead2510SEmmanuel Grumbach 14880ead2510SEmmanuel Grumbach more_data = ieee80211_sta_ps_more_data(sta, ignored_acs, reason, driver_release_tids); 14890ead2510SEmmanuel Grumbach 14901a57081aSEmmanuel Grumbach if (driver_release_tids && reason == IEEE80211_FRAME_RELEASE_PSPOLL) 14910ead2510SEmmanuel Grumbach driver_release_tids = 14920ead2510SEmmanuel Grumbach BIT(find_highest_prio_tid(driver_release_tids)); 14930ead2510SEmmanuel Grumbach 1494f9f760b4SJohannes Berg if (skb_queue_empty(&frames) && !driver_release_tids) { 1495ce662b44SJohannes Berg int tid; 14964049e09aSJohannes Berg 1497ce662b44SJohannes Berg /* 1498ce662b44SJohannes Berg * For PS-Poll, this can only happen due to a race condition 1499ce662b44SJohannes Berg * when we set the TIM bit and the station notices it, but 1500ce662b44SJohannes Berg * before it can poll for the frame we expire it. 1501ce662b44SJohannes Berg * 1502ce662b44SJohannes Berg * For uAPSD, this is said in the standard (11.2.1.5 h): 1503ce662b44SJohannes Berg * At each unscheduled SP for a non-AP STA, the AP shall 1504ce662b44SJohannes Berg * attempt to transmit at least one MSDU or MMPDU, but no 1505ce662b44SJohannes Berg * more than the value specified in the Max SP Length field 1506ce662b44SJohannes Berg * in the QoS Capability element from delivery-enabled ACs, 1507ce662b44SJohannes Berg * that are destined for the non-AP STA. 1508ce662b44SJohannes Berg * 1509ce662b44SJohannes Berg * Since we have no other MSDU/MMPDU, transmit a QoS null frame. 1510ce662b44SJohannes Berg */ 1511ce662b44SJohannes Berg 1512ce662b44SJohannes Berg /* This will evaluate to 1, 3, 5 or 7. */ 1513ce662b44SJohannes Berg tid = 7 - ((ffs(~ignored_acs) - 1) << 1); 1514ce662b44SJohannes Berg 15150ead2510SEmmanuel Grumbach ieee80211_send_null_response(sta, tid, reason, true, false); 1516f9f760b4SJohannes Berg } else if (!driver_release_tids) { 151747086fc5SJohannes Berg struct sk_buff_head pending; 151847086fc5SJohannes Berg struct sk_buff *skb; 151940b96408SJohannes Berg int num = 0; 152040b96408SJohannes Berg u16 tids = 0; 1521b77cf4f8SJohannes Berg bool need_null = false; 152247086fc5SJohannes Berg 152347086fc5SJohannes Berg skb_queue_head_init(&pending); 152447086fc5SJohannes Berg 152547086fc5SJohannes Berg while ((skb = __skb_dequeue(&frames))) { 1526af818581SJohannes Berg struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); 152747086fc5SJohannes Berg struct ieee80211_hdr *hdr = (void *) skb->data; 152840b96408SJohannes Berg u8 *qoshdr = NULL; 152940b96408SJohannes Berg 153040b96408SJohannes Berg num++; 1531af818581SJohannes Berg 1532af818581SJohannes Berg /* 153347086fc5SJohannes Berg * Tell TX path to send this frame even though the 153447086fc5SJohannes Berg * STA may still remain is PS mode after this frame 153547086fc5SJohannes Berg * exchange. 1536af818581SJohannes Berg */ 15376b127c71SSujith Manoharan info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER; 15386b127c71SSujith Manoharan info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE; 1539af818581SJohannes Berg 154047086fc5SJohannes Berg /* 154147086fc5SJohannes Berg * Use MoreData flag to indicate whether there are 154247086fc5SJohannes Berg * more buffered frames for this STA 154347086fc5SJohannes Berg */ 154424b9c373SJanusz.Dziedzic@tieto.com if (more_data || !skb_queue_empty(&frames)) 154547086fc5SJohannes Berg hdr->frame_control |= 154647086fc5SJohannes Berg cpu_to_le16(IEEE80211_FCTL_MOREDATA); 154724b9c373SJanusz.Dziedzic@tieto.com else 154824b9c373SJanusz.Dziedzic@tieto.com hdr->frame_control &= 154924b9c373SJanusz.Dziedzic@tieto.com cpu_to_le16(~IEEE80211_FCTL_MOREDATA); 1550af818581SJohannes Berg 155140b96408SJohannes Berg if (ieee80211_is_data_qos(hdr->frame_control) || 155240b96408SJohannes Berg ieee80211_is_qos_nullfunc(hdr->frame_control)) 155340b96408SJohannes Berg qoshdr = ieee80211_get_qos_ctl(hdr); 155440b96408SJohannes Berg 1555b77cf4f8SJohannes Berg tids |= BIT(skb->priority); 1556b77cf4f8SJohannes Berg 1557b77cf4f8SJohannes Berg __skb_queue_tail(&pending, skb); 1558b77cf4f8SJohannes Berg 1559b77cf4f8SJohannes Berg /* end service period after last frame or add one */ 1560b77cf4f8SJohannes Berg if (!skb_queue_empty(&frames)) 1561b77cf4f8SJohannes Berg continue; 1562b77cf4f8SJohannes Berg 1563b77cf4f8SJohannes Berg if (reason != IEEE80211_FRAME_RELEASE_UAPSD) { 1564b77cf4f8SJohannes Berg /* for PS-Poll, there's only one frame */ 1565b77cf4f8SJohannes Berg info->flags |= IEEE80211_TX_STATUS_EOSP | 1566b77cf4f8SJohannes Berg IEEE80211_TX_CTL_REQ_TX_STATUS; 1567b77cf4f8SJohannes Berg break; 1568b77cf4f8SJohannes Berg } 1569b77cf4f8SJohannes Berg 1570b77cf4f8SJohannes Berg /* For uAPSD, things are a bit more complicated. If the 1571b77cf4f8SJohannes Berg * last frame has a QoS header (i.e. is a QoS-data or 1572b77cf4f8SJohannes Berg * QoS-nulldata frame) then just set the EOSP bit there 1573b77cf4f8SJohannes Berg * and be done. 1574b77cf4f8SJohannes Berg * If the frame doesn't have a QoS header (which means 1575b77cf4f8SJohannes Berg * it should be a bufferable MMPDU) then we can't set 1576b77cf4f8SJohannes Berg * the EOSP bit in the QoS header; add a QoS-nulldata 1577b77cf4f8SJohannes Berg * frame to the list to send it after the MMPDU. 1578b77cf4f8SJohannes Berg * 1579b77cf4f8SJohannes Berg * Note that this code is only in the mac80211-release 1580b77cf4f8SJohannes Berg * code path, we assume that the driver will not buffer 1581b77cf4f8SJohannes Berg * anything but QoS-data frames, or if it does, will 1582b77cf4f8SJohannes Berg * create the QoS-nulldata frame by itself if needed. 1583b77cf4f8SJohannes Berg * 1584b77cf4f8SJohannes Berg * Cf. 802.11-2012 10.2.1.10 (c). 1585b77cf4f8SJohannes Berg */ 1586b77cf4f8SJohannes Berg if (qoshdr) { 158740b96408SJohannes Berg *qoshdr |= IEEE80211_QOS_CTL_EOSP; 1588deeaee19SJohannes Berg 158947086fc5SJohannes Berg info->flags |= IEEE80211_TX_STATUS_EOSP | 159047086fc5SJohannes Berg IEEE80211_TX_CTL_REQ_TX_STATUS; 1591b77cf4f8SJohannes Berg } else { 1592b77cf4f8SJohannes Berg /* The standard isn't completely clear on this 1593b77cf4f8SJohannes Berg * as it says the more-data bit should be set 1594b77cf4f8SJohannes Berg * if there are more BUs. The QoS-Null frame 1595b77cf4f8SJohannes Berg * we're about to send isn't buffered yet, we 1596b77cf4f8SJohannes Berg * only create it below, but let's pretend it 1597b77cf4f8SJohannes Berg * was buffered just in case some clients only 1598b77cf4f8SJohannes Berg * expect more-data=0 when eosp=1. 1599b77cf4f8SJohannes Berg */ 1600b77cf4f8SJohannes Berg hdr->frame_control |= 1601b77cf4f8SJohannes Berg cpu_to_le16(IEEE80211_FCTL_MOREDATA); 1602b77cf4f8SJohannes Berg need_null = true; 1603b77cf4f8SJohannes Berg num++; 160452a3f20cSMarco Porsch } 1605b77cf4f8SJohannes Berg break; 160647086fc5SJohannes Berg } 160747086fc5SJohannes Berg 160840b96408SJohannes Berg drv_allow_buffered_frames(local, sta, tids, num, 160940b96408SJohannes Berg reason, more_data); 161040b96408SJohannes Berg 161147086fc5SJohannes Berg ieee80211_add_pending_skbs(local, &pending); 1612af818581SJohannes Berg 1613b77cf4f8SJohannes Berg if (need_null) 1614b77cf4f8SJohannes Berg ieee80211_send_null_response( 16150ead2510SEmmanuel Grumbach sta, find_highest_prio_tid(tids), 16160ead2510SEmmanuel Grumbach reason, false, false); 1617b77cf4f8SJohannes Berg 1618c868cb35SJohannes Berg sta_info_recalc_tim(sta); 1619af818581SJohannes Berg } else { 1620ba8c3d6fSFelix Fietkau unsigned long tids = sta->txq_buffered_tids & driver_release_tids; 1621ba8c3d6fSFelix Fietkau int tid; 1622ba8c3d6fSFelix Fietkau 1623af818581SJohannes Berg /* 16244049e09aSJohannes Berg * We need to release a frame that is buffered somewhere in the 16254049e09aSJohannes Berg * driver ... it'll have to handle that. 1626f9f760b4SJohannes Berg * Note that the driver also has to check the number of frames 1627f9f760b4SJohannes Berg * on the TIDs we're releasing from - if there are more than 1628f9f760b4SJohannes Berg * n_frames it has to set the more-data bit (if we didn't ask 1629f9f760b4SJohannes Berg * it to set it anyway due to other buffered frames); if there 1630f9f760b4SJohannes Berg * are fewer than n_frames it has to make sure to adjust that 1631f9f760b4SJohannes Berg * to allow the service period to end properly. 1632af818581SJohannes Berg */ 16334049e09aSJohannes Berg drv_release_buffered_frames(local, sta, driver_release_tids, 163447086fc5SJohannes Berg n_frames, reason, more_data); 16354049e09aSJohannes Berg 16364049e09aSJohannes Berg /* 16374049e09aSJohannes Berg * Note that we don't recalculate the TIM bit here as it would 16384049e09aSJohannes Berg * most likely have no effect at all unless the driver told us 1639f9f760b4SJohannes Berg * that the TID(s) became empty before returning here from the 16404049e09aSJohannes Berg * release function. 1641f9f760b4SJohannes Berg * Either way, however, when the driver tells us that the TID(s) 1642ba8c3d6fSFelix Fietkau * became empty or we find that a txq became empty, we'll do the 1643ba8c3d6fSFelix Fietkau * TIM recalculation. 16444049e09aSJohannes Berg */ 1645ba8c3d6fSFelix Fietkau 1646ba8c3d6fSFelix Fietkau if (!sta->sta.txq[0]) 1647ba8c3d6fSFelix Fietkau return; 1648ba8c3d6fSFelix Fietkau 1649ba8c3d6fSFelix Fietkau for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) { 1650*bb42f2d1SToke Høiland-Jørgensen if (!(tids & BIT(tid)) || txq_has_queue(sta->sta.txq[tid])) 1651ba8c3d6fSFelix Fietkau continue; 1652ba8c3d6fSFelix Fietkau 1653ba8c3d6fSFelix Fietkau sta_info_recalc_tim(sta); 1654ba8c3d6fSFelix Fietkau break; 1655ba8c3d6fSFelix Fietkau } 1656af818581SJohannes Berg } 1657af818581SJohannes Berg } 1658af818581SJohannes Berg 1659af818581SJohannes Berg void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta) 1660af818581SJohannes Berg { 166147086fc5SJohannes Berg u8 ignore_for_response = sta->sta.uapsd_queues; 1662af818581SJohannes Berg 1663af818581SJohannes Berg /* 166447086fc5SJohannes Berg * If all ACs are delivery-enabled then we should reply 166547086fc5SJohannes Berg * from any of them, if only some are enabled we reply 166647086fc5SJohannes Berg * only from the non-enabled ones. 1667af818581SJohannes Berg */ 166847086fc5SJohannes Berg if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1) 166947086fc5SJohannes Berg ignore_for_response = 0; 1670af818581SJohannes Berg 167147086fc5SJohannes Berg ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response, 167247086fc5SJohannes Berg IEEE80211_FRAME_RELEASE_PSPOLL); 1673af818581SJohannes Berg } 167447086fc5SJohannes Berg 167547086fc5SJohannes Berg void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta) 167647086fc5SJohannes Berg { 167747086fc5SJohannes Berg int n_frames = sta->sta.max_sp; 167847086fc5SJohannes Berg u8 delivery_enabled = sta->sta.uapsd_queues; 167947086fc5SJohannes Berg 168047086fc5SJohannes Berg /* 168147086fc5SJohannes Berg * If we ever grow support for TSPEC this might happen if 168247086fc5SJohannes Berg * the TSPEC update from hostapd comes in between a trigger 168347086fc5SJohannes Berg * frame setting WLAN_STA_UAPSD in the RX path and this 168447086fc5SJohannes Berg * actually getting called. 168547086fc5SJohannes Berg */ 168647086fc5SJohannes Berg if (!delivery_enabled) 168747086fc5SJohannes Berg return; 168847086fc5SJohannes Berg 168947086fc5SJohannes Berg switch (sta->sta.max_sp) { 169047086fc5SJohannes Berg case 1: 169147086fc5SJohannes Berg n_frames = 2; 169247086fc5SJohannes Berg break; 169347086fc5SJohannes Berg case 2: 169447086fc5SJohannes Berg n_frames = 4; 169547086fc5SJohannes Berg break; 169647086fc5SJohannes Berg case 3: 169747086fc5SJohannes Berg n_frames = 6; 169847086fc5SJohannes Berg break; 169947086fc5SJohannes Berg case 0: 170047086fc5SJohannes Berg /* XXX: what is a good value? */ 170113a8098aSAndrei Otcheretianski n_frames = 128; 170247086fc5SJohannes Berg break; 170347086fc5SJohannes Berg } 170447086fc5SJohannes Berg 170547086fc5SJohannes Berg ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled, 170647086fc5SJohannes Berg IEEE80211_FRAME_RELEASE_UAPSD); 1707af818581SJohannes Berg } 1708af818581SJohannes Berg 1709af818581SJohannes Berg void ieee80211_sta_block_awake(struct ieee80211_hw *hw, 1710af818581SJohannes Berg struct ieee80211_sta *pubsta, bool block) 1711af818581SJohannes Berg { 1712af818581SJohannes Berg struct sta_info *sta = container_of(pubsta, struct sta_info, sta); 1713af818581SJohannes Berg 1714b5878a2dSJohannes Berg trace_api_sta_block_awake(sta->local, pubsta, block); 1715b5878a2dSJohannes Berg 17165ac2e350SJohannes Berg if (block) { 1717c2c98fdeSJohannes Berg set_sta_flag(sta, WLAN_STA_PS_DRIVER); 171817c18bf8SJohannes Berg ieee80211_clear_fast_xmit(sta); 17195ac2e350SJohannes Berg return; 17205ac2e350SJohannes Berg } 17215ac2e350SJohannes Berg 17225ac2e350SJohannes Berg if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER)) 17235ac2e350SJohannes Berg return; 17245ac2e350SJohannes Berg 17255ac2e350SJohannes Berg if (!test_sta_flag(sta, WLAN_STA_PS_STA)) { 17265ac2e350SJohannes Berg set_sta_flag(sta, WLAN_STA_PS_DELIVER); 17275ac2e350SJohannes Berg clear_sta_flag(sta, WLAN_STA_PS_DRIVER); 17285ac2e350SJohannes Berg ieee80211_queue_work(hw, &sta->drv_deliver_wk); 17295ac2e350SJohannes Berg } else if (test_sta_flag(sta, WLAN_STA_PSPOLL) || 17305ac2e350SJohannes Berg test_sta_flag(sta, WLAN_STA_UAPSD)) { 17315ac2e350SJohannes Berg /* must be asleep in this case */ 17325ac2e350SJohannes Berg clear_sta_flag(sta, WLAN_STA_PS_DRIVER); 17335ac2e350SJohannes Berg ieee80211_queue_work(hw, &sta->drv_deliver_wk); 17345ac2e350SJohannes Berg } else { 17355ac2e350SJohannes Berg clear_sta_flag(sta, WLAN_STA_PS_DRIVER); 173617c18bf8SJohannes Berg ieee80211_check_fast_xmit(sta); 17375ac2e350SJohannes Berg } 1738af818581SJohannes Berg } 1739af818581SJohannes Berg EXPORT_SYMBOL(ieee80211_sta_block_awake); 1740dcf55fb5SFelix Fietkau 1741e943789eSJohannes Berg void ieee80211_sta_eosp(struct ieee80211_sta *pubsta) 174237fbd908SJohannes Berg { 174337fbd908SJohannes Berg struct sta_info *sta = container_of(pubsta, struct sta_info, sta); 174437fbd908SJohannes Berg struct ieee80211_local *local = sta->local; 174537fbd908SJohannes Berg 174637fbd908SJohannes Berg trace_api_eosp(local, pubsta); 174737fbd908SJohannes Berg 174837fbd908SJohannes Berg clear_sta_flag(sta, WLAN_STA_SP); 174937fbd908SJohannes Berg } 1750e943789eSJohannes Berg EXPORT_SYMBOL(ieee80211_sta_eosp); 175137fbd908SJohannes Berg 17520ead2510SEmmanuel Grumbach void ieee80211_send_eosp_nullfunc(struct ieee80211_sta *pubsta, int tid) 17530ead2510SEmmanuel Grumbach { 17540ead2510SEmmanuel Grumbach struct sta_info *sta = container_of(pubsta, struct sta_info, sta); 17550ead2510SEmmanuel Grumbach enum ieee80211_frame_release_type reason; 17560ead2510SEmmanuel Grumbach bool more_data; 17570ead2510SEmmanuel Grumbach 17580ead2510SEmmanuel Grumbach trace_api_send_eosp_nullfunc(sta->local, pubsta, tid); 17590ead2510SEmmanuel Grumbach 17600ead2510SEmmanuel Grumbach reason = IEEE80211_FRAME_RELEASE_UAPSD; 17610ead2510SEmmanuel Grumbach more_data = ieee80211_sta_ps_more_data(sta, ~sta->sta.uapsd_queues, 17620ead2510SEmmanuel Grumbach reason, 0); 17630ead2510SEmmanuel Grumbach 17640ead2510SEmmanuel Grumbach ieee80211_send_null_response(sta, tid, reason, false, more_data); 17650ead2510SEmmanuel Grumbach } 17660ead2510SEmmanuel Grumbach EXPORT_SYMBOL(ieee80211_send_eosp_nullfunc); 17670ead2510SEmmanuel Grumbach 1768042ec453SJohannes Berg void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta, 1769042ec453SJohannes Berg u8 tid, bool buffered) 1770dcf55fb5SFelix Fietkau { 1771dcf55fb5SFelix Fietkau struct sta_info *sta = container_of(pubsta, struct sta_info, sta); 1772dcf55fb5SFelix Fietkau 17735a306f58SJohannes Berg if (WARN_ON(tid >= IEEE80211_NUM_TIDS)) 1774042ec453SJohannes Berg return; 1775042ec453SJohannes Berg 17761b000789SJohannes Berg trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered); 17771b000789SJohannes Berg 1778948d887dSJohannes Berg if (buffered) 1779948d887dSJohannes Berg set_bit(tid, &sta->driver_buffered_tids); 1780948d887dSJohannes Berg else 1781948d887dSJohannes Berg clear_bit(tid, &sta->driver_buffered_tids); 1782948d887dSJohannes Berg 1783c868cb35SJohannes Berg sta_info_recalc_tim(sta); 1784dcf55fb5SFelix Fietkau } 1785042ec453SJohannes Berg EXPORT_SYMBOL(ieee80211_sta_set_buffered); 1786d9a7ddb0SJohannes Berg 178752cfa1d6SAyala Beker static void 178852cfa1d6SAyala Beker ieee80211_recalc_p2p_go_ps_allowed(struct ieee80211_sub_if_data *sdata) 178952cfa1d6SAyala Beker { 179052cfa1d6SAyala Beker struct ieee80211_local *local = sdata->local; 179152cfa1d6SAyala Beker bool allow_p2p_go_ps = sdata->vif.p2p; 179252cfa1d6SAyala Beker struct sta_info *sta; 179352cfa1d6SAyala Beker 179452cfa1d6SAyala Beker rcu_read_lock(); 179552cfa1d6SAyala Beker list_for_each_entry_rcu(sta, &local->sta_list, list) { 179652cfa1d6SAyala Beker if (sdata != sta->sdata || 179752cfa1d6SAyala Beker !test_sta_flag(sta, WLAN_STA_ASSOC)) 179852cfa1d6SAyala Beker continue; 179952cfa1d6SAyala Beker if (!sta->sta.support_p2p_ps) { 180052cfa1d6SAyala Beker allow_p2p_go_ps = false; 180152cfa1d6SAyala Beker break; 180252cfa1d6SAyala Beker } 180352cfa1d6SAyala Beker } 180452cfa1d6SAyala Beker rcu_read_unlock(); 180552cfa1d6SAyala Beker 180652cfa1d6SAyala Beker if (allow_p2p_go_ps != sdata->vif.bss_conf.allow_p2p_go_ps) { 180752cfa1d6SAyala Beker sdata->vif.bss_conf.allow_p2p_go_ps = allow_p2p_go_ps; 180852cfa1d6SAyala Beker ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_P2P_PS); 180952cfa1d6SAyala Beker } 181052cfa1d6SAyala Beker } 181152cfa1d6SAyala Beker 181283d5cc01SJohannes Berg int sta_info_move_state(struct sta_info *sta, 1813d9a7ddb0SJohannes Berg enum ieee80211_sta_state new_state) 1814d9a7ddb0SJohannes Berg { 18158bf11d8dSJohannes Berg might_sleep(); 1816d9a7ddb0SJohannes Berg 1817d9a7ddb0SJohannes Berg if (sta->sta_state == new_state) 1818d9a7ddb0SJohannes Berg return 0; 1819d9a7ddb0SJohannes Berg 1820f09603a2SJohannes Berg /* check allowed transitions first */ 1821f09603a2SJohannes Berg 1822d9a7ddb0SJohannes Berg switch (new_state) { 1823d9a7ddb0SJohannes Berg case IEEE80211_STA_NONE: 1824f09603a2SJohannes Berg if (sta->sta_state != IEEE80211_STA_AUTH) 1825d9a7ddb0SJohannes Berg return -EINVAL; 1826d9a7ddb0SJohannes Berg break; 1827d9a7ddb0SJohannes Berg case IEEE80211_STA_AUTH: 1828f09603a2SJohannes Berg if (sta->sta_state != IEEE80211_STA_NONE && 1829f09603a2SJohannes Berg sta->sta_state != IEEE80211_STA_ASSOC) 1830d9a7ddb0SJohannes Berg return -EINVAL; 1831d9a7ddb0SJohannes Berg break; 1832d9a7ddb0SJohannes Berg case IEEE80211_STA_ASSOC: 1833f09603a2SJohannes Berg if (sta->sta_state != IEEE80211_STA_AUTH && 1834f09603a2SJohannes Berg sta->sta_state != IEEE80211_STA_AUTHORIZED) 1835d9a7ddb0SJohannes Berg return -EINVAL; 1836d9a7ddb0SJohannes Berg break; 1837d9a7ddb0SJohannes Berg case IEEE80211_STA_AUTHORIZED: 1838f09603a2SJohannes Berg if (sta->sta_state != IEEE80211_STA_ASSOC) 1839d9a7ddb0SJohannes Berg return -EINVAL; 1840d9a7ddb0SJohannes Berg break; 1841d9a7ddb0SJohannes Berg default: 1842d9a7ddb0SJohannes Berg WARN(1, "invalid state %d", new_state); 1843d9a7ddb0SJohannes Berg return -EINVAL; 1844d9a7ddb0SJohannes Berg } 1845d9a7ddb0SJohannes Berg 1846bdcbd8e0SJohannes Berg sta_dbg(sta->sdata, "moving STA %pM to state %d\n", 1847bdcbd8e0SJohannes Berg sta->sta.addr, new_state); 1848f09603a2SJohannes Berg 1849f09603a2SJohannes Berg /* 1850f09603a2SJohannes Berg * notify the driver before the actual changes so it can 1851f09603a2SJohannes Berg * fail the transition 1852f09603a2SJohannes Berg */ 1853f09603a2SJohannes Berg if (test_sta_flag(sta, WLAN_STA_INSERTED)) { 1854f09603a2SJohannes Berg int err = drv_sta_state(sta->local, sta->sdata, sta, 1855f09603a2SJohannes Berg sta->sta_state, new_state); 1856f09603a2SJohannes Berg if (err) 1857f09603a2SJohannes Berg return err; 1858f09603a2SJohannes Berg } 1859f09603a2SJohannes Berg 1860f09603a2SJohannes Berg /* reflect the change in all state variables */ 1861f09603a2SJohannes Berg 1862f09603a2SJohannes Berg switch (new_state) { 1863f09603a2SJohannes Berg case IEEE80211_STA_NONE: 1864f09603a2SJohannes Berg if (sta->sta_state == IEEE80211_STA_AUTH) 1865f09603a2SJohannes Berg clear_bit(WLAN_STA_AUTH, &sta->_flags); 1866f09603a2SJohannes Berg break; 1867f09603a2SJohannes Berg case IEEE80211_STA_AUTH: 1868a7201a6cSIlan Peer if (sta->sta_state == IEEE80211_STA_NONE) { 1869f09603a2SJohannes Berg set_bit(WLAN_STA_AUTH, &sta->_flags); 1870a7201a6cSIlan Peer } else if (sta->sta_state == IEEE80211_STA_ASSOC) { 1871f09603a2SJohannes Berg clear_bit(WLAN_STA_ASSOC, &sta->_flags); 1872a7201a6cSIlan Peer ieee80211_recalc_min_chandef(sta->sdata); 187352cfa1d6SAyala Beker if (!sta->sta.support_p2p_ps) 187452cfa1d6SAyala Beker ieee80211_recalc_p2p_go_ps_allowed(sta->sdata); 1875a7201a6cSIlan Peer } 1876f09603a2SJohannes Berg break; 1877f09603a2SJohannes Berg case IEEE80211_STA_ASSOC: 1878f09603a2SJohannes Berg if (sta->sta_state == IEEE80211_STA_AUTH) { 1879f09603a2SJohannes Berg set_bit(WLAN_STA_ASSOC, &sta->_flags); 1880a7201a6cSIlan Peer ieee80211_recalc_min_chandef(sta->sdata); 188152cfa1d6SAyala Beker if (!sta->sta.support_p2p_ps) 188252cfa1d6SAyala Beker ieee80211_recalc_p2p_go_ps_allowed(sta->sdata); 1883f09603a2SJohannes Berg } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) { 18847e3ed02cSFelix Fietkau if (sta->sdata->vif.type == NL80211_IFTYPE_AP || 18857e3ed02cSFelix Fietkau (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && 18867e3ed02cSFelix Fietkau !sta->sdata->u.vlan.sta)) 18877e3ed02cSFelix Fietkau atomic_dec(&sta->sdata->bss->num_mcast_sta); 1888f09603a2SJohannes Berg clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags); 188917c18bf8SJohannes Berg ieee80211_clear_fast_xmit(sta); 189049ddf8e6SJohannes Berg ieee80211_clear_fast_rx(sta); 1891f09603a2SJohannes Berg } 1892f09603a2SJohannes Berg break; 1893f09603a2SJohannes Berg case IEEE80211_STA_AUTHORIZED: 1894f09603a2SJohannes Berg if (sta->sta_state == IEEE80211_STA_ASSOC) { 18957e3ed02cSFelix Fietkau if (sta->sdata->vif.type == NL80211_IFTYPE_AP || 18967e3ed02cSFelix Fietkau (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && 18977e3ed02cSFelix Fietkau !sta->sdata->u.vlan.sta)) 18987e3ed02cSFelix Fietkau atomic_inc(&sta->sdata->bss->num_mcast_sta); 1899f09603a2SJohannes Berg set_bit(WLAN_STA_AUTHORIZED, &sta->_flags); 190017c18bf8SJohannes Berg ieee80211_check_fast_xmit(sta); 190149ddf8e6SJohannes Berg ieee80211_check_fast_rx(sta); 1902f09603a2SJohannes Berg } 1903f09603a2SJohannes Berg break; 1904f09603a2SJohannes Berg default: 1905f09603a2SJohannes Berg break; 1906f09603a2SJohannes Berg } 1907f09603a2SJohannes Berg 1908d9a7ddb0SJohannes Berg sta->sta_state = new_state; 1909d9a7ddb0SJohannes Berg 1910d9a7ddb0SJohannes Berg return 0; 1911d9a7ddb0SJohannes Berg } 1912687da132SEmmanuel Grumbach 1913687da132SEmmanuel Grumbach u8 sta_info_tx_streams(struct sta_info *sta) 1914687da132SEmmanuel Grumbach { 1915687da132SEmmanuel Grumbach struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap; 1916687da132SEmmanuel Grumbach u8 rx_streams; 1917687da132SEmmanuel Grumbach 1918687da132SEmmanuel Grumbach if (!sta->sta.ht_cap.ht_supported) 1919687da132SEmmanuel Grumbach return 1; 1920687da132SEmmanuel Grumbach 1921687da132SEmmanuel Grumbach if (sta->sta.vht_cap.vht_supported) { 1922687da132SEmmanuel Grumbach int i; 1923687da132SEmmanuel Grumbach u16 tx_mcs_map = 1924687da132SEmmanuel Grumbach le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map); 1925687da132SEmmanuel Grumbach 1926687da132SEmmanuel Grumbach for (i = 7; i >= 0; i--) 1927687da132SEmmanuel Grumbach if ((tx_mcs_map & (0x3 << (i * 2))) != 1928687da132SEmmanuel Grumbach IEEE80211_VHT_MCS_NOT_SUPPORTED) 1929687da132SEmmanuel Grumbach return i + 1; 1930687da132SEmmanuel Grumbach } 1931687da132SEmmanuel Grumbach 1932687da132SEmmanuel Grumbach if (ht_cap->mcs.rx_mask[3]) 1933687da132SEmmanuel Grumbach rx_streams = 4; 1934687da132SEmmanuel Grumbach else if (ht_cap->mcs.rx_mask[2]) 1935687da132SEmmanuel Grumbach rx_streams = 3; 1936687da132SEmmanuel Grumbach else if (ht_cap->mcs.rx_mask[1]) 1937687da132SEmmanuel Grumbach rx_streams = 2; 1938687da132SEmmanuel Grumbach else 1939687da132SEmmanuel Grumbach rx_streams = 1; 1940687da132SEmmanuel Grumbach 1941687da132SEmmanuel Grumbach if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF)) 1942687da132SEmmanuel Grumbach return rx_streams; 1943687da132SEmmanuel Grumbach 1944687da132SEmmanuel Grumbach return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK) 1945687da132SEmmanuel Grumbach >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1; 1946687da132SEmmanuel Grumbach } 1947b7ffbd7eSJohannes Berg 1948c9c5962bSJohannes Berg static struct ieee80211_sta_rx_stats * 1949c9c5962bSJohannes Berg sta_get_last_rx_stats(struct sta_info *sta) 1950c9c5962bSJohannes Berg { 1951c9c5962bSJohannes Berg struct ieee80211_sta_rx_stats *stats = &sta->rx_stats; 1952c9c5962bSJohannes Berg struct ieee80211_local *local = sta->local; 1953c9c5962bSJohannes Berg int cpu; 1954c9c5962bSJohannes Berg 1955c9c5962bSJohannes Berg if (!ieee80211_hw_check(&local->hw, USES_RSS)) 1956c9c5962bSJohannes Berg return stats; 1957c9c5962bSJohannes Berg 1958c9c5962bSJohannes Berg for_each_possible_cpu(cpu) { 1959c9c5962bSJohannes Berg struct ieee80211_sta_rx_stats *cpustats; 1960c9c5962bSJohannes Berg 1961c9c5962bSJohannes Berg cpustats = per_cpu_ptr(sta->pcpu_rx_stats, cpu); 1962c9c5962bSJohannes Berg 1963c9c5962bSJohannes Berg if (time_after(cpustats->last_rx, stats->last_rx)) 1964c9c5962bSJohannes Berg stats = cpustats; 1965c9c5962bSJohannes Berg } 1966c9c5962bSJohannes Berg 1967c9c5962bSJohannes Berg return stats; 1968c9c5962bSJohannes Berg } 1969c9c5962bSJohannes Berg 19704f6b1b3dSJohannes Berg static void sta_stats_decode_rate(struct ieee80211_local *local, u16 rate, 19714f6b1b3dSJohannes Berg struct rate_info *rinfo) 1972fbd6ff5cSJohannes Berg { 19734f6b1b3dSJohannes Berg rinfo->bw = (rate & STA_STATS_RATE_BW_MASK) >> 19744f6b1b3dSJohannes Berg STA_STATS_RATE_BW_SHIFT; 1975fbd6ff5cSJohannes Berg 19764f6b1b3dSJohannes Berg if (rate & STA_STATS_RATE_VHT) { 19774f6b1b3dSJohannes Berg rinfo->flags = RATE_INFO_FLAGS_VHT_MCS; 19784f6b1b3dSJohannes Berg rinfo->mcs = rate & 0xf; 19794f6b1b3dSJohannes Berg rinfo->nss = (rate & 0xf0) >> 4; 19804f6b1b3dSJohannes Berg } else if (rate & STA_STATS_RATE_HT) { 19814f6b1b3dSJohannes Berg rinfo->flags = RATE_INFO_FLAGS_MCS; 19824f6b1b3dSJohannes Berg rinfo->mcs = rate & 0xff; 19834f6b1b3dSJohannes Berg } else if (rate & STA_STATS_RATE_LEGACY) { 1984fbd6ff5cSJohannes Berg struct ieee80211_supported_band *sband; 1985fbd6ff5cSJohannes Berg u16 brate; 19864f6b1b3dSJohannes Berg unsigned int shift; 1987fbd6ff5cSJohannes Berg 19884f6b1b3dSJohannes Berg sband = local->hw.wiphy->bands[(rate >> 4) & 0xf]; 19894f6b1b3dSJohannes Berg brate = sband->bitrates[rate & 0xf].bitrate; 19904f6b1b3dSJohannes Berg if (rinfo->bw == RATE_INFO_BW_5) 19914f6b1b3dSJohannes Berg shift = 2; 19924f6b1b3dSJohannes Berg else if (rinfo->bw == RATE_INFO_BW_10) 19934f6b1b3dSJohannes Berg shift = 1; 19944f6b1b3dSJohannes Berg else 19954f6b1b3dSJohannes Berg shift = 0; 1996fbd6ff5cSJohannes Berg rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift); 1997fbd6ff5cSJohannes Berg } 1998fbd6ff5cSJohannes Berg 19994f6b1b3dSJohannes Berg if (rate & STA_STATS_RATE_SGI) 2000fbd6ff5cSJohannes Berg rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI; 20014f6b1b3dSJohannes Berg } 2002fbd6ff5cSJohannes Berg 20034f6b1b3dSJohannes Berg static void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo) 20044f6b1b3dSJohannes Berg { 2005c9c5962bSJohannes Berg u16 rate = ACCESS_ONCE(sta_get_last_rx_stats(sta)->last_rate); 20064f6b1b3dSJohannes Berg 20074f6b1b3dSJohannes Berg if (rate == STA_STATS_RATE_INVALID) 20084f6b1b3dSJohannes Berg rinfo->flags = 0; 2009fbd6ff5cSJohannes Berg else 20104f6b1b3dSJohannes Berg sta_stats_decode_rate(sta->local, rate, rinfo); 2011fbd6ff5cSJohannes Berg } 2012fbd6ff5cSJohannes Berg 20130f9c5a61SJohannes Berg static void sta_set_tidstats(struct sta_info *sta, 20140f9c5a61SJohannes Berg struct cfg80211_tid_stats *tidstats, 20150f9c5a61SJohannes Berg int tid) 20160f9c5a61SJohannes Berg { 20170f9c5a61SJohannes Berg struct ieee80211_local *local = sta->local; 20180f9c5a61SJohannes Berg 20190f9c5a61SJohannes Berg if (!(tidstats->filled & BIT(NL80211_TID_STATS_RX_MSDU))) { 20200f9c5a61SJohannes Berg unsigned int start; 20210f9c5a61SJohannes Berg 20220f9c5a61SJohannes Berg do { 20230f9c5a61SJohannes Berg start = u64_stats_fetch_begin(&sta->rx_stats.syncp); 20240f9c5a61SJohannes Berg tidstats->rx_msdu = sta->rx_stats.msdu[tid]; 20250f9c5a61SJohannes Berg } while (u64_stats_fetch_retry(&sta->rx_stats.syncp, start)); 20260f9c5a61SJohannes Berg 20270f9c5a61SJohannes Berg tidstats->filled |= BIT(NL80211_TID_STATS_RX_MSDU); 20280f9c5a61SJohannes Berg } 20290f9c5a61SJohannes Berg 20300f9c5a61SJohannes Berg if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU))) { 20310f9c5a61SJohannes Berg tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU); 20320f9c5a61SJohannes Berg tidstats->tx_msdu = sta->tx_stats.msdu[tid]; 20330f9c5a61SJohannes Berg } 20340f9c5a61SJohannes Berg 20350f9c5a61SJohannes Berg if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_RETRIES)) && 20360f9c5a61SJohannes Berg ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) { 20370f9c5a61SJohannes Berg tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_RETRIES); 20380f9c5a61SJohannes Berg tidstats->tx_msdu_retries = sta->status_stats.msdu_retries[tid]; 20390f9c5a61SJohannes Berg } 20400f9c5a61SJohannes Berg 20410f9c5a61SJohannes Berg if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_FAILED)) && 20420f9c5a61SJohannes Berg ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) { 20430f9c5a61SJohannes Berg tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_FAILED); 20440f9c5a61SJohannes Berg tidstats->tx_msdu_failed = sta->status_stats.msdu_failed[tid]; 20450f9c5a61SJohannes Berg } 20460f9c5a61SJohannes Berg } 20470f9c5a61SJohannes Berg 2048c9c5962bSJohannes Berg static inline u64 sta_get_stats_bytes(struct ieee80211_sta_rx_stats *rxstats) 2049c9c5962bSJohannes Berg { 2050c9c5962bSJohannes Berg unsigned int start; 2051c9c5962bSJohannes Berg u64 value; 2052c9c5962bSJohannes Berg 2053c9c5962bSJohannes Berg do { 2054c9c5962bSJohannes Berg start = u64_stats_fetch_begin(&rxstats->syncp); 2055c9c5962bSJohannes Berg value = rxstats->bytes; 2056c9c5962bSJohannes Berg } while (u64_stats_fetch_retry(&rxstats->syncp, start)); 2057c9c5962bSJohannes Berg 2058c9c5962bSJohannes Berg return value; 2059c9c5962bSJohannes Berg } 2060c9c5962bSJohannes Berg 2061b7ffbd7eSJohannes Berg void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo) 2062b7ffbd7eSJohannes Berg { 2063b7ffbd7eSJohannes Berg struct ieee80211_sub_if_data *sdata = sta->sdata; 2064b7ffbd7eSJohannes Berg struct ieee80211_local *local = sdata->local; 20659a244409SJohn W. Linville struct rate_control_ref *ref = NULL; 2066b7ffbd7eSJohannes Berg u32 thr = 0; 2067c9c5962bSJohannes Berg int i, ac, cpu; 2068c9c5962bSJohannes Berg struct ieee80211_sta_rx_stats *last_rxstats; 2069c9c5962bSJohannes Berg 2070c9c5962bSJohannes Berg last_rxstats = sta_get_last_rx_stats(sta); 2071b7ffbd7eSJohannes Berg 20729a244409SJohn W. Linville if (test_sta_flag(sta, WLAN_STA_RATE_CONTROL)) 20739a244409SJohn W. Linville ref = local->rate_ctrl; 20749a244409SJohn W. Linville 2075b7ffbd7eSJohannes Berg sinfo->generation = sdata->local->sta_generation; 2076b7ffbd7eSJohannes Berg 2077225b8189SJohannes Berg /* do before driver, so beacon filtering drivers have a 2078225b8189SJohannes Berg * chance to e.g. just add the number of filtered beacons 2079225b8189SJohannes Berg * (or just modify the value entirely, of course) 2080225b8189SJohannes Berg */ 2081225b8189SJohannes Berg if (sdata->vif.type == NL80211_IFTYPE_STATION) 2082225b8189SJohannes Berg sinfo->rx_beacon = sdata->u.mgd.count_beacon_signal; 2083225b8189SJohannes Berg 20842b9a7e1bSJohannes Berg drv_sta_statistics(local, sdata, &sta->sta, sinfo); 20852b9a7e1bSJohannes Berg 2086319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_INACTIVE_TIME) | 2087319090bfSJohannes Berg BIT(NL80211_STA_INFO_STA_FLAGS) | 2088319090bfSJohannes Berg BIT(NL80211_STA_INFO_BSS_PARAM) | 2089319090bfSJohannes Berg BIT(NL80211_STA_INFO_CONNECTED_TIME) | 2090976bd9efSJohannes Berg BIT(NL80211_STA_INFO_RX_DROP_MISC); 2091976bd9efSJohannes Berg 2092976bd9efSJohannes Berg if (sdata->vif.type == NL80211_IFTYPE_STATION) { 2093976bd9efSJohannes Berg sinfo->beacon_loss_count = sdata->u.mgd.beacon_loss_count; 2094976bd9efSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_LOSS); 2095976bd9efSJohannes Berg } 2096b7ffbd7eSJohannes Berg 209784b00607SArnd Bergmann sinfo->connected_time = ktime_get_seconds() - sta->last_connected; 2098e5a9f8d0SJohannes Berg sinfo->inactive_time = 2099b8da6b6aSJohannes Berg jiffies_to_msecs(jiffies - ieee80211_sta_last_active(sta)); 21002b9a7e1bSJohannes Berg 2101319090bfSJohannes Berg if (!(sinfo->filled & (BIT(NL80211_STA_INFO_TX_BYTES64) | 2102319090bfSJohannes Berg BIT(NL80211_STA_INFO_TX_BYTES)))) { 2103b7ffbd7eSJohannes Berg sinfo->tx_bytes = 0; 21042b9a7e1bSJohannes Berg for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) 2105e5a9f8d0SJohannes Berg sinfo->tx_bytes += sta->tx_stats.bytes[ac]; 2106319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES64); 2107b7ffbd7eSJohannes Berg } 21082b9a7e1bSJohannes Berg 2109319090bfSJohannes Berg if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_PACKETS))) { 21102b9a7e1bSJohannes Berg sinfo->tx_packets = 0; 21112b9a7e1bSJohannes Berg for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) 2112e5a9f8d0SJohannes Berg sinfo->tx_packets += sta->tx_stats.packets[ac]; 2113319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS); 21142b9a7e1bSJohannes Berg } 21152b9a7e1bSJohannes Berg 2116319090bfSJohannes Berg if (!(sinfo->filled & (BIT(NL80211_STA_INFO_RX_BYTES64) | 2117319090bfSJohannes Berg BIT(NL80211_STA_INFO_RX_BYTES)))) { 2118c9c5962bSJohannes Berg sinfo->rx_bytes += sta_get_stats_bytes(&sta->rx_stats); 21190f9c5a61SJohannes Berg 2120c9c5962bSJohannes Berg if (sta->pcpu_rx_stats) { 2121c9c5962bSJohannes Berg for_each_possible_cpu(cpu) { 2122c9c5962bSJohannes Berg struct ieee80211_sta_rx_stats *cpurxs; 2123c9c5962bSJohannes Berg 2124c9c5962bSJohannes Berg cpurxs = per_cpu_ptr(sta->pcpu_rx_stats, cpu); 2125c9c5962bSJohannes Berg sinfo->rx_bytes += sta_get_stats_bytes(cpurxs); 2126c9c5962bSJohannes Berg } 2127c9c5962bSJohannes Berg } 2128c9c5962bSJohannes Berg 2129319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_RX_BYTES64); 21302b9a7e1bSJohannes Berg } 21312b9a7e1bSJohannes Berg 2132319090bfSJohannes Berg if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_PACKETS))) { 2133e5a9f8d0SJohannes Berg sinfo->rx_packets = sta->rx_stats.packets; 2134c9c5962bSJohannes Berg if (sta->pcpu_rx_stats) { 2135c9c5962bSJohannes Berg for_each_possible_cpu(cpu) { 2136c9c5962bSJohannes Berg struct ieee80211_sta_rx_stats *cpurxs; 2137c9c5962bSJohannes Berg 2138c9c5962bSJohannes Berg cpurxs = per_cpu_ptr(sta->pcpu_rx_stats, cpu); 2139c9c5962bSJohannes Berg sinfo->rx_packets += cpurxs->packets; 2140c9c5962bSJohannes Berg } 2141c9c5962bSJohannes Berg } 2142319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS); 21432b9a7e1bSJohannes Berg } 21442b9a7e1bSJohannes Berg 2145319090bfSJohannes Berg if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_RETRIES))) { 2146e5a9f8d0SJohannes Berg sinfo->tx_retries = sta->status_stats.retry_count; 2147319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_TX_RETRIES); 21482b9a7e1bSJohannes Berg } 21492b9a7e1bSJohannes Berg 2150319090bfSJohannes Berg if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_FAILED))) { 2151e5a9f8d0SJohannes Berg sinfo->tx_failed = sta->status_stats.retry_failed; 2152319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_TX_FAILED); 21532b9a7e1bSJohannes Berg } 21542b9a7e1bSJohannes Berg 2155e5a9f8d0SJohannes Berg sinfo->rx_dropped_misc = sta->rx_stats.dropped; 2156c9c5962bSJohannes Berg if (sta->pcpu_rx_stats) { 2157c9c5962bSJohannes Berg for_each_possible_cpu(cpu) { 2158c9c5962bSJohannes Berg struct ieee80211_sta_rx_stats *cpurxs; 2159c9c5962bSJohannes Berg 2160c9c5962bSJohannes Berg cpurxs = per_cpu_ptr(sta->pcpu_rx_stats, cpu); 2161c9c5962bSJohannes Berg sinfo->rx_packets += cpurxs->dropped; 2162c9c5962bSJohannes Berg } 2163c9c5962bSJohannes Berg } 2164b7ffbd7eSJohannes Berg 2165225b8189SJohannes Berg if (sdata->vif.type == NL80211_IFTYPE_STATION && 2166225b8189SJohannes Berg !(sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)) { 2167225b8189SJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_RX) | 2168225b8189SJohannes Berg BIT(NL80211_STA_INFO_BEACON_SIGNAL_AVG); 2169225b8189SJohannes Berg sinfo->rx_beacon_signal_avg = ieee80211_ave_rssi(&sdata->vif); 2170225b8189SJohannes Berg } 2171225b8189SJohannes Berg 217230686bf7SJohannes Berg if (ieee80211_hw_check(&sta->local->hw, SIGNAL_DBM) || 217330686bf7SJohannes Berg ieee80211_hw_check(&sta->local->hw, SIGNAL_UNSPEC)) { 2174319090bfSJohannes Berg if (!(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL))) { 2175c9c5962bSJohannes Berg sinfo->signal = (s8)last_rxstats->last_signal; 2176319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); 2177b7ffbd7eSJohannes Berg } 21782b9a7e1bSJohannes Berg 2179c9c5962bSJohannes Berg if (!sta->pcpu_rx_stats && 2180c9c5962bSJohannes Berg !(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL_AVG))) { 218140d9a38aSJohannes Berg sinfo->signal_avg = 21820be6ed13SJohannes Berg -ewma_signal_read(&sta->rx_stats_avg.signal); 2183319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL_AVG); 21842b9a7e1bSJohannes Berg } 21852b9a7e1bSJohannes Berg } 21862b9a7e1bSJohannes Berg 2187c9c5962bSJohannes Berg /* for the average - if pcpu_rx_stats isn't set - rxstats must point to 2188c9c5962bSJohannes Berg * the sta->rx_stats struct, so the check here is fine with and without 2189c9c5962bSJohannes Berg * pcpu statistics 2190c9c5962bSJohannes Berg */ 2191c9c5962bSJohannes Berg if (last_rxstats->chains && 2192319090bfSJohannes Berg !(sinfo->filled & (BIT(NL80211_STA_INFO_CHAIN_SIGNAL) | 2193319090bfSJohannes Berg BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)))) { 2194c9c5962bSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_CHAIN_SIGNAL); 2195c9c5962bSJohannes Berg if (!sta->pcpu_rx_stats) 2196c9c5962bSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG); 2197b7ffbd7eSJohannes Berg 2198c9c5962bSJohannes Berg sinfo->chains = last_rxstats->chains; 2199c9c5962bSJohannes Berg 2200b7ffbd7eSJohannes Berg for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) { 2201e5a9f8d0SJohannes Berg sinfo->chain_signal[i] = 2202c9c5962bSJohannes Berg last_rxstats->chain_signal_last[i]; 2203b7ffbd7eSJohannes Berg sinfo->chain_signal_avg[i] = 22040be6ed13SJohannes Berg -ewma_signal_read(&sta->rx_stats_avg.chain_signal[i]); 2205b7ffbd7eSJohannes Berg } 2206b7ffbd7eSJohannes Berg } 2207b7ffbd7eSJohannes Berg 2208319090bfSJohannes Berg if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_BITRATE))) { 2209e5a9f8d0SJohannes Berg sta_set_rate_info_tx(sta, &sta->tx_stats.last_rate, 2210e5a9f8d0SJohannes Berg &sinfo->txrate); 2211319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); 22122b9a7e1bSJohannes Berg } 22132b9a7e1bSJohannes Berg 2214319090bfSJohannes Berg if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_BITRATE))) { 2215b7ffbd7eSJohannes Berg sta_set_rate_info_rx(sta, &sinfo->rxrate); 2216319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_RX_BITRATE); 22172b9a7e1bSJohannes Berg } 2218b7ffbd7eSJohannes Berg 221979c892b8SJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_TID_STATS); 222079c892b8SJohannes Berg for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++) { 222179c892b8SJohannes Berg struct cfg80211_tid_stats *tidstats = &sinfo->pertid[i]; 222279c892b8SJohannes Berg 22230f9c5a61SJohannes Berg sta_set_tidstats(sta, tidstats, i); 222479c892b8SJohannes Berg } 222579c892b8SJohannes Berg 2226b7ffbd7eSJohannes Berg if (ieee80211_vif_is_mesh(&sdata->vif)) { 2227b7ffbd7eSJohannes Berg #ifdef CONFIG_MAC80211_MESH 2228319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_LLID) | 2229319090bfSJohannes Berg BIT(NL80211_STA_INFO_PLID) | 2230319090bfSJohannes Berg BIT(NL80211_STA_INFO_PLINK_STATE) | 2231319090bfSJohannes Berg BIT(NL80211_STA_INFO_LOCAL_PM) | 2232319090bfSJohannes Berg BIT(NL80211_STA_INFO_PEER_PM) | 2233319090bfSJohannes Berg BIT(NL80211_STA_INFO_NONPEER_PM); 2234b7ffbd7eSJohannes Berg 2235433f5bc1SJohannes Berg sinfo->llid = sta->mesh->llid; 2236433f5bc1SJohannes Berg sinfo->plid = sta->mesh->plid; 2237433f5bc1SJohannes Berg sinfo->plink_state = sta->mesh->plink_state; 2238b7ffbd7eSJohannes Berg if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) { 2239319090bfSJohannes Berg sinfo->filled |= BIT(NL80211_STA_INFO_T_OFFSET); 2240433f5bc1SJohannes Berg sinfo->t_offset = sta->mesh->t_offset; 2241b7ffbd7eSJohannes Berg } 2242433f5bc1SJohannes Berg sinfo->local_pm = sta->mesh->local_pm; 2243433f5bc1SJohannes Berg sinfo->peer_pm = sta->mesh->peer_pm; 2244433f5bc1SJohannes Berg sinfo->nonpeer_pm = sta->mesh->nonpeer_pm; 2245b7ffbd7eSJohannes Berg #endif 2246b7ffbd7eSJohannes Berg } 2247b7ffbd7eSJohannes Berg 2248b7ffbd7eSJohannes Berg sinfo->bss_param.flags = 0; 2249b7ffbd7eSJohannes Berg if (sdata->vif.bss_conf.use_cts_prot) 2250b7ffbd7eSJohannes Berg sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT; 2251b7ffbd7eSJohannes Berg if (sdata->vif.bss_conf.use_short_preamble) 2252b7ffbd7eSJohannes Berg sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE; 2253b7ffbd7eSJohannes Berg if (sdata->vif.bss_conf.use_short_slot) 2254b7ffbd7eSJohannes Berg sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME; 2255785e21a8SEmmanuel Grumbach sinfo->bss_param.dtim_period = sdata->vif.bss_conf.dtim_period; 2256b7ffbd7eSJohannes Berg sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int; 2257b7ffbd7eSJohannes Berg 2258b7ffbd7eSJohannes Berg sinfo->sta_flags.set = 0; 2259b7ffbd7eSJohannes Berg sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) | 2260b7ffbd7eSJohannes Berg BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) | 2261b7ffbd7eSJohannes Berg BIT(NL80211_STA_FLAG_WME) | 2262b7ffbd7eSJohannes Berg BIT(NL80211_STA_FLAG_MFP) | 2263b7ffbd7eSJohannes Berg BIT(NL80211_STA_FLAG_AUTHENTICATED) | 2264b7ffbd7eSJohannes Berg BIT(NL80211_STA_FLAG_ASSOCIATED) | 2265b7ffbd7eSJohannes Berg BIT(NL80211_STA_FLAG_TDLS_PEER); 2266b7ffbd7eSJohannes Berg if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) 2267b7ffbd7eSJohannes Berg sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED); 2268b7ffbd7eSJohannes Berg if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE)) 2269b7ffbd7eSJohannes Berg sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE); 2270a74a8c84SJohannes Berg if (sta->sta.wme) 2271b7ffbd7eSJohannes Berg sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME); 2272b7ffbd7eSJohannes Berg if (test_sta_flag(sta, WLAN_STA_MFP)) 2273b7ffbd7eSJohannes Berg sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP); 2274b7ffbd7eSJohannes Berg if (test_sta_flag(sta, WLAN_STA_AUTH)) 2275b7ffbd7eSJohannes Berg sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED); 2276b7ffbd7eSJohannes Berg if (test_sta_flag(sta, WLAN_STA_ASSOC)) 2277b7ffbd7eSJohannes Berg sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED); 2278b7ffbd7eSJohannes Berg if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) 2279b7ffbd7eSJohannes Berg sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER); 2280b7ffbd7eSJohannes Berg 22813b17fbf8SMaxim Altshul thr = sta_get_expected_throughput(sta); 22823b17fbf8SMaxim Altshul 22833b17fbf8SMaxim Altshul if (thr != 0) { 22843b17fbf8SMaxim Altshul sinfo->filled |= BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT); 22853b17fbf8SMaxim Altshul sinfo->expected_throughput = thr; 22863b17fbf8SMaxim Altshul } 22873b17fbf8SMaxim Altshul } 22883b17fbf8SMaxim Altshul 22893b17fbf8SMaxim Altshul u32 sta_get_expected_throughput(struct sta_info *sta) 22903b17fbf8SMaxim Altshul { 22913b17fbf8SMaxim Altshul struct ieee80211_sub_if_data *sdata = sta->sdata; 22923b17fbf8SMaxim Altshul struct ieee80211_local *local = sdata->local; 22933b17fbf8SMaxim Altshul struct rate_control_ref *ref = NULL; 22943b17fbf8SMaxim Altshul u32 thr = 0; 22953b17fbf8SMaxim Altshul 22963b17fbf8SMaxim Altshul if (test_sta_flag(sta, WLAN_STA_RATE_CONTROL)) 22973b17fbf8SMaxim Altshul ref = local->rate_ctrl; 22983b17fbf8SMaxim Altshul 2299b7ffbd7eSJohannes Berg /* check if the driver has a SW RC implementation */ 2300b7ffbd7eSJohannes Berg if (ref && ref->ops->get_expected_throughput) 2301b7ffbd7eSJohannes Berg thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv); 2302b7ffbd7eSJohannes Berg else 23034fdbc67aSMaxim Altshul thr = drv_get_expected_throughput(local, sta); 2304b7ffbd7eSJohannes Berg 23053b17fbf8SMaxim Altshul return thr; 2306b7ffbd7eSJohannes Berg } 2307b8da6b6aSJohannes Berg 2308b8da6b6aSJohannes Berg unsigned long ieee80211_sta_last_active(struct sta_info *sta) 2309b8da6b6aSJohannes Berg { 2310c9c5962bSJohannes Berg struct ieee80211_sta_rx_stats *stats = sta_get_last_rx_stats(sta); 2311c9c5962bSJohannes Berg 2312c9c5962bSJohannes Berg if (time_after(stats->last_rx, sta->status_stats.last_ack)) 2313c9c5962bSJohannes Berg return stats->last_rx; 2314b8da6b6aSJohannes Berg return sta->status_stats.last_ack; 2315b8da6b6aSJohannes Berg } 2316