16b4cac81SBjoern A. Zeeb /*- 22e183d99SBjoern A. Zeeb * Copyright (c) 2020-2022 The FreeBSD Foundation 3086be6a8SBjoern A. Zeeb * Copyright (c) 2020-2022 Bjoern A. Zeeb 46b4cac81SBjoern A. Zeeb * 56b4cac81SBjoern A. Zeeb * This software was developed by Björn Zeeb under sponsorship from 66b4cac81SBjoern A. Zeeb * the FreeBSD Foundation. 76b4cac81SBjoern A. Zeeb * 86b4cac81SBjoern A. Zeeb * Redistribution and use in source and binary forms, with or without 96b4cac81SBjoern A. Zeeb * modification, are permitted provided that the following conditions 106b4cac81SBjoern A. Zeeb * are met: 116b4cac81SBjoern A. Zeeb * 1. Redistributions of source code must retain the above copyright 126b4cac81SBjoern A. Zeeb * notice, this list of conditions and the following disclaimer. 136b4cac81SBjoern A. Zeeb * 2. Redistributions in binary form must reproduce the above copyright 146b4cac81SBjoern A. Zeeb * notice, this list of conditions and the following disclaimer in the 156b4cac81SBjoern A. Zeeb * documentation and/or other materials provided with the distribution. 166b4cac81SBjoern A. Zeeb * 176b4cac81SBjoern A. Zeeb * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 186b4cac81SBjoern A. Zeeb * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 196b4cac81SBjoern A. Zeeb * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 206b4cac81SBjoern A. Zeeb * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 216b4cac81SBjoern A. Zeeb * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 226b4cac81SBjoern A. Zeeb * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 236b4cac81SBjoern A. Zeeb * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 246b4cac81SBjoern A. Zeeb * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 256b4cac81SBjoern A. Zeeb * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 266b4cac81SBjoern A. Zeeb * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 276b4cac81SBjoern A. Zeeb * SUCH DAMAGE. 286b4cac81SBjoern A. Zeeb */ 296b4cac81SBjoern A. Zeeb 306b4cac81SBjoern A. Zeeb /* 316b4cac81SBjoern A. Zeeb * Public functions are called linuxkpi_*(). 326b4cac81SBjoern A. Zeeb * Internal (static) functions are called lkpi_*(). 336b4cac81SBjoern A. Zeeb * 346b4cac81SBjoern A. Zeeb * The internal structures holding metadata over public structures are also 356b4cac81SBjoern A. Zeeb * called lkpi_xxx (usually with a member at the end called xxx). 366b4cac81SBjoern A. Zeeb * Note: we do not replicate the structure names but the general variable names 376b4cac81SBjoern A. Zeeb * for these (e.g., struct hw -> struct lkpi_hw, struct sta -> struct lkpi_sta). 386b4cac81SBjoern A. Zeeb * There are macros to access one from the other. 396b4cac81SBjoern A. Zeeb * We call the internal versions lxxx (e.g., hw -> lhw, sta -> lsta). 406b4cac81SBjoern A. Zeeb */ 416b4cac81SBjoern A. Zeeb 426b4cac81SBjoern A. Zeeb #include <sys/cdefs.h> 436b4cac81SBjoern A. Zeeb __FBSDID("$FreeBSD$"); 446b4cac81SBjoern A. Zeeb 456b4cac81SBjoern A. Zeeb #include <sys/param.h> 466b4cac81SBjoern A. Zeeb #include <sys/types.h> 476b4cac81SBjoern A. Zeeb #include <sys/kernel.h> 486b4cac81SBjoern A. Zeeb #include <sys/errno.h> 496b4cac81SBjoern A. Zeeb #include <sys/malloc.h> 506b4cac81SBjoern A. Zeeb #include <sys/module.h> 516b4cac81SBjoern A. Zeeb #include <sys/mutex.h> 526b4cac81SBjoern A. Zeeb #include <sys/socket.h> 536b4cac81SBjoern A. Zeeb #include <sys/sysctl.h> 546b4cac81SBjoern A. Zeeb #include <sys/queue.h> 556b4cac81SBjoern A. Zeeb #include <sys/taskqueue.h> 56527687a9SBjoern A. Zeeb #include <sys/libkern.h> 576b4cac81SBjoern A. Zeeb 586b4cac81SBjoern A. Zeeb #include <net/if.h> 596b4cac81SBjoern A. Zeeb #include <net/if_var.h> 606b4cac81SBjoern A. Zeeb #include <net/if_media.h> 616b4cac81SBjoern A. Zeeb #include <net/ethernet.h> 626b4cac81SBjoern A. Zeeb 636b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_var.h> 646b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_proto.h> 656b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_ratectl.h> 666b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_radiotap.h> 676b4cac81SBjoern A. Zeeb 686b4cac81SBjoern A. Zeeb #define LINUXKPI_NET80211 696b4cac81SBjoern A. Zeeb #include <net/mac80211.h> 706b4cac81SBjoern A. Zeeb 716b4cac81SBjoern A. Zeeb #include <linux/workqueue.h> 726b4cac81SBjoern A. Zeeb #include "linux_80211.h" 736b4cac81SBjoern A. Zeeb 744a67f1dfSBjoern A. Zeeb #define LKPI_80211_WME 75b35f6cd0SBjoern A. Zeeb /* #define LKPI_80211_HW_CRYPTO */ 76b35f6cd0SBjoern A. Zeeb 776b4cac81SBjoern A. Zeeb static MALLOC_DEFINE(M_LKPI80211, "lkpi80211", "LinuxKPI 80211 compat"); 786b4cac81SBjoern A. Zeeb 79*5a9a0d78SBjoern A. Zeeb /* XXX-BZ really want this and others in queue.h */ 80*5a9a0d78SBjoern A. Zeeb #define TAILQ_ELEM_INIT(elm, field) do { \ 81*5a9a0d78SBjoern A. Zeeb (elm)->field.tqe_next = NULL; \ 82*5a9a0d78SBjoern A. Zeeb (elm)->field.tqe_prev = NULL; \ 83*5a9a0d78SBjoern A. Zeeb } while (0) 84*5a9a0d78SBjoern A. Zeeb 856b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 866b4cac81SBjoern A. Zeeb 879d9ba2b7SBjoern A. Zeeb /* Keep public for as long as header files are using it too. */ 889d9ba2b7SBjoern A. Zeeb int linuxkpi_debug_80211; 896b4cac81SBjoern A. Zeeb 906b4cac81SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 919d9ba2b7SBjoern A. Zeeb SYSCTL_DECL(_compat_linuxkpi); 929d9ba2b7SBjoern A. Zeeb SYSCTL_NODE(_compat_linuxkpi, OID_AUTO, 80211, CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 939d9ba2b7SBjoern A. Zeeb "LinuxKPI 802.11 compatibility layer"); 949d9ba2b7SBjoern A. Zeeb 959d9ba2b7SBjoern A. Zeeb SYSCTL_INT(_compat_linuxkpi_80211, OID_AUTO, debug, CTLFLAG_RWTUN, 969d9ba2b7SBjoern A. Zeeb &linuxkpi_debug_80211, 0, "LinuxKPI 802.11 debug level"); 979d9ba2b7SBjoern A. Zeeb 989d9ba2b7SBjoern A. Zeeb #define UNIMPLEMENTED if (linuxkpi_debug_80211 & D80211_TODO) \ 996b4cac81SBjoern A. Zeeb printf("XXX-TODO %s:%d: UNIMPLEMENTED\n", __func__, __LINE__) 1009d9ba2b7SBjoern A. Zeeb #define TRACEOK() if (linuxkpi_debug_80211 & D80211_TRACEOK) \ 1016b4cac81SBjoern A. Zeeb printf("XXX-TODO %s:%d: TRACEPOINT\n", __func__, __LINE__) 1026b4cac81SBjoern A. Zeeb #else 1036b4cac81SBjoern A. Zeeb #define UNIMPLEMENTED do { } while (0) 1046b4cac81SBjoern A. Zeeb #define TRACEOK() do { } while (0) 1056b4cac81SBjoern A. Zeeb #endif 1066b4cac81SBjoern A. Zeeb 1076b4cac81SBjoern A. Zeeb /* #define PREP_TX_INFO_DURATION (IEEE80211_TRANS_WAIT * 1000) */ 1086b4cac81SBjoern A. Zeeb #ifndef PREP_TX_INFO_DURATION 1096b4cac81SBjoern A. Zeeb #define PREP_TX_INFO_DURATION 0 /* Let the driver do its thing. */ 1106b4cac81SBjoern A. Zeeb #endif 1116b4cac81SBjoern A. Zeeb 112caaa79c3SBjoern A. Zeeb /* c.f. ieee80211_ioctl.c */ 113caaa79c3SBjoern A. Zeeb static const uint8_t zerobssid[IEEE80211_ADDR_LEN]; 114caaa79c3SBjoern A. Zeeb 1156b4cac81SBjoern A. Zeeb /* This is DSAP | SSAP | CTRL | ProtoID/OrgCode{3}. */ 1166b4cac81SBjoern A. Zeeb const uint8_t rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 }; 1176b4cac81SBjoern A. Zeeb 118b0f73768SBjoern A. Zeeb /* IEEE 802.11-05/0257r1 */ 119b0f73768SBjoern A. Zeeb const uint8_t bridge_tunnel_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 }; 120b0f73768SBjoern A. Zeeb 1214f61ef8bSBjoern A. Zeeb const uint8_t tid_to_mac80211_ac[] = { 1224f61ef8bSBjoern A. Zeeb IEEE80211_AC_BE, 1234f61ef8bSBjoern A. Zeeb IEEE80211_AC_BK, 1244f61ef8bSBjoern A. Zeeb IEEE80211_AC_BK, 1254f61ef8bSBjoern A. Zeeb IEEE80211_AC_BE, 1264f61ef8bSBjoern A. Zeeb IEEE80211_AC_VI, 1274f61ef8bSBjoern A. Zeeb IEEE80211_AC_VI, 1284f61ef8bSBjoern A. Zeeb IEEE80211_AC_VO, 1294f61ef8bSBjoern A. Zeeb IEEE80211_AC_VO, 1304f61ef8bSBjoern A. Zeeb #if 0 1314f61ef8bSBjoern A. Zeeb IEEE80211_AC_VO, /* We treat MGMT as TID 8, which is set as AC_VO */ 1324f61ef8bSBjoern A. Zeeb #endif 1334f61ef8bSBjoern A. Zeeb }; 1344f61ef8bSBjoern A. Zeeb 1356b4cac81SBjoern A. Zeeb const struct cfg80211_ops linuxkpi_mac80211cfgops = { 1366b4cac81SBjoern A. Zeeb /* 1376b4cac81SBjoern A. Zeeb * XXX TODO need a "glue layer" to link cfg80211 ops to 1386b4cac81SBjoern A. Zeeb * mac80211 and to the driver or net80211. 1396b4cac81SBjoern A. Zeeb * Can we pass some on 1:1? Need to compare the (*f)(). 1406b4cac81SBjoern A. Zeeb */ 1416b4cac81SBjoern A. Zeeb }; 1426b4cac81SBjoern A. Zeeb 1436b4cac81SBjoern A. Zeeb static struct lkpi_sta *lkpi_find_lsta_by_ni(struct lkpi_vif *, 1446b4cac81SBjoern A. Zeeb struct ieee80211_node *); 1456b4cac81SBjoern A. Zeeb static void lkpi_80211_txq_task(void *, int); 1466b4cac81SBjoern A. Zeeb static void lkpi_ieee80211_free_skb_mbuf(void *); 1474a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME 1484a67f1dfSBjoern A. Zeeb static int lkpi_wme_update(struct lkpi_hw *, struct ieee80211vap *, bool); 1494a67f1dfSBjoern A. Zeeb #endif 1506b4cac81SBjoern A. Zeeb 151d9f59799SBjoern A. Zeeb static void 15267674c1cSBjoern A. Zeeb lkpi_lsta_dump(struct lkpi_sta *lsta, struct ieee80211_node *ni, 15367674c1cSBjoern A. Zeeb const char *_f, int _l) 154d9f59799SBjoern A. Zeeb { 155d9f59799SBjoern A. Zeeb 1569d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 1579d9ba2b7SBjoern A. Zeeb if ((linuxkpi_debug_80211 & D80211_TRACE_STA) == 0) 158d9f59799SBjoern A. Zeeb return; 159d9f59799SBjoern A. Zeeb if (lsta == NULL) 160d9f59799SBjoern A. Zeeb return; 161d9f59799SBjoern A. Zeeb 162d9f59799SBjoern A. Zeeb printf("%s:%d lsta %p ni %p sta %p\n", 16367674c1cSBjoern A. Zeeb _f, _l, lsta, ni, &lsta->sta); 16467674c1cSBjoern A. Zeeb if (ni != NULL) 16567674c1cSBjoern A. Zeeb ieee80211_dump_node(NULL, ni); 166d9f59799SBjoern A. Zeeb printf("\ttxq_task txq len %d mtx\n", mbufq_len(&lsta->txq)); 167d9f59799SBjoern A. Zeeb printf("\tkc %p state %d added_to_drv %d in_mgd %d\n", 168d9f59799SBjoern A. Zeeb lsta->kc, lsta->state, lsta->added_to_drv, lsta->in_mgd); 1699d9ba2b7SBjoern A. Zeeb #endif 170d9f59799SBjoern A. Zeeb } 171d9f59799SBjoern A. Zeeb 172d9f59799SBjoern A. Zeeb static void 173d9f59799SBjoern A. Zeeb lkpi_lsta_remove(struct lkpi_sta *lsta, struct lkpi_vif *lvif) 174d9f59799SBjoern A. Zeeb { 175d9f59799SBjoern A. Zeeb struct ieee80211_node *ni; 176d9f59799SBjoern A. Zeeb 177d9f59799SBjoern A. Zeeb ni = lsta->ni; 178d9f59799SBjoern A. Zeeb 179d9f59799SBjoern A. Zeeb LKPI_80211_LVIF_LOCK(lvif); 180d9f59799SBjoern A. Zeeb TAILQ_REMOVE(&lvif->lsta_head, lsta, lsta_entry); 181d9f59799SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 182d9f59799SBjoern A. Zeeb 183d9f59799SBjoern A. Zeeb lsta->ni = NULL; 184d9f59799SBjoern A. Zeeb ni->ni_drv_data = NULL; 185e24e8103SBjoern A. Zeeb if (ni != NULL) 186d9f59799SBjoern A. Zeeb ieee80211_free_node(ni); 187d9f59799SBjoern A. Zeeb 188e24e8103SBjoern A. Zeeb IMPROVE("more from lkpi_ic_node_free() should happen here."); 189e24e8103SBjoern A. Zeeb 190e24e8103SBjoern A. Zeeb free(lsta, M_LKPI80211); 191d9f59799SBjoern A. Zeeb } 192d9f59799SBjoern A. Zeeb 1934f61ef8bSBjoern A. Zeeb static struct lkpi_sta * 1944f61ef8bSBjoern A. Zeeb lkpi_lsta_alloc(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN], 1954f61ef8bSBjoern A. Zeeb struct ieee80211_hw *hw, struct ieee80211_node *ni) 1964f61ef8bSBjoern A. Zeeb { 1974f61ef8bSBjoern A. Zeeb struct lkpi_sta *lsta; 1984f61ef8bSBjoern A. Zeeb struct lkpi_vif *lvif; 1994f61ef8bSBjoern A. Zeeb struct ieee80211_vif *vif; 2004f61ef8bSBjoern A. Zeeb struct ieee80211_sta *sta; 201b6b352e4SBjoern A. Zeeb int band, i, tid; 2024f61ef8bSBjoern A. Zeeb 2034f61ef8bSBjoern A. Zeeb lsta = malloc(sizeof(*lsta) + hw->sta_data_size, M_LKPI80211, 2044f61ef8bSBjoern A. Zeeb M_NOWAIT | M_ZERO); 2054f61ef8bSBjoern A. Zeeb if (lsta == NULL) 2064f61ef8bSBjoern A. Zeeb return (NULL); 2074f61ef8bSBjoern A. Zeeb 2084f61ef8bSBjoern A. Zeeb lsta->added_to_drv = false; 2094f61ef8bSBjoern A. Zeeb lsta->state = IEEE80211_STA_NOTEXIST; 2104f61ef8bSBjoern A. Zeeb #if 0 2114f61ef8bSBjoern A. Zeeb /* 2124f61ef8bSBjoern A. Zeeb * This needs to be done in node_init() as ieee80211_alloc_node() 2134f61ef8bSBjoern A. Zeeb * will initialise the refcount after us. 2144f61ef8bSBjoern A. Zeeb */ 2154f61ef8bSBjoern A. Zeeb lsta->ni = ieee80211_ref_node(ni); 2164f61ef8bSBjoern A. Zeeb #endif 2174f61ef8bSBjoern A. Zeeb /* The back-pointer "drv_data" to net80211_node let's us get lsta. */ 2184f61ef8bSBjoern A. Zeeb ni->ni_drv_data = lsta; 2194f61ef8bSBjoern A. Zeeb 2204f61ef8bSBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 2214f61ef8bSBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 2224f61ef8bSBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 2234f61ef8bSBjoern A. Zeeb 2244f61ef8bSBjoern A. Zeeb IEEE80211_ADDR_COPY(sta->addr, mac); 225b6b352e4SBjoern A. Zeeb 226b6b352e4SBjoern A. Zeeb /* TXQ */ 2274f61ef8bSBjoern A. Zeeb for (tid = 0; tid < nitems(sta->txq); tid++) { 2284f61ef8bSBjoern A. Zeeb struct lkpi_txq *ltxq; 2294f61ef8bSBjoern A. Zeeb 230d0d29110SBjoern A. Zeeb /* We are not limiting ourselves to hw.queues here. */ 2314f61ef8bSBjoern A. Zeeb ltxq = malloc(sizeof(*ltxq) + hw->txq_data_size, 2324f61ef8bSBjoern A. Zeeb M_LKPI80211, M_NOWAIT | M_ZERO); 2334f61ef8bSBjoern A. Zeeb if (ltxq == NULL) 2344f61ef8bSBjoern A. Zeeb goto cleanup; 2354f61ef8bSBjoern A. Zeeb /* iwlwifi//mvm/sta.c::tid_to_mac80211_ac[] */ 2364f61ef8bSBjoern A. Zeeb if (tid == IEEE80211_NUM_TIDS) { 237d0d29110SBjoern A. Zeeb if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ)) { 238d0d29110SBjoern A. Zeeb free(ltxq, M_LKPI80211); 239d0d29110SBjoern A. Zeeb continue; 240d0d29110SBjoern A. Zeeb } 241d0d29110SBjoern A. Zeeb IMPROVE("AP/if we support non-STA here too"); 2424f61ef8bSBjoern A. Zeeb ltxq->txq.ac = IEEE80211_AC_VO; 2434f61ef8bSBjoern A. Zeeb } else { 2444f61ef8bSBjoern A. Zeeb ltxq->txq.ac = tid_to_mac80211_ac[tid & 7]; 2454f61ef8bSBjoern A. Zeeb } 246d0d29110SBjoern A. Zeeb ltxq->seen_dequeue = false; 247d0d29110SBjoern A. Zeeb ltxq->txq.vif = vif; 2484f61ef8bSBjoern A. Zeeb ltxq->txq.tid = tid; 2494f61ef8bSBjoern A. Zeeb ltxq->txq.sta = sta; 250d0d29110SBjoern A. Zeeb skb_queue_head_init(<xq->skbq); 2514f61ef8bSBjoern A. Zeeb sta->txq[tid] = <xq->txq; 2524f61ef8bSBjoern A. Zeeb } 2534f61ef8bSBjoern A. Zeeb 254b6b352e4SBjoern A. Zeeb /* Deflink information. */ 255b6b352e4SBjoern A. Zeeb for (band = 0; band < NUM_NL80211_BANDS; band++) { 256b6b352e4SBjoern A. Zeeb struct ieee80211_supported_band *supband; 257b6b352e4SBjoern A. Zeeb 258b6b352e4SBjoern A. Zeeb supband = hw->wiphy->bands[band]; 259b6b352e4SBjoern A. Zeeb if (supband == NULL) 260b6b352e4SBjoern A. Zeeb continue; 261b6b352e4SBjoern A. Zeeb 262b6b352e4SBjoern A. Zeeb for (i = 0; i < supband->n_bitrates; i++) { 263b6b352e4SBjoern A. Zeeb 264b6b352e4SBjoern A. Zeeb IMPROVE("Further supband->bitrates[i]* checks?"); 265b6b352e4SBjoern A. Zeeb /* or should we get them from the ni? */ 266b6b352e4SBjoern A. Zeeb sta->deflink.supp_rates[band] |= BIT(i); 267b6b352e4SBjoern A. Zeeb } 268b6b352e4SBjoern A. Zeeb } 269b6b352e4SBjoern A. Zeeb IMPROVE("ht, vht, he, ... bandwidth, smps_mode, .."); 270b6b352e4SBjoern A. Zeeb /* bandwidth = IEEE80211_STA_RX_... */ 271b6b352e4SBjoern A. Zeeb 2724f61ef8bSBjoern A. Zeeb /* Deferred TX path. */ 2734f61ef8bSBjoern A. Zeeb mtx_init(&lsta->txq_mtx, "lsta_txq", NULL, MTX_DEF); 2744f61ef8bSBjoern A. Zeeb TASK_INIT(&lsta->txq_task, 0, lkpi_80211_txq_task, lsta); 2754f61ef8bSBjoern A. Zeeb mbufq_init(&lsta->txq, IFQ_MAXLEN); 2764f61ef8bSBjoern A. Zeeb 2774f61ef8bSBjoern A. Zeeb return (lsta); 2784f61ef8bSBjoern A. Zeeb 2794f61ef8bSBjoern A. Zeeb cleanup: 2804f61ef8bSBjoern A. Zeeb for (; tid >= 0; tid--) 2814f61ef8bSBjoern A. Zeeb free(sta->txq[tid], M_LKPI80211); 2824f61ef8bSBjoern A. Zeeb free(lsta, M_LKPI80211); 2834f61ef8bSBjoern A. Zeeb return (NULL); 2844f61ef8bSBjoern A. Zeeb } 2854f61ef8bSBjoern A. Zeeb 2866b4cac81SBjoern A. Zeeb static enum nl80211_band 2876b4cac81SBjoern A. Zeeb lkpi_net80211_chan_to_nl80211_band(struct ieee80211_channel *c) 2886b4cac81SBjoern A. Zeeb { 2896b4cac81SBjoern A. Zeeb 2906b4cac81SBjoern A. Zeeb if (IEEE80211_IS_CHAN_2GHZ(c)) 2916b4cac81SBjoern A. Zeeb return (NL80211_BAND_2GHZ); 2926b4cac81SBjoern A. Zeeb else if (IEEE80211_IS_CHAN_5GHZ(c)) 2936b4cac81SBjoern A. Zeeb return (NL80211_BAND_5GHZ); 2946b4cac81SBjoern A. Zeeb #ifdef __notyet__ 2956b4cac81SBjoern A. Zeeb else if () 2966b4cac81SBjoern A. Zeeb return (NL80211_BAND_6GHZ); 2976b4cac81SBjoern A. Zeeb else if () 2986b4cac81SBjoern A. Zeeb return (NL80211_BAND_60GHZ); 2996b4cac81SBjoern A. Zeeb else if (IEEE80211_IS_CHAN_GSM(c)) 3006b4cac81SBjoern A. Zeeb return (NL80211_BAND_XXX); 3016b4cac81SBjoern A. Zeeb #endif 3026b4cac81SBjoern A. Zeeb else 3036b4cac81SBjoern A. Zeeb panic("%s: unsupported band. c %p flags %#x\n", 3046b4cac81SBjoern A. Zeeb __func__, c, c->ic_flags); 3056b4cac81SBjoern A. Zeeb } 3066b4cac81SBjoern A. Zeeb 3076b4cac81SBjoern A. Zeeb static uint32_t 3086b4cac81SBjoern A. Zeeb lkpi_nl80211_band_to_net80211_band(enum nl80211_band band) 3096b4cac81SBjoern A. Zeeb { 3106b4cac81SBjoern A. Zeeb 3116b4cac81SBjoern A. Zeeb /* XXX-BZ this is just silly; net80211 is too convoluted. */ 3126b4cac81SBjoern A. Zeeb /* IEEE80211_CHAN_A / _G / .. doesn't really work either. */ 3136b4cac81SBjoern A. Zeeb switch (band) { 3146b4cac81SBjoern A. Zeeb case NL80211_BAND_2GHZ: 3156b4cac81SBjoern A. Zeeb return (IEEE80211_CHAN_2GHZ); 3166b4cac81SBjoern A. Zeeb break; 3176b4cac81SBjoern A. Zeeb case NL80211_BAND_5GHZ: 3186b4cac81SBjoern A. Zeeb return (IEEE80211_CHAN_5GHZ); 3196b4cac81SBjoern A. Zeeb break; 3206b4cac81SBjoern A. Zeeb case NL80211_BAND_60GHZ: 3216b4cac81SBjoern A. Zeeb break; 3226b4cac81SBjoern A. Zeeb case NL80211_BAND_6GHZ: 3236b4cac81SBjoern A. Zeeb break; 3246b4cac81SBjoern A. Zeeb default: 3256b4cac81SBjoern A. Zeeb panic("%s: unsupported band %u\n", __func__, band); 3266b4cac81SBjoern A. Zeeb break; 3276b4cac81SBjoern A. Zeeb } 3286b4cac81SBjoern A. Zeeb 3296b4cac81SBjoern A. Zeeb IMPROVE(); 3306b4cac81SBjoern A. Zeeb return (0x00); 3316b4cac81SBjoern A. Zeeb } 3326b4cac81SBjoern A. Zeeb 333e3a0b120SBjoern A. Zeeb #if 0 3346b4cac81SBjoern A. Zeeb static enum ieee80211_ac_numbers 3356b4cac81SBjoern A. Zeeb lkpi_ac_net_to_l80211(int ac) 3366b4cac81SBjoern A. Zeeb { 3376b4cac81SBjoern A. Zeeb 3386b4cac81SBjoern A. Zeeb switch (ac) { 3396b4cac81SBjoern A. Zeeb case WME_AC_VO: 3406b4cac81SBjoern A. Zeeb return (IEEE80211_AC_VO); 3416b4cac81SBjoern A. Zeeb case WME_AC_VI: 3426b4cac81SBjoern A. Zeeb return (IEEE80211_AC_VI); 3436b4cac81SBjoern A. Zeeb case WME_AC_BE: 3446b4cac81SBjoern A. Zeeb return (IEEE80211_AC_BE); 3456b4cac81SBjoern A. Zeeb case WME_AC_BK: 3466b4cac81SBjoern A. Zeeb return (IEEE80211_AC_BK); 3476b4cac81SBjoern A. Zeeb default: 3486b4cac81SBjoern A. Zeeb printf("%s: invalid WME_AC_* input: ac = %d\n", __func__, ac); 3496b4cac81SBjoern A. Zeeb return (IEEE80211_AC_BE); 3506b4cac81SBjoern A. Zeeb } 3516b4cac81SBjoern A. Zeeb } 352e3a0b120SBjoern A. Zeeb #endif 3536b4cac81SBjoern A. Zeeb 3546b4cac81SBjoern A. Zeeb static enum nl80211_iftype 3556b4cac81SBjoern A. Zeeb lkpi_opmode_to_vif_type(enum ieee80211_opmode opmode) 3566b4cac81SBjoern A. Zeeb { 3576b4cac81SBjoern A. Zeeb 3586b4cac81SBjoern A. Zeeb switch (opmode) { 3596b4cac81SBjoern A. Zeeb case IEEE80211_M_IBSS: 3606b4cac81SBjoern A. Zeeb return (NL80211_IFTYPE_ADHOC); 3616b4cac81SBjoern A. Zeeb break; 3626b4cac81SBjoern A. Zeeb case IEEE80211_M_STA: 3636b4cac81SBjoern A. Zeeb return (NL80211_IFTYPE_STATION); 3646b4cac81SBjoern A. Zeeb break; 3656b4cac81SBjoern A. Zeeb case IEEE80211_M_WDS: 3666b4cac81SBjoern A. Zeeb return (NL80211_IFTYPE_WDS); 3676b4cac81SBjoern A. Zeeb break; 3686b4cac81SBjoern A. Zeeb case IEEE80211_M_HOSTAP: 3696b4cac81SBjoern A. Zeeb return (NL80211_IFTYPE_AP); 3706b4cac81SBjoern A. Zeeb break; 3716b4cac81SBjoern A. Zeeb case IEEE80211_M_MONITOR: 3726b4cac81SBjoern A. Zeeb return (NL80211_IFTYPE_MONITOR); 3736b4cac81SBjoern A. Zeeb break; 3746b4cac81SBjoern A. Zeeb case IEEE80211_M_MBSS: 3756b4cac81SBjoern A. Zeeb return (NL80211_IFTYPE_MESH_POINT); 3766b4cac81SBjoern A. Zeeb break; 3776b4cac81SBjoern A. Zeeb case IEEE80211_M_AHDEMO: 3786b4cac81SBjoern A. Zeeb /* FALLTHROUGH */ 3796b4cac81SBjoern A. Zeeb default: 3806b4cac81SBjoern A. Zeeb printf("ERROR: %s: unsupported opmode %d\n", __func__, opmode); 3816b4cac81SBjoern A. Zeeb /* FALLTHROUGH */ 3826b4cac81SBjoern A. Zeeb } 3836b4cac81SBjoern A. Zeeb return (NL80211_IFTYPE_UNSPECIFIED); 3846b4cac81SBjoern A. Zeeb } 3856b4cac81SBjoern A. Zeeb 386b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO 3876b4cac81SBjoern A. Zeeb static uint32_t 3886b4cac81SBjoern A. Zeeb lkpi_l80211_to_net80211_cyphers(uint32_t wlan_cipher_suite) 3896b4cac81SBjoern A. Zeeb { 3906b4cac81SBjoern A. Zeeb 3916b4cac81SBjoern A. Zeeb switch (wlan_cipher_suite) { 3926b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_WEP40: 3936b4cac81SBjoern A. Zeeb return (IEEE80211_CRYPTO_WEP); 3946b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_TKIP: 3956b4cac81SBjoern A. Zeeb return (IEEE80211_CRYPTO_TKIP); 3966b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_CCMP: 3976b4cac81SBjoern A. Zeeb return (IEEE80211_CIPHER_AES_CCM); 3986b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_WEP104: 3996b4cac81SBjoern A. Zeeb return (IEEE80211_CRYPTO_WEP); 4006b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_AES_CMAC: 4016b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_GCMP: 4026b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_GCMP_256: 4036b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_CCMP_256: 4046b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_BIP_GMAC_128: 4056b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_BIP_GMAC_256: 4066b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_BIP_CMAC_256: 4076b4cac81SBjoern A. Zeeb printf("%s: unsupported WLAN Cipher Suite %#08x | %u\n", __func__, 4086b4cac81SBjoern A. Zeeb wlan_cipher_suite >> 8, wlan_cipher_suite & 0xff); 4096b4cac81SBjoern A. Zeeb break; 4106b4cac81SBjoern A. Zeeb default: 4116b4cac81SBjoern A. Zeeb printf("%s: unknown WLAN Cipher Suite %#08x | %u\n", __func__, 4126b4cac81SBjoern A. Zeeb wlan_cipher_suite >> 8, wlan_cipher_suite & 0xff); 4136b4cac81SBjoern A. Zeeb } 4146b4cac81SBjoern A. Zeeb 4156b4cac81SBjoern A. Zeeb return (0); 4166b4cac81SBjoern A. Zeeb } 4176b4cac81SBjoern A. Zeeb 4186b4cac81SBjoern A. Zeeb static uint32_t 4196b4cac81SBjoern A. Zeeb lkpi_net80211_to_l80211_cipher_suite(uint32_t cipher, uint8_t keylen) 4206b4cac81SBjoern A. Zeeb { 4216b4cac81SBjoern A. Zeeb 4226b4cac81SBjoern A. Zeeb switch (cipher) { 4236b4cac81SBjoern A. Zeeb case IEEE80211_CIPHER_TKIP: 4246b4cac81SBjoern A. Zeeb return (WLAN_CIPHER_SUITE_TKIP); 4256b4cac81SBjoern A. Zeeb case IEEE80211_CIPHER_AES_CCM: 4266b4cac81SBjoern A. Zeeb return (WLAN_CIPHER_SUITE_CCMP); 4276b4cac81SBjoern A. Zeeb case IEEE80211_CIPHER_WEP: 4286b4cac81SBjoern A. Zeeb if (keylen < 8) 4296b4cac81SBjoern A. Zeeb return (WLAN_CIPHER_SUITE_WEP40); 4306b4cac81SBjoern A. Zeeb else 4316b4cac81SBjoern A. Zeeb return (WLAN_CIPHER_SUITE_WEP104); 4326b4cac81SBjoern A. Zeeb break; 4336b4cac81SBjoern A. Zeeb case IEEE80211_CIPHER_AES_OCB: 4346b4cac81SBjoern A. Zeeb case IEEE80211_CIPHER_TKIPMIC: 4356b4cac81SBjoern A. Zeeb case IEEE80211_CIPHER_CKIP: 4366b4cac81SBjoern A. Zeeb case IEEE80211_CIPHER_NONE: 4376b4cac81SBjoern A. Zeeb printf("%s: unsupported cipher %#010x\n", __func__, cipher); 4386b4cac81SBjoern A. Zeeb break; 4396b4cac81SBjoern A. Zeeb default: 4406b4cac81SBjoern A. Zeeb printf("%s: unknown cipher %#010x\n", __func__, cipher); 4416b4cac81SBjoern A. Zeeb }; 4426b4cac81SBjoern A. Zeeb return (0); 4436b4cac81SBjoern A. Zeeb } 4446b4cac81SBjoern A. Zeeb #endif 4456b4cac81SBjoern A. Zeeb 4466b4cac81SBjoern A. Zeeb #ifdef __notyet__ 4476b4cac81SBjoern A. Zeeb static enum ieee80211_sta_state 4486b4cac81SBjoern A. Zeeb lkpi_net80211_state_to_sta_state(enum ieee80211_state state) 4496b4cac81SBjoern A. Zeeb { 4506b4cac81SBjoern A. Zeeb 4516b4cac81SBjoern A. Zeeb /* 4526b4cac81SBjoern A. Zeeb * XXX-BZ The net80211 states are "try to ..", the lkpi8011 states are 4536b4cac81SBjoern A. Zeeb * "done". Also ASSOC/AUTHORIZED are both "RUN" then? 4546b4cac81SBjoern A. Zeeb */ 4556b4cac81SBjoern A. Zeeb switch (state) { 4566b4cac81SBjoern A. Zeeb case IEEE80211_S_INIT: 4576b4cac81SBjoern A. Zeeb return (IEEE80211_STA_NOTEXIST); 4586b4cac81SBjoern A. Zeeb case IEEE80211_S_SCAN: 4596b4cac81SBjoern A. Zeeb return (IEEE80211_STA_NONE); 4606b4cac81SBjoern A. Zeeb case IEEE80211_S_AUTH: 4616b4cac81SBjoern A. Zeeb return (IEEE80211_STA_AUTH); 4626b4cac81SBjoern A. Zeeb case IEEE80211_S_ASSOC: 4636b4cac81SBjoern A. Zeeb return (IEEE80211_STA_ASSOC); 4646b4cac81SBjoern A. Zeeb case IEEE80211_S_RUN: 4656b4cac81SBjoern A. Zeeb return (IEEE80211_STA_AUTHORIZED); 4666b4cac81SBjoern A. Zeeb case IEEE80211_S_CAC: 4676b4cac81SBjoern A. Zeeb case IEEE80211_S_CSA: 4686b4cac81SBjoern A. Zeeb case IEEE80211_S_SLEEP: 4696b4cac81SBjoern A. Zeeb default: 4706b4cac81SBjoern A. Zeeb UNIMPLEMENTED; 4716b4cac81SBjoern A. Zeeb }; 4726b4cac81SBjoern A. Zeeb 4736b4cac81SBjoern A. Zeeb return (IEEE80211_STA_NOTEXIST); 4746b4cac81SBjoern A. Zeeb } 4756b4cac81SBjoern A. Zeeb #endif 4766b4cac81SBjoern A. Zeeb 4776b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel * 4786b4cac81SBjoern A. Zeeb lkpi_find_lkpi80211_chan(struct lkpi_hw *lhw, 4796b4cac81SBjoern A. Zeeb struct ieee80211_channel *c) 4806b4cac81SBjoern A. Zeeb { 4816b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 4826b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels; 4836b4cac81SBjoern A. Zeeb enum nl80211_band band; 4846b4cac81SBjoern A. Zeeb int i, nchans; 4856b4cac81SBjoern A. Zeeb 4866b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 4876b4cac81SBjoern A. Zeeb band = lkpi_net80211_chan_to_nl80211_band(c); 4886b4cac81SBjoern A. Zeeb if (hw->wiphy->bands[band] == NULL) 4896b4cac81SBjoern A. Zeeb return (NULL); 4906b4cac81SBjoern A. Zeeb 4916b4cac81SBjoern A. Zeeb nchans = hw->wiphy->bands[band]->n_channels; 4926b4cac81SBjoern A. Zeeb if (nchans <= 0) 4936b4cac81SBjoern A. Zeeb return (NULL); 4946b4cac81SBjoern A. Zeeb 4956b4cac81SBjoern A. Zeeb channels = hw->wiphy->bands[band]->channels; 4966b4cac81SBjoern A. Zeeb for (i = 0; i < nchans; i++) { 4976b4cac81SBjoern A. Zeeb if (channels[i].hw_value == c->ic_ieee) 4986b4cac81SBjoern A. Zeeb return (&channels[i]); 4996b4cac81SBjoern A. Zeeb } 5006b4cac81SBjoern A. Zeeb 5016b4cac81SBjoern A. Zeeb return (NULL); 5026b4cac81SBjoern A. Zeeb } 5036b4cac81SBjoern A. Zeeb 5046b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel * 5056b4cac81SBjoern A. Zeeb lkpi_get_lkpi80211_chan(struct ieee80211com *ic, struct ieee80211_node *ni) 5066b4cac81SBjoern A. Zeeb { 5076b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 5086b4cac81SBjoern A. Zeeb struct ieee80211_channel *c; 5096b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 5106b4cac81SBjoern A. Zeeb 5116b4cac81SBjoern A. Zeeb chan = NULL; 5126b4cac81SBjoern A. Zeeb if (ni != NULL && ni->ni_chan != IEEE80211_CHAN_ANYC) 5136b4cac81SBjoern A. Zeeb c = ni->ni_chan; 5146b4cac81SBjoern A. Zeeb else if (ic->ic_bsschan != IEEE80211_CHAN_ANYC) 5156b4cac81SBjoern A. Zeeb c = ic->ic_bsschan; 5166b4cac81SBjoern A. Zeeb else if (ic->ic_curchan != IEEE80211_CHAN_ANYC) 5176b4cac81SBjoern A. Zeeb c = ic->ic_curchan; 5186b4cac81SBjoern A. Zeeb else 5196b4cac81SBjoern A. Zeeb c = NULL; 5206b4cac81SBjoern A. Zeeb 5216b4cac81SBjoern A. Zeeb if (c != NULL && c != IEEE80211_CHAN_ANYC) { 5226b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 5236b4cac81SBjoern A. Zeeb chan = lkpi_find_lkpi80211_chan(lhw, c); 5246b4cac81SBjoern A. Zeeb } 5256b4cac81SBjoern A. Zeeb 5266b4cac81SBjoern A. Zeeb return (chan); 5276b4cac81SBjoern A. Zeeb } 5286b4cac81SBjoern A. Zeeb 5292e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel * 5302e183d99SBjoern A. Zeeb linuxkpi_ieee80211_get_channel(struct wiphy *wiphy, uint32_t freq) 5312e183d99SBjoern A. Zeeb { 5322e183d99SBjoern A. Zeeb enum nl80211_band band; 5332e183d99SBjoern A. Zeeb 5342e183d99SBjoern A. Zeeb for (band = 0; band < NUM_NL80211_BANDS; band++) { 5352e183d99SBjoern A. Zeeb struct ieee80211_supported_band *supband; 5362e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels; 5372e183d99SBjoern A. Zeeb int i; 5382e183d99SBjoern A. Zeeb 5392e183d99SBjoern A. Zeeb supband = wiphy->bands[band]; 5402e183d99SBjoern A. Zeeb if (supband == NULL || supband->n_channels == 0) 5412e183d99SBjoern A. Zeeb continue; 5422e183d99SBjoern A. Zeeb 5432e183d99SBjoern A. Zeeb channels = supband->channels; 5442e183d99SBjoern A. Zeeb for (i = 0; i < supband->n_channels; i++) { 5452e183d99SBjoern A. Zeeb if (channels[i].center_freq == freq) 5462e183d99SBjoern A. Zeeb return (&channels[i]); 5472e183d99SBjoern A. Zeeb } 5482e183d99SBjoern A. Zeeb } 5492e183d99SBjoern A. Zeeb 5502e183d99SBjoern A. Zeeb return (NULL); 5512e183d99SBjoern A. Zeeb } 5522e183d99SBjoern A. Zeeb 553b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO 5546b4cac81SBjoern A. Zeeb static int 5556b4cac81SBjoern A. Zeeb _lkpi_iv_key_set_delete(struct ieee80211vap *vap, const struct ieee80211_key *k, 5566b4cac81SBjoern A. Zeeb enum set_key_cmd cmd) 5576b4cac81SBjoern A. Zeeb { 5586b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 5596b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 5606b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 5616b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 5626b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 5636b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 5646b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 5656b4cac81SBjoern A. Zeeb struct ieee80211_key_conf *kc; 5666b4cac81SBjoern A. Zeeb int error; 5676b4cac81SBjoern A. Zeeb 5686b4cac81SBjoern A. Zeeb /* XXX TODO Check (k->wk_flags & IEEE80211_KEY_SWENCRYPT) and don't upload to driver/hw? */ 5696b4cac81SBjoern A. Zeeb 5706b4cac81SBjoern A. Zeeb ic = vap->iv_ic; 5716b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 5726b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 5736b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 5746b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 5756b4cac81SBjoern A. Zeeb 5766b4cac81SBjoern A. Zeeb memset(&kc, 0, sizeof(kc)); 5776b4cac81SBjoern A. Zeeb kc = malloc(sizeof(*kc) + k->wk_keylen, M_LKPI80211, M_WAITOK | M_ZERO); 5786b4cac81SBjoern A. Zeeb kc->cipher = lkpi_net80211_to_l80211_cipher_suite( 5796b4cac81SBjoern A. Zeeb k->wk_cipher->ic_cipher, k->wk_keylen); 5806b4cac81SBjoern A. Zeeb kc->keyidx = k->wk_keyix; 5816b4cac81SBjoern A. Zeeb #if 0 5826b4cac81SBjoern A. Zeeb kc->hw_key_idx = /* set by hw and needs to be passed for TX */; 5836b4cac81SBjoern A. Zeeb #endif 5846b4cac81SBjoern A. Zeeb atomic64_set(&kc->tx_pn, k->wk_keytsc); 5856b4cac81SBjoern A. Zeeb kc->keylen = k->wk_keylen; 5866b4cac81SBjoern A. Zeeb memcpy(kc->key, k->wk_key, k->wk_keylen); 5876b4cac81SBjoern A. Zeeb 5886b4cac81SBjoern A. Zeeb switch (kc->cipher) { 5896b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_CCMP: 5906b4cac81SBjoern A. Zeeb kc->iv_len = k->wk_cipher->ic_header; 5916b4cac81SBjoern A. Zeeb kc->icv_len = k->wk_cipher->ic_trailer; 5926b4cac81SBjoern A. Zeeb break; 5936b4cac81SBjoern A. Zeeb case WLAN_CIPHER_SUITE_TKIP: 5946b4cac81SBjoern A. Zeeb default: 5956b4cac81SBjoern A. Zeeb IMPROVE(); 5966b4cac81SBjoern A. Zeeb return (0); 5976b4cac81SBjoern A. Zeeb }; 5986b4cac81SBjoern A. Zeeb 5996b4cac81SBjoern A. Zeeb ni = vap->iv_bss; 6006b4cac81SBjoern A. Zeeb sta = ieee80211_find_sta(vif, ni->ni_bssid); 6016b4cac81SBjoern A. Zeeb if (sta != NULL) { 6026b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 6036b4cac81SBjoern A. Zeeb 6046b4cac81SBjoern A. Zeeb lsta = STA_TO_LSTA(sta); 6056b4cac81SBjoern A. Zeeb lsta->kc = kc; 6066b4cac81SBjoern A. Zeeb } 6076b4cac81SBjoern A. Zeeb 6086b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_set_key(hw, cmd, vif, sta, kc); 6096b4cac81SBjoern A. Zeeb if (error != 0) { 6106b4cac81SBjoern A. Zeeb /* XXX-BZ leaking kc currently */ 6116b4cac81SBjoern A. Zeeb ic_printf(ic, "%s: set_key failed: %d\n", __func__, error); 6126b4cac81SBjoern A. Zeeb return (0); 6136b4cac81SBjoern A. Zeeb } else { 6146b4cac81SBjoern A. Zeeb ic_printf(ic, "%s: set_key succeeded: keyidx %u hw_key_idx %u " 6156b4cac81SBjoern A. Zeeb "flags %#10x\n", __func__, 6166b4cac81SBjoern A. Zeeb kc->keyidx, kc->hw_key_idx, kc->flags); 6176b4cac81SBjoern A. Zeeb return (1); 6186b4cac81SBjoern A. Zeeb } 6196b4cac81SBjoern A. Zeeb } 6206b4cac81SBjoern A. Zeeb 6216b4cac81SBjoern A. Zeeb static int 6226b4cac81SBjoern A. Zeeb lkpi_iv_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k) 6236b4cac81SBjoern A. Zeeb { 6246b4cac81SBjoern A. Zeeb 6256b4cac81SBjoern A. Zeeb /* XXX-BZ one day we should replace this iterating over VIFs, or node list? */ 6266b4cac81SBjoern A. Zeeb return (_lkpi_iv_key_set_delete(vap, k, DISABLE_KEY)); 6276b4cac81SBjoern A. Zeeb } 6286b4cac81SBjoern A. Zeeb static int 6296b4cac81SBjoern A. Zeeb lkpi_iv_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k) 6306b4cac81SBjoern A. Zeeb { 6316b4cac81SBjoern A. Zeeb 6326b4cac81SBjoern A. Zeeb return (_lkpi_iv_key_set_delete(vap, k, SET_KEY)); 6336b4cac81SBjoern A. Zeeb } 6346b4cac81SBjoern A. Zeeb #endif 6356b4cac81SBjoern A. Zeeb 6366b4cac81SBjoern A. Zeeb static u_int 6376b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast_copy(void *arg, struct sockaddr_dl *sdl, u_int cnt) 6386b4cac81SBjoern A. Zeeb { 6396b4cac81SBjoern A. Zeeb struct netdev_hw_addr_list *mc_list; 6406b4cac81SBjoern A. Zeeb struct netdev_hw_addr *addr; 6416b4cac81SBjoern A. Zeeb 6426b4cac81SBjoern A. Zeeb KASSERT(arg != NULL && sdl != NULL, ("%s: arg %p sdl %p cnt %u\n", 6436b4cac81SBjoern A. Zeeb __func__, arg, sdl, cnt)); 6446b4cac81SBjoern A. Zeeb 6456b4cac81SBjoern A. Zeeb mc_list = arg; 6466b4cac81SBjoern A. Zeeb /* If it is on the list already skip it. */ 6476b4cac81SBjoern A. Zeeb netdev_hw_addr_list_for_each(addr, mc_list) { 6486b4cac81SBjoern A. Zeeb if (!memcmp(addr->addr, LLADDR(sdl), sdl->sdl_alen)) 6496b4cac81SBjoern A. Zeeb return (0); 6506b4cac81SBjoern A. Zeeb } 6516b4cac81SBjoern A. Zeeb 6526b4cac81SBjoern A. Zeeb addr = malloc(sizeof(*addr), M_LKPI80211, M_NOWAIT | M_ZERO); 6536b4cac81SBjoern A. Zeeb if (addr == NULL) 6546b4cac81SBjoern A. Zeeb return (0); 6556b4cac81SBjoern A. Zeeb 6566b4cac81SBjoern A. Zeeb INIT_LIST_HEAD(&addr->addr_list); 6576b4cac81SBjoern A. Zeeb memcpy(addr->addr, LLADDR(sdl), sdl->sdl_alen); 6586b4cac81SBjoern A. Zeeb /* XXX this should be a netdev function? */ 6596b4cac81SBjoern A. Zeeb list_add(&addr->addr_list, &mc_list->addr_list); 6606b4cac81SBjoern A. Zeeb mc_list->count++; 6616b4cac81SBjoern A. Zeeb 6629d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 6639d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 6646b4cac81SBjoern A. Zeeb printf("%s:%d: mc_list count %d: added %6D\n", 6656b4cac81SBjoern A. Zeeb __func__, __LINE__, mc_list->count, addr->addr, ":"); 6669d9ba2b7SBjoern A. Zeeb #endif 6676b4cac81SBjoern A. Zeeb 6686b4cac81SBjoern A. Zeeb return (1); 6696b4cac81SBjoern A. Zeeb } 6706b4cac81SBjoern A. Zeeb 6716b4cac81SBjoern A. Zeeb static void 6726b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(struct ieee80211com *ic, bool force) 6736b4cac81SBjoern A. Zeeb { 6746b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 6756b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 6766b4cac81SBjoern A. Zeeb struct netdev_hw_addr_list mc_list; 6776b4cac81SBjoern A. Zeeb struct list_head *le, *next; 6786b4cac81SBjoern A. Zeeb struct netdev_hw_addr *addr; 6796b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 6806b4cac81SBjoern A. Zeeb u64 mc; 6816b4cac81SBjoern A. Zeeb unsigned int changed_flags, total_flags; 6826b4cac81SBjoern A. Zeeb 6836b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 6846b4cac81SBjoern A. Zeeb 6856b4cac81SBjoern A. Zeeb if (lhw->ops->prepare_multicast == NULL || 6866b4cac81SBjoern A. Zeeb lhw->ops->configure_filter == NULL) 6876b4cac81SBjoern A. Zeeb return; 6886b4cac81SBjoern A. Zeeb 6896b4cac81SBjoern A. Zeeb if (!lhw->update_mc && !force) 6906b4cac81SBjoern A. Zeeb return; 6916b4cac81SBjoern A. Zeeb 6926b4cac81SBjoern A. Zeeb changed_flags = total_flags = 0; 6936b4cac81SBjoern A. Zeeb mc_list.count = 0; 6946b4cac81SBjoern A. Zeeb INIT_LIST_HEAD(&mc_list.addr_list); 6956b4cac81SBjoern A. Zeeb if (ic->ic_allmulti == 0) { 6966b4cac81SBjoern A. Zeeb TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next) 6976b4cac81SBjoern A. Zeeb if_foreach_llmaddr(vap->iv_ifp, 6986b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast_copy, &mc_list); 6996b4cac81SBjoern A. Zeeb } else { 7006b4cac81SBjoern A. Zeeb changed_flags |= FIF_ALLMULTI; 7016b4cac81SBjoern A. Zeeb } 7026b4cac81SBjoern A. Zeeb 7036b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 7046b4cac81SBjoern A. Zeeb mc = lkpi_80211_mo_prepare_multicast(hw, &mc_list); 7056b4cac81SBjoern A. Zeeb /* 7066b4cac81SBjoern A. Zeeb * XXX-BZ make sure to get this sorted what is a change, 7076b4cac81SBjoern A. Zeeb * what gets all set; what was already set? 7086b4cac81SBjoern A. Zeeb */ 7096b4cac81SBjoern A. Zeeb total_flags = changed_flags; 7106b4cac81SBjoern A. Zeeb lkpi_80211_mo_configure_filter(hw, changed_flags, &total_flags, mc); 7116b4cac81SBjoern A. Zeeb 7129d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 7139d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 7146b4cac81SBjoern A. Zeeb printf("%s: changed_flags %#06x count %d total_flags %#010x\n", 7156b4cac81SBjoern A. Zeeb __func__, changed_flags, mc_list.count, total_flags); 7169d9ba2b7SBjoern A. Zeeb #endif 7176b4cac81SBjoern A. Zeeb 7186b4cac81SBjoern A. Zeeb if (mc_list.count != 0) { 7196b4cac81SBjoern A. Zeeb list_for_each_safe(le, next, &mc_list.addr_list) { 7206b4cac81SBjoern A. Zeeb addr = list_entry(le, struct netdev_hw_addr, addr_list); 7216b4cac81SBjoern A. Zeeb free(addr, M_LKPI80211); 7226b4cac81SBjoern A. Zeeb mc_list.count--; 7236b4cac81SBjoern A. Zeeb } 7246b4cac81SBjoern A. Zeeb } 7256b4cac81SBjoern A. Zeeb KASSERT(mc_list.count == 0, ("%s: mc_list %p count %d != 0\n", 7266b4cac81SBjoern A. Zeeb __func__, &mc_list, mc_list.count)); 7276b4cac81SBjoern A. Zeeb } 7286b4cac81SBjoern A. Zeeb 729fa8f007dSBjoern A. Zeeb static enum ieee80211_bss_changed 730fa8f007dSBjoern A. Zeeb lkpi_update_dtim_tsf(struct ieee80211_vif *vif, struct ieee80211_node *ni, 731fa8f007dSBjoern A. Zeeb struct ieee80211vap *vap, const char *_f, int _l) 732fa8f007dSBjoern A. Zeeb { 733fa8f007dSBjoern A. Zeeb enum ieee80211_bss_changed bss_changed; 734fa8f007dSBjoern A. Zeeb 735fa8f007dSBjoern A. Zeeb bss_changed = 0; 736fa8f007dSBjoern A. Zeeb 7379d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 7389d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 739fa8f007dSBjoern A. Zeeb printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u " 740fa8f007dSBjoern A. Zeeb "dtim_period %u sync_dtim_count %u sync_tsf %ju " 741fa8f007dSBjoern A. Zeeb "sync_device_ts %u bss_changed %#08x\n", 742fa8f007dSBjoern A. Zeeb __func__, __LINE__, _f, _l, 743fa8f007dSBjoern A. Zeeb vif->bss_conf.assoc, vif->bss_conf.aid, 744fa8f007dSBjoern A. Zeeb vif->bss_conf.beacon_int, vif->bss_conf.dtim_period, 745fa8f007dSBjoern A. Zeeb vif->bss_conf.sync_dtim_count, 746fa8f007dSBjoern A. Zeeb (uintmax_t)vif->bss_conf.sync_tsf, 747fa8f007dSBjoern A. Zeeb vif->bss_conf.sync_device_ts, 748fa8f007dSBjoern A. Zeeb bss_changed); 7499d9ba2b7SBjoern A. Zeeb #endif 750fa8f007dSBjoern A. Zeeb 751fa8f007dSBjoern A. Zeeb if (vif->bss_conf.beacon_int != ni->ni_intval) { 752fa8f007dSBjoern A. Zeeb vif->bss_conf.beacon_int = ni->ni_intval; 753fa8f007dSBjoern A. Zeeb /* iwlwifi FW bug workaround; iwl_mvm_mac_sta_state. */ 754fa8f007dSBjoern A. Zeeb if (vif->bss_conf.beacon_int < 16) 755fa8f007dSBjoern A. Zeeb vif->bss_conf.beacon_int = 16; 756fa8f007dSBjoern A. Zeeb bss_changed |= BSS_CHANGED_BEACON_INT; 757fa8f007dSBjoern A. Zeeb } 758fa8f007dSBjoern A. Zeeb if (vif->bss_conf.dtim_period != vap->iv_dtim_period && 759fa8f007dSBjoern A. Zeeb vap->iv_dtim_period > 0) { 760fa8f007dSBjoern A. Zeeb vif->bss_conf.dtim_period = vap->iv_dtim_period; 761fa8f007dSBjoern A. Zeeb bss_changed |= BSS_CHANGED_BEACON_INFO; 762fa8f007dSBjoern A. Zeeb } 763fa8f007dSBjoern A. Zeeb 764fa8f007dSBjoern A. Zeeb vif->bss_conf.sync_dtim_count = vap->iv_dtim_count; 765fa8f007dSBjoern A. Zeeb vif->bss_conf.sync_tsf = le64toh(ni->ni_tstamp.tsf); 766fa8f007dSBjoern A. Zeeb /* vif->bss_conf.sync_device_ts = set in linuxkpi_ieee80211_rx. */ 767fa8f007dSBjoern A. Zeeb 7689d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 7699d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 770fa8f007dSBjoern A. Zeeb printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u " 771fa8f007dSBjoern A. Zeeb "dtim_period %u sync_dtim_count %u sync_tsf %ju " 772fa8f007dSBjoern A. Zeeb "sync_device_ts %u bss_changed %#08x\n", 773fa8f007dSBjoern A. Zeeb __func__, __LINE__, _f, _l, 774fa8f007dSBjoern A. Zeeb vif->bss_conf.assoc, vif->bss_conf.aid, 775fa8f007dSBjoern A. Zeeb vif->bss_conf.beacon_int, vif->bss_conf.dtim_period, 776fa8f007dSBjoern A. Zeeb vif->bss_conf.sync_dtim_count, 777fa8f007dSBjoern A. Zeeb (uintmax_t)vif->bss_conf.sync_tsf, 778fa8f007dSBjoern A. Zeeb vif->bss_conf.sync_device_ts, 779fa8f007dSBjoern A. Zeeb bss_changed); 7809d9ba2b7SBjoern A. Zeeb #endif 781fa8f007dSBjoern A. Zeeb 782fa8f007dSBjoern A. Zeeb return (bss_changed); 783fa8f007dSBjoern A. Zeeb } 784fa8f007dSBjoern A. Zeeb 7856b4cac81SBjoern A. Zeeb static void 7866b4cac81SBjoern A. Zeeb lkpi_stop_hw_scan(struct lkpi_hw *lhw, struct ieee80211_vif *vif) 7876b4cac81SBjoern A. Zeeb { 7886b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 7896b4cac81SBjoern A. Zeeb int error; 7906b4cac81SBjoern A. Zeeb 791a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) == 0) 7926b4cac81SBjoern A. Zeeb return; 7936b4cac81SBjoern A. Zeeb 7946b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 7956b4cac81SBjoern A. Zeeb 796bec76628SBjoern A. Zeeb IEEE80211_UNLOCK(lhw->ic); 797bec76628SBjoern A. Zeeb LKPI_80211_LHW_LOCK(lhw); 7986b4cac81SBjoern A. Zeeb /* Need to cancel the scan. */ 7996b4cac81SBjoern A. Zeeb lkpi_80211_mo_cancel_hw_scan(hw, vif); 8006b4cac81SBjoern A. Zeeb 8016b4cac81SBjoern A. Zeeb /* Need to make sure we see ieee80211_scan_completed. */ 8026b4cac81SBjoern A. Zeeb error = msleep(lhw, &lhw->mtx, 0, "lhwscanstop", hz/2); 803bec76628SBjoern A. Zeeb LKPI_80211_LHW_UNLOCK(lhw); 804bec76628SBjoern A. Zeeb IEEE80211_LOCK(lhw->ic); 8056b4cac81SBjoern A. Zeeb 806a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0) 8076b4cac81SBjoern A. Zeeb ic_printf(lhw->ic, "%s: failed to cancel scan: %d (%p, %p)\n", 8086b4cac81SBjoern A. Zeeb __func__, error, lhw, vif); 8096b4cac81SBjoern A. Zeeb } 8106b4cac81SBjoern A. Zeeb 8116b4cac81SBjoern A. Zeeb static void 812086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(struct ieee80211_hw *hw, bool new) 813086be6a8SBjoern A. Zeeb { 814086be6a8SBjoern A. Zeeb struct lkpi_hw *lhw; 815086be6a8SBjoern A. Zeeb int error; 816086be6a8SBjoern A. Zeeb bool old; 817086be6a8SBjoern A. Zeeb 818086be6a8SBjoern A. Zeeb old = hw->conf.flags & IEEE80211_CONF_IDLE; 819086be6a8SBjoern A. Zeeb if (old == new) 820086be6a8SBjoern A. Zeeb return; 821086be6a8SBjoern A. Zeeb 822086be6a8SBjoern A. Zeeb hw->conf.flags ^= IEEE80211_CONF_IDLE; 823086be6a8SBjoern A. Zeeb error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_IDLE); 824086be6a8SBjoern A. Zeeb if (error != 0 && error != EOPNOTSUPP) { 825086be6a8SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 826086be6a8SBjoern A. Zeeb ic_printf(lhw->ic, "ERROR: %s: config %#0x returned %d\n", 827086be6a8SBjoern A. Zeeb __func__, IEEE80211_CONF_CHANGE_IDLE, error); 828086be6a8SBjoern A. Zeeb } 829086be6a8SBjoern A. Zeeb } 830086be6a8SBjoern A. Zeeb 831086be6a8SBjoern A. Zeeb static void 8326b4cac81SBjoern A. Zeeb lkpi_disassoc(struct ieee80211_sta *sta, struct ieee80211_vif *vif, 8336b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw) 8346b4cac81SBjoern A. Zeeb { 8356b4cac81SBjoern A. Zeeb sta->aid = 0; 8366b4cac81SBjoern A. Zeeb if (vif->bss_conf.assoc) { 8376b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 8386b4cac81SBjoern A. Zeeb enum ieee80211_bss_changed changed; 8396b4cac81SBjoern A. Zeeb 8406b4cac81SBjoern A. Zeeb lhw->update_mc = true; 8416b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(lhw->ic, true); 8426b4cac81SBjoern A. Zeeb 8436b4cac81SBjoern A. Zeeb changed = 0; 8446b4cac81SBjoern A. Zeeb vif->bss_conf.assoc = false; 8456b4cac81SBjoern A. Zeeb vif->bss_conf.aid = 0; 8466b4cac81SBjoern A. Zeeb changed |= BSS_CHANGED_ASSOC; 847d9f59799SBjoern A. Zeeb /* 848d9f59799SBjoern A. Zeeb * This will remove the sta from firmware for iwlwifi. 849d9f59799SBjoern A. Zeeb * So confusing that they use state and flags and ... ^%$%#%$^. 850d9f59799SBjoern A. Zeeb */ 8516b4cac81SBjoern A. Zeeb IMPROVE(); 8526b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 8536b4cac81SBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, 8546b4cac81SBjoern A. Zeeb changed); 855086be6a8SBjoern A. Zeeb 856086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(hw, true); 8576b4cac81SBjoern A. Zeeb } 8586b4cac81SBjoern A. Zeeb } 8596b4cac81SBjoern A. Zeeb 8606b4cac81SBjoern A. Zeeb static void 8616b4cac81SBjoern A. Zeeb lkpi_wake_tx_queues(struct ieee80211_hw *hw, struct ieee80211_sta *sta, 8626b4cac81SBjoern A. Zeeb bool dequeue_seen, bool no_emptyq) 8636b4cac81SBjoern A. Zeeb { 8646b4cac81SBjoern A. Zeeb struct lkpi_txq *ltxq; 8656b4cac81SBjoern A. Zeeb int tid; 8666b4cac81SBjoern A. Zeeb 8676b4cac81SBjoern A. Zeeb /* Wake up all queues to know they are allocated in the driver. */ 8686b4cac81SBjoern A. Zeeb for (tid = 0; tid < nitems(sta->txq); tid++) { 8696b4cac81SBjoern A. Zeeb 8706b4cac81SBjoern A. Zeeb if (tid == IEEE80211_NUM_TIDS) { 8716b4cac81SBjoern A. Zeeb IMPROVE("station specific?"); 8726b4cac81SBjoern A. Zeeb if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ)) 8736b4cac81SBjoern A. Zeeb continue; 8746b4cac81SBjoern A. Zeeb } else if (tid >= hw->queues) 8756b4cac81SBjoern A. Zeeb continue; 8766b4cac81SBjoern A. Zeeb 8776b4cac81SBjoern A. Zeeb if (sta->txq[tid] == NULL) 8786b4cac81SBjoern A. Zeeb continue; 8796b4cac81SBjoern A. Zeeb 8806b4cac81SBjoern A. Zeeb ltxq = TXQ_TO_LTXQ(sta->txq[tid]); 8816b4cac81SBjoern A. Zeeb if (dequeue_seen && !ltxq->seen_dequeue) 8826b4cac81SBjoern A. Zeeb continue; 8836b4cac81SBjoern A. Zeeb 8846b4cac81SBjoern A. Zeeb if (no_emptyq && skb_queue_empty(<xq->skbq)) 8856b4cac81SBjoern A. Zeeb continue; 8866b4cac81SBjoern A. Zeeb 8876b4cac81SBjoern A. Zeeb lkpi_80211_mo_wake_tx_queue(hw, sta->txq[tid]); 8886b4cac81SBjoern A. Zeeb } 8896b4cac81SBjoern A. Zeeb } 8906b4cac81SBjoern A. Zeeb 8916b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 8926b4cac81SBjoern A. Zeeb 8936b4cac81SBjoern A. Zeeb static int 8946b4cac81SBjoern A. Zeeb lkpi_sta_state_do_nada(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 8956b4cac81SBjoern A. Zeeb { 8966b4cac81SBjoern A. Zeeb 8976b4cac81SBjoern A. Zeeb return (0); 8986b4cac81SBjoern A. Zeeb } 8996b4cac81SBjoern A. Zeeb 9006b4cac81SBjoern A. Zeeb /* lkpi_iv_newstate() handles the stop scan case generally. */ 9016b4cac81SBjoern A. Zeeb #define lkpi_sta_scan_to_init(_v, _n, _a) lkpi_sta_state_do_nada(_v, _n, _a) 9026b4cac81SBjoern A. Zeeb 9036b4cac81SBjoern A. Zeeb static int 9046b4cac81SBjoern A. Zeeb lkpi_sta_scan_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 9056b4cac81SBjoern A. Zeeb { 9066b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 9076b4cac81SBjoern A. Zeeb struct ieee80211_chanctx_conf *conf; 9086b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 9096b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 9106b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 9116b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 9126b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 9136b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 9146b4cac81SBjoern A. Zeeb enum ieee80211_bss_changed bss_changed; 9156b4cac81SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 9166b4cac81SBjoern A. Zeeb uint32_t changed; 9176b4cac81SBjoern A. Zeeb int error; 9186b4cac81SBjoern A. Zeeb 9196b4cac81SBjoern A. Zeeb chan = lkpi_get_lkpi80211_chan(vap->iv_ic, vap->iv_bss); 9206b4cac81SBjoern A. Zeeb if (chan == NULL) { 9216b4cac81SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: failed to get channel\n", __func__); 9226b4cac81SBjoern A. Zeeb return (ESRCH); 9236b4cac81SBjoern A. Zeeb } 9246b4cac81SBjoern A. Zeeb 9256b4cac81SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 9266b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 9276b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 9286b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 9296b4cac81SBjoern A. Zeeb 930d9f59799SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 931d9f59799SBjoern A. Zeeb 9326b4cac81SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 9336b4cac81SBjoern A. Zeeb 9346b4cac81SBjoern A. Zeeb /* Add chanctx (or if exists, change it). */ 9356b4cac81SBjoern A. Zeeb if (vif->chanctx_conf != NULL) { 9366b4cac81SBjoern A. Zeeb conf = vif->chanctx_conf; 9376b4cac81SBjoern A. Zeeb IMPROVE("diff changes for changed, working on live copy, rcu"); 9386b4cac81SBjoern A. Zeeb } else { 9396b4cac81SBjoern A. Zeeb /* Keep separate alloc as in Linux this is rcu managed? */ 9406b4cac81SBjoern A. Zeeb conf = malloc(sizeof(*conf) + hw->chanctx_data_size, 9416b4cac81SBjoern A. Zeeb M_LKPI80211, M_WAITOK | M_ZERO); 9426b4cac81SBjoern A. Zeeb } 9436b4cac81SBjoern A. Zeeb 9446b4cac81SBjoern A. Zeeb conf->rx_chains_dynamic = 1; 9456b4cac81SBjoern A. Zeeb conf->rx_chains_static = 1; 9466b4cac81SBjoern A. Zeeb conf->radar_enabled = 9476b4cac81SBjoern A. Zeeb (chan->flags & IEEE80211_CHAN_RADAR) ? true : false; 9486b4cac81SBjoern A. Zeeb conf->def.chan = chan; 9496b4cac81SBjoern A. Zeeb conf->def.width = NL80211_CHAN_WIDTH_20_NOHT; 9506b4cac81SBjoern A. Zeeb conf->def.center_freq1 = chan->center_freq; 9516b4cac81SBjoern A. Zeeb conf->def.center_freq2 = 0; 9526b4cac81SBjoern A. Zeeb /* Responder ... */ 9536b4cac81SBjoern A. Zeeb conf->min_def.chan = chan; 9546b4cac81SBjoern A. Zeeb conf->min_def.width = NL80211_CHAN_WIDTH_20_NOHT; 9556b4cac81SBjoern A. Zeeb conf->min_def.center_freq1 = chan->center_freq; 9566b4cac81SBjoern A. Zeeb conf->min_def.center_freq2 = 0; 9576b4cac81SBjoern A. Zeeb IMPROVE("currently 20_NOHT only"); 9586b4cac81SBjoern A. Zeeb 9596b4cac81SBjoern A. Zeeb error = 0; 9606b4cac81SBjoern A. Zeeb if (vif->chanctx_conf != NULL) { 9616b4cac81SBjoern A. Zeeb changed = IEEE80211_CHANCTX_CHANGE_MIN_WIDTH; 9626b4cac81SBjoern A. Zeeb changed |= IEEE80211_CHANCTX_CHANGE_RADAR; 9636b4cac81SBjoern A. Zeeb changed |= IEEE80211_CHANCTX_CHANGE_RX_CHAINS; 9646b4cac81SBjoern A. Zeeb changed |= IEEE80211_CHANCTX_CHANGE_WIDTH; 9656b4cac81SBjoern A. Zeeb lkpi_80211_mo_change_chanctx(hw, conf, changed); 9666b4cac81SBjoern A. Zeeb } else { 9676b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_add_chanctx(hw, conf); 9686b4cac81SBjoern A. Zeeb if (error == 0 || error == EOPNOTSUPP) { 9696b4cac81SBjoern A. Zeeb vif->bss_conf.chandef.chan = conf->def.chan; 9706b4cac81SBjoern A. Zeeb vif->bss_conf.chandef.width = conf->def.width; 9716b4cac81SBjoern A. Zeeb vif->bss_conf.chandef.center_freq1 = 9726b4cac81SBjoern A. Zeeb conf->def.center_freq1; 9736b4cac81SBjoern A. Zeeb vif->bss_conf.chandef.center_freq2 = 9746b4cac81SBjoern A. Zeeb conf->def.center_freq2; 9756b4cac81SBjoern A. Zeeb } else { 9766b4cac81SBjoern A. Zeeb goto out; 9776b4cac81SBjoern A. Zeeb } 9786b4cac81SBjoern A. Zeeb /* Assign vif chanctx. */ 9796b4cac81SBjoern A. Zeeb if (error == 0) 9806b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_assign_vif_chanctx(hw, vif, conf); 9816b4cac81SBjoern A. Zeeb if (error == EOPNOTSUPP) 9826b4cac81SBjoern A. Zeeb error = 0; 9836b4cac81SBjoern A. Zeeb if (error != 0) { 9846b4cac81SBjoern A. Zeeb lkpi_80211_mo_remove_chanctx(hw, conf); 9856b4cac81SBjoern A. Zeeb free(conf, M_LKPI80211); 9866b4cac81SBjoern A. Zeeb goto out; 9876b4cac81SBjoern A. Zeeb } 9886b4cac81SBjoern A. Zeeb } 9896b4cac81SBjoern A. Zeeb IMPROVE("update radiotap chan fields too"); 9906b4cac81SBjoern A. Zeeb 9916b4cac81SBjoern A. Zeeb /* Set bss info (bss_info_changed). */ 9926b4cac81SBjoern A. Zeeb bss_changed = 0; 993caaa79c3SBjoern A. Zeeb vif->bss_conf.bssid = ni->ni_bssid; 9946b4cac81SBjoern A. Zeeb bss_changed |= BSS_CHANGED_BSSID; 9956b4cac81SBjoern A. Zeeb vif->bss_conf.txpower = ni->ni_txpower; 9966b4cac81SBjoern A. Zeeb bss_changed |= BSS_CHANGED_TXPOWER; 9976b4cac81SBjoern A. Zeeb vif->bss_conf.idle = false; 9986b4cac81SBjoern A. Zeeb bss_changed |= BSS_CHANGED_IDLE; 999c8dafefaSBjoern A. Zeeb 10006b4cac81SBjoern A. Zeeb /* Should almost assert it is this. */ 10016b4cac81SBjoern A. Zeeb vif->bss_conf.assoc = false; 10026b4cac81SBjoern A. Zeeb vif->bss_conf.aid = 0; 1003fa8f007dSBjoern A. Zeeb 1004fa8f007dSBjoern A. Zeeb bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__); 1005fa8f007dSBjoern A. Zeeb 10066b4cac81SBjoern A. Zeeb /* RATES */ 10076b4cac81SBjoern A. Zeeb IMPROVE("bss info: not all needs to come now and rates are missing"); 10086b4cac81SBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed); 10096b4cac81SBjoern A. Zeeb 1010d9f59799SBjoern A. Zeeb /* 1011d9f59799SBjoern A. Zeeb * This is a bandaid for now. If we went through (*iv_update_bss)() 1012d9f59799SBjoern A. Zeeb * and then removed the lsta we end up here without a lsta and have 1013d9f59799SBjoern A. Zeeb * to manually allocate and link it in as lkpi_ic_node_alloc()/init() 1014d9f59799SBjoern A. Zeeb * would normally do. 1015d9f59799SBjoern A. Zeeb * XXX-BZ I do not like this but currently we have no good way of 1016d9f59799SBjoern A. Zeeb * intercepting the bss swap and state changes and packets going out 1017d9f59799SBjoern A. Zeeb * workflow so live with this. It is a compat layer after all. 1018d9f59799SBjoern A. Zeeb */ 1019d9f59799SBjoern A. Zeeb if (ni->ni_drv_data == NULL) { 1020d9f59799SBjoern A. Zeeb lsta = lkpi_lsta_alloc(vap, ni->ni_macaddr, hw, ni); 1021d9f59799SBjoern A. Zeeb if (lsta == NULL) { 1022d9f59799SBjoern A. Zeeb error = ENOMEM; 1023d9f59799SBjoern A. Zeeb goto out; 1024d9f59799SBjoern A. Zeeb } 1025d9f59799SBjoern A. Zeeb lsta->ni = ieee80211_ref_node(ni); 1026d9f59799SBjoern A. Zeeb } else { 10276b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 1028d9f59799SBjoern A. Zeeb } 1029e24e8103SBjoern A. Zeeb 1030e24e8103SBjoern A. Zeeb /* Insert the [l]sta into the list of known stations. */ 1031e24e8103SBjoern A. Zeeb LKPI_80211_LVIF_LOCK(lvif); 1032e24e8103SBjoern A. Zeeb TAILQ_INSERT_TAIL(&lvif->lsta_head, lsta, lsta_entry); 1033e24e8103SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 1034e24e8103SBjoern A. Zeeb 1035d9f59799SBjoern A. Zeeb /* Add (or adjust) sta and change state (from NOTEXIST) to NONE. */ 10366b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 10376b4cac81SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_NOTEXIST, ("%s: lsta %p state not " 10386b4cac81SBjoern A. Zeeb "NOTEXIST: %#x\n", __func__, lsta, lsta->state)); 1039e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE); 10406b4cac81SBjoern A. Zeeb if (error != 0) { 10416b4cac81SBjoern A. Zeeb IMPROVE("do we need to undo the chan ctx?"); 10426b4cac81SBjoern A. Zeeb goto out; 10436b4cac81SBjoern A. Zeeb } 10446b4cac81SBjoern A. Zeeb #if 0 10456b4cac81SBjoern A. Zeeb lsta->added_to_drv = true; /* mo manages. */ 10466b4cac81SBjoern A. Zeeb #endif 10476b4cac81SBjoern A. Zeeb 10489d9ba2b7SBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 10499d9ba2b7SBjoern A. Zeeb 10506b4cac81SBjoern A. Zeeb /* 10516b4cac81SBjoern A. Zeeb * Wakeup all queues now that sta is there so we have as much time to 10526b4cac81SBjoern A. Zeeb * possibly prepare the queue in the driver to be ready for the 1st 10536b4cac81SBjoern A. Zeeb * packet; lkpi_80211_txq_tx_one() still has a workaround as there 10546b4cac81SBjoern A. Zeeb * is no guarantee or way to check. 1055d9f59799SBjoern A. Zeeb * XXX-BZ and by now we know that this does not work on all drivers 1056d9f59799SBjoern A. Zeeb * for all queues. 10576b4cac81SBjoern A. Zeeb */ 1058e7fe0373SBjoern A. Zeeb lkpi_wake_tx_queues(hw, LSTA_TO_STA(lsta), false, false); 10596b4cac81SBjoern A. Zeeb 10606b4cac81SBjoern A. Zeeb /* Start mgd_prepare_tx. */ 10616b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 10626b4cac81SBjoern A. Zeeb prep_tx_info.duration = PREP_TX_INFO_DURATION; 10636b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info); 10646b4cac81SBjoern A. Zeeb lsta->in_mgd = true; 10656b4cac81SBjoern A. Zeeb 10666b4cac81SBjoern A. Zeeb /* 10676b4cac81SBjoern A. Zeeb * What is going to happen next: 10686b4cac81SBjoern A. Zeeb * - <twiddle> .. we should end up in "auth_to_assoc" 10696b4cac81SBjoern A. Zeeb * - event_callback 10706b4cac81SBjoern A. Zeeb * - update sta_state (NONE to AUTH) 10716b4cac81SBjoern A. Zeeb * - mgd_complete_tx 10726b4cac81SBjoern A. Zeeb * (ideally we'd do that on a callback for something else ...) 10736b4cac81SBjoern A. Zeeb */ 10746b4cac81SBjoern A. Zeeb 10756b4cac81SBjoern A. Zeeb out: 10766b4cac81SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 10776b4cac81SBjoern A. Zeeb if (ni != NULL) 10786b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 10796b4cac81SBjoern A. Zeeb return (error); 10806b4cac81SBjoern A. Zeeb } 10816b4cac81SBjoern A. Zeeb 10826b4cac81SBjoern A. Zeeb static int 10836b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 10846b4cac81SBjoern A. Zeeb { 10856b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 10866b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 10876b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 10886b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 10896b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 10906b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 10916b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 10926b4cac81SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 10936b4cac81SBjoern A. Zeeb int error; 10946b4cac81SBjoern A. Zeeb 10956b4cac81SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 10966b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 10976b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 10986b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 10996b4cac81SBjoern A. Zeeb 11006b4cac81SBjoern A. Zeeb /* Keep ni around. */ 11016b4cac81SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 11026b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 11036b4cac81SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 11046b4cac81SBjoern A. Zeeb 110567674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 11066b4cac81SBjoern A. Zeeb 11076b4cac81SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 11086b4cac81SBjoern A. Zeeb 1109d9f59799SBjoern A. Zeeb /* flush, drop. */ 1110d9f59799SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), true); 1111d9f59799SBjoern A. Zeeb 11126b4cac81SBjoern A. Zeeb /* Wake tx queues to get packet(s) out. */ 11136b4cac81SBjoern A. Zeeb lkpi_wake_tx_queues(hw, sta, true, true); 11146b4cac81SBjoern A. Zeeb 11156b4cac81SBjoern A. Zeeb /* flush, no drop */ 11166b4cac81SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), false); 11176b4cac81SBjoern A. Zeeb 11186b4cac81SBjoern A. Zeeb /* End mgd_complete_tx. */ 11196b4cac81SBjoern A. Zeeb if (lsta->in_mgd) { 11206b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 11216b4cac81SBjoern A. Zeeb prep_tx_info.success = false; 11226b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info); 11236b4cac81SBjoern A. Zeeb lsta->in_mgd = false; 11246b4cac81SBjoern A. Zeeb } 11256b4cac81SBjoern A. Zeeb 11266b4cac81SBjoern A. Zeeb /* sync_rx_queues */ 11276b4cac81SBjoern A. Zeeb lkpi_80211_mo_sync_rx_queues(hw); 11286b4cac81SBjoern A. Zeeb 11296b4cac81SBjoern A. Zeeb /* sta_pre_rcu_remove */ 11306b4cac81SBjoern A. Zeeb lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta); 1131d9f59799SBjoern A. Zeeb 1132d9f59799SBjoern A. Zeeb /* Take the station down. */ 11336b4cac81SBjoern A. Zeeb 11346b4cac81SBjoern A. Zeeb /* Adjust sta and change state (from NONE) to NOTEXIST. */ 11356b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 11366b4cac81SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not " 1137d9f59799SBjoern A. Zeeb "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg)); 1138e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST); 11396b4cac81SBjoern A. Zeeb if (error != 0) { 11406b4cac81SBjoern A. Zeeb IMPROVE("do we need to undo the chan ctx?"); 11416b4cac81SBjoern A. Zeeb goto out; 11426b4cac81SBjoern A. Zeeb } 11436b4cac81SBjoern A. Zeeb #if 0 11446b4cac81SBjoern A. Zeeb lsta->added_to_drv = false; /* mo manages. */ 11456b4cac81SBjoern A. Zeeb #endif 11466b4cac81SBjoern A. Zeeb 114767674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 11486b4cac81SBjoern A. Zeeb 1149d9f59799SBjoern A. Zeeb lkpi_lsta_remove(lsta, lvif); 1150d9f59799SBjoern A. Zeeb 1151d9f59799SBjoern A. Zeeb /* conf_tx */ 1152d9f59799SBjoern A. Zeeb 1153d9f59799SBjoern A. Zeeb /* Take the chan ctx down. */ 11546b4cac81SBjoern A. Zeeb if (vif->chanctx_conf != NULL) { 11556b4cac81SBjoern A. Zeeb struct ieee80211_chanctx_conf *conf; 11566b4cac81SBjoern A. Zeeb 11576b4cac81SBjoern A. Zeeb conf = vif->chanctx_conf; 11586b4cac81SBjoern A. Zeeb /* Remove vif context. */ 11596b4cac81SBjoern A. Zeeb lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->chanctx_conf); 11606b4cac81SBjoern A. Zeeb /* NB: vif->chanctx_conf is NULL now. */ 11616b4cac81SBjoern A. Zeeb 11626b4cac81SBjoern A. Zeeb /* Remove chan ctx. */ 11636b4cac81SBjoern A. Zeeb lkpi_80211_mo_remove_chanctx(hw, conf); 11646b4cac81SBjoern A. Zeeb free(conf, M_LKPI80211); 11656b4cac81SBjoern A. Zeeb } 11666b4cac81SBjoern A. Zeeb 11676b4cac81SBjoern A. Zeeb out: 11686b4cac81SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 11696b4cac81SBjoern A. Zeeb if (ni != NULL) 11706b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 11716b4cac81SBjoern A. Zeeb return (error); 11726b4cac81SBjoern A. Zeeb } 11736b4cac81SBjoern A. Zeeb 11746b4cac81SBjoern A. Zeeb static int 11756b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 11766b4cac81SBjoern A. Zeeb { 11776b4cac81SBjoern A. Zeeb int error; 11786b4cac81SBjoern A. Zeeb 11796b4cac81SBjoern A. Zeeb error = lkpi_sta_auth_to_scan(vap, nstate, arg); 11806b4cac81SBjoern A. Zeeb if (error == 0) 11816b4cac81SBjoern A. Zeeb error = lkpi_sta_scan_to_init(vap, nstate, arg); 11826b4cac81SBjoern A. Zeeb return (error); 11836b4cac81SBjoern A. Zeeb } 11846b4cac81SBjoern A. Zeeb 11856b4cac81SBjoern A. Zeeb static int 11866b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 11876b4cac81SBjoern A. Zeeb { 11886b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 11896b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 11906b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 11916b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 11926b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 11936b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 11946b4cac81SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 11956b4cac81SBjoern A. Zeeb int error; 11966b4cac81SBjoern A. Zeeb 11976b4cac81SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 11986b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 11996b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 12006b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 12016b4cac81SBjoern A. Zeeb 12026b4cac81SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 12036b4cac81SBjoern A. Zeeb ni = NULL; 12046b4cac81SBjoern A. Zeeb 12056b4cac81SBjoern A. Zeeb /* Finish auth. */ 12066b4cac81SBjoern A. Zeeb IMPROVE("event callback"); 12076b4cac81SBjoern A. Zeeb 12086b4cac81SBjoern A. Zeeb /* Update sta_state (NONE to AUTH). */ 12096b4cac81SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 12106b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 12116b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 12126b4cac81SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not " 12136b4cac81SBjoern A. Zeeb "NONE: %#x\n", __func__, lsta, lsta->state)); 1214e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH); 12156b4cac81SBjoern A. Zeeb if (error != 0) 12166b4cac81SBjoern A. Zeeb goto out; 12176b4cac81SBjoern A. Zeeb 12186b4cac81SBjoern A. Zeeb /* End mgd_complete_tx. */ 12196b4cac81SBjoern A. Zeeb if (lsta->in_mgd) { 12206b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 12216b4cac81SBjoern A. Zeeb prep_tx_info.success = true; 12226b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info); 12236b4cac81SBjoern A. Zeeb lsta->in_mgd = false; 12246b4cac81SBjoern A. Zeeb } 12256b4cac81SBjoern A. Zeeb 12266b4cac81SBjoern A. Zeeb /* Now start assoc. */ 12276b4cac81SBjoern A. Zeeb 12286b4cac81SBjoern A. Zeeb /* Start mgd_prepare_tx. */ 12296b4cac81SBjoern A. Zeeb if (!lsta->in_mgd) { 12306b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 12316b4cac81SBjoern A. Zeeb prep_tx_info.duration = PREP_TX_INFO_DURATION; 12326b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info); 12336b4cac81SBjoern A. Zeeb lsta->in_mgd = true; 12346b4cac81SBjoern A. Zeeb } 12356b4cac81SBjoern A. Zeeb 12366b4cac81SBjoern A. Zeeb /* Wake tx queue to get packet out. */ 1237e7fe0373SBjoern A. Zeeb lkpi_wake_tx_queues(hw, LSTA_TO_STA(lsta), true, true); 12386b4cac81SBjoern A. Zeeb 12396b4cac81SBjoern A. Zeeb /* 12406b4cac81SBjoern A. Zeeb * <twiddle> .. we end up in "assoc_to_run" 12416b4cac81SBjoern A. Zeeb * - update sta_state (AUTH to ASSOC) 12426b4cac81SBjoern A. Zeeb * - conf_tx [all] 12436b4cac81SBjoern A. Zeeb * - bss_info_changed (assoc, aid, ssid, ..) 12446b4cac81SBjoern A. Zeeb * - change_chanctx (if needed) 12456b4cac81SBjoern A. Zeeb * - event_callback 12466b4cac81SBjoern A. Zeeb * - mgd_complete_tx 12476b4cac81SBjoern A. Zeeb */ 12486b4cac81SBjoern A. Zeeb 12496b4cac81SBjoern A. Zeeb out: 12506b4cac81SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 12516b4cac81SBjoern A. Zeeb if (ni != NULL) 12526b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 12536b4cac81SBjoern A. Zeeb return (error); 12546b4cac81SBjoern A. Zeeb } 12556b4cac81SBjoern A. Zeeb 12566b4cac81SBjoern A. Zeeb /* auth_to_auth, assoc_to_assoc. */ 12576b4cac81SBjoern A. Zeeb static int 12586b4cac81SBjoern A. Zeeb lkpi_sta_a_to_a(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 12596b4cac81SBjoern A. Zeeb { 12606b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 12616b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 12626b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 12636b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 12646b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 12656b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 12666b4cac81SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 12676b4cac81SBjoern A. Zeeb 12686b4cac81SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 12696b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 12706b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 12716b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 12726b4cac81SBjoern A. Zeeb 12736b4cac81SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 12746b4cac81SBjoern A. Zeeb 12756b4cac81SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 12766b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 12776b4cac81SBjoern A. Zeeb 12786b4cac81SBjoern A. Zeeb IMPROVE("event callback?"); 12796b4cac81SBjoern A. Zeeb 12806b4cac81SBjoern A. Zeeb /* End mgd_complete_tx. */ 12816b4cac81SBjoern A. Zeeb if (lsta->in_mgd) { 12826b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 12836b4cac81SBjoern A. Zeeb prep_tx_info.success = false; 12846b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info); 12856b4cac81SBjoern A. Zeeb lsta->in_mgd = false; 12866b4cac81SBjoern A. Zeeb } 12876b4cac81SBjoern A. Zeeb 12886b4cac81SBjoern A. Zeeb /* Now start assoc. */ 12896b4cac81SBjoern A. Zeeb 12906b4cac81SBjoern A. Zeeb /* Start mgd_prepare_tx. */ 12916b4cac81SBjoern A. Zeeb if (!lsta->in_mgd) { 12926b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 12936b4cac81SBjoern A. Zeeb prep_tx_info.duration = PREP_TX_INFO_DURATION; 12946b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info); 12956b4cac81SBjoern A. Zeeb lsta->in_mgd = true; 12966b4cac81SBjoern A. Zeeb } 12976b4cac81SBjoern A. Zeeb 12986b4cac81SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 12996b4cac81SBjoern A. Zeeb if (ni != NULL) 13006b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 13016b4cac81SBjoern A. Zeeb 13026b4cac81SBjoern A. Zeeb return (0); 13036b4cac81SBjoern A. Zeeb } 13046b4cac81SBjoern A. Zeeb 13056b4cac81SBjoern A. Zeeb static int 1306d9f59799SBjoern A. Zeeb _lkpi_sta_assoc_to_down(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 13076b4cac81SBjoern A. Zeeb { 13086b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 13096b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 13106b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 13116b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 13126b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 13136b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 13146b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 13156b4cac81SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 1316d9f59799SBjoern A. Zeeb enum ieee80211_bss_changed bss_changed; 13176b4cac81SBjoern A. Zeeb int error; 13186b4cac81SBjoern A. Zeeb 13196b4cac81SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 13206b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 13216b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 13226b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 13236b4cac81SBjoern A. Zeeb 13246b4cac81SBjoern A. Zeeb /* Keep ni around. */ 13256b4cac81SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 13266b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 13276b4cac81SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 13286b4cac81SBjoern A. Zeeb 132967674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1330d9f59799SBjoern A. Zeeb 1331d9f59799SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 1332d9f59799SBjoern A. Zeeb 1333d9f59799SBjoern A. Zeeb /* flush, drop. */ 1334d9f59799SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), true); 1335d9f59799SBjoern A. Zeeb 1336d9f59799SBjoern A. Zeeb IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?"); 1337d9f59799SBjoern A. Zeeb if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) && 1338d9f59799SBjoern A. Zeeb !lsta->in_mgd) { 1339d9f59799SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 1340d9f59799SBjoern A. Zeeb prep_tx_info.duration = PREP_TX_INFO_DURATION; 1341d9f59799SBjoern A. Zeeb lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info); 1342d9f59799SBjoern A. Zeeb lsta->in_mgd = true; 1343d9f59799SBjoern A. Zeeb } 1344d9f59799SBjoern A. Zeeb 1345d9f59799SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 1346d9f59799SBjoern A. Zeeb 1347d9f59799SBjoern A. Zeeb /* Call iv_newstate first so we get potential DISASSOC packet out. */ 1348d9f59799SBjoern A. Zeeb error = lvif->iv_newstate(vap, nstate, arg); 1349d9f59799SBjoern A. Zeeb if (error != 0) 1350d9f59799SBjoern A. Zeeb goto outni; 1351d9f59799SBjoern A. Zeeb 1352d9f59799SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 1353d9f59799SBjoern A. Zeeb 135467674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1355d9f59799SBjoern A. Zeeb 1356d9f59799SBjoern A. Zeeb /* Wake tx queues to get packet(s) out. */ 1357d9f59799SBjoern A. Zeeb lkpi_wake_tx_queues(hw, sta, true, true); 1358d9f59799SBjoern A. Zeeb 1359d9f59799SBjoern A. Zeeb /* flush, no drop */ 1360d9f59799SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), false); 1361d9f59799SBjoern A. Zeeb 13626b4cac81SBjoern A. Zeeb /* End mgd_complete_tx. */ 13636b4cac81SBjoern A. Zeeb if (lsta->in_mgd) { 13646b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 13656b4cac81SBjoern A. Zeeb prep_tx_info.success = false; 13666b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info); 13676b4cac81SBjoern A. Zeeb lsta->in_mgd = false; 13686b4cac81SBjoern A. Zeeb } 13696b4cac81SBjoern A. Zeeb 1370d9f59799SBjoern A. Zeeb /* sync_rx_queues */ 1371d9f59799SBjoern A. Zeeb lkpi_80211_mo_sync_rx_queues(hw); 1372d9f59799SBjoern A. Zeeb 1373d9f59799SBjoern A. Zeeb /* sta_pre_rcu_remove */ 1374d9f59799SBjoern A. Zeeb lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta); 1375d9f59799SBjoern A. Zeeb 1376d9f59799SBjoern A. Zeeb /* Take the station down. */ 1377d9f59799SBjoern A. Zeeb 13786b4cac81SBjoern A. Zeeb /* Update sta and change state (from AUTH) to NONE. */ 13796b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 13806b4cac81SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not " 13816b4cac81SBjoern A. Zeeb "AUTH: %#x\n", __func__, lsta, lsta->state)); 1382e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE); 13836b4cac81SBjoern A. Zeeb if (error != 0) 13846b4cac81SBjoern A. Zeeb goto out; 13856b4cac81SBjoern A. Zeeb 138667674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 13876b4cac81SBjoern A. Zeeb 1388d9f59799SBjoern A. Zeeb /* Adjust sta and change state (from NONE) to NOTEXIST. */ 1389d9f59799SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 1390d9f59799SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not " 1391d9f59799SBjoern A. Zeeb "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg)); 1392e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST); 1393d9f59799SBjoern A. Zeeb if (error != 0) { 1394d9f59799SBjoern A. Zeeb IMPROVE("do we need to undo the chan ctx?"); 1395d9f59799SBjoern A. Zeeb goto out; 1396d9f59799SBjoern A. Zeeb } 1397d9f59799SBjoern A. Zeeb #if 0 1398d9f59799SBjoern A. Zeeb lsta->added_to_drv = false; /* mo manages. */ 1399d9f59799SBjoern A. Zeeb #endif 1400d9f59799SBjoern A. Zeeb 140167674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1402d9f59799SBjoern A. Zeeb 1403d9f59799SBjoern A. Zeeb /* Update bss info (bss_info_changed) (assoc, aid, ..). */ 1404d9f59799SBjoern A. Zeeb /* We need to do this now, can only do after sta is IEEE80211_STA_NOTEXIST. */ 1405d9f59799SBjoern A. Zeeb lkpi_disassoc(sta, vif, lhw); 1406d9f59799SBjoern A. Zeeb 1407d9f59799SBjoern A. Zeeb IMPROVE("Any bss_info changes to announce?"); 1408d9f59799SBjoern A. Zeeb bss_changed = 0; 1409d9f59799SBjoern A. Zeeb vif->bss_conf.qos = 0; 1410d9f59799SBjoern A. Zeeb bss_changed |= BSS_CHANGED_QOS; 1411d9f59799SBjoern A. Zeeb vif->bss_conf.ssid_len = 0; 1412d9f59799SBjoern A. Zeeb memset(vif->bss_conf.ssid, '\0', sizeof(vif->bss_conf.ssid)); 1413d9f59799SBjoern A. Zeeb bss_changed |= BSS_CHANGED_BSSID; 1414d9f59799SBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed); 1415d9f59799SBjoern A. Zeeb 1416d9f59799SBjoern A. Zeeb lkpi_lsta_remove(lsta, lvif); 1417d9f59799SBjoern A. Zeeb 1418d9f59799SBjoern A. Zeeb /* conf_tx */ 1419d9f59799SBjoern A. Zeeb 1420d9f59799SBjoern A. Zeeb /* Take the chan ctx down. */ 1421d9f59799SBjoern A. Zeeb if (vif->chanctx_conf != NULL) { 1422d9f59799SBjoern A. Zeeb struct ieee80211_chanctx_conf *conf; 1423d9f59799SBjoern A. Zeeb 1424d9f59799SBjoern A. Zeeb conf = vif->chanctx_conf; 1425d9f59799SBjoern A. Zeeb /* Remove vif context. */ 1426d9f59799SBjoern A. Zeeb lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->chanctx_conf); 1427d9f59799SBjoern A. Zeeb /* NB: vif->chanctx_conf is NULL now. */ 1428d9f59799SBjoern A. Zeeb 1429d9f59799SBjoern A. Zeeb /* Remove chan ctx. */ 1430d9f59799SBjoern A. Zeeb lkpi_80211_mo_remove_chanctx(hw, conf); 1431d9f59799SBjoern A. Zeeb free(conf, M_LKPI80211); 1432d9f59799SBjoern A. Zeeb } 1433d9f59799SBjoern A. Zeeb 1434d9f59799SBjoern A. Zeeb error = EALREADY; 14356b4cac81SBjoern A. Zeeb out: 14366b4cac81SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 1437d9f59799SBjoern A. Zeeb outni: 14386b4cac81SBjoern A. Zeeb if (ni != NULL) 14396b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 14406b4cac81SBjoern A. Zeeb return (error); 14416b4cac81SBjoern A. Zeeb } 14426b4cac81SBjoern A. Zeeb 14436b4cac81SBjoern A. Zeeb static int 1444d9f59799SBjoern A. Zeeb lkpi_sta_assoc_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 1445d9f59799SBjoern A. Zeeb { 1446d9f59799SBjoern A. Zeeb int error; 1447d9f59799SBjoern A. Zeeb 1448d9f59799SBjoern A. Zeeb error = _lkpi_sta_assoc_to_down(vap, nstate, arg); 1449d9f59799SBjoern A. Zeeb if (error != 0 && error != EALREADY) 1450d9f59799SBjoern A. Zeeb return (error); 1451d9f59799SBjoern A. Zeeb 1452d9f59799SBjoern A. Zeeb /* At this point iv_bss is long a new node! */ 1453d9f59799SBjoern A. Zeeb 1454d9f59799SBjoern A. Zeeb error |= lkpi_sta_scan_to_auth(vap, nstate, 0); 1455d9f59799SBjoern A. Zeeb return (error); 1456d9f59799SBjoern A. Zeeb } 1457d9f59799SBjoern A. Zeeb 1458d9f59799SBjoern A. Zeeb static int 14596b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 14606b4cac81SBjoern A. Zeeb { 14616b4cac81SBjoern A. Zeeb int error; 14626b4cac81SBjoern A. Zeeb 1463d9f59799SBjoern A. Zeeb error = _lkpi_sta_assoc_to_down(vap, nstate, arg); 14646b4cac81SBjoern A. Zeeb return (error); 14656b4cac81SBjoern A. Zeeb } 14666b4cac81SBjoern A. Zeeb 14676b4cac81SBjoern A. Zeeb static int 14686b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 14696b4cac81SBjoern A. Zeeb { 14706b4cac81SBjoern A. Zeeb int error; 14716b4cac81SBjoern A. Zeeb 1472d9f59799SBjoern A. Zeeb error = _lkpi_sta_assoc_to_down(vap, nstate, arg); 14736b4cac81SBjoern A. Zeeb return (error); 14746b4cac81SBjoern A. Zeeb } 14756b4cac81SBjoern A. Zeeb 14766b4cac81SBjoern A. Zeeb static int 14776b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 14786b4cac81SBjoern A. Zeeb { 14796b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 14806b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 14816b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 14826b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 14836b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 14846b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 14856b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 14866b4cac81SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 14876b4cac81SBjoern A. Zeeb enum ieee80211_bss_changed bss_changed; 14886b4cac81SBjoern A. Zeeb int error; 14896b4cac81SBjoern A. Zeeb 14906b4cac81SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 14916b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 14926b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 14936b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 14946b4cac81SBjoern A. Zeeb 14956b4cac81SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 14969597f7cbSBjoern A. Zeeb ni = NULL; 14976b4cac81SBjoern A. Zeeb 14986b4cac81SBjoern A. Zeeb IMPROVE("ponder some of this moved to ic_newassoc, scan_assoc_success, " 14996b4cac81SBjoern A. Zeeb "and to lesser extend ieee80211_notify_node_join"); 15006b4cac81SBjoern A. Zeeb 15019597f7cbSBjoern A. Zeeb /* Finish assoc. */ 15029597f7cbSBjoern A. Zeeb /* Update sta_state (AUTH to ASSOC) and set aid. */ 15036b4cac81SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 15046b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 15056b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 15069597f7cbSBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not " 15079597f7cbSBjoern A. Zeeb "AUTH: %#x\n", __func__, lsta, lsta->state)); 15086b4cac81SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 15099597f7cbSBjoern A. Zeeb sta->aid = IEEE80211_NODE_AID(ni); 15104a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME 15114a67f1dfSBjoern A. Zeeb if (vap->iv_flags & IEEE80211_F_WME) 15124a67f1dfSBjoern A. Zeeb sta->wme = true; 15134a67f1dfSBjoern A. Zeeb #endif 1514e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC); 15159597f7cbSBjoern A. Zeeb if (error != 0) 15169597f7cbSBjoern A. Zeeb goto out; 15176b4cac81SBjoern A. Zeeb 15186b4cac81SBjoern A. Zeeb IMPROVE("wme / conf_tx [all]"); 15196b4cac81SBjoern A. Zeeb 15206b4cac81SBjoern A. Zeeb /* Update bss info (bss_info_changed) (assoc, aid, ..). */ 15216b4cac81SBjoern A. Zeeb bss_changed = 0; 15224a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME 15234a67f1dfSBjoern A. Zeeb bss_changed |= lkpi_wme_update(lhw, vap, true); 15244a67f1dfSBjoern A. Zeeb #endif 15256b4cac81SBjoern A. Zeeb if (!vif->bss_conf.assoc || vif->bss_conf.aid != IEEE80211_NODE_AID(ni)) { 15266b4cac81SBjoern A. Zeeb vif->bss_conf.assoc = true; 15276b4cac81SBjoern A. Zeeb vif->bss_conf.aid = IEEE80211_NODE_AID(ni); 15286b4cac81SBjoern A. Zeeb bss_changed |= BSS_CHANGED_ASSOC; 15296b4cac81SBjoern A. Zeeb } 15306b4cac81SBjoern A. Zeeb /* We set SSID but this is not BSSID! */ 15316b4cac81SBjoern A. Zeeb vif->bss_conf.ssid_len = ni->ni_esslen; 15326b4cac81SBjoern A. Zeeb memcpy(vif->bss_conf.ssid, ni->ni_essid, ni->ni_esslen); 15336b4cac81SBjoern A. Zeeb if ((vap->iv_flags & IEEE80211_F_SHPREAMBLE) != 15346b4cac81SBjoern A. Zeeb vif->bss_conf.use_short_preamble) { 15356b4cac81SBjoern A. Zeeb vif->bss_conf.use_short_preamble ^= 1; 15366b4cac81SBjoern A. Zeeb /* bss_changed |= BSS_CHANGED_??? */ 15376b4cac81SBjoern A. Zeeb } 15386b4cac81SBjoern A. Zeeb if ((vap->iv_flags & IEEE80211_F_SHSLOT) != 15396b4cac81SBjoern A. Zeeb vif->bss_conf.use_short_slot) { 15406b4cac81SBjoern A. Zeeb vif->bss_conf.use_short_slot ^= 1; 15416b4cac81SBjoern A. Zeeb /* bss_changed |= BSS_CHANGED_??? */ 15426b4cac81SBjoern A. Zeeb } 15436b4cac81SBjoern A. Zeeb if ((ni->ni_flags & IEEE80211_NODE_QOS) != 15446b4cac81SBjoern A. Zeeb vif->bss_conf.qos) { 15456b4cac81SBjoern A. Zeeb vif->bss_conf.qos ^= 1; 15466b4cac81SBjoern A. Zeeb bss_changed |= BSS_CHANGED_QOS; 15476b4cac81SBjoern A. Zeeb } 1548fa8f007dSBjoern A. Zeeb 1549fa8f007dSBjoern A. Zeeb bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__); 1550fa8f007dSBjoern A. Zeeb 15516b4cac81SBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed); 15526b4cac81SBjoern A. Zeeb 15536b4cac81SBjoern A. Zeeb /* - change_chanctx (if needed) 15546b4cac81SBjoern A. Zeeb * - event_callback 15556b4cac81SBjoern A. Zeeb */ 15566b4cac81SBjoern A. Zeeb 15576b4cac81SBjoern A. Zeeb /* End mgd_complete_tx. */ 15586b4cac81SBjoern A. Zeeb if (lsta->in_mgd) { 15596b4cac81SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 15606b4cac81SBjoern A. Zeeb prep_tx_info.success = true; 15616b4cac81SBjoern A. Zeeb lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info); 15626b4cac81SBjoern A. Zeeb lsta->in_mgd = false; 15636b4cac81SBjoern A. Zeeb } 15646b4cac81SBjoern A. Zeeb 1565086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(hw, false); 1566086be6a8SBjoern A. Zeeb 15676b4cac81SBjoern A. Zeeb /* 15686b4cac81SBjoern A. Zeeb * And then: 15696b4cac81SBjoern A. Zeeb * - (more packets)? 15706b4cac81SBjoern A. Zeeb * - set_key 15716b4cac81SBjoern A. Zeeb * - set_default_unicast_key 15726b4cac81SBjoern A. Zeeb * - set_key (?) 15736b4cac81SBjoern A. Zeeb * - ipv6_addr_change (?) 15746b4cac81SBjoern A. Zeeb */ 15756b4cac81SBjoern A. Zeeb /* Prepare_multicast && configure_filter. */ 15766b4cac81SBjoern A. Zeeb lhw->update_mc = true; 15776b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(vap->iv_ic, true); 15786b4cac81SBjoern A. Zeeb 15796b4cac81SBjoern A. Zeeb if (!ieee80211_node_is_authorized(ni)) { 15806b4cac81SBjoern A. Zeeb IMPROVE("net80211 does not consider node authorized"); 15816b4cac81SBjoern A. Zeeb } 15826b4cac81SBjoern A. Zeeb 15836b4cac81SBjoern A. Zeeb /* Update sta_state (ASSOC to AUTHORIZED). */ 15846b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 15856b4cac81SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not " 15866b4cac81SBjoern A. Zeeb "ASSOC: %#x\n", __func__, lsta, lsta->state)); 1587e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTHORIZED); 15886b4cac81SBjoern A. Zeeb if (error != 0) { 15896b4cac81SBjoern A. Zeeb IMPROVE("undo some changes?"); 15906b4cac81SBjoern A. Zeeb goto out; 15916b4cac81SBjoern A. Zeeb } 15926b4cac81SBjoern A. Zeeb 15936b4cac81SBjoern A. Zeeb /* - drv_config (?) 15946b4cac81SBjoern A. Zeeb * - bss_info_changed 15956b4cac81SBjoern A. Zeeb * - set_rekey_data (?) 15966b4cac81SBjoern A. Zeeb * 15976b4cac81SBjoern A. Zeeb * And now we should be passing packets. 15986b4cac81SBjoern A. Zeeb */ 15996b4cac81SBjoern A. Zeeb IMPROVE("Need that bssid setting, and the keys"); 16006b4cac81SBjoern A. Zeeb 1601fa8f007dSBjoern A. Zeeb bss_changed = 0; 1602fa8f007dSBjoern A. Zeeb bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__); 1603fa8f007dSBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed); 1604fa8f007dSBjoern A. Zeeb 16056b4cac81SBjoern A. Zeeb out: 16066b4cac81SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 16076b4cac81SBjoern A. Zeeb if (ni != NULL) 16086b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 16096b4cac81SBjoern A. Zeeb return (error); 16106b4cac81SBjoern A. Zeeb } 16116b4cac81SBjoern A. Zeeb 16126b4cac81SBjoern A. Zeeb static int 16136b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 16146b4cac81SBjoern A. Zeeb { 16156b4cac81SBjoern A. Zeeb int error; 16166b4cac81SBjoern A. Zeeb 16176b4cac81SBjoern A. Zeeb error = lkpi_sta_auth_to_assoc(vap, nstate, arg); 16186b4cac81SBjoern A. Zeeb if (error == 0) 16196b4cac81SBjoern A. Zeeb error = lkpi_sta_assoc_to_run(vap, nstate, arg); 16206b4cac81SBjoern A. Zeeb return (error); 16216b4cac81SBjoern A. Zeeb } 16226b4cac81SBjoern A. Zeeb 16236b4cac81SBjoern A. Zeeb static int 16246b4cac81SBjoern A. Zeeb lkpi_sta_run_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 16256b4cac81SBjoern A. Zeeb { 16266b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 16276b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 16286b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 16296b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 16306b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 16316b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 16326b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 1633d9f59799SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 1634d9f59799SBjoern A. Zeeb #if 0 1635d9f59799SBjoern A. Zeeb enum ieee80211_bss_changed bss_changed; 1636d9f59799SBjoern A. Zeeb #endif 16376b4cac81SBjoern A. Zeeb int error; 16386b4cac81SBjoern A. Zeeb 16396b4cac81SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 16406b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 16416b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 16426b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 16436b4cac81SBjoern A. Zeeb 16446b4cac81SBjoern A. Zeeb /* Keep ni around. */ 16456b4cac81SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 16466b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 16476b4cac81SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 16486b4cac81SBjoern A. Zeeb 164967674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1650d9f59799SBjoern A. Zeeb 1651d9f59799SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 1652d9f59799SBjoern A. Zeeb 1653d9f59799SBjoern A. Zeeb /* flush, drop. */ 1654d9f59799SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), true); 1655d9f59799SBjoern A. Zeeb 1656d9f59799SBjoern A. Zeeb IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?"); 1657d9f59799SBjoern A. Zeeb if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) && 1658d9f59799SBjoern A. Zeeb !lsta->in_mgd) { 1659d9f59799SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 1660d9f59799SBjoern A. Zeeb prep_tx_info.duration = PREP_TX_INFO_DURATION; 1661d9f59799SBjoern A. Zeeb lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info); 1662d9f59799SBjoern A. Zeeb lsta->in_mgd = true; 1663d9f59799SBjoern A. Zeeb } 1664d9f59799SBjoern A. Zeeb 1665d9f59799SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 1666d9f59799SBjoern A. Zeeb 1667d9f59799SBjoern A. Zeeb /* Call iv_newstate first so we get potential DISASSOC packet out. */ 1668d9f59799SBjoern A. Zeeb error = lvif->iv_newstate(vap, nstate, arg); 1669d9f59799SBjoern A. Zeeb if (error != 0) 1670d9f59799SBjoern A. Zeeb goto outni; 1671d9f59799SBjoern A. Zeeb 1672d9f59799SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 1673d9f59799SBjoern A. Zeeb 167467674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1675d9f59799SBjoern A. Zeeb 1676d9f59799SBjoern A. Zeeb /* Wake tx queues to get packet(s) out. */ 1677d9f59799SBjoern A. Zeeb lkpi_wake_tx_queues(hw, sta, true, true); 1678d9f59799SBjoern A. Zeeb 1679d9f59799SBjoern A. Zeeb /* flush, no drop */ 1680d9f59799SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), false); 1681d9f59799SBjoern A. Zeeb 1682d9f59799SBjoern A. Zeeb /* End mgd_complete_tx. */ 1683d9f59799SBjoern A. Zeeb if (lsta->in_mgd) { 1684d9f59799SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 1685d9f59799SBjoern A. Zeeb prep_tx_info.success = false; 1686d9f59799SBjoern A. Zeeb lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info); 1687d9f59799SBjoern A. Zeeb lsta->in_mgd = false; 1688d9f59799SBjoern A. Zeeb } 1689d9f59799SBjoern A. Zeeb 1690d9f59799SBjoern A. Zeeb #if 0 1691d9f59799SBjoern A. Zeeb /* sync_rx_queues */ 1692d9f59799SBjoern A. Zeeb lkpi_80211_mo_sync_rx_queues(hw); 1693d9f59799SBjoern A. Zeeb 1694d9f59799SBjoern A. Zeeb /* sta_pre_rcu_remove */ 1695d9f59799SBjoern A. Zeeb lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta); 1696d9f59799SBjoern A. Zeeb #endif 1697d9f59799SBjoern A. Zeeb 1698d9f59799SBjoern A. Zeeb /* Take the station down. */ 1699d9f59799SBjoern A. Zeeb 17006b4cac81SBjoern A. Zeeb /* Adjust sta and change state (from AUTHORIZED) to ASSOC. */ 17016b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 17026b4cac81SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not " 17036b4cac81SBjoern A. Zeeb "AUTHORIZED: %#x\n", __func__, lsta, lsta->state)); 1704e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC); 17056b4cac81SBjoern A. Zeeb if (error != 0) 17066b4cac81SBjoern A. Zeeb goto out; 17076b4cac81SBjoern A. Zeeb 170867674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 17096b4cac81SBjoern A. Zeeb 17106b4cac81SBjoern A. Zeeb /* Update sta_state (ASSOC to AUTH). */ 17116b4cac81SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 17126b4cac81SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not " 17136b4cac81SBjoern A. Zeeb "ASSOC: %#x\n", __func__, lsta, lsta->state)); 1714e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH); 17156b4cac81SBjoern A. Zeeb if (error != 0) 17166b4cac81SBjoern A. Zeeb goto out; 17176b4cac81SBjoern A. Zeeb 171867674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 17196b4cac81SBjoern A. Zeeb 1720d9f59799SBjoern A. Zeeb #if 0 1721d9f59799SBjoern A. Zeeb /* Update bss info (bss_info_changed) (assoc, aid, ..). */ 1722d9f59799SBjoern A. Zeeb lkpi_disassoc(sta, vif, lhw); 1723d9f59799SBjoern A. Zeeb #endif 1724d9f59799SBjoern A. Zeeb 1725d9f59799SBjoern A. Zeeb error = EALREADY; 17266b4cac81SBjoern A. Zeeb out: 17276b4cac81SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 1728d9f59799SBjoern A. Zeeb outni: 17296b4cac81SBjoern A. Zeeb if (ni != NULL) 17306b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 17316b4cac81SBjoern A. Zeeb return (error); 17326b4cac81SBjoern A. Zeeb } 17336b4cac81SBjoern A. Zeeb 17346b4cac81SBjoern A. Zeeb static int 1735d9f59799SBjoern A. Zeeb lkpi_sta_run_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 1736d9f59799SBjoern A. Zeeb { 1737d9f59799SBjoern A. Zeeb struct lkpi_hw *lhw; 1738d9f59799SBjoern A. Zeeb struct ieee80211_hw *hw; 1739d9f59799SBjoern A. Zeeb struct lkpi_vif *lvif; 1740d9f59799SBjoern A. Zeeb struct ieee80211_vif *vif; 1741d9f59799SBjoern A. Zeeb struct ieee80211_node *ni; 1742d9f59799SBjoern A. Zeeb struct lkpi_sta *lsta; 1743d9f59799SBjoern A. Zeeb struct ieee80211_sta *sta; 1744d9f59799SBjoern A. Zeeb struct ieee80211_prep_tx_info prep_tx_info; 1745d9f59799SBjoern A. Zeeb enum ieee80211_bss_changed bss_changed; 1746d9f59799SBjoern A. Zeeb int error; 1747d9f59799SBjoern A. Zeeb 1748d9f59799SBjoern A. Zeeb lhw = vap->iv_ic->ic_softc; 1749d9f59799SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 1750d9f59799SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 1751d9f59799SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 1752d9f59799SBjoern A. Zeeb 1753d9f59799SBjoern A. Zeeb /* Keep ni around. */ 1754d9f59799SBjoern A. Zeeb ni = ieee80211_ref_node(vap->iv_bss); 1755d9f59799SBjoern A. Zeeb lsta = ni->ni_drv_data; 1756d9f59799SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 1757d9f59799SBjoern A. Zeeb 175867674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1759d9f59799SBjoern A. Zeeb 1760d9f59799SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 1761d9f59799SBjoern A. Zeeb 1762d9f59799SBjoern A. Zeeb /* flush, drop. */ 1763d9f59799SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), true); 1764d9f59799SBjoern A. Zeeb 1765d9f59799SBjoern A. Zeeb IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?"); 1766d9f59799SBjoern A. Zeeb if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) && 1767d9f59799SBjoern A. Zeeb !lsta->in_mgd) { 1768d9f59799SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 1769d9f59799SBjoern A. Zeeb prep_tx_info.duration = PREP_TX_INFO_DURATION; 1770d9f59799SBjoern A. Zeeb lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info); 1771d9f59799SBjoern A. Zeeb lsta->in_mgd = true; 1772d9f59799SBjoern A. Zeeb } 1773d9f59799SBjoern A. Zeeb 1774d9f59799SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 1775d9f59799SBjoern A. Zeeb 1776d9f59799SBjoern A. Zeeb /* Call iv_newstate first so we get potential DISASSOC packet out. */ 1777d9f59799SBjoern A. Zeeb error = lvif->iv_newstate(vap, nstate, arg); 1778d9f59799SBjoern A. Zeeb if (error != 0) 1779d9f59799SBjoern A. Zeeb goto outni; 1780d9f59799SBjoern A. Zeeb 1781d9f59799SBjoern A. Zeeb IEEE80211_UNLOCK(vap->iv_ic); 1782d9f59799SBjoern A. Zeeb 178367674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1784d9f59799SBjoern A. Zeeb 1785d9f59799SBjoern A. Zeeb /* Wake tx queues to get packet(s) out. */ 1786d9f59799SBjoern A. Zeeb lkpi_wake_tx_queues(hw, sta, true, true); 1787d9f59799SBjoern A. Zeeb 1788d9f59799SBjoern A. Zeeb /* flush, no drop */ 1789d9f59799SBjoern A. Zeeb lkpi_80211_mo_flush(hw, vif, nitems(sta->txq), false); 1790d9f59799SBjoern A. Zeeb 1791d9f59799SBjoern A. Zeeb /* End mgd_complete_tx. */ 1792d9f59799SBjoern A. Zeeb if (lsta->in_mgd) { 1793d9f59799SBjoern A. Zeeb memset(&prep_tx_info, 0, sizeof(prep_tx_info)); 1794d9f59799SBjoern A. Zeeb prep_tx_info.success = false; 1795d9f59799SBjoern A. Zeeb lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info); 1796d9f59799SBjoern A. Zeeb lsta->in_mgd = false; 1797d9f59799SBjoern A. Zeeb } 1798d9f59799SBjoern A. Zeeb 1799d9f59799SBjoern A. Zeeb /* sync_rx_queues */ 1800d9f59799SBjoern A. Zeeb lkpi_80211_mo_sync_rx_queues(hw); 1801d9f59799SBjoern A. Zeeb 1802d9f59799SBjoern A. Zeeb /* sta_pre_rcu_remove */ 1803d9f59799SBjoern A. Zeeb lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta); 1804d9f59799SBjoern A. Zeeb 1805d9f59799SBjoern A. Zeeb /* Take the station down. */ 1806d9f59799SBjoern A. Zeeb 1807d9f59799SBjoern A. Zeeb /* Adjust sta and change state (from AUTHORIZED) to ASSOC. */ 1808d9f59799SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 1809d9f59799SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not " 1810d9f59799SBjoern A. Zeeb "AUTHORIZED: %#x\n", __func__, lsta, lsta->state)); 1811e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC); 1812d9f59799SBjoern A. Zeeb if (error != 0) 1813d9f59799SBjoern A. Zeeb goto out; 1814d9f59799SBjoern A. Zeeb 181567674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1816d9f59799SBjoern A. Zeeb 1817d9f59799SBjoern A. Zeeb /* Update sta_state (ASSOC to AUTH). */ 1818d9f59799SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 1819d9f59799SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not " 1820d9f59799SBjoern A. Zeeb "ASSOC: %#x\n", __func__, lsta, lsta->state)); 1821e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH); 1822d9f59799SBjoern A. Zeeb if (error != 0) 1823d9f59799SBjoern A. Zeeb goto out; 1824d9f59799SBjoern A. Zeeb 182567674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1826d9f59799SBjoern A. Zeeb 1827d9f59799SBjoern A. Zeeb /* Update sta and change state (from AUTH) to NONE. */ 1828d9f59799SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 1829d9f59799SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not " 1830d9f59799SBjoern A. Zeeb "AUTH: %#x\n", __func__, lsta, lsta->state)); 1831e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE); 1832d9f59799SBjoern A. Zeeb if (error != 0) 1833d9f59799SBjoern A. Zeeb goto out; 1834d9f59799SBjoern A. Zeeb 183567674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1836d9f59799SBjoern A. Zeeb 1837d9f59799SBjoern A. Zeeb /* Adjust sta and change state (from NONE) to NOTEXIST. */ 1838d9f59799SBjoern A. Zeeb KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni)); 1839d9f59799SBjoern A. Zeeb KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not " 1840d9f59799SBjoern A. Zeeb "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg)); 1841e7fe0373SBjoern A. Zeeb error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST); 1842d9f59799SBjoern A. Zeeb if (error != 0) { 1843d9f59799SBjoern A. Zeeb IMPROVE("do we need to undo the chan ctx?"); 1844d9f59799SBjoern A. Zeeb goto out; 1845d9f59799SBjoern A. Zeeb } 1846d9f59799SBjoern A. Zeeb #if 0 1847d9f59799SBjoern A. Zeeb lsta->added_to_drv = false; /* mo manages. */ 1848d9f59799SBjoern A. Zeeb #endif 1849d9f59799SBjoern A. Zeeb 185067674c1cSBjoern A. Zeeb lkpi_lsta_dump(lsta, ni, __func__, __LINE__); 1851d9f59799SBjoern A. Zeeb 1852d9f59799SBjoern A. Zeeb /* Update bss info (bss_info_changed) (assoc, aid, ..). */ 1853d9f59799SBjoern A. Zeeb /* 1854d9f59799SBjoern A. Zeeb * One would expect this to happen when going off AUTHORIZED. 1855d9f59799SBjoern A. Zeeb * See comment there; removes the sta from fw. 1856d9f59799SBjoern A. Zeeb */ 1857d9f59799SBjoern A. Zeeb lkpi_disassoc(sta, vif, lhw); 1858d9f59799SBjoern A. Zeeb 1859d9f59799SBjoern A. Zeeb IMPROVE("Any bss_info changes to announce?"); 1860d9f59799SBjoern A. Zeeb bss_changed = 0; 1861d9f59799SBjoern A. Zeeb vif->bss_conf.qos = 0; 1862d9f59799SBjoern A. Zeeb bss_changed |= BSS_CHANGED_QOS; 1863d9f59799SBjoern A. Zeeb vif->bss_conf.ssid_len = 0; 1864d9f59799SBjoern A. Zeeb memset(vif->bss_conf.ssid, '\0', sizeof(vif->bss_conf.ssid)); 1865d9f59799SBjoern A. Zeeb bss_changed |= BSS_CHANGED_BSSID; 1866d9f59799SBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed); 1867d9f59799SBjoern A. Zeeb 1868d9f59799SBjoern A. Zeeb lkpi_lsta_remove(lsta, lvif); 1869d9f59799SBjoern A. Zeeb 1870d9f59799SBjoern A. Zeeb /* conf_tx */ 1871d9f59799SBjoern A. Zeeb 1872d9f59799SBjoern A. Zeeb /* Take the chan ctx down. */ 1873d9f59799SBjoern A. Zeeb if (vif->chanctx_conf != NULL) { 1874d9f59799SBjoern A. Zeeb struct ieee80211_chanctx_conf *conf; 1875d9f59799SBjoern A. Zeeb 1876d9f59799SBjoern A. Zeeb conf = vif->chanctx_conf; 1877d9f59799SBjoern A. Zeeb /* Remove vif context. */ 1878d9f59799SBjoern A. Zeeb lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->chanctx_conf); 1879d9f59799SBjoern A. Zeeb /* NB: vif->chanctx_conf is NULL now. */ 1880d9f59799SBjoern A. Zeeb 1881d9f59799SBjoern A. Zeeb /* Remove chan ctx. */ 1882d9f59799SBjoern A. Zeeb lkpi_80211_mo_remove_chanctx(hw, conf); 1883d9f59799SBjoern A. Zeeb free(conf, M_LKPI80211); 1884d9f59799SBjoern A. Zeeb } 1885d9f59799SBjoern A. Zeeb 1886d9f59799SBjoern A. Zeeb error = EALREADY; 1887d9f59799SBjoern A. Zeeb out: 1888d9f59799SBjoern A. Zeeb IEEE80211_LOCK(vap->iv_ic); 1889d9f59799SBjoern A. Zeeb outni: 1890d9f59799SBjoern A. Zeeb if (ni != NULL) 1891d9f59799SBjoern A. Zeeb ieee80211_free_node(ni); 1892d9f59799SBjoern A. Zeeb return (error); 1893d9f59799SBjoern A. Zeeb } 1894d9f59799SBjoern A. Zeeb 1895d9f59799SBjoern A. Zeeb static int 1896d9f59799SBjoern A. Zeeb lkpi_sta_run_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 1897d9f59799SBjoern A. Zeeb { 1898d9f59799SBjoern A. Zeeb 1899d9f59799SBjoern A. Zeeb return (lkpi_sta_run_to_init(vap, nstate, arg)); 1900d9f59799SBjoern A. Zeeb } 1901d9f59799SBjoern A. Zeeb 1902d9f59799SBjoern A. Zeeb static int 19036b4cac81SBjoern A. Zeeb lkpi_sta_run_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 19046b4cac81SBjoern A. Zeeb { 19056b4cac81SBjoern A. Zeeb int error; 19066b4cac81SBjoern A. Zeeb 1907d9f59799SBjoern A. Zeeb error = lkpi_sta_run_to_init(vap, nstate, arg); 1908d9f59799SBjoern A. Zeeb if (error != 0 && error != EALREADY) 1909d9f59799SBjoern A. Zeeb return (error); 1910d9f59799SBjoern A. Zeeb 1911d9f59799SBjoern A. Zeeb /* At this point iv_bss is long a new node! */ 1912d9f59799SBjoern A. Zeeb 1913d9f59799SBjoern A. Zeeb error |= lkpi_sta_scan_to_auth(vap, nstate, 0); 19146b4cac81SBjoern A. Zeeb return (error); 19156b4cac81SBjoern A. Zeeb } 19166b4cac81SBjoern A. Zeeb 1917d9f59799SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 19186b4cac81SBjoern A. Zeeb 19196b4cac81SBjoern A. Zeeb /* 19206b4cac81SBjoern A. Zeeb * The matches the documented state changes in net80211::sta_newstate(). 19216b4cac81SBjoern A. Zeeb * XXX (1) without CSA and SLEEP yet, * XXX (2) not all unhandled cases 19226b4cac81SBjoern A. Zeeb * there are "invalid" (so there is a room for failure here). 19236b4cac81SBjoern A. Zeeb */ 19246b4cac81SBjoern A. Zeeb struct fsm_state { 19256b4cac81SBjoern A. Zeeb /* INIT, SCAN, AUTH, ASSOC, CAC, RUN, CSA, SLEEP */ 19266b4cac81SBjoern A. Zeeb enum ieee80211_state ostate; 19276b4cac81SBjoern A. Zeeb enum ieee80211_state nstate; 19286b4cac81SBjoern A. Zeeb int (*handler)(struct ieee80211vap *, enum ieee80211_state, int); 19296b4cac81SBjoern A. Zeeb } sta_state_fsm[] = { 19306b4cac81SBjoern A. Zeeb { IEEE80211_S_INIT, IEEE80211_S_INIT, lkpi_sta_state_do_nada }, 19316b4cac81SBjoern A. Zeeb { IEEE80211_S_SCAN, IEEE80211_S_INIT, lkpi_sta_state_do_nada }, /* scan_to_init */ 19326b4cac81SBjoern A. Zeeb { IEEE80211_S_AUTH, IEEE80211_S_INIT, lkpi_sta_auth_to_init }, /* not explicitly in sta_newstate() */ 1933d9f59799SBjoern A. Zeeb { IEEE80211_S_ASSOC, IEEE80211_S_INIT, lkpi_sta_assoc_to_init }, /* Send DEAUTH. */ 1934d9f59799SBjoern A. Zeeb { IEEE80211_S_RUN, IEEE80211_S_INIT, lkpi_sta_run_to_init }, /* Send DISASSOC. */ 19356b4cac81SBjoern A. Zeeb 19366b4cac81SBjoern A. Zeeb { IEEE80211_S_INIT, IEEE80211_S_SCAN, lkpi_sta_state_do_nada }, 19376b4cac81SBjoern A. Zeeb { IEEE80211_S_SCAN, IEEE80211_S_SCAN, lkpi_sta_state_do_nada }, 19386b4cac81SBjoern A. Zeeb { IEEE80211_S_AUTH, IEEE80211_S_SCAN, lkpi_sta_auth_to_scan }, 19396b4cac81SBjoern A. Zeeb { IEEE80211_S_ASSOC, IEEE80211_S_SCAN, lkpi_sta_assoc_to_scan }, 1940d9f59799SBjoern A. Zeeb { IEEE80211_S_RUN, IEEE80211_S_SCAN, lkpi_sta_run_to_scan }, /* Beacon miss. */ 19416b4cac81SBjoern A. Zeeb 1942d9f59799SBjoern A. Zeeb { IEEE80211_S_INIT, IEEE80211_S_AUTH, lkpi_sta_scan_to_auth }, /* Send AUTH. */ 1943d9f59799SBjoern A. Zeeb { IEEE80211_S_SCAN, IEEE80211_S_AUTH, lkpi_sta_scan_to_auth }, /* Send AUTH. */ 1944d9f59799SBjoern A. Zeeb { IEEE80211_S_AUTH, IEEE80211_S_AUTH, lkpi_sta_a_to_a }, /* Send ?AUTH. */ 1945d9f59799SBjoern A. Zeeb { IEEE80211_S_ASSOC, IEEE80211_S_AUTH, lkpi_sta_assoc_to_auth }, /* Send ?AUTH. */ 1946d9f59799SBjoern A. Zeeb { IEEE80211_S_RUN, IEEE80211_S_AUTH, lkpi_sta_run_to_auth }, /* Send ?AUTH. */ 19476b4cac81SBjoern A. Zeeb 1948d9f59799SBjoern A. Zeeb { IEEE80211_S_AUTH, IEEE80211_S_ASSOC, lkpi_sta_auth_to_assoc }, /* Send ASSOCREQ. */ 1949d9f59799SBjoern A. Zeeb { IEEE80211_S_ASSOC, IEEE80211_S_ASSOC, lkpi_sta_a_to_a }, /* Send ASSOCREQ. */ 1950d9f59799SBjoern A. Zeeb { IEEE80211_S_RUN, IEEE80211_S_ASSOC, lkpi_sta_run_to_assoc }, /* Send ASSOCREQ/REASSOCREQ. */ 19516b4cac81SBjoern A. Zeeb 19526b4cac81SBjoern A. Zeeb { IEEE80211_S_AUTH, IEEE80211_S_RUN, lkpi_sta_auth_to_run }, 19536b4cac81SBjoern A. Zeeb { IEEE80211_S_ASSOC, IEEE80211_S_RUN, lkpi_sta_assoc_to_run }, 19546b4cac81SBjoern A. Zeeb { IEEE80211_S_RUN, IEEE80211_S_RUN, lkpi_sta_state_do_nada }, 19556b4cac81SBjoern A. Zeeb 19566b4cac81SBjoern A. Zeeb /* Dummy at the end without handler. */ 19576b4cac81SBjoern A. Zeeb { IEEE80211_S_INIT, IEEE80211_S_INIT, NULL }, 19586b4cac81SBjoern A. Zeeb }; 19596b4cac81SBjoern A. Zeeb 19606b4cac81SBjoern A. Zeeb static int 19616b4cac81SBjoern A. Zeeb lkpi_iv_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) 19626b4cac81SBjoern A. Zeeb { 19636b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 19646b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 19656b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 19666b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 19676b4cac81SBjoern A. Zeeb struct fsm_state *s; 19686b4cac81SBjoern A. Zeeb enum ieee80211_state ostate; 19696b4cac81SBjoern A. Zeeb int error; 19706b4cac81SBjoern A. Zeeb 19716b4cac81SBjoern A. Zeeb ic = vap->iv_ic; 19726b4cac81SBjoern A. Zeeb IEEE80211_LOCK_ASSERT(ic); 19736b4cac81SBjoern A. Zeeb ostate = vap->iv_state; 19746b4cac81SBjoern A. Zeeb 19759d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 19769d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 19776b4cac81SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x\n", 19786b4cac81SBjoern A. Zeeb __func__, __LINE__, vap, nstate, arg); 19799d9ba2b7SBjoern A. Zeeb #endif 19806b4cac81SBjoern A. Zeeb 19816b4cac81SBjoern A. Zeeb if (vap->iv_opmode == IEEE80211_M_STA) { 19826b4cac81SBjoern A. Zeeb 19836b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 19846b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 19856b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 19866b4cac81SBjoern A. Zeeb 19876b4cac81SBjoern A. Zeeb /* No need to replicate this in most state handlers. */ 19886b4cac81SBjoern A. Zeeb if (ostate == IEEE80211_S_SCAN && nstate != IEEE80211_S_SCAN) 19896b4cac81SBjoern A. Zeeb lkpi_stop_hw_scan(lhw, vif); 19906b4cac81SBjoern A. Zeeb 19916b4cac81SBjoern A. Zeeb s = sta_state_fsm; 19926b4cac81SBjoern A. Zeeb 19936b4cac81SBjoern A. Zeeb } else { 19946b4cac81SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: only station mode currently supported: " 19956b4cac81SBjoern A. Zeeb "cap %p iv_opmode %d\n", __func__, vap, vap->iv_opmode); 19966b4cac81SBjoern A. Zeeb return (ENOSYS); 19976b4cac81SBjoern A. Zeeb } 19986b4cac81SBjoern A. Zeeb 19996b4cac81SBjoern A. Zeeb error = 0; 20006b4cac81SBjoern A. Zeeb for (; s->handler != NULL; s++) { 20016b4cac81SBjoern A. Zeeb if (ostate == s->ostate && nstate == s->nstate) { 20029d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 20039d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 2004d9f59799SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: new state %d (%s) ->" 2005d9f59799SBjoern A. Zeeb " %d (%s): arg %d.\n", __func__, 2006d9f59799SBjoern A. Zeeb ostate, ieee80211_state_name[ostate], 2007d9f59799SBjoern A. Zeeb nstate, ieee80211_state_name[nstate], arg); 20089d9ba2b7SBjoern A. Zeeb #endif 20096b4cac81SBjoern A. Zeeb error = s->handler(vap, nstate, arg); 20106b4cac81SBjoern A. Zeeb break; 20116b4cac81SBjoern A. Zeeb } 20126b4cac81SBjoern A. Zeeb } 20136b4cac81SBjoern A. Zeeb IEEE80211_LOCK_ASSERT(vap->iv_ic); 20146b4cac81SBjoern A. Zeeb 20156b4cac81SBjoern A. Zeeb if (s->handler == NULL) { 2016d9f59799SBjoern A. Zeeb IMPROVE("turn this into a KASSERT\n"); 20176b4cac81SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: unsupported state transition " 20186b4cac81SBjoern A. Zeeb "%d (%s) -> %d (%s)\n", __func__, 20196b4cac81SBjoern A. Zeeb ostate, ieee80211_state_name[ostate], 20206b4cac81SBjoern A. Zeeb nstate, ieee80211_state_name[nstate]); 20216b4cac81SBjoern A. Zeeb return (ENOSYS); 20226b4cac81SBjoern A. Zeeb } 20236b4cac81SBjoern A. Zeeb 20246b4cac81SBjoern A. Zeeb if (error == EALREADY) { 20259d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 20269d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 2027d9f59799SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: state transition %d (%s) -> " 2028d9f59799SBjoern A. Zeeb "%d (%s): iv_newstate already handled: %d.\n", 2029d9f59799SBjoern A. Zeeb __func__, ostate, ieee80211_state_name[ostate], 2030d9f59799SBjoern A. Zeeb nstate, ieee80211_state_name[nstate], error); 20319d9ba2b7SBjoern A. Zeeb #endif 20326b4cac81SBjoern A. Zeeb return (0); 20336b4cac81SBjoern A. Zeeb } 20346b4cac81SBjoern A. Zeeb 20356b4cac81SBjoern A. Zeeb if (error != 0) { 20366b4cac81SBjoern A. Zeeb /* XXX-BZ currently expected so ignore. */ 20376b4cac81SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: error %d during state transition " 20386b4cac81SBjoern A. Zeeb "%d (%s) -> %d (%s)\n", __func__, error, 20396b4cac81SBjoern A. Zeeb ostate, ieee80211_state_name[ostate], 20406b4cac81SBjoern A. Zeeb nstate, ieee80211_state_name[nstate]); 20416b4cac81SBjoern A. Zeeb /* return (error); */ 20426b4cac81SBjoern A. Zeeb } 20436b4cac81SBjoern A. Zeeb 20449d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 20459d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 2046d9f59799SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x " 2047d9f59799SBjoern A. Zeeb "calling net80211 parent\n", 20486b4cac81SBjoern A. Zeeb __func__, __LINE__, vap, nstate, arg); 20499d9ba2b7SBjoern A. Zeeb #endif 20506b4cac81SBjoern A. Zeeb 20516b4cac81SBjoern A. Zeeb return (lvif->iv_newstate(vap, nstate, arg)); 20526b4cac81SBjoern A. Zeeb } 20536b4cac81SBjoern A. Zeeb 20546b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 20556b4cac81SBjoern A. Zeeb 2056d9f59799SBjoern A. Zeeb /* 2057d9f59799SBjoern A. Zeeb * We overload (*iv_update_bss) as otherwise we have cases in, e.g., 2058d9f59799SBjoern A. Zeeb * net80211::ieee80211_sta_join1() where vap->iv_bss gets replaced by a 2059d9f59799SBjoern A. Zeeb * new node without us knowing and thus our ni/lsta are out of sync. 2060d9f59799SBjoern A. Zeeb */ 2061d9f59799SBjoern A. Zeeb static struct ieee80211_node * 2062d9f59799SBjoern A. Zeeb lkpi_iv_update_bss(struct ieee80211vap *vap, struct ieee80211_node *ni) 2063d9f59799SBjoern A. Zeeb { 2064d9f59799SBjoern A. Zeeb struct lkpi_vif *lvif; 2065d9f59799SBjoern A. Zeeb struct ieee80211_node *obss; 2066d9f59799SBjoern A. Zeeb struct lkpi_sta *lsta; 2067ed3ef56bSBjoern A. Zeeb struct ieee80211_sta *sta; 2068d9f59799SBjoern A. Zeeb 2069d9f59799SBjoern A. Zeeb obss = vap->iv_bss; 2070d9f59799SBjoern A. Zeeb 20719d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 20729d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 20739d9ba2b7SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: obss %p ni_drv_data %p " 20749d9ba2b7SBjoern A. Zeeb "ni %p ni_drv_data %p\n", __func__, 20759d9ba2b7SBjoern A. Zeeb obss, (obss != NULL) ? obss->ni_drv_data : NULL, 20769d9ba2b7SBjoern A. Zeeb ni, (ni != NULL) ? ni->ni_drv_data : NULL); 20779d9ba2b7SBjoern A. Zeeb #endif 20789d9ba2b7SBjoern A. Zeeb 2079d9f59799SBjoern A. Zeeb /* Nothing to copy from. Just return. */ 2080d9f59799SBjoern A. Zeeb if (obss == NULL || obss->ni_drv_data == NULL) 2081d9f59799SBjoern A. Zeeb goto out; 2082d9f59799SBjoern A. Zeeb 2083d9f59799SBjoern A. Zeeb /* Nothing to copy to. Just return. */ 2084d9f59799SBjoern A. Zeeb IMPROVE("clearing the obss might still be needed?"); 2085d9f59799SBjoern A. Zeeb if (ni == NULL) 2086d9f59799SBjoern A. Zeeb goto out; 2087d9f59799SBjoern A. Zeeb 2088d9f59799SBjoern A. Zeeb /* Nothing changed? panic? */ 2089d9f59799SBjoern A. Zeeb if (obss == ni) 2090d9f59799SBjoern A. Zeeb goto out; 2091d9f59799SBjoern A. Zeeb 2092d9f59799SBjoern A. Zeeb lsta = obss->ni_drv_data; 2093d9f59799SBjoern A. Zeeb obss->ni_drv_data = ni->ni_drv_data; 2094d9f59799SBjoern A. Zeeb ni->ni_drv_data = lsta; 2095ed3ef56bSBjoern A. Zeeb if (lsta != NULL) { 2096d9f59799SBjoern A. Zeeb lsta->ni = ni; 2097ed3ef56bSBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 2098ed3ef56bSBjoern A. Zeeb IEEE80211_ADDR_COPY(sta->addr, lsta->ni->ni_macaddr); 2099ed3ef56bSBjoern A. Zeeb } 2100d9f59799SBjoern A. Zeeb lsta = obss->ni_drv_data; 2101ed3ef56bSBjoern A. Zeeb if (lsta != NULL) { 2102d9f59799SBjoern A. Zeeb lsta->ni = obss; 2103ed3ef56bSBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 2104ed3ef56bSBjoern A. Zeeb IEEE80211_ADDR_COPY(sta->addr, lsta->ni->ni_macaddr); 2105ed3ef56bSBjoern A. Zeeb } 2106d9f59799SBjoern A. Zeeb 2107d9f59799SBjoern A. Zeeb out: 2108ed3ef56bSBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 2109d9f59799SBjoern A. Zeeb return (lvif->iv_update_bss(vap, ni)); 2110d9f59799SBjoern A. Zeeb } 2111d9f59799SBjoern A. Zeeb 21124a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME 21136b4cac81SBjoern A. Zeeb static int 21144a67f1dfSBjoern A. Zeeb lkpi_wme_update(struct lkpi_hw *lhw, struct ieee80211vap *vap, bool planned) 21156b4cac81SBjoern A. Zeeb { 21164a67f1dfSBjoern A. Zeeb struct ieee80211com *ic; 21176b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 21186b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 21196b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 21206b4cac81SBjoern A. Zeeb struct chanAccParams chp; 21216b4cac81SBjoern A. Zeeb struct wmeParams wmeparr[WME_NUM_AC]; 21226b4cac81SBjoern A. Zeeb struct ieee80211_tx_queue_params txqp; 21236b4cac81SBjoern A. Zeeb enum ieee80211_bss_changed changed; 21246b4cac81SBjoern A. Zeeb int error; 21256b4cac81SBjoern A. Zeeb uint16_t ac; 21266b4cac81SBjoern A. Zeeb 21276b4cac81SBjoern A. Zeeb IMPROVE(); 21286b4cac81SBjoern A. Zeeb KASSERT(WME_NUM_AC == IEEE80211_NUM_ACS, ("%s: WME_NUM_AC %d != " 21296b4cac81SBjoern A. Zeeb "IEEE80211_NUM_ACS %d\n", __func__, WME_NUM_AC, IEEE80211_NUM_ACS)); 21306b4cac81SBjoern A. Zeeb 21316b4cac81SBjoern A. Zeeb if (vap == NULL) 21326b4cac81SBjoern A. Zeeb return (0); 21336b4cac81SBjoern A. Zeeb 21344a67f1dfSBjoern A. Zeeb if ((vap->iv_flags & IEEE80211_F_WME) == 0) 21354a67f1dfSBjoern A. Zeeb return (0); 21364a67f1dfSBjoern A. Zeeb 21376b4cac81SBjoern A. Zeeb if (lhw->ops->conf_tx == NULL) 21386b4cac81SBjoern A. Zeeb return (0); 21396b4cac81SBjoern A. Zeeb 21404a67f1dfSBjoern A. Zeeb if (!planned && (vap->iv_state != IEEE80211_S_RUN)) { 21414a67f1dfSBjoern A. Zeeb lhw->update_wme = true; 21424a67f1dfSBjoern A. Zeeb return (0); 21434a67f1dfSBjoern A. Zeeb } 21444a67f1dfSBjoern A. Zeeb lhw->update_wme = false; 21456b4cac81SBjoern A. Zeeb 21464a67f1dfSBjoern A. Zeeb ic = lhw->ic; 21476b4cac81SBjoern A. Zeeb ieee80211_wme_ic_getparams(ic, &chp); 21486b4cac81SBjoern A. Zeeb IEEE80211_LOCK(ic); 21496b4cac81SBjoern A. Zeeb for (ac = 0; ac < WME_NUM_AC; ac++) 21506b4cac81SBjoern A. Zeeb wmeparr[ac] = chp.cap_wmeParams[ac]; 21516b4cac81SBjoern A. Zeeb IEEE80211_UNLOCK(ic); 21526b4cac81SBjoern A. Zeeb 21534a67f1dfSBjoern A. Zeeb hw = LHW_TO_HW(lhw); 21544a67f1dfSBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 21554a67f1dfSBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 21564a67f1dfSBjoern A. Zeeb 21576b4cac81SBjoern A. Zeeb /* Configure tx queues (conf_tx) & send BSS_CHANGED_QOS. */ 21586b4cac81SBjoern A. Zeeb LKPI_80211_LHW_LOCK(lhw); 21596b4cac81SBjoern A. Zeeb for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { 21606b4cac81SBjoern A. Zeeb struct wmeParams *wmep; 21616b4cac81SBjoern A. Zeeb 21626b4cac81SBjoern A. Zeeb wmep = &wmeparr[ac]; 21636b4cac81SBjoern A. Zeeb bzero(&txqp, sizeof(txqp)); 21646b4cac81SBjoern A. Zeeb txqp.cw_min = wmep->wmep_logcwmin; 21656b4cac81SBjoern A. Zeeb txqp.cw_max = wmep->wmep_logcwmax; 21666b4cac81SBjoern A. Zeeb txqp.txop = wmep->wmep_txopLimit; 21676b4cac81SBjoern A. Zeeb txqp.aifs = wmep->wmep_aifsn; 21686b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_conf_tx(hw, vif, ac, &txqp); 21696b4cac81SBjoern A. Zeeb if (error != 0) 21706b4cac81SBjoern A. Zeeb printf("%s: conf_tx ac %u failed %d\n", 21716b4cac81SBjoern A. Zeeb __func__, ac, error); 21726b4cac81SBjoern A. Zeeb } 21736b4cac81SBjoern A. Zeeb LKPI_80211_LHW_UNLOCK(lhw); 21746b4cac81SBjoern A. Zeeb changed = BSS_CHANGED_QOS; 21754a67f1dfSBjoern A. Zeeb if (!planned) 21766b4cac81SBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed); 21774a67f1dfSBjoern A. Zeeb 21784a67f1dfSBjoern A. Zeeb return (changed); 21794a67f1dfSBjoern A. Zeeb } 21806b4cac81SBjoern A. Zeeb #endif 21816b4cac81SBjoern A. Zeeb 21824a67f1dfSBjoern A. Zeeb static int 21834a67f1dfSBjoern A. Zeeb lkpi_ic_wme_update(struct ieee80211com *ic) 21844a67f1dfSBjoern A. Zeeb { 21854a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME 21864a67f1dfSBjoern A. Zeeb struct ieee80211vap *vap; 21874a67f1dfSBjoern A. Zeeb struct lkpi_hw *lhw; 21884a67f1dfSBjoern A. Zeeb 21894a67f1dfSBjoern A. Zeeb IMPROVE("Use the per-VAP callback in net80211."); 21904a67f1dfSBjoern A. Zeeb vap = TAILQ_FIRST(&ic->ic_vaps); 21914a67f1dfSBjoern A. Zeeb if (vap == NULL) 21926b4cac81SBjoern A. Zeeb return (0); 21934a67f1dfSBjoern A. Zeeb 21944a67f1dfSBjoern A. Zeeb lhw = ic->ic_softc; 21954a67f1dfSBjoern A. Zeeb 21964a67f1dfSBjoern A. Zeeb lkpi_wme_update(lhw, vap, false); 21974a67f1dfSBjoern A. Zeeb #endif 21984a67f1dfSBjoern A. Zeeb return (0); /* unused */ 21996b4cac81SBjoern A. Zeeb } 22006b4cac81SBjoern A. Zeeb 22016b4cac81SBjoern A. Zeeb static struct ieee80211vap * 22026b4cac81SBjoern A. Zeeb lkpi_ic_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ], 22036b4cac81SBjoern A. Zeeb int unit, enum ieee80211_opmode opmode, int flags, 22046b4cac81SBjoern A. Zeeb const uint8_t bssid[IEEE80211_ADDR_LEN], 22056b4cac81SBjoern A. Zeeb const uint8_t mac[IEEE80211_ADDR_LEN]) 22066b4cac81SBjoern A. Zeeb { 22076b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 22086b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 22096b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 22106b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 22116b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 22126b4cac81SBjoern A. Zeeb enum ieee80211_bss_changed changed; 22136b4cac81SBjoern A. Zeeb size_t len; 2214e3a0b120SBjoern A. Zeeb int error, i; 22156b4cac81SBjoern A. Zeeb 22166b4cac81SBjoern A. Zeeb if (!TAILQ_EMPTY(&ic->ic_vaps)) /* 1 so far. Add <n> once this works. */ 22176b4cac81SBjoern A. Zeeb return (NULL); 22186b4cac81SBjoern A. Zeeb 22196b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 22206b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 22216b4cac81SBjoern A. Zeeb 22226b4cac81SBjoern A. Zeeb len = sizeof(*lvif); 22236b4cac81SBjoern A. Zeeb len += hw->vif_data_size; /* vif->drv_priv */ 22246b4cac81SBjoern A. Zeeb 22256b4cac81SBjoern A. Zeeb lvif = malloc(len, M_80211_VAP, M_WAITOK | M_ZERO); 22266b4cac81SBjoern A. Zeeb mtx_init(&lvif->mtx, "lvif", NULL, MTX_DEF); 22276b4cac81SBjoern A. Zeeb TAILQ_INIT(&lvif->lsta_head); 22286b4cac81SBjoern A. Zeeb vap = LVIF_TO_VAP(lvif); 22296b4cac81SBjoern A. Zeeb 22306b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 22316b4cac81SBjoern A. Zeeb memcpy(vif->addr, mac, IEEE80211_ADDR_LEN); 22326b4cac81SBjoern A. Zeeb vif->p2p = false; 22336b4cac81SBjoern A. Zeeb vif->probe_req_reg = false; 22346b4cac81SBjoern A. Zeeb vif->type = lkpi_opmode_to_vif_type(opmode); 22356b4cac81SBjoern A. Zeeb lvif->wdev.iftype = vif->type; 22366b4cac81SBjoern A. Zeeb /* Need to fill in other fields as well. */ 22376b4cac81SBjoern A. Zeeb IMPROVE(); 22386b4cac81SBjoern A. Zeeb 22396b4cac81SBjoern A. Zeeb /* XXX-BZ hardcoded for now! */ 22406b4cac81SBjoern A. Zeeb #if 1 22416b4cac81SBjoern A. Zeeb vif->chanctx_conf = NULL; 22426b4cac81SBjoern A. Zeeb vif->bss_conf.idle = true; 22436b4cac81SBjoern A. Zeeb vif->bss_conf.ps = false; 22446b4cac81SBjoern A. Zeeb vif->bss_conf.chandef.width = NL80211_CHAN_WIDTH_20_NOHT; 22456b4cac81SBjoern A. Zeeb vif->bss_conf.use_short_preamble = false; /* vap->iv_flags IEEE80211_F_SHPREAMBLE */ 22466b4cac81SBjoern A. Zeeb vif->bss_conf.use_short_slot = false; /* vap->iv_flags IEEE80211_F_SHSLOT */ 22476b4cac81SBjoern A. Zeeb vif->bss_conf.qos = false; 22486b4cac81SBjoern A. Zeeb vif->bss_conf.use_cts_prot = false; /* vap->iv_protmode */ 22496b4cac81SBjoern A. Zeeb vif->bss_conf.ht_operation_mode = IEEE80211_HT_OP_MODE_PROTECTION_NONE; 22506b4cac81SBjoern A. Zeeb vif->bss_conf.assoc = false; 22516b4cac81SBjoern A. Zeeb vif->bss_conf.aid = 0; 2252caaa79c3SBjoern A. Zeeb /* 2253caaa79c3SBjoern A. Zeeb * We need to initialize it to something as the bss_info_changed call 2254caaa79c3SBjoern A. Zeeb * will try to copy from it in iwlwifi and NULL is a panic. 2255caaa79c3SBjoern A. Zeeb * We will set the proper one in scan_to_auth() before being assoc. 2256caaa79c3SBjoern A. Zeeb * NB: the logic there with using an array as bssid_override and checking 2257caaa79c3SBjoern A. Zeeb * for non-NULL later is flawed but in their workflow does not seem to 2258caaa79c3SBjoern A. Zeeb * matter. 2259caaa79c3SBjoern A. Zeeb */ 2260caaa79c3SBjoern A. Zeeb vif->bss_conf.bssid = zerobssid; 22616b4cac81SBjoern A. Zeeb #endif 22626b4cac81SBjoern A. Zeeb #if 0 22636b4cac81SBjoern A. Zeeb vif->bss_conf.dtim_period = 0; /* IEEE80211_DTIM_DEFAULT ; must stay 0. */ 22646b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(vif->bss_conf.bssid, bssid); 22656b4cac81SBjoern A. Zeeb vif->bss_conf.beacon_int = ic->ic_bintval; 22666b4cac81SBjoern A. Zeeb /* iwlwifi bug. */ 22676b4cac81SBjoern A. Zeeb if (vif->bss_conf.beacon_int < 16) 22686b4cac81SBjoern A. Zeeb vif->bss_conf.beacon_int = 16; 22696b4cac81SBjoern A. Zeeb #endif 2270e3a0b120SBjoern A. Zeeb 2271e3a0b120SBjoern A. Zeeb /* Setup queue defaults; driver may override in (*add_interface). */ 2272e3a0b120SBjoern A. Zeeb for (i = 0; i < IEEE80211_NUM_ACS; i++) { 2273e3a0b120SBjoern A. Zeeb if (ieee80211_hw_check(hw, QUEUE_CONTROL)) 2274e3a0b120SBjoern A. Zeeb vif->hw_queue[i] = IEEE80211_INVAL_HW_QUEUE; 2275e3a0b120SBjoern A. Zeeb else if (hw->queues >= IEEE80211_NUM_ACS) 2276e3a0b120SBjoern A. Zeeb vif->hw_queue[i] = i; 2277e3a0b120SBjoern A. Zeeb else 2278e3a0b120SBjoern A. Zeeb vif->hw_queue[i] = 0; 2279e3a0b120SBjoern A. Zeeb } 2280e3a0b120SBjoern A. Zeeb vif->cab_queue = IEEE80211_INVAL_HW_QUEUE; 2281e3a0b120SBjoern A. Zeeb 22826b4cac81SBjoern A. Zeeb IMPROVE(); 22836b4cac81SBjoern A. Zeeb 22846b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_start(hw); 22856b4cac81SBjoern A. Zeeb if (error != 0) { 22866b4cac81SBjoern A. Zeeb printf("%s: failed to start hw: %d\n", __func__, error); 22876b4cac81SBjoern A. Zeeb mtx_destroy(&lvif->mtx); 22886b4cac81SBjoern A. Zeeb free(lvif, M_80211_VAP); 22896b4cac81SBjoern A. Zeeb return (NULL); 22906b4cac81SBjoern A. Zeeb } 22916b4cac81SBjoern A. Zeeb 22926b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_add_interface(hw, vif); 22936b4cac81SBjoern A. Zeeb if (error != 0) { 22946b4cac81SBjoern A. Zeeb IMPROVE(); /* XXX-BZ mo_stop()? */ 22956b4cac81SBjoern A. Zeeb printf("%s: failed to add interface: %d\n", __func__, error); 22966b4cac81SBjoern A. Zeeb mtx_destroy(&lvif->mtx); 22976b4cac81SBjoern A. Zeeb free(lvif, M_80211_VAP); 22986b4cac81SBjoern A. Zeeb return (NULL); 22996b4cac81SBjoern A. Zeeb } 23006b4cac81SBjoern A. Zeeb 23018891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_LOCK(lhw); 23026b4cac81SBjoern A. Zeeb TAILQ_INSERT_TAIL(&lhw->lvif_head, lvif, lvif_entry); 23038891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_UNLOCK(lhw); 23046b4cac81SBjoern A. Zeeb 23056b4cac81SBjoern A. Zeeb /* Set bss_info. */ 23066b4cac81SBjoern A. Zeeb changed = 0; 23076b4cac81SBjoern A. Zeeb lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed); 23086b4cac81SBjoern A. Zeeb 23096b4cac81SBjoern A. Zeeb /* conf_tx setup; default WME? */ 23106b4cac81SBjoern A. Zeeb 23116b4cac81SBjoern A. Zeeb /* Force MC init. */ 23126b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(ic, true); 23136b4cac81SBjoern A. Zeeb 23146b4cac81SBjoern A. Zeeb IMPROVE(); 23156b4cac81SBjoern A. Zeeb 23166b4cac81SBjoern A. Zeeb ieee80211_vap_setup(ic, vap, name, unit, opmode, flags, bssid); 23176b4cac81SBjoern A. Zeeb 23186b4cac81SBjoern A. Zeeb /* Override with LinuxKPI method so we can drive mac80211/cfg80211. */ 23196b4cac81SBjoern A. Zeeb lvif->iv_newstate = vap->iv_newstate; 23206b4cac81SBjoern A. Zeeb vap->iv_newstate = lkpi_iv_newstate; 2321d9f59799SBjoern A. Zeeb lvif->iv_update_bss = vap->iv_update_bss; 2322d9f59799SBjoern A. Zeeb vap->iv_update_bss = lkpi_iv_update_bss; 23236b4cac81SBjoern A. Zeeb 23246b4cac81SBjoern A. Zeeb /* Key management. */ 23256b4cac81SBjoern A. Zeeb if (lhw->ops->set_key != NULL) { 2326b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO 23276b4cac81SBjoern A. Zeeb vap->iv_key_set = lkpi_iv_key_set; 23286b4cac81SBjoern A. Zeeb vap->iv_key_delete = lkpi_iv_key_delete; 23296b4cac81SBjoern A. Zeeb #endif 23306b4cac81SBjoern A. Zeeb } 23316b4cac81SBjoern A. Zeeb 23326b4cac81SBjoern A. Zeeb ieee80211_ratectl_init(vap); 23336b4cac81SBjoern A. Zeeb 23346b4cac81SBjoern A. Zeeb /* Complete setup. */ 23356b4cac81SBjoern A. Zeeb ieee80211_vap_attach(vap, ieee80211_media_change, 23366b4cac81SBjoern A. Zeeb ieee80211_media_status, mac); 23376b4cac81SBjoern A. Zeeb 23386b4cac81SBjoern A. Zeeb if (hw->max_listen_interval == 0) 23396b4cac81SBjoern A. Zeeb hw->max_listen_interval = 7 * (ic->ic_lintval / ic->ic_bintval); 23406b4cac81SBjoern A. Zeeb hw->conf.listen_interval = hw->max_listen_interval; 23416b4cac81SBjoern A. Zeeb ic->ic_set_channel(ic); 23426b4cac81SBjoern A. Zeeb 23436b4cac81SBjoern A. Zeeb /* XXX-BZ do we need to be able to update these? */ 23446b4cac81SBjoern A. Zeeb hw->wiphy->frag_threshold = vap->iv_fragthreshold; 23456b4cac81SBjoern A. Zeeb lkpi_80211_mo_set_frag_threshold(hw, vap->iv_fragthreshold); 23466b4cac81SBjoern A. Zeeb hw->wiphy->rts_threshold = vap->iv_rtsthreshold; 23476b4cac81SBjoern A. Zeeb lkpi_80211_mo_set_rts_threshold(hw, vap->iv_rtsthreshold); 23486b4cac81SBjoern A. Zeeb /* any others? */ 23496b4cac81SBjoern A. Zeeb IMPROVE(); 23506b4cac81SBjoern A. Zeeb 23516b4cac81SBjoern A. Zeeb return (vap); 23526b4cac81SBjoern A. Zeeb } 23536b4cac81SBjoern A. Zeeb 23544b0af114SBjoern A. Zeeb void 23554b0af114SBjoern A. Zeeb linuxkpi_ieee80211_unregister_hw(struct ieee80211_hw *hw) 23564b0af114SBjoern A. Zeeb { 23574b0af114SBjoern A. Zeeb 23584b0af114SBjoern A. Zeeb wiphy_unregister(hw->wiphy); 23594b0af114SBjoern A. Zeeb linuxkpi_ieee80211_ifdetach(hw); 23604b0af114SBjoern A. Zeeb 23614b0af114SBjoern A. Zeeb IMPROVE(); 23624b0af114SBjoern A. Zeeb } 23634b0af114SBjoern A. Zeeb 23644b0af114SBjoern A. Zeeb void 23654b0af114SBjoern A. Zeeb linuxkpi_ieee80211_restart_hw(struct ieee80211_hw *hw) 23664b0af114SBjoern A. Zeeb { 23674b0af114SBjoern A. Zeeb 23684b0af114SBjoern A. Zeeb TODO(); 23694b0af114SBjoern A. Zeeb } 23704b0af114SBjoern A. Zeeb 23716b4cac81SBjoern A. Zeeb static void 23726b4cac81SBjoern A. Zeeb lkpi_ic_vap_delete(struct ieee80211vap *vap) 23736b4cac81SBjoern A. Zeeb { 23746b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 23756b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 23766b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 23776b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 23786b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 23796b4cac81SBjoern A. Zeeb 23806b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 23816b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 23826b4cac81SBjoern A. Zeeb ic = vap->iv_ic; 23836b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 23846b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 23856b4cac81SBjoern A. Zeeb 23868891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_LOCK(lhw); 23876b4cac81SBjoern A. Zeeb TAILQ_REMOVE(&lhw->lvif_head, lvif, lvif_entry); 23888891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_UNLOCK(lhw); 23896b4cac81SBjoern A. Zeeb lkpi_80211_mo_remove_interface(hw, vif); 23906b4cac81SBjoern A. Zeeb 23916b4cac81SBjoern A. Zeeb ieee80211_ratectl_deinit(vap); 23926b4cac81SBjoern A. Zeeb ieee80211_vap_detach(vap); 23936b4cac81SBjoern A. Zeeb mtx_destroy(&lvif->mtx); 23946b4cac81SBjoern A. Zeeb free(lvif, M_80211_VAP); 23956b4cac81SBjoern A. Zeeb } 23966b4cac81SBjoern A. Zeeb 23976b4cac81SBjoern A. Zeeb static void 23986b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast(struct ieee80211com *ic) 23996b4cac81SBjoern A. Zeeb { 24006b4cac81SBjoern A. Zeeb 24016b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(ic, false); 24026b4cac81SBjoern A. Zeeb TRACEOK(); 24036b4cac81SBjoern A. Zeeb } 24046b4cac81SBjoern A. Zeeb 24056b4cac81SBjoern A. Zeeb static void 24066b4cac81SBjoern A. Zeeb lkpi_ic_update_promisc(struct ieee80211com *ic) 24076b4cac81SBjoern A. Zeeb { 24086b4cac81SBjoern A. Zeeb 24096b4cac81SBjoern A. Zeeb UNIMPLEMENTED; 24106b4cac81SBjoern A. Zeeb } 24116b4cac81SBjoern A. Zeeb 24126b4cac81SBjoern A. Zeeb static void 24136b4cac81SBjoern A. Zeeb lkpi_ic_update_chw(struct ieee80211com *ic) 24146b4cac81SBjoern A. Zeeb { 24156b4cac81SBjoern A. Zeeb 24166b4cac81SBjoern A. Zeeb UNIMPLEMENTED; 24176b4cac81SBjoern A. Zeeb } 24186b4cac81SBjoern A. Zeeb 24196b4cac81SBjoern A. Zeeb /* Start / stop device. */ 24206b4cac81SBjoern A. Zeeb static void 24216b4cac81SBjoern A. Zeeb lkpi_ic_parent(struct ieee80211com *ic) 24226b4cac81SBjoern A. Zeeb { 24236b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 24246b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 24256b4cac81SBjoern A. Zeeb int error; 24266b4cac81SBjoern A. Zeeb bool start_all; 24276b4cac81SBjoern A. Zeeb 24286b4cac81SBjoern A. Zeeb IMPROVE(); 24296b4cac81SBjoern A. Zeeb 24306b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 24316b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 24326b4cac81SBjoern A. Zeeb start_all = false; 24336b4cac81SBjoern A. Zeeb 24346b4cac81SBjoern A. Zeeb if (ic->ic_nrunning > 0) { 24356b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_start(hw); 24366b4cac81SBjoern A. Zeeb if (error == 0) 24376b4cac81SBjoern A. Zeeb start_all = true; 24386b4cac81SBjoern A. Zeeb } else { 24396b4cac81SBjoern A. Zeeb lkpi_80211_mo_stop(hw); 24406b4cac81SBjoern A. Zeeb } 24416b4cac81SBjoern A. Zeeb 24426b4cac81SBjoern A. Zeeb if (start_all) 24436b4cac81SBjoern A. Zeeb ieee80211_start_all(ic); 24446b4cac81SBjoern A. Zeeb } 24456b4cac81SBjoern A. Zeeb 24466b4cac81SBjoern A. Zeeb bool 24476b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_is_ie_id_in_ie_buf(const u8 ie, const u8 *ie_ids, 24486b4cac81SBjoern A. Zeeb size_t ie_ids_len) 24496b4cac81SBjoern A. Zeeb { 24506b4cac81SBjoern A. Zeeb int i; 24516b4cac81SBjoern A. Zeeb 24526b4cac81SBjoern A. Zeeb for (i = 0; i < ie_ids_len; i++) { 24536b4cac81SBjoern A. Zeeb if (ie == *ie_ids) 24546b4cac81SBjoern A. Zeeb return (true); 24556b4cac81SBjoern A. Zeeb } 24566b4cac81SBjoern A. Zeeb 24576b4cac81SBjoern A. Zeeb return (false); 24586b4cac81SBjoern A. Zeeb } 24596b4cac81SBjoern A. Zeeb 24606b4cac81SBjoern A. Zeeb /* Return true if skipped; false if error. */ 24616b4cac81SBjoern A. Zeeb bool 24626b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ie_advance(size_t *xp, const u8 *ies, size_t ies_len) 24636b4cac81SBjoern A. Zeeb { 24646b4cac81SBjoern A. Zeeb size_t x; 24656b4cac81SBjoern A. Zeeb uint8_t l; 24666b4cac81SBjoern A. Zeeb 24676b4cac81SBjoern A. Zeeb x = *xp; 24686b4cac81SBjoern A. Zeeb 24696b4cac81SBjoern A. Zeeb KASSERT(x < ies_len, ("%s: x %zu ies_len %zu ies %p\n", 24706b4cac81SBjoern A. Zeeb __func__, x, ies_len, ies)); 24716b4cac81SBjoern A. Zeeb l = ies[x + 1]; 24726b4cac81SBjoern A. Zeeb x += 2 + l; 24736b4cac81SBjoern A. Zeeb 24746b4cac81SBjoern A. Zeeb if (x > ies_len) 24756b4cac81SBjoern A. Zeeb return (false); 24766b4cac81SBjoern A. Zeeb 24776b4cac81SBjoern A. Zeeb *xp = x; 24786b4cac81SBjoern A. Zeeb return (true); 24796b4cac81SBjoern A. Zeeb } 24806b4cac81SBjoern A. Zeeb 2481d9945d78SBjoern A. Zeeb static uint8_t * 2482d9945d78SBjoern A. Zeeb lkpi_scan_ies_add(uint8_t *p, struct ieee80211_scan_ies *scan_ies, 2483d9945d78SBjoern A. Zeeb uint32_t band_mask, struct ieee80211vap *vap, struct ieee80211_hw *hw) 24846b4cac81SBjoern A. Zeeb { 2485d9945d78SBjoern A. Zeeb struct ieee80211_supported_band *supband; 2486d9945d78SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels; 2487d9945d78SBjoern A. Zeeb const struct ieee80211_channel *chan; 2488d9945d78SBjoern A. Zeeb const struct ieee80211_rateset *rs; 2489d9945d78SBjoern A. Zeeb uint8_t *pb; 2490d9945d78SBjoern A. Zeeb int band, i; 24916b4cac81SBjoern A. Zeeb 2492d9945d78SBjoern A. Zeeb for (band = 0; band < NUM_NL80211_BANDS; band++) { 2493d9945d78SBjoern A. Zeeb if ((band_mask & (1 << band)) == 0) 2494d9945d78SBjoern A. Zeeb continue; 2495d9945d78SBjoern A. Zeeb 2496d9945d78SBjoern A. Zeeb supband = hw->wiphy->bands[band]; 2497d9945d78SBjoern A. Zeeb /* 2498d9945d78SBjoern A. Zeeb * This should not happen; 2499d9945d78SBjoern A. Zeeb * band_mask is a bitmask of valid bands to scan on. 2500d9945d78SBjoern A. Zeeb */ 2501d9945d78SBjoern A. Zeeb if (supband == NULL || supband->n_channels == 0) 2502d9945d78SBjoern A. Zeeb continue; 2503d9945d78SBjoern A. Zeeb 2504d9945d78SBjoern A. Zeeb /* Find a first channel to get the mode and rates from. */ 2505d9945d78SBjoern A. Zeeb channels = supband->channels; 2506d9945d78SBjoern A. Zeeb chan = NULL; 2507d9945d78SBjoern A. Zeeb for (i = 0; i < supband->n_channels; i++) { 2508d9945d78SBjoern A. Zeeb 2509d9945d78SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_DISABLED) 2510d9945d78SBjoern A. Zeeb continue; 2511d9945d78SBjoern A. Zeeb 2512d9945d78SBjoern A. Zeeb chan = ieee80211_find_channel(vap->iv_ic, 2513d9945d78SBjoern A. Zeeb channels[i].center_freq, 0); 2514d9945d78SBjoern A. Zeeb if (chan != NULL) 2515d9945d78SBjoern A. Zeeb break; 2516d9945d78SBjoern A. Zeeb } 2517d9945d78SBjoern A. Zeeb 2518d9945d78SBjoern A. Zeeb /* This really should not happen. */ 2519d9945d78SBjoern A. Zeeb if (chan == NULL) 2520d9945d78SBjoern A. Zeeb continue; 2521d9945d78SBjoern A. Zeeb 2522d9945d78SBjoern A. Zeeb pb = p; 2523d9945d78SBjoern A. Zeeb rs = ieee80211_get_suprates(vap->iv_ic, chan); /* calls chan2mode */ 2524d9945d78SBjoern A. Zeeb p = ieee80211_add_rates(p, rs); 2525d9945d78SBjoern A. Zeeb p = ieee80211_add_xrates(p, rs); 2526d9945d78SBjoern A. Zeeb 2527d9945d78SBjoern A. Zeeb scan_ies->ies[band] = pb; 2528d9945d78SBjoern A. Zeeb scan_ies->len[band] = p - pb; 2529d9945d78SBjoern A. Zeeb } 2530d9945d78SBjoern A. Zeeb 2531d9945d78SBjoern A. Zeeb /* Add common_ies */ 2532d9945d78SBjoern A. Zeeb pb = p; 2533d9945d78SBjoern A. Zeeb if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 && 2534d9945d78SBjoern A. Zeeb vap->iv_wpa_ie != NULL) { 2535d9945d78SBjoern A. Zeeb memcpy(p, vap->iv_wpa_ie, 2 + vap->iv_wpa_ie[1]); 2536d9945d78SBjoern A. Zeeb p += 2 + vap->iv_wpa_ie[1]; 2537d9945d78SBjoern A. Zeeb } 2538d9945d78SBjoern A. Zeeb if (vap->iv_appie_probereq != NULL) { 2539d9945d78SBjoern A. Zeeb memcpy(p, vap->iv_appie_probereq->ie_data, 2540d9945d78SBjoern A. Zeeb vap->iv_appie_probereq->ie_len); 2541d9945d78SBjoern A. Zeeb p += vap->iv_appie_probereq->ie_len; 2542d9945d78SBjoern A. Zeeb } 2543d9945d78SBjoern A. Zeeb scan_ies->common_ies = pb; 2544d9945d78SBjoern A. Zeeb scan_ies->common_ie_len = p - pb; 2545d9945d78SBjoern A. Zeeb 2546d9945d78SBjoern A. Zeeb return (p); 25476b4cac81SBjoern A. Zeeb } 25486b4cac81SBjoern A. Zeeb 25496b4cac81SBjoern A. Zeeb static void 25506b4cac81SBjoern A. Zeeb lkpi_ic_scan_start(struct ieee80211com *ic) 25516b4cac81SBjoern A. Zeeb { 25526b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 25536b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 25546b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 25556b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 25566b4cac81SBjoern A. Zeeb struct ieee80211_scan_state *ss; 25576b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 25586b4cac81SBjoern A. Zeeb int error; 25596b4cac81SBjoern A. Zeeb 25606b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 2561a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0) { 25626b4cac81SBjoern A. Zeeb /* A scan is still running. */ 25636b4cac81SBjoern A. Zeeb return; 25646b4cac81SBjoern A. Zeeb } 25656b4cac81SBjoern A. Zeeb 25666b4cac81SBjoern A. Zeeb ss = ic->ic_scan; 25676b4cac81SBjoern A. Zeeb vap = ss->ss_vap; 25686b4cac81SBjoern A. Zeeb if (vap->iv_state != IEEE80211_S_SCAN) { 2569d3ef7fb4SBjoern A. Zeeb IMPROVE("We need to be able to scan if not in S_SCAN"); 25706b4cac81SBjoern A. Zeeb return; 25716b4cac81SBjoern A. Zeeb } 25726b4cac81SBjoern A. Zeeb 25736b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 2574a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0) { 2575a486fbbdSBjoern A. Zeeb /* If hw_scan is cleared clear FEXT_SCAN_OFFLOAD too. */ 2576a486fbbdSBjoern A. Zeeb vap->iv_flags_ext &= ~IEEE80211_FEXT_SCAN_OFFLOAD; 2577d3ef7fb4SBjoern A. Zeeb sw_scan: 25786b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 25796b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 2580086be6a8SBjoern A. Zeeb 2581086be6a8SBjoern A. Zeeb if (vap->iv_state == IEEE80211_S_SCAN) 2582086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(hw, false); 2583086be6a8SBjoern A. Zeeb 25846b4cac81SBjoern A. Zeeb lkpi_80211_mo_sw_scan_start(hw, vif, vif->addr); 25856b4cac81SBjoern A. Zeeb /* net80211::scan_start() handled PS for us. */ 25866b4cac81SBjoern A. Zeeb IMPROVE(); 25876b4cac81SBjoern A. Zeeb /* XXX Also means it is too late to flush queues? 25886b4cac81SBjoern A. Zeeb * need to check iv_sta_ps or overload? */ 25896b4cac81SBjoern A. Zeeb /* XXX want to adjust ss end time/ maxdwell? */ 25906b4cac81SBjoern A. Zeeb 25916b4cac81SBjoern A. Zeeb } else { 25926b4cac81SBjoern A. Zeeb struct ieee80211_channel *c; 25936b4cac81SBjoern A. Zeeb struct ieee80211_scan_request *hw_req; 25946b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *lc, **cpp; 25956b4cac81SBjoern A. Zeeb struct cfg80211_ssid *ssids; 25966b4cac81SBjoern A. Zeeb struct cfg80211_scan_6ghz_params *s6gp; 25976b4cac81SBjoern A. Zeeb size_t chan_len, nchan, ssids_len, s6ghzlen; 2598d9945d78SBjoern A. Zeeb int band, i, ssid_count, common_ie_len; 2599d9945d78SBjoern A. Zeeb uint32_t band_mask; 2600d9945d78SBjoern A. Zeeb uint8_t *ie, *ieend; 26016b4cac81SBjoern A. Zeeb 2602d9945d78SBjoern A. Zeeb if (!ieee80211_hw_check(hw, SINGLE_SCAN_ON_ALL_BANDS)) { 2603d9945d78SBjoern A. Zeeb IMPROVE("individual band scans not yet supported"); 2604d9945d78SBjoern A. Zeeb /* In theory net80211 would have to drive this. */ 2605d9945d78SBjoern A. Zeeb return; 2606d9945d78SBjoern A. Zeeb } 2607d9945d78SBjoern A. Zeeb 2608d9945d78SBjoern A. Zeeb ssid_count = min(ss->ss_nssid, hw->wiphy->max_scan_ssids); 2609d9945d78SBjoern A. Zeeb ssids_len = ssid_count * sizeof(*ssids); 26106b4cac81SBjoern A. Zeeb s6ghzlen = 0 * (sizeof(*s6gp)); /* XXX-BZ */ 26116b4cac81SBjoern A. Zeeb 2612d9945d78SBjoern A. Zeeb band_mask = 0; 26136b4cac81SBjoern A. Zeeb nchan = 0; 2614d9945d78SBjoern A. Zeeb for (i = ss->ss_next; i < ss->ss_last; i++) { 26156b4cac81SBjoern A. Zeeb nchan++; 2616d9945d78SBjoern A. Zeeb band = lkpi_net80211_chan_to_nl80211_band( 2617d9945d78SBjoern A. Zeeb ss->ss_chans[ss->ss_next + i]); 2618d9945d78SBjoern A. Zeeb band_mask |= (1 << band); 2619d9945d78SBjoern A. Zeeb } 26206b4cac81SBjoern A. Zeeb chan_len = nchan * (sizeof(lc) + sizeof(*lc)); 26216b4cac81SBjoern A. Zeeb 2622d9945d78SBjoern A. Zeeb common_ie_len = 0; 2623d9945d78SBjoern A. Zeeb if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 && 2624d9945d78SBjoern A. Zeeb vap->iv_wpa_ie != NULL) 2625d9945d78SBjoern A. Zeeb common_ie_len += vap->iv_wpa_ie[1]; 2626d9945d78SBjoern A. Zeeb if (vap->iv_appie_probereq != NULL) 2627d9945d78SBjoern A. Zeeb common_ie_len += vap->iv_appie_probereq->ie_len; 2628d9945d78SBjoern A. Zeeb 2629d9945d78SBjoern A. Zeeb /* We would love to check this at an earlier stage... */ 2630d9945d78SBjoern A. Zeeb if (common_ie_len > hw->wiphy->max_scan_ie_len) { 2631d9945d78SBjoern A. Zeeb ic_printf(ic, "WARNING: %s: common_ie_len %d > " 2632d9945d78SBjoern A. Zeeb "wiphy->max_scan_ie_len %d\n", __func__, 2633d9945d78SBjoern A. Zeeb common_ie_len, hw->wiphy->max_scan_ie_len); 2634d9945d78SBjoern A. Zeeb } 2635d9945d78SBjoern A. Zeeb 26366b4cac81SBjoern A. Zeeb KASSERT(lhw->hw_req == NULL, ("%s: ic %p lhw %p hw_req %p " 26376b4cac81SBjoern A. Zeeb "!= NULL\n", __func__, ic, lhw, lhw->hw_req)); 26386b4cac81SBjoern A. Zeeb 2639d9945d78SBjoern A. Zeeb lhw->hw_req = hw_req = malloc(sizeof(*hw_req) + ssids_len + 2640d9945d78SBjoern A. Zeeb s6ghzlen + chan_len + lhw->supbands * lhw->scan_ie_len + 2641d9945d78SBjoern A. Zeeb common_ie_len, M_LKPI80211, M_WAITOK | M_ZERO); 26426b4cac81SBjoern A. Zeeb 26436b4cac81SBjoern A. Zeeb hw_req->req.flags = 0; /* XXX ??? */ 26446b4cac81SBjoern A. Zeeb /* hw_req->req.wdev */ 26456b4cac81SBjoern A. Zeeb hw_req->req.wiphy = hw->wiphy; 26466b4cac81SBjoern A. Zeeb hw_req->req.no_cck = false; /* XXX */ 26476b4cac81SBjoern A. Zeeb #if 0 26486b4cac81SBjoern A. Zeeb /* This seems to pessimise default scanning behaviour. */ 26496b4cac81SBjoern A. Zeeb hw_req->req.duration_mandatory = TICKS_2_USEC(ss->ss_mindwell); 26506b4cac81SBjoern A. Zeeb hw_req->req.duration = TICKS_2_USEC(ss->ss_maxdwell); 26516b4cac81SBjoern A. Zeeb #endif 26526b4cac81SBjoern A. Zeeb #ifdef __notyet__ 26536b4cac81SBjoern A. Zeeb hw_req->req.flags |= NL80211_SCAN_FLAG_RANDOM_ADDR; 26546b4cac81SBjoern A. Zeeb memcpy(hw_req->req.mac_addr, xxx, IEEE80211_ADDR_LEN); 26556b4cac81SBjoern A. Zeeb memset(hw_req->req.mac_addr_mask, 0xxx, IEEE80211_ADDR_LEN); 26566b4cac81SBjoern A. Zeeb #endif 26576b4cac81SBjoern A. Zeeb 26586b4cac81SBjoern A. Zeeb hw_req->req.n_channels = nchan; 26596b4cac81SBjoern A. Zeeb cpp = (struct linuxkpi_ieee80211_channel **)(hw_req + 1); 26606b4cac81SBjoern A. Zeeb lc = (struct linuxkpi_ieee80211_channel *)(cpp + nchan); 26616b4cac81SBjoern A. Zeeb for (i = 0; i < nchan; i++) { 26626b4cac81SBjoern A. Zeeb *(cpp + i) = 26636b4cac81SBjoern A. Zeeb (struct linuxkpi_ieee80211_channel *)(lc + i); 26646b4cac81SBjoern A. Zeeb } 26656b4cac81SBjoern A. Zeeb for (i = 0; i < nchan; i++) { 26666b4cac81SBjoern A. Zeeb c = ss->ss_chans[ss->ss_next + i]; 26676b4cac81SBjoern A. Zeeb 26686b4cac81SBjoern A. Zeeb lc->hw_value = c->ic_ieee; 26696b4cac81SBjoern A. Zeeb lc->center_freq = c->ic_freq; 26706b4cac81SBjoern A. Zeeb /* lc->flags */ 26716b4cac81SBjoern A. Zeeb lc->band = lkpi_net80211_chan_to_nl80211_band(c); 26726b4cac81SBjoern A. Zeeb lc->max_power = c->ic_maxpower; 26736b4cac81SBjoern A. Zeeb /* lc-> ... */ 26746b4cac81SBjoern A. Zeeb lc++; 26756b4cac81SBjoern A. Zeeb } 26766b4cac81SBjoern A. Zeeb 2677d9945d78SBjoern A. Zeeb hw_req->req.n_ssids = ssid_count; 26786b4cac81SBjoern A. Zeeb if (hw_req->req.n_ssids > 0) { 26796b4cac81SBjoern A. Zeeb ssids = (struct cfg80211_ssid *)lc; 26806b4cac81SBjoern A. Zeeb hw_req->req.ssids = ssids; 2681d9945d78SBjoern A. Zeeb for (i = 0; i < ssid_count; i++) { 26826b4cac81SBjoern A. Zeeb ssids->ssid_len = ss->ss_ssid[i].len; 26836b4cac81SBjoern A. Zeeb memcpy(ssids->ssid, ss->ss_ssid[i].ssid, 26846b4cac81SBjoern A. Zeeb ss->ss_ssid[i].len); 26856b4cac81SBjoern A. Zeeb ssids++; 26866b4cac81SBjoern A. Zeeb } 26876b4cac81SBjoern A. Zeeb s6gp = (struct cfg80211_scan_6ghz_params *)ssids; 26886b4cac81SBjoern A. Zeeb } else { 26896b4cac81SBjoern A. Zeeb s6gp = (struct cfg80211_scan_6ghz_params *)lc; 26906b4cac81SBjoern A. Zeeb } 26916b4cac81SBjoern A. Zeeb 26926b4cac81SBjoern A. Zeeb /* 6GHz one day. */ 26936b4cac81SBjoern A. Zeeb hw_req->req.n_6ghz_params = 0; 26946b4cac81SBjoern A. Zeeb hw_req->req.scan_6ghz_params = NULL; 26956b4cac81SBjoern A. Zeeb hw_req->req.scan_6ghz = false; /* Weird boolean; not what you think. */ 26966b4cac81SBjoern A. Zeeb /* s6gp->... */ 26976b4cac81SBjoern A. Zeeb 2698d9945d78SBjoern A. Zeeb ie = ieend = (uint8_t *)s6gp; 2699d9945d78SBjoern A. Zeeb /* Copy per-band IEs, copy common IEs */ 2700d9945d78SBjoern A. Zeeb ieend = lkpi_scan_ies_add(ie, &hw_req->ies, band_mask, vap, hw); 2701d9945d78SBjoern A. Zeeb hw_req->req.ie = ie; 2702d9945d78SBjoern A. Zeeb hw_req->req.ie_len = ieend - ie; 2703d9945d78SBjoern A. Zeeb 27046b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 27056b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 27066b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_hw_scan(hw, vif, hw_req); 27076b4cac81SBjoern A. Zeeb if (error != 0) { 2708d9945d78SBjoern A. Zeeb ieee80211_cancel_scan(vap); 2709d9945d78SBjoern A. Zeeb 27106b4cac81SBjoern A. Zeeb free(hw_req, M_LKPI80211); 27116b4cac81SBjoern A. Zeeb lhw->hw_req = NULL; 2712d3ef7fb4SBjoern A. Zeeb 2713d3ef7fb4SBjoern A. Zeeb /* 2714d3ef7fb4SBjoern A. Zeeb * XXX-SIGH magic number. 2715d3ef7fb4SBjoern A. Zeeb * rtw88 has a magic "return 1" if offloading scan is 2716d3ef7fb4SBjoern A. Zeeb * not possible. Fall back to sw scan in that case. 2717d3ef7fb4SBjoern A. Zeeb */ 2718196cfd0bSBjoern A. Zeeb if (error == 1) { 2719a486fbbdSBjoern A. Zeeb lhw->scan_flags &= ~LKPI_LHW_SCAN_HW; 2720196cfd0bSBjoern A. Zeeb ieee80211_start_scan(vap, 2721196cfd0bSBjoern A. Zeeb IEEE80211_SCAN_ACTIVE | 2722196cfd0bSBjoern A. Zeeb IEEE80211_SCAN_NOPICK | 2723196cfd0bSBjoern A. Zeeb IEEE80211_SCAN_ONCE, 2724196cfd0bSBjoern A. Zeeb IEEE80211_SCAN_FOREVER, 2725196cfd0bSBjoern A. Zeeb ss->ss_mindwell ? ss->ss_mindwell : msecs_to_ticks(20), 2726196cfd0bSBjoern A. Zeeb ss->ss_maxdwell ? ss->ss_maxdwell : msecs_to_ticks(200), 2727196cfd0bSBjoern A. Zeeb vap->iv_des_nssid, vap->iv_des_ssid); 2728d3ef7fb4SBjoern A. Zeeb goto sw_scan; 2729196cfd0bSBjoern A. Zeeb } 2730d3ef7fb4SBjoern A. Zeeb 2731d3ef7fb4SBjoern A. Zeeb ic_printf(ic, "ERROR: %s: hw_scan returned %d\n", 2732d3ef7fb4SBjoern A. Zeeb __func__, error); 27336b4cac81SBjoern A. Zeeb } 27346b4cac81SBjoern A. Zeeb } 27356b4cac81SBjoern A. Zeeb } 27366b4cac81SBjoern A. Zeeb 27376b4cac81SBjoern A. Zeeb static void 27386b4cac81SBjoern A. Zeeb lkpi_ic_scan_end(struct ieee80211com *ic) 27396b4cac81SBjoern A. Zeeb { 27406b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 27416b4cac81SBjoern A. Zeeb 27426b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 2743a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) == 0) { 27446b4cac81SBjoern A. Zeeb return; 27456b4cac81SBjoern A. Zeeb } 27466b4cac81SBjoern A. Zeeb 2747a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0) { 2748a486fbbdSBjoern A. Zeeb struct ieee80211_scan_state *ss; 2749a486fbbdSBjoern A. Zeeb struct ieee80211vap *vap; 27506b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 27516b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 27526b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 27536b4cac81SBjoern A. Zeeb 2754a486fbbdSBjoern A. Zeeb ss = ic->ic_scan; 2755a486fbbdSBjoern A. Zeeb vap = ss->ss_vap; 27566b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 27576b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 27586b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 2759a486fbbdSBjoern A. Zeeb 27606b4cac81SBjoern A. Zeeb lkpi_80211_mo_sw_scan_complete(hw, vif); 27616b4cac81SBjoern A. Zeeb 27626b4cac81SBjoern A. Zeeb /* Send PS to stop buffering if n80211 does not for us? */ 2763086be6a8SBjoern A. Zeeb 2764086be6a8SBjoern A. Zeeb if (vap->iv_state == IEEE80211_S_SCAN) 2765086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(hw, true); 27666b4cac81SBjoern A. Zeeb } 27676b4cac81SBjoern A. Zeeb } 27686b4cac81SBjoern A. Zeeb 27696b4cac81SBjoern A. Zeeb static void 2770a486fbbdSBjoern A. Zeeb lkpi_ic_scan_curchan(struct ieee80211_scan_state *ss, 2771a486fbbdSBjoern A. Zeeb unsigned long maxdwell) 2772a486fbbdSBjoern A. Zeeb { 2773a486fbbdSBjoern A. Zeeb struct lkpi_hw *lhw; 2774a486fbbdSBjoern A. Zeeb 2775a486fbbdSBjoern A. Zeeb lhw = ss->ss_ic->ic_softc; 2776a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0) 2777a486fbbdSBjoern A. Zeeb lhw->ic_scan_curchan(ss, maxdwell); 2778a486fbbdSBjoern A. Zeeb } 2779a486fbbdSBjoern A. Zeeb 2780a486fbbdSBjoern A. Zeeb static void 2781a486fbbdSBjoern A. Zeeb lkpi_ic_scan_mindwell(struct ieee80211_scan_state *ss) 2782a486fbbdSBjoern A. Zeeb { 2783a486fbbdSBjoern A. Zeeb struct lkpi_hw *lhw; 2784a486fbbdSBjoern A. Zeeb 2785a486fbbdSBjoern A. Zeeb lhw = ss->ss_ic->ic_softc; 2786a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0) 2787a486fbbdSBjoern A. Zeeb lhw->ic_scan_mindwell(ss); 2788a486fbbdSBjoern A. Zeeb } 2789a486fbbdSBjoern A. Zeeb 2790a486fbbdSBjoern A. Zeeb static void 27916b4cac81SBjoern A. Zeeb lkpi_ic_set_channel(struct ieee80211com *ic) 27926b4cac81SBjoern A. Zeeb { 27936b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 27946b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 2795b2cf3c21SBjoern A. Zeeb struct ieee80211_channel *c; 2796b2cf3c21SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 27976b4cac81SBjoern A. Zeeb int error; 27986b4cac81SBjoern A. Zeeb 27996b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 2800b2cf3c21SBjoern A. Zeeb 2801b2cf3c21SBjoern A. Zeeb /* If we do not support (*config)() save us the work. */ 2802b2cf3c21SBjoern A. Zeeb if (lhw->ops->config == NULL) 28036b4cac81SBjoern A. Zeeb return; 28046b4cac81SBjoern A. Zeeb 2805a486fbbdSBjoern A. Zeeb /* If we have a hw_scan running do not switch channels. */ 2806a486fbbdSBjoern A. Zeeb if ((lhw->scan_flags & (LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW)) == 2807a486fbbdSBjoern A. Zeeb (LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW)) 2808a486fbbdSBjoern A. Zeeb return; 2809a486fbbdSBjoern A. Zeeb 2810b2cf3c21SBjoern A. Zeeb c = ic->ic_curchan; 2811b2cf3c21SBjoern A. Zeeb if (c == NULL || c == IEEE80211_CHAN_ANYC) { 28126b4cac81SBjoern A. Zeeb ic_printf(ic, "%s: c %p ops->config %p\n", __func__, 28136b4cac81SBjoern A. Zeeb c, lhw->ops->config); 28146b4cac81SBjoern A. Zeeb return; 28156b4cac81SBjoern A. Zeeb } 28166b4cac81SBjoern A. Zeeb 28176b4cac81SBjoern A. Zeeb chan = lkpi_find_lkpi80211_chan(lhw, c); 28186b4cac81SBjoern A. Zeeb if (chan == NULL) { 28196b4cac81SBjoern A. Zeeb ic_printf(ic, "%s: c %p chan %p\n", __func__, 28206b4cac81SBjoern A. Zeeb c, chan); 28216b4cac81SBjoern A. Zeeb return; 28226b4cac81SBjoern A. Zeeb } 28236b4cac81SBjoern A. Zeeb 28246b4cac81SBjoern A. Zeeb /* XXX max power for scanning? */ 28256b4cac81SBjoern A. Zeeb IMPROVE(); 28266b4cac81SBjoern A. Zeeb 28276b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 28284a07abdeSBjoern A. Zeeb cfg80211_chandef_create(&hw->conf.chandef, chan, 28294a07abdeSBjoern A. Zeeb NL80211_CHAN_NO_HT); 28306b4cac81SBjoern A. Zeeb 28316b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_CHANNEL); 28326b4cac81SBjoern A. Zeeb if (error != 0 && error != EOPNOTSUPP) { 28336b4cac81SBjoern A. Zeeb ic_printf(ic, "ERROR: %s: config %#0x returned %d\n", 28346b4cac81SBjoern A. Zeeb __func__, IEEE80211_CONF_CHANGE_CHANNEL, error); 28356b4cac81SBjoern A. Zeeb /* XXX should we unroll to the previous chandef? */ 28366b4cac81SBjoern A. Zeeb IMPROVE(); 28376b4cac81SBjoern A. Zeeb } else { 28386b4cac81SBjoern A. Zeeb /* Update radiotap channels as well. */ 28396b4cac81SBjoern A. Zeeb lhw->rtap_tx.wt_chan_freq = htole16(c->ic_freq); 28406b4cac81SBjoern A. Zeeb lhw->rtap_tx.wt_chan_flags = htole16(c->ic_flags); 28416b4cac81SBjoern A. Zeeb lhw->rtap_rx.wr_chan_freq = htole16(c->ic_freq); 28426b4cac81SBjoern A. Zeeb lhw->rtap_rx.wr_chan_flags = htole16(c->ic_flags); 28436b4cac81SBjoern A. Zeeb } 28446b4cac81SBjoern A. Zeeb 28456b4cac81SBjoern A. Zeeb /* Currently PS is hard coded off! Not sure it belongs here. */ 28466b4cac81SBjoern A. Zeeb IMPROVE(); 28476b4cac81SBjoern A. Zeeb if (ieee80211_hw_check(hw, SUPPORTS_PS) && 28486b4cac81SBjoern A. Zeeb (hw->conf.flags & IEEE80211_CONF_PS) != 0) { 28496b4cac81SBjoern A. Zeeb hw->conf.flags &= ~IEEE80211_CONF_PS; 28506b4cac81SBjoern A. Zeeb error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_PS); 28516b4cac81SBjoern A. Zeeb if (error != 0 && error != EOPNOTSUPP) 28526b4cac81SBjoern A. Zeeb ic_printf(ic, "ERROR: %s: config %#0x returned " 28536b4cac81SBjoern A. Zeeb "%d\n", __func__, IEEE80211_CONF_CHANGE_PS, 28546b4cac81SBjoern A. Zeeb error); 28556b4cac81SBjoern A. Zeeb } 28566b4cac81SBjoern A. Zeeb } 28576b4cac81SBjoern A. Zeeb 28586b4cac81SBjoern A. Zeeb static struct ieee80211_node * 28596b4cac81SBjoern A. Zeeb lkpi_ic_node_alloc(struct ieee80211vap *vap, 28606b4cac81SBjoern A. Zeeb const uint8_t mac[IEEE80211_ADDR_LEN]) 28616b4cac81SBjoern A. Zeeb { 28626b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 28636b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 28644f61ef8bSBjoern A. Zeeb struct ieee80211_node *ni; 28656b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 28666b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 28676b4cac81SBjoern A. Zeeb 28686b4cac81SBjoern A. Zeeb ic = vap->iv_ic; 28696b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 28706b4cac81SBjoern A. Zeeb 28716b4cac81SBjoern A. Zeeb /* We keep allocations de-coupled so we can deal with the two worlds. */ 28724f61ef8bSBjoern A. Zeeb if (lhw->ic_node_alloc == NULL) 28734f61ef8bSBjoern A. Zeeb return (NULL); 28744f61ef8bSBjoern A. Zeeb 28756b4cac81SBjoern A. Zeeb ni = lhw->ic_node_alloc(vap, mac); 28766b4cac81SBjoern A. Zeeb if (ni == NULL) 28776b4cac81SBjoern A. Zeeb return (NULL); 28786b4cac81SBjoern A. Zeeb 28796b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 28804f61ef8bSBjoern A. Zeeb lsta = lkpi_lsta_alloc(vap, mac, hw, ni); 28816b4cac81SBjoern A. Zeeb if (lsta == NULL) { 28826b4cac81SBjoern A. Zeeb if (lhw->ic_node_free != NULL) 28836b4cac81SBjoern A. Zeeb lhw->ic_node_free(ni); 28846b4cac81SBjoern A. Zeeb return (NULL); 28856b4cac81SBjoern A. Zeeb } 28866b4cac81SBjoern A. Zeeb 28876b4cac81SBjoern A. Zeeb return (ni); 28886b4cac81SBjoern A. Zeeb } 28896b4cac81SBjoern A. Zeeb 28906b4cac81SBjoern A. Zeeb static int 28916b4cac81SBjoern A. Zeeb lkpi_ic_node_init(struct ieee80211_node *ni) 28926b4cac81SBjoern A. Zeeb { 28936b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 28946b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 28956b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 28966b4cac81SBjoern A. Zeeb int error; 28976b4cac81SBjoern A. Zeeb 28986b4cac81SBjoern A. Zeeb ic = ni->ni_ic; 28996b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 29006b4cac81SBjoern A. Zeeb 29016b4cac81SBjoern A. Zeeb if (lhw->ic_node_init != NULL) { 29026b4cac81SBjoern A. Zeeb error = lhw->ic_node_init(ni); 29036b4cac81SBjoern A. Zeeb if (error != 0) 29046b4cac81SBjoern A. Zeeb return (error); 29056b4cac81SBjoern A. Zeeb } 29066b4cac81SBjoern A. Zeeb 29076b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 29086b4cac81SBjoern A. Zeeb 29096b4cac81SBjoern A. Zeeb /* Now take the reference before linking it to the table. */ 29106b4cac81SBjoern A. Zeeb lsta->ni = ieee80211_ref_node(ni); 29116b4cac81SBjoern A. Zeeb 29126b4cac81SBjoern A. Zeeb /* XXX-BZ Sync other state over. */ 29136b4cac81SBjoern A. Zeeb IMPROVE(); 29146b4cac81SBjoern A. Zeeb 29156b4cac81SBjoern A. Zeeb return (0); 29166b4cac81SBjoern A. Zeeb } 29176b4cac81SBjoern A. Zeeb 29186b4cac81SBjoern A. Zeeb static void 29196b4cac81SBjoern A. Zeeb lkpi_ic_node_cleanup(struct ieee80211_node *ni) 29206b4cac81SBjoern A. Zeeb { 29216b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 29226b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 29236b4cac81SBjoern A. Zeeb 29246b4cac81SBjoern A. Zeeb ic = ni->ni_ic; 29256b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 29266b4cac81SBjoern A. Zeeb 29276b4cac81SBjoern A. Zeeb /* XXX-BZ remove from driver, ... */ 29286b4cac81SBjoern A. Zeeb IMPROVE(); 29296b4cac81SBjoern A. Zeeb 29306b4cac81SBjoern A. Zeeb if (lhw->ic_node_cleanup != NULL) 29316b4cac81SBjoern A. Zeeb lhw->ic_node_cleanup(ni); 29326b4cac81SBjoern A. Zeeb } 29336b4cac81SBjoern A. Zeeb 29346b4cac81SBjoern A. Zeeb static void 29356b4cac81SBjoern A. Zeeb lkpi_ic_node_free(struct ieee80211_node *ni) 29366b4cac81SBjoern A. Zeeb { 29376b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 29386b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 29396b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 29406b4cac81SBjoern A. Zeeb 29416b4cac81SBjoern A. Zeeb ic = ni->ni_ic; 29426b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 29436b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 2944d9f59799SBjoern A. Zeeb if (lsta == NULL) 2945d9f59799SBjoern A. Zeeb goto out; 29466b4cac81SBjoern A. Zeeb 29476b4cac81SBjoern A. Zeeb /* XXX-BZ free resources, ... */ 29486b4cac81SBjoern A. Zeeb IMPROVE(); 29496b4cac81SBjoern A. Zeeb 29506b4cac81SBjoern A. Zeeb /* Flush mbufq (make sure to release ni refs!). */ 29516b4cac81SBjoern A. Zeeb #ifdef __notyet__ 29526b4cac81SBjoern A. Zeeb KASSERT(mbufq_len(&lsta->txq) == 0, ("%s: lsta %p has txq len %d != 0\n", 29536b4cac81SBjoern A. Zeeb __func__, lsta, mbufq_len(&lsta->txq))); 29546b4cac81SBjoern A. Zeeb #endif 29556b4cac81SBjoern A. Zeeb /* Drain taskq. */ 29566b4cac81SBjoern A. Zeeb 29576b4cac81SBjoern A. Zeeb /* Drain sta->txq[] */ 29586b4cac81SBjoern A. Zeeb mtx_destroy(&lsta->txq_mtx); 29596b4cac81SBjoern A. Zeeb 29606b4cac81SBjoern A. Zeeb /* Remove lsta if added_to_drv. */ 2961e24e8103SBjoern A. Zeeb 29626b4cac81SBjoern A. Zeeb /* Remove lsta from vif */ 2963e24e8103SBjoern A. Zeeb /* Remove ref from lsta node... */ 2964d9f59799SBjoern A. Zeeb /* Free lsta. */ 2965e24e8103SBjoern A. Zeeb lkpi_lsta_remove(lsta, VAP_TO_LVIF(ni->ni_vap)); 2966d9f59799SBjoern A. Zeeb 2967d9f59799SBjoern A. Zeeb out: 29686b4cac81SBjoern A. Zeeb if (lhw->ic_node_free != NULL) 29696b4cac81SBjoern A. Zeeb lhw->ic_node_free(ni); 29706b4cac81SBjoern A. Zeeb } 29716b4cac81SBjoern A. Zeeb 29726b4cac81SBjoern A. Zeeb static int 29736b4cac81SBjoern A. Zeeb lkpi_ic_raw_xmit(struct ieee80211_node *ni, struct mbuf *m, 29746b4cac81SBjoern A. Zeeb const struct ieee80211_bpf_params *params __unused) 29756b4cac81SBjoern A. Zeeb { 29766b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 29776b4cac81SBjoern A. Zeeb 29786b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 29796b4cac81SBjoern A. Zeeb 29806b4cac81SBjoern A. Zeeb /* Queue the packet and enqueue the task to handle it. */ 29816b4cac81SBjoern A. Zeeb LKPI_80211_LSTA_LOCK(lsta); 29826b4cac81SBjoern A. Zeeb mbufq_enqueue(&lsta->txq, m); 29836b4cac81SBjoern A. Zeeb LKPI_80211_LSTA_UNLOCK(lsta); 29846b4cac81SBjoern A. Zeeb 29859d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 29869d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_TX) 29876b4cac81SBjoern A. Zeeb printf("%s:%d lsta %p ni %p %6D mbuf_qlen %d\n", 29886b4cac81SBjoern A. Zeeb __func__, __LINE__, lsta, ni, ni->ni_macaddr, ":", 29896b4cac81SBjoern A. Zeeb mbufq_len(&lsta->txq)); 29909d9ba2b7SBjoern A. Zeeb #endif 29916b4cac81SBjoern A. Zeeb 29926b4cac81SBjoern A. Zeeb taskqueue_enqueue(taskqueue_thread, &lsta->txq_task); 29936b4cac81SBjoern A. Zeeb return (0); 29946b4cac81SBjoern A. Zeeb } 29956b4cac81SBjoern A. Zeeb 29966b4cac81SBjoern A. Zeeb static void 29976b4cac81SBjoern A. Zeeb lkpi_80211_txq_tx_one(struct lkpi_sta *lsta, struct mbuf *m) 29986b4cac81SBjoern A. Zeeb { 29996b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 3000b35f6cd0SBjoern A. Zeeb #ifndef LKPI_80211_HW_CRYPTO 30016b4cac81SBjoern A. Zeeb struct ieee80211_frame *wh; 3002b35f6cd0SBjoern A. Zeeb #endif 30036b4cac81SBjoern A. Zeeb struct ieee80211_key *k; 30046b4cac81SBjoern A. Zeeb struct sk_buff *skb; 30056b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 30066b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 30076b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 30086b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 30096b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 30106b4cac81SBjoern A. Zeeb struct ieee80211_channel *c; 30116b4cac81SBjoern A. Zeeb struct ieee80211_tx_control control; 30126b4cac81SBjoern A. Zeeb struct ieee80211_tx_info *info; 30136b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 3014e3a0b120SBjoern A. Zeeb struct ieee80211_hdr *hdr; 30156b4cac81SBjoern A. Zeeb void *buf; 3016e3a0b120SBjoern A. Zeeb uint8_t ac, tid; 30176b4cac81SBjoern A. Zeeb 30186b4cac81SBjoern A. Zeeb M_ASSERTPKTHDR(m); 30196b4cac81SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 30209d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_TX_DUMP) 30216b4cac81SBjoern A. Zeeb hexdump(mtod(m, const void *), m->m_len, "RAW TX (plain) ", 0); 30226b4cac81SBjoern A. Zeeb #endif 30236b4cac81SBjoern A. Zeeb 30246b4cac81SBjoern A. Zeeb ni = lsta->ni; 3025b35f6cd0SBjoern A. Zeeb k = NULL; 3026b35f6cd0SBjoern A. Zeeb #ifndef LKPI_80211_HW_CRYPTO 30276b4cac81SBjoern A. Zeeb /* Encrypt the frame if need be; XXX-BZ info->control.hw_key. */ 30286b4cac81SBjoern A. Zeeb wh = mtod(m, struct ieee80211_frame *); 30296b4cac81SBjoern A. Zeeb if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) { 30306b4cac81SBjoern A. Zeeb /* Retrieve key for TX && do software encryption. */ 30316b4cac81SBjoern A. Zeeb k = ieee80211_crypto_encap(ni, m); 30326b4cac81SBjoern A. Zeeb if (k == NULL) { 30336b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 30346b4cac81SBjoern A. Zeeb m_freem(m); 30356b4cac81SBjoern A. Zeeb return; 30366b4cac81SBjoern A. Zeeb } 30376b4cac81SBjoern A. Zeeb } 30386b4cac81SBjoern A. Zeeb #endif 30396b4cac81SBjoern A. Zeeb 30406b4cac81SBjoern A. Zeeb ic = ni->ni_ic; 30416b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 30426b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 30436b4cac81SBjoern A. Zeeb c = ni->ni_chan; 30446b4cac81SBjoern A. Zeeb 30456b4cac81SBjoern A. Zeeb if (ieee80211_radiotap_active_vap(ni->ni_vap)) { 30466b4cac81SBjoern A. Zeeb struct lkpi_radiotap_tx_hdr *rtap; 30476b4cac81SBjoern A. Zeeb 30486b4cac81SBjoern A. Zeeb rtap = &lhw->rtap_tx; 30496b4cac81SBjoern A. Zeeb rtap->wt_flags = 0; 30506b4cac81SBjoern A. Zeeb if (k != NULL) 30516b4cac81SBjoern A. Zeeb rtap->wt_flags |= IEEE80211_RADIOTAP_F_WEP; 30526b4cac81SBjoern A. Zeeb if (m->m_flags & M_FRAG) 30536b4cac81SBjoern A. Zeeb rtap->wt_flags |= IEEE80211_RADIOTAP_F_FRAG; 30546b4cac81SBjoern A. Zeeb IMPROVE(); 30556b4cac81SBjoern A. Zeeb rtap->wt_rate = 0; 30566b4cac81SBjoern A. Zeeb if (c != NULL && c != IEEE80211_CHAN_ANYC) { 30576b4cac81SBjoern A. Zeeb rtap->wt_chan_freq = htole16(c->ic_freq); 30586b4cac81SBjoern A. Zeeb rtap->wt_chan_flags = htole16(c->ic_flags); 30596b4cac81SBjoern A. Zeeb } 30606b4cac81SBjoern A. Zeeb 30616b4cac81SBjoern A. Zeeb ieee80211_radiotap_tx(ni->ni_vap, m); 30626b4cac81SBjoern A. Zeeb } 30636b4cac81SBjoern A. Zeeb 30646b4cac81SBjoern A. Zeeb /* 30656b4cac81SBjoern A. Zeeb * net80211 should handle hw->extra_tx_headroom. 30666b4cac81SBjoern A. Zeeb * Though for as long as we are copying we don't mind. 30673d09d310SBjoern A. Zeeb * XXX-BZ rtw88 asks for too much headroom for ipv6+tcp: 30683d09d310SBjoern A. Zeeb * https://lists.freebsd.org/archives/freebsd-transport/2022-February/000012.html 30696b4cac81SBjoern A. Zeeb */ 30706b4cac81SBjoern A. Zeeb skb = dev_alloc_skb(hw->extra_tx_headroom + m->m_pkthdr.len); 30716b4cac81SBjoern A. Zeeb if (skb == NULL) { 30726b4cac81SBjoern A. Zeeb printf("XXX ERROR %s: skb alloc failed\n", __func__); 30736b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 30746b4cac81SBjoern A. Zeeb m_freem(m); 30756b4cac81SBjoern A. Zeeb return; 30766b4cac81SBjoern A. Zeeb } 30776b4cac81SBjoern A. Zeeb skb_reserve(skb, hw->extra_tx_headroom); 30786b4cac81SBjoern A. Zeeb 30796b4cac81SBjoern A. Zeeb /* XXX-BZ we need a SKB version understanding mbuf. */ 30806b4cac81SBjoern A. Zeeb /* Save the mbuf for ieee80211_tx_complete(). */ 30816b4cac81SBjoern A. Zeeb skb->m_free_func = lkpi_ieee80211_free_skb_mbuf; 30826b4cac81SBjoern A. Zeeb skb->m = m; 30836b4cac81SBjoern A. Zeeb #if 0 30846b4cac81SBjoern A. Zeeb skb_put_data(skb, m->m_data, m->m_pkthdr.len); 30856b4cac81SBjoern A. Zeeb #else 30866b4cac81SBjoern A. Zeeb buf = skb_put(skb, m->m_pkthdr.len); 30876b4cac81SBjoern A. Zeeb m_copydata(m, 0, m->m_pkthdr.len, buf); 30886b4cac81SBjoern A. Zeeb #endif 30896b4cac81SBjoern A. Zeeb /* Save the ni. */ 30906b4cac81SBjoern A. Zeeb m->m_pkthdr.PH_loc.ptr = ni; 30916b4cac81SBjoern A. Zeeb 30926b4cac81SBjoern A. Zeeb lvif = VAP_TO_LVIF(ni->ni_vap); 30936b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 30946b4cac81SBjoern A. Zeeb 3095e3a0b120SBjoern A. Zeeb hdr = (void *)skb->data; 3096e3a0b120SBjoern A. Zeeb tid = linuxkpi_ieee80211_get_tid(hdr, true); 3097e3a0b120SBjoern A. Zeeb if (tid == IEEE80211_NONQOS_TID) { /* == IEEE80211_NUM_TIDS */ 3098e3a0b120SBjoern A. Zeeb skb->priority = 0; 3099e3a0b120SBjoern A. Zeeb ac = IEEE80211_AC_BE; 3100e3a0b120SBjoern A. Zeeb } else { 3101e3a0b120SBjoern A. Zeeb skb->priority = tid & IEEE80211_QOS_CTL_TID_MASK; 3102e3a0b120SBjoern A. Zeeb ac = tid_to_mac80211_ac[tid & 7]; 3103e3a0b120SBjoern A. Zeeb } 31046b4cac81SBjoern A. Zeeb skb_set_queue_mapping(skb, ac); 31056b4cac81SBjoern A. Zeeb 31066b4cac81SBjoern A. Zeeb info = IEEE80211_SKB_CB(skb); 31076b4cac81SBjoern A. Zeeb info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS; 31086b4cac81SBjoern A. Zeeb /* Slight delay; probably only happens on scanning so fine? */ 31096b4cac81SBjoern A. Zeeb if (c == NULL || c == IEEE80211_CHAN_ANYC) 31106b4cac81SBjoern A. Zeeb c = ic->ic_curchan; 31116b4cac81SBjoern A. Zeeb info->band = lkpi_net80211_chan_to_nl80211_band(c); 3112e3a0b120SBjoern A. Zeeb info->hw_queue = vif->hw_queue[ac]; 31136b4cac81SBjoern A. Zeeb if (m->m_flags & M_EAPOL) 31146b4cac81SBjoern A. Zeeb info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO; 31156b4cac81SBjoern A. Zeeb info->control.vif = vif; 31166b4cac81SBjoern A. Zeeb /* XXX-BZ info->control.rates */ 31176b4cac81SBjoern A. Zeeb 31186b4cac81SBjoern A. Zeeb lsta = lkpi_find_lsta_by_ni(lvif, ni); 31196b4cac81SBjoern A. Zeeb if (lsta != NULL) { 31206b4cac81SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 3121b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO 31226b4cac81SBjoern A. Zeeb info->control.hw_key = lsta->kc; 31236b4cac81SBjoern A. Zeeb #endif 31246b4cac81SBjoern A. Zeeb } else { 31256b4cac81SBjoern A. Zeeb sta = NULL; 31266b4cac81SBjoern A. Zeeb } 31276b4cac81SBjoern A. Zeeb 31286b4cac81SBjoern A. Zeeb IMPROVE(); 31296b4cac81SBjoern A. Zeeb 31306b4cac81SBjoern A. Zeeb if (sta != NULL) { 31316b4cac81SBjoern A. Zeeb struct lkpi_txq *ltxq; 31326b4cac81SBjoern A. Zeeb 3133e3a0b120SBjoern A. Zeeb ltxq = NULL; 3134e3a0b120SBjoern A. Zeeb if (!ieee80211_is_data_present(hdr->frame_control)) { 3135e3a0b120SBjoern A. Zeeb if (vif->type == NL80211_IFTYPE_STATION && 3136e3a0b120SBjoern A. Zeeb lsta->added_to_drv && 3137e3a0b120SBjoern A. Zeeb sta->txq[IEEE80211_NUM_TIDS] != NULL) 3138d0d29110SBjoern A. Zeeb ltxq = TXQ_TO_LTXQ(sta->txq[IEEE80211_NUM_TIDS]); 3139e3a0b120SBjoern A. Zeeb } else if (lsta->added_to_drv && 3140e3a0b120SBjoern A. Zeeb sta->txq[skb->priority] != NULL) { 3141e3a0b120SBjoern A. Zeeb ltxq = TXQ_TO_LTXQ(sta->txq[skb->priority]); 3142e3a0b120SBjoern A. Zeeb } 3143e3a0b120SBjoern A. Zeeb if (ltxq == NULL) 3144d0d29110SBjoern A. Zeeb goto ops_tx; 3145e3a0b120SBjoern A. Zeeb 3146d0d29110SBjoern A. Zeeb KASSERT(ltxq != NULL, ("%s: lsta %p sta %p m %p skb %p " 3147d0d29110SBjoern A. Zeeb "ltxq %p != NULL\n", __func__, lsta, sta, m, skb, ltxq)); 3148d0d29110SBjoern A. Zeeb 31496b4cac81SBjoern A. Zeeb skb_queue_tail(<xq->skbq, skb); 31509d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 31519d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_TX) 3152d0d29110SBjoern A. Zeeb printf("%s:%d mo_wake_tx_queue :: %d %u lsta %p sta %p " 3153d0d29110SBjoern A. Zeeb "ni %p %6D skb %p lxtq %p { qlen %u, ac %d tid %u } " 3154d0d29110SBjoern A. Zeeb "WAKE_TX_Q ac %d prio %u qmap %u\n", 3155fb6eaf74SBjoern A. Zeeb __func__, __LINE__, 3156d0d29110SBjoern A. Zeeb curthread->td_tid, (unsigned int)ticks, 3157d0d29110SBjoern A. Zeeb lsta, sta, ni, ni->ni_macaddr, ":", skb, ltxq, 3158d0d29110SBjoern A. Zeeb skb_queue_len(<xq->skbq), ltxq->txq.ac, 3159d0d29110SBjoern A. Zeeb ltxq->txq.tid, ac, skb->priority, skb->qmap); 31609d9ba2b7SBjoern A. Zeeb #endif 3161d0d29110SBjoern A. Zeeb lkpi_80211_mo_wake_tx_queue(hw, <xq->txq); 31626b4cac81SBjoern A. Zeeb return; 31636b4cac81SBjoern A. Zeeb } 31646b4cac81SBjoern A. Zeeb 31656b4cac81SBjoern A. Zeeb ops_tx: 31669d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 31679d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_TX) 3168d0d29110SBjoern A. Zeeb printf("%s:%d mo_tx :: lsta %p sta %p ni %p %6D skb %p " 3169d0d29110SBjoern A. Zeeb "TX ac %d prio %u qmap %u\n", 31706b4cac81SBjoern A. Zeeb __func__, __LINE__, lsta, sta, ni, ni->ni_macaddr, ":", 31716b4cac81SBjoern A. Zeeb skb, ac, skb->priority, skb->qmap); 31729d9ba2b7SBjoern A. Zeeb #endif 31736b4cac81SBjoern A. Zeeb memset(&control, 0, sizeof(control)); 31746b4cac81SBjoern A. Zeeb control.sta = sta; 31756b4cac81SBjoern A. Zeeb 31766b4cac81SBjoern A. Zeeb lkpi_80211_mo_tx(hw, &control, skb); 31776b4cac81SBjoern A. Zeeb return; 31786b4cac81SBjoern A. Zeeb } 31796b4cac81SBjoern A. Zeeb 31806b4cac81SBjoern A. Zeeb static void 31816b4cac81SBjoern A. Zeeb lkpi_80211_txq_task(void *ctx, int pending) 31826b4cac81SBjoern A. Zeeb { 31836b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 31846b4cac81SBjoern A. Zeeb struct mbufq mq; 31856b4cac81SBjoern A. Zeeb struct mbuf *m; 31866b4cac81SBjoern A. Zeeb 31876b4cac81SBjoern A. Zeeb lsta = ctx; 31886b4cac81SBjoern A. Zeeb 31899d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 31909d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_TX) 31916b4cac81SBjoern A. Zeeb printf("%s:%d lsta %p ni %p %6D pending %d mbuf_qlen %d\n", 31929d9ba2b7SBjoern A. Zeeb __func__, __LINE__, lsta, lsta->ni, lsta->ni->ni_macaddr, ":", 31936b4cac81SBjoern A. Zeeb pending, mbufq_len(&lsta->txq)); 31949d9ba2b7SBjoern A. Zeeb #endif 31956b4cac81SBjoern A. Zeeb 31966b4cac81SBjoern A. Zeeb mbufq_init(&mq, IFQ_MAXLEN); 31976b4cac81SBjoern A. Zeeb 31986b4cac81SBjoern A. Zeeb LKPI_80211_LSTA_LOCK(lsta); 31996b4cac81SBjoern A. Zeeb mbufq_concat(&mq, &lsta->txq); 32006b4cac81SBjoern A. Zeeb LKPI_80211_LSTA_UNLOCK(lsta); 32016b4cac81SBjoern A. Zeeb 32026b4cac81SBjoern A. Zeeb m = mbufq_dequeue(&mq); 32036b4cac81SBjoern A. Zeeb while (m != NULL) { 32046b4cac81SBjoern A. Zeeb lkpi_80211_txq_tx_one(lsta, m); 32056b4cac81SBjoern A. Zeeb m = mbufq_dequeue(&mq); 32066b4cac81SBjoern A. Zeeb } 32076b4cac81SBjoern A. Zeeb } 32086b4cac81SBjoern A. Zeeb 32096b4cac81SBjoern A. Zeeb static int 32106b4cac81SBjoern A. Zeeb lkpi_ic_transmit(struct ieee80211com *ic, struct mbuf *m) 32116b4cac81SBjoern A. Zeeb { 32126b4cac81SBjoern A. Zeeb 32136b4cac81SBjoern A. Zeeb /* XXX TODO */ 32146b4cac81SBjoern A. Zeeb IMPROVE(); 32156b4cac81SBjoern A. Zeeb 32166b4cac81SBjoern A. Zeeb /* Quick and dirty cheating hack. */ 32176b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 32186b4cac81SBjoern A. Zeeb 32196b4cac81SBjoern A. Zeeb ni = (struct ieee80211_node *)m->m_pkthdr.rcvif; 32206b4cac81SBjoern A. Zeeb return (lkpi_ic_raw_xmit(ni, m, NULL)); 32216b4cac81SBjoern A. Zeeb } 32226b4cac81SBjoern A. Zeeb 32236b4cac81SBjoern A. Zeeb static void 32246b4cac81SBjoern A. Zeeb lkpi_ic_getradiocaps(struct ieee80211com *ic, int maxchan, 32256b4cac81SBjoern A. Zeeb int *n, struct ieee80211_channel *c) 32266b4cac81SBjoern A. Zeeb { 32276b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 32286b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 32296b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels; 32306b4cac81SBjoern A. Zeeb uint8_t bands[IEEE80211_MODE_BYTES]; 32316b4cac81SBjoern A. Zeeb int chan_flags, error, i, nchans; 32326b4cac81SBjoern A. Zeeb 32336b4cac81SBjoern A. Zeeb /* Channels */ 32346b4cac81SBjoern A. Zeeb lhw = ic->ic_softc; 32356b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 32366b4cac81SBjoern A. Zeeb 32376b4cac81SBjoern A. Zeeb /* NL80211_BAND_2GHZ */ 32386b4cac81SBjoern A. Zeeb nchans = 0; 32396b4cac81SBjoern A. Zeeb if (hw->wiphy->bands[NL80211_BAND_2GHZ] != NULL) 32406b4cac81SBjoern A. Zeeb nchans = hw->wiphy->bands[NL80211_BAND_2GHZ]->n_channels; 32416b4cac81SBjoern A. Zeeb if (nchans > 0) { 32426b4cac81SBjoern A. Zeeb memset(bands, 0, sizeof(bands)); 32436b4cac81SBjoern A. Zeeb chan_flags = 0; 32446b4cac81SBjoern A. Zeeb setbit(bands, IEEE80211_MODE_11B); 32456b4cac81SBjoern A. Zeeb /* XXX-BZ unclear how to check for 11g. */ 32466b4cac81SBjoern A. Zeeb setbit(bands, IEEE80211_MODE_11G); 32476b4cac81SBjoern A. Zeeb #ifdef __notyet__ 32486b4cac81SBjoern A. Zeeb if (hw->wiphy->bands[NL80211_BAND_2GHZ]->ht_cap.ht_supported) { 32496b4cac81SBjoern A. Zeeb setbit(bands, IEEE80211_MODE_11NG); 32506b4cac81SBjoern A. Zeeb chan_flags |= NET80211_CBW_FLAG_HT40; 32516b4cac81SBjoern A. Zeeb } 32526b4cac81SBjoern A. Zeeb #endif 32536b4cac81SBjoern A. Zeeb 32546b4cac81SBjoern A. Zeeb channels = hw->wiphy->bands[NL80211_BAND_2GHZ]->channels; 3255cee56e77SBjoern A. Zeeb for (i = 0; i < nchans && *n < maxchan; i++) { 32566b4cac81SBjoern A. Zeeb uint32_t nflags = 0; 32576b4cac81SBjoern A. Zeeb int cflags = chan_flags; 32586b4cac81SBjoern A. Zeeb 32596b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_DISABLED) { 32606b4cac81SBjoern A. Zeeb printf("%s: %s: Skipping disabled chan " 32616b4cac81SBjoern A. Zeeb "[%u/%u/%#x]\n", ic->ic_name, __func__, 32626b4cac81SBjoern A. Zeeb channels[i].hw_value, 32636b4cac81SBjoern A. Zeeb channels[i].center_freq, channels[i].flags); 32646b4cac81SBjoern A. Zeeb continue; 32656b4cac81SBjoern A. Zeeb } 32666b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_IR) 32676b4cac81SBjoern A. Zeeb nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE); 32686b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_RADAR) 32696b4cac81SBjoern A. Zeeb nflags |= IEEE80211_CHAN_DFS; 32706b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ) 32716b4cac81SBjoern A. Zeeb cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80); 32726b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ) 32736b4cac81SBjoern A. Zeeb cflags &= ~NET80211_CBW_FLAG_VHT80; 32746b4cac81SBjoern A. Zeeb /* XXX how to map the remaining enum ieee80211_channel_flags? */ 32756b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_HT40) 32766b4cac81SBjoern A. Zeeb cflags &= ~NET80211_CBW_FLAG_HT40; 32776b4cac81SBjoern A. Zeeb 32786b4cac81SBjoern A. Zeeb error = ieee80211_add_channel_cbw(c, maxchan, n, 32796b4cac81SBjoern A. Zeeb channels[i].hw_value, channels[i].center_freq, 32806b4cac81SBjoern A. Zeeb channels[i].max_power, 32816b4cac81SBjoern A. Zeeb nflags, bands, chan_flags); 3282cee56e77SBjoern A. Zeeb /* net80211::ENOBUFS: *n >= maxchans */ 3283cee56e77SBjoern A. Zeeb if (error != 0 && error != ENOBUFS) 32846b4cac81SBjoern A. Zeeb printf("%s: %s: Adding chan %u/%u/%#x/%#x/%#x/%#x " 32856b4cac81SBjoern A. Zeeb "returned error %d\n", ic->ic_name, 32866b4cac81SBjoern A. Zeeb __func__, channels[i].hw_value, 32876b4cac81SBjoern A. Zeeb channels[i].center_freq, channels[i].flags, 32886b4cac81SBjoern A. Zeeb nflags, chan_flags, cflags, error); 3289cee56e77SBjoern A. Zeeb if (error != 0) 32906b4cac81SBjoern A. Zeeb break; 32916b4cac81SBjoern A. Zeeb } 32926b4cac81SBjoern A. Zeeb } 32936b4cac81SBjoern A. Zeeb 32946b4cac81SBjoern A. Zeeb /* NL80211_BAND_5GHZ */ 32956b4cac81SBjoern A. Zeeb nchans = 0; 32966b4cac81SBjoern A. Zeeb if (hw->wiphy->bands[NL80211_BAND_5GHZ] != NULL) 32976b4cac81SBjoern A. Zeeb nchans = hw->wiphy->bands[NL80211_BAND_5GHZ]->n_channels; 32986b4cac81SBjoern A. Zeeb if (nchans > 0) { 32996b4cac81SBjoern A. Zeeb memset(bands, 0, sizeof(bands)); 33006b4cac81SBjoern A. Zeeb chan_flags = 0; 33016b4cac81SBjoern A. Zeeb setbit(bands, IEEE80211_MODE_11A); 33026b4cac81SBjoern A. Zeeb #ifdef __not_yet__ 33036b4cac81SBjoern A. Zeeb if (hw->wiphy->bands[NL80211_BAND_5GHZ]->ht_cap.ht_supported) { 33046b4cac81SBjoern A. Zeeb setbit(bands, IEEE80211_MODE_11NA); 33056b4cac81SBjoern A. Zeeb chan_flags |= NET80211_CBW_FLAG_HT40; 33066b4cac81SBjoern A. Zeeb } 33076b4cac81SBjoern A. Zeeb if (hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.vht_supported){ 33086b4cac81SBjoern A. Zeeb 33096b4cac81SBjoern A. Zeeb ic->ic_flags_ext |= IEEE80211_FEXT_VHT; 33106b4cac81SBjoern A. Zeeb ic->ic_vhtcaps = 33116b4cac81SBjoern A. Zeeb hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.cap; 33126b4cac81SBjoern A. Zeeb 33136b4cac81SBjoern A. Zeeb setbit(bands, IEEE80211_MODE_VHT_5GHZ); 33146b4cac81SBjoern A. Zeeb chan_flags |= NET80211_CBW_FLAG_VHT80; 33156b4cac81SBjoern A. Zeeb if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160MHZ( 33166b4cac81SBjoern A. Zeeb ic->ic_vhtcaps)) 33176b4cac81SBjoern A. Zeeb chan_flags |= NET80211_CBW_FLAG_VHT160; 33186b4cac81SBjoern A. Zeeb if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160_80P80MHZ( 33196b4cac81SBjoern A. Zeeb ic->ic_vhtcaps)) 33206b4cac81SBjoern A. Zeeb chan_flags |= NET80211_CBW_FLAG_VHT80P80; 33216b4cac81SBjoern A. Zeeb } 33226b4cac81SBjoern A. Zeeb #endif 33236b4cac81SBjoern A. Zeeb 33246b4cac81SBjoern A. Zeeb channels = hw->wiphy->bands[NL80211_BAND_5GHZ]->channels; 3325cee56e77SBjoern A. Zeeb for (i = 0; i < nchans && *n < maxchan; i++) { 33266b4cac81SBjoern A. Zeeb uint32_t nflags = 0; 33276b4cac81SBjoern A. Zeeb int cflags = chan_flags; 33286b4cac81SBjoern A. Zeeb 33296b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_DISABLED) { 33306b4cac81SBjoern A. Zeeb printf("%s: %s: Skipping disabled chan " 33316b4cac81SBjoern A. Zeeb "[%u/%u/%#x]\n", ic->ic_name, __func__, 33326b4cac81SBjoern A. Zeeb channels[i].hw_value, 33336b4cac81SBjoern A. Zeeb channels[i].center_freq, channels[i].flags); 33346b4cac81SBjoern A. Zeeb continue; 33356b4cac81SBjoern A. Zeeb } 33366b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_IR) 33376b4cac81SBjoern A. Zeeb nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE); 33386b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_RADAR) 33396b4cac81SBjoern A. Zeeb nflags |= IEEE80211_CHAN_DFS; 33406b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ) 33416b4cac81SBjoern A. Zeeb cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80); 33426b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ) 33436b4cac81SBjoern A. Zeeb cflags &= ~NET80211_CBW_FLAG_VHT80; 33446b4cac81SBjoern A. Zeeb /* XXX hwo to map the remaining enum ieee80211_channel_flags? */ 33456b4cac81SBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_NO_HT40) 33466b4cac81SBjoern A. Zeeb cflags &= ~NET80211_CBW_FLAG_HT40; 33476b4cac81SBjoern A. Zeeb 33486b4cac81SBjoern A. Zeeb error = ieee80211_add_channel_cbw(c, maxchan, n, 33496b4cac81SBjoern A. Zeeb channels[i].hw_value, channels[i].center_freq, 33506b4cac81SBjoern A. Zeeb channels[i].max_power, 33516b4cac81SBjoern A. Zeeb nflags, bands, chan_flags); 3352cee56e77SBjoern A. Zeeb /* net80211::ENOBUFS: *n >= maxchans */ 3353cee56e77SBjoern A. Zeeb if (error != 0 && error != ENOBUFS) 33546b4cac81SBjoern A. Zeeb printf("%s: %s: Adding chan %u/%u/%#x/%#x/%#x/%#x " 33556b4cac81SBjoern A. Zeeb "returned error %d\n", ic->ic_name, 33566b4cac81SBjoern A. Zeeb __func__, channels[i].hw_value, 33576b4cac81SBjoern A. Zeeb channels[i].center_freq, channels[i].flags, 33586b4cac81SBjoern A. Zeeb nflags, chan_flags, cflags, error); 3359cee56e77SBjoern A. Zeeb if (error != 0) 33606b4cac81SBjoern A. Zeeb break; 33616b4cac81SBjoern A. Zeeb } 33626b4cac81SBjoern A. Zeeb } 33636b4cac81SBjoern A. Zeeb } 33646b4cac81SBjoern A. Zeeb 33656b4cac81SBjoern A. Zeeb static void * 33666b4cac81SBjoern A. Zeeb lkpi_ieee80211_ifalloc(void) 33676b4cac81SBjoern A. Zeeb { 33686b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 33696b4cac81SBjoern A. Zeeb 33706b4cac81SBjoern A. Zeeb ic = malloc(sizeof(*ic), M_LKPI80211, M_WAITOK | M_ZERO); 33716b4cac81SBjoern A. Zeeb if (ic == NULL) 33726b4cac81SBjoern A. Zeeb return (NULL); 33736b4cac81SBjoern A. Zeeb 33746b4cac81SBjoern A. Zeeb /* Setting these happens later when we have device information. */ 33756b4cac81SBjoern A. Zeeb ic->ic_softc = NULL; 33766b4cac81SBjoern A. Zeeb ic->ic_name = "linuxkpi"; 33776b4cac81SBjoern A. Zeeb 33786b4cac81SBjoern A. Zeeb return (ic); 33796b4cac81SBjoern A. Zeeb } 33806b4cac81SBjoern A. Zeeb 33816b4cac81SBjoern A. Zeeb struct ieee80211_hw * 33826b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_alloc_hw(size_t priv_len, const struct ieee80211_ops *ops) 33836b4cac81SBjoern A. Zeeb { 33846b4cac81SBjoern A. Zeeb struct ieee80211_hw *hw; 33856b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 33866b4cac81SBjoern A. Zeeb struct wiphy *wiphy; 33876b4cac81SBjoern A. Zeeb 33886b4cac81SBjoern A. Zeeb /* Get us and the driver data also allocated. */ 33896b4cac81SBjoern A. Zeeb wiphy = wiphy_new(&linuxkpi_mac80211cfgops, sizeof(*lhw) + priv_len); 33906b4cac81SBjoern A. Zeeb if (wiphy == NULL) 33916b4cac81SBjoern A. Zeeb return (NULL); 33926b4cac81SBjoern A. Zeeb 33936b4cac81SBjoern A. Zeeb lhw = wiphy_priv(wiphy); 33946b4cac81SBjoern A. Zeeb lhw->ops = ops; 3395652e22d3SBjoern A. Zeeb 33966b4cac81SBjoern A. Zeeb mtx_init(&lhw->mtx, "lhw", NULL, MTX_DEF | MTX_RECURSE); 33978891c455SBjoern A. Zeeb sx_init_flags(&lhw->lvif_sx, "lhw-lvif", SX_RECURSE | SX_DUPOK); 33986b4cac81SBjoern A. Zeeb TAILQ_INIT(&lhw->lvif_head); 33996b4cac81SBjoern A. Zeeb 34006b4cac81SBjoern A. Zeeb /* 34016b4cac81SBjoern A. Zeeb * XXX-BZ TODO make sure there is a "_null" function to all ops 34026b4cac81SBjoern A. Zeeb * not initialized. 34036b4cac81SBjoern A. Zeeb */ 34046b4cac81SBjoern A. Zeeb hw = LHW_TO_HW(lhw); 34056b4cac81SBjoern A. Zeeb hw->wiphy = wiphy; 3406086be6a8SBjoern A. Zeeb hw->conf.flags |= IEEE80211_CONF_IDLE; 34076b4cac81SBjoern A. Zeeb hw->priv = (void *)(lhw + 1); 34086b4cac81SBjoern A. Zeeb 34096b4cac81SBjoern A. Zeeb /* BSD Specific. */ 34106b4cac81SBjoern A. Zeeb lhw->ic = lkpi_ieee80211_ifalloc(); 34116b4cac81SBjoern A. Zeeb if (lhw->ic == NULL) { 34126b4cac81SBjoern A. Zeeb ieee80211_free_hw(hw); 34136b4cac81SBjoern A. Zeeb return (NULL); 34146b4cac81SBjoern A. Zeeb } 34156b4cac81SBjoern A. Zeeb 34166b4cac81SBjoern A. Zeeb IMPROVE(); 34176b4cac81SBjoern A. Zeeb 34186b4cac81SBjoern A. Zeeb return (hw); 34196b4cac81SBjoern A. Zeeb } 34206b4cac81SBjoern A. Zeeb 34216b4cac81SBjoern A. Zeeb void 34226b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iffree(struct ieee80211_hw *hw) 34236b4cac81SBjoern A. Zeeb { 34246b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 34256b4cac81SBjoern A. Zeeb 34266b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 34276b4cac81SBjoern A. Zeeb free(lhw->ic, M_LKPI80211); 34286b4cac81SBjoern A. Zeeb lhw->ic = NULL; 34296b4cac81SBjoern A. Zeeb 34306b4cac81SBjoern A. Zeeb /* Cleanup more of lhw here or in wiphy_free()? */ 34318891c455SBjoern A. Zeeb sx_destroy(&lhw->lvif_sx); 34326b4cac81SBjoern A. Zeeb mtx_destroy(&lhw->mtx); 34336b4cac81SBjoern A. Zeeb IMPROVE(); 34346b4cac81SBjoern A. Zeeb } 34356b4cac81SBjoern A. Zeeb 34366b4cac81SBjoern A. Zeeb void 34376b4cac81SBjoern A. Zeeb linuxkpi_set_ieee80211_dev(struct ieee80211_hw *hw, char *name) 34386b4cac81SBjoern A. Zeeb { 34396b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 34406b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 34416b4cac81SBjoern A. Zeeb 34426b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 34436b4cac81SBjoern A. Zeeb ic = lhw->ic; 34446b4cac81SBjoern A. Zeeb 34456b4cac81SBjoern A. Zeeb /* Now set a proper name before ieee80211_ifattach(). */ 34466b4cac81SBjoern A. Zeeb ic->ic_softc = lhw; 34476b4cac81SBjoern A. Zeeb ic->ic_name = name; 34486b4cac81SBjoern A. Zeeb 34496b4cac81SBjoern A. Zeeb /* XXX-BZ do we also need to set wiphy name? */ 34506b4cac81SBjoern A. Zeeb } 34516b4cac81SBjoern A. Zeeb 34526b4cac81SBjoern A. Zeeb struct ieee80211_hw * 34536b4cac81SBjoern A. Zeeb linuxkpi_wiphy_to_ieee80211_hw(struct wiphy *wiphy) 34546b4cac81SBjoern A. Zeeb { 34556b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 34566b4cac81SBjoern A. Zeeb 34576b4cac81SBjoern A. Zeeb lhw = wiphy_priv(wiphy); 34586b4cac81SBjoern A. Zeeb return (LHW_TO_HW(lhw)); 34596b4cac81SBjoern A. Zeeb } 34606b4cac81SBjoern A. Zeeb 34616b4cac81SBjoern A. Zeeb static void 34626b4cac81SBjoern A. Zeeb lkpi_radiotap_attach(struct lkpi_hw *lhw) 34636b4cac81SBjoern A. Zeeb { 34646b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 34656b4cac81SBjoern A. Zeeb 34666b4cac81SBjoern A. Zeeb ic = lhw->ic; 34676b4cac81SBjoern A. Zeeb ieee80211_radiotap_attach(ic, 34686b4cac81SBjoern A. Zeeb &lhw->rtap_tx.wt_ihdr, sizeof(lhw->rtap_tx), 34696b4cac81SBjoern A. Zeeb LKPI_RTAP_TX_FLAGS_PRESENT, 34706b4cac81SBjoern A. Zeeb &lhw->rtap_rx.wr_ihdr, sizeof(lhw->rtap_rx), 34716b4cac81SBjoern A. Zeeb LKPI_RTAP_RX_FLAGS_PRESENT); 34726b4cac81SBjoern A. Zeeb } 34736b4cac81SBjoern A. Zeeb 34742e183d99SBjoern A. Zeeb int 34756b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifattach(struct ieee80211_hw *hw) 34766b4cac81SBjoern A. Zeeb { 34776b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 34786b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 3479c5b96b3eSBjoern A. Zeeb int band, i; 34806b4cac81SBjoern A. Zeeb 34816b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 34826b4cac81SBjoern A. Zeeb ic = lhw->ic; 34836b4cac81SBjoern A. Zeeb 3484652e22d3SBjoern A. Zeeb /* We do it this late as wiphy->dev should be set for the name. */ 3485652e22d3SBjoern A. Zeeb lhw->workq = alloc_ordered_workqueue(wiphy_name(hw->wiphy), 0); 3486652e22d3SBjoern A. Zeeb if (lhw->workq == NULL) 3487652e22d3SBjoern A. Zeeb return (-EAGAIN); 3488652e22d3SBjoern A. Zeeb 34896b4cac81SBjoern A. Zeeb /* XXX-BZ figure this out how they count his... */ 34906b4cac81SBjoern A. Zeeb if (!is_zero_ether_addr(hw->wiphy->perm_addr)) { 34916b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(ic->ic_macaddr, 34926b4cac81SBjoern A. Zeeb hw->wiphy->perm_addr); 34936b4cac81SBjoern A. Zeeb } else if (hw->wiphy->n_addresses > 0) { 34946b4cac81SBjoern A. Zeeb /* We take the first one. */ 34956b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(ic->ic_macaddr, 34966b4cac81SBjoern A. Zeeb hw->wiphy->addresses[0].addr); 34976b4cac81SBjoern A. Zeeb } else { 34986b4cac81SBjoern A. Zeeb ic_printf(ic, "%s: warning, no hardware address!\n", __func__); 34996b4cac81SBjoern A. Zeeb } 35006b4cac81SBjoern A. Zeeb 35013d09d310SBjoern A. Zeeb #ifdef __not_yet__ 35023d09d310SBjoern A. Zeeb /* See comment in lkpi_80211_txq_tx_one(). */ 35036b4cac81SBjoern A. Zeeb ic->ic_headroom = hw->extra_tx_headroom; 35043d09d310SBjoern A. Zeeb #endif 35056b4cac81SBjoern A. Zeeb 35066b4cac81SBjoern A. Zeeb ic->ic_phytype = IEEE80211_T_OFDM; /* not only, but not used */ 35076b4cac81SBjoern A. Zeeb ic->ic_opmode = IEEE80211_M_STA; 35086b4cac81SBjoern A. Zeeb 35096b4cac81SBjoern A. Zeeb /* Set device capabilities. */ 35106b4cac81SBjoern A. Zeeb /* XXX-BZ we need to get these from linux80211/drivers and convert. */ 35116b4cac81SBjoern A. Zeeb ic->ic_caps = 35126b4cac81SBjoern A. Zeeb IEEE80211_C_STA | 35136b4cac81SBjoern A. Zeeb IEEE80211_C_MONITOR | 35146b4cac81SBjoern A. Zeeb IEEE80211_C_WPA | /* WPA/RSN */ 35154a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME 35166b4cac81SBjoern A. Zeeb IEEE80211_C_WME | 35174a67f1dfSBjoern A. Zeeb #endif 35186b4cac81SBjoern A. Zeeb #if 0 35196b4cac81SBjoern A. Zeeb IEEE80211_C_PMGT | 35206b4cac81SBjoern A. Zeeb #endif 35216b4cac81SBjoern A. Zeeb IEEE80211_C_SHSLOT | /* short slot time supported */ 35226b4cac81SBjoern A. Zeeb IEEE80211_C_SHPREAMBLE /* short preamble supported */ 35236b4cac81SBjoern A. Zeeb ; 35246b4cac81SBjoern A. Zeeb #if 0 35256b4cac81SBjoern A. Zeeb /* Scanning is a different kind of beast to re-work. */ 35266b4cac81SBjoern A. Zeeb ic->ic_caps |= IEEE80211_C_BGSCAN; 35276b4cac81SBjoern A. Zeeb #endif 3528cc4e78d5SBjoern A. Zeeb if (lhw->ops->hw_scan) { 3529cc4e78d5SBjoern A. Zeeb /* 3530cc4e78d5SBjoern A. Zeeb * Advertise full-offload scanning. 3531cc4e78d5SBjoern A. Zeeb * 3532cc4e78d5SBjoern A. Zeeb * Not limiting to SINGLE_SCAN_ON_ALL_BANDS here as otherwise 3533cc4e78d5SBjoern A. Zeeb * we essentially disable hw_scan for all drivers not setting 3534cc4e78d5SBjoern A. Zeeb * the flag. 3535cc4e78d5SBjoern A. Zeeb */ 35366b4cac81SBjoern A. Zeeb ic->ic_flags_ext |= IEEE80211_FEXT_SCAN_OFFLOAD; 3537a486fbbdSBjoern A. Zeeb lhw->scan_flags |= LKPI_LHW_SCAN_HW; 35386b4cac81SBjoern A. Zeeb } 35396b4cac81SBjoern A. Zeeb 35406b4cac81SBjoern A. Zeeb #ifdef __notyet__ 35416b4cac81SBjoern A. Zeeb ic->ic_htcaps = IEEE80211_HTC_HT /* HT operation */ 35426b4cac81SBjoern A. Zeeb | IEEE80211_HTC_AMPDU /* A-MPDU tx/rx */ 35436b4cac81SBjoern A. Zeeb | IEEE80211_HTC_AMSDU /* A-MSDU tx/rx */ 35446b4cac81SBjoern A. Zeeb | IEEE80211_HTCAP_MAXAMSDU_3839 35456b4cac81SBjoern A. Zeeb /* max A-MSDU length */ 35466b4cac81SBjoern A. Zeeb | IEEE80211_HTCAP_SMPS_OFF; /* SM power save off */ 35476b4cac81SBjoern A. Zeeb ic->ic_htcaps |= IEEE80211_HTCAP_SHORTGI20; 35486b4cac81SBjoern A. Zeeb ic->ic_htcaps |= IEEE80211_HTCAP_CHWIDTH40 | IEEE80211_HTCAP_SHORTGI40; 35496b4cac81SBjoern A. Zeeb ic->ic_htcaps |= IEEE80211_HTCAP_TXSTBC; 35506b4cac81SBjoern A. Zeeb #endif 35516b4cac81SBjoern A. Zeeb 3552527687a9SBjoern A. Zeeb /* 3553527687a9SBjoern A. Zeeb * The wiphy variables report bitmasks of avail antennas. 3554527687a9SBjoern A. Zeeb * (*get_antenna) get the current bitmask sets which can be 3555527687a9SBjoern A. Zeeb * altered by (*set_antenna) for some drivers. 3556527687a9SBjoern A. Zeeb * XXX-BZ will the count alone do us much good long-term in net80211? 3557527687a9SBjoern A. Zeeb */ 3558527687a9SBjoern A. Zeeb if (hw->wiphy->available_antennas_rx || 3559527687a9SBjoern A. Zeeb hw->wiphy->available_antennas_tx) { 3560527687a9SBjoern A. Zeeb uint32_t rxs, txs; 3561527687a9SBjoern A. Zeeb 3562527687a9SBjoern A. Zeeb if (lkpi_80211_mo_get_antenna(hw, &txs, &rxs) == 0) { 3563527687a9SBjoern A. Zeeb ic->ic_rxstream = bitcount32(rxs); 3564527687a9SBjoern A. Zeeb ic->ic_txstream = bitcount32(txs); 3565527687a9SBjoern A. Zeeb } 3566527687a9SBjoern A. Zeeb } 3567527687a9SBjoern A. Zeeb 35686b4cac81SBjoern A. Zeeb ic->ic_cryptocaps = 0; 3569b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO 35706b4cac81SBjoern A. Zeeb if (hw->wiphy->n_cipher_suites > 0) { 35716b4cac81SBjoern A. Zeeb for (i = 0; i < hw->wiphy->n_cipher_suites; i++) 35726b4cac81SBjoern A. Zeeb ic->ic_cryptocaps |= lkpi_l80211_to_net80211_cyphers( 35736b4cac81SBjoern A. Zeeb hw->wiphy->cipher_suites[i]); 35746b4cac81SBjoern A. Zeeb } 35756b4cac81SBjoern A. Zeeb #endif 35766b4cac81SBjoern A. Zeeb 35776b4cac81SBjoern A. Zeeb lkpi_ic_getradiocaps(ic, IEEE80211_CHAN_MAX, &ic->ic_nchans, 35786b4cac81SBjoern A. Zeeb ic->ic_channels); 35796b4cac81SBjoern A. Zeeb 35806b4cac81SBjoern A. Zeeb ieee80211_ifattach(ic); 35816b4cac81SBjoern A. Zeeb 35826b4cac81SBjoern A. Zeeb ic->ic_update_mcast = lkpi_ic_update_mcast; 35836b4cac81SBjoern A. Zeeb ic->ic_update_promisc = lkpi_ic_update_promisc; 35846b4cac81SBjoern A. Zeeb ic->ic_update_chw = lkpi_ic_update_chw; 35856b4cac81SBjoern A. Zeeb ic->ic_parent = lkpi_ic_parent; 35866b4cac81SBjoern A. Zeeb ic->ic_scan_start = lkpi_ic_scan_start; 35876b4cac81SBjoern A. Zeeb ic->ic_scan_end = lkpi_ic_scan_end; 35886b4cac81SBjoern A. Zeeb ic->ic_set_channel = lkpi_ic_set_channel; 35896b4cac81SBjoern A. Zeeb ic->ic_transmit = lkpi_ic_transmit; 35906b4cac81SBjoern A. Zeeb ic->ic_raw_xmit = lkpi_ic_raw_xmit; 35916b4cac81SBjoern A. Zeeb ic->ic_vap_create = lkpi_ic_vap_create; 35926b4cac81SBjoern A. Zeeb ic->ic_vap_delete = lkpi_ic_vap_delete; 35936b4cac81SBjoern A. Zeeb ic->ic_getradiocaps = lkpi_ic_getradiocaps; 35946b4cac81SBjoern A. Zeeb ic->ic_wme.wme_update = lkpi_ic_wme_update; 35956b4cac81SBjoern A. Zeeb 3596a486fbbdSBjoern A. Zeeb lhw->ic_scan_curchan = ic->ic_scan_curchan; 3597a486fbbdSBjoern A. Zeeb ic->ic_scan_curchan = lkpi_ic_scan_curchan; 3598a486fbbdSBjoern A. Zeeb lhw->ic_scan_mindwell = ic->ic_scan_mindwell; 3599a486fbbdSBjoern A. Zeeb ic->ic_scan_mindwell = lkpi_ic_scan_mindwell; 3600a486fbbdSBjoern A. Zeeb 36016b4cac81SBjoern A. Zeeb lhw->ic_node_alloc = ic->ic_node_alloc; 36026b4cac81SBjoern A. Zeeb ic->ic_node_alloc = lkpi_ic_node_alloc; 36036b4cac81SBjoern A. Zeeb lhw->ic_node_init = ic->ic_node_init; 36046b4cac81SBjoern A. Zeeb ic->ic_node_init = lkpi_ic_node_init; 36056b4cac81SBjoern A. Zeeb lhw->ic_node_cleanup = ic->ic_node_cleanup; 36066b4cac81SBjoern A. Zeeb ic->ic_node_cleanup = lkpi_ic_node_cleanup; 36076b4cac81SBjoern A. Zeeb lhw->ic_node_free = ic->ic_node_free; 36086b4cac81SBjoern A. Zeeb ic->ic_node_free = lkpi_ic_node_free; 36096b4cac81SBjoern A. Zeeb 36106b4cac81SBjoern A. Zeeb lkpi_radiotap_attach(lhw); 36116b4cac81SBjoern A. Zeeb 3612c5b96b3eSBjoern A. Zeeb /* 3613c5b96b3eSBjoern A. Zeeb * Assign the first possible channel for now; seems Realtek drivers 3614c5b96b3eSBjoern A. Zeeb * expect one. 3615d9945d78SBjoern A. Zeeb * Also remember the amount of bands we support and the most rates 3616d9945d78SBjoern A. Zeeb * in any band so we can scale [(ext) sup rates] IE(s) accordingly. 3617c5b96b3eSBjoern A. Zeeb */ 3618d9945d78SBjoern A. Zeeb lhw->supbands = lhw->max_rates = 0; 3619c5b96b3eSBjoern A. Zeeb for (band = 0; band < NUM_NL80211_BANDS && 3620c5b96b3eSBjoern A. Zeeb hw->conf.chandef.chan == NULL; band++) { 3621c5b96b3eSBjoern A. Zeeb struct ieee80211_supported_band *supband; 3622c5b96b3eSBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels; 3623c5b96b3eSBjoern A. Zeeb 3624c5b96b3eSBjoern A. Zeeb supband = hw->wiphy->bands[band]; 3625c5b96b3eSBjoern A. Zeeb if (supband == NULL || supband->n_channels == 0) 3626c5b96b3eSBjoern A. Zeeb continue; 3627c5b96b3eSBjoern A. Zeeb 3628d9945d78SBjoern A. Zeeb lhw->supbands++; 3629d9945d78SBjoern A. Zeeb lhw->max_rates = max(lhw->max_rates, supband->n_bitrates); 3630d9945d78SBjoern A. Zeeb 3631c5b96b3eSBjoern A. Zeeb channels = supband->channels; 3632c5b96b3eSBjoern A. Zeeb for (i = 0; i < supband->n_channels; i++) { 3633c5b96b3eSBjoern A. Zeeb 3634c5b96b3eSBjoern A. Zeeb if (channels[i].flags & IEEE80211_CHAN_DISABLED) 3635c5b96b3eSBjoern A. Zeeb continue; 3636c5b96b3eSBjoern A. Zeeb 36374a07abdeSBjoern A. Zeeb cfg80211_chandef_create(&hw->conf.chandef, &channels[i], 3638c5b96b3eSBjoern A. Zeeb NL80211_CHAN_NO_HT); 3639c5b96b3eSBjoern A. Zeeb break; 3640c5b96b3eSBjoern A. Zeeb } 3641c5b96b3eSBjoern A. Zeeb } 3642c5b96b3eSBjoern A. Zeeb 3643d9945d78SBjoern A. Zeeb IMPROVE("see net80211::ieee80211_chan_init vs. wiphy->bands[].bitrates possibly in lkpi_ic_getradiocaps?"); 3644d9945d78SBjoern A. Zeeb 3645d9945d78SBjoern A. Zeeb /* Make sure we do not support more than net80211 is willing to take. */ 3646d9945d78SBjoern A. Zeeb if (lhw->max_rates > IEEE80211_RATE_MAXSIZE) { 3647d9945d78SBjoern A. Zeeb ic_printf(ic, "%s: limiting max_rates %d to %d!\n", __func__, 3648d9945d78SBjoern A. Zeeb lhw->max_rates, IEEE80211_RATE_MAXSIZE); 3649d9945d78SBjoern A. Zeeb lhw->max_rates = IEEE80211_RATE_MAXSIZE; 3650d9945d78SBjoern A. Zeeb } 3651d9945d78SBjoern A. Zeeb 3652d9945d78SBjoern A. Zeeb /* 3653d9945d78SBjoern A. Zeeb * The maximum supported bitrates on any band + size for 3654d9945d78SBjoern A. Zeeb * DSSS Parameter Set give our per-band IE size. 3655d9945d78SBjoern A. Zeeb * XXX-BZ FIXME add HT VHT ... later 3656d9945d78SBjoern A. Zeeb * SSID is the responsibility of the driver and goes on the side. 3657d9945d78SBjoern A. Zeeb * The user specified bits coming from the vap go into the 3658d9945d78SBjoern A. Zeeb * "common ies" fields. 3659d9945d78SBjoern A. Zeeb */ 3660d9945d78SBjoern A. Zeeb lhw->scan_ie_len = 2 + IEEE80211_RATE_SIZE; 3661d9945d78SBjoern A. Zeeb if (lhw->max_rates > IEEE80211_RATE_SIZE) 3662d9945d78SBjoern A. Zeeb lhw->scan_ie_len += 2 + (lhw->max_rates - IEEE80211_RATE_SIZE); 3663d9945d78SBjoern A. Zeeb /* 3664d9945d78SBjoern A. Zeeb * net80211 does not seem to support the DSSS Parameter Set but some of 3665d9945d78SBjoern A. Zeeb * the drivers insert it so calculate the extra fixed space in. 3666d9945d78SBjoern A. Zeeb */ 3667d9945d78SBjoern A. Zeeb lhw->scan_ie_len += 2 + 1; 3668d9945d78SBjoern A. Zeeb 3669d9945d78SBjoern A. Zeeb /* Reduce the max_scan_ie_len "left" by the amount we consume already. */ 3670d9945d78SBjoern A. Zeeb if (hw->wiphy->max_scan_ie_len > 0) 3671d9945d78SBjoern A. Zeeb hw->wiphy->max_scan_ie_len -= lhw->scan_ie_len; 3672d9945d78SBjoern A. Zeeb 36736b4cac81SBjoern A. Zeeb if (bootverbose) 36746b4cac81SBjoern A. Zeeb ieee80211_announce(ic); 36752e183d99SBjoern A. Zeeb 36762e183d99SBjoern A. Zeeb return (0); 36776b4cac81SBjoern A. Zeeb } 36786b4cac81SBjoern A. Zeeb 36796b4cac81SBjoern A. Zeeb void 36806b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifdetach(struct ieee80211_hw *hw) 36816b4cac81SBjoern A. Zeeb { 36826b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 36836b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 36846b4cac81SBjoern A. Zeeb 36856b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 36866b4cac81SBjoern A. Zeeb ic = lhw->ic; 36876b4cac81SBjoern A. Zeeb ieee80211_ifdetach(ic); 36886b4cac81SBjoern A. Zeeb } 36896b4cac81SBjoern A. Zeeb 36906b4cac81SBjoern A. Zeeb void 36916b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_interfaces(struct ieee80211_hw *hw, 36926b4cac81SBjoern A. Zeeb enum ieee80211_iface_iter flags, 36936b4cac81SBjoern A. Zeeb void(*iterfunc)(void *, uint8_t *, struct ieee80211_vif *), 36946b4cac81SBjoern A. Zeeb void *arg) 36956b4cac81SBjoern A. Zeeb { 36966b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 36976b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 36986b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 369961a68e50SBjoern A. Zeeb bool active, atomic, nin_drv; 37006b4cac81SBjoern A. Zeeb 37016b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 37026b4cac81SBjoern A. Zeeb 37036b4cac81SBjoern A. Zeeb if (flags & ~(IEEE80211_IFACE_ITER_NORMAL| 37046b4cac81SBjoern A. Zeeb IEEE80211_IFACE_ITER_RESUME_ALL| 370561a68e50SBjoern A. Zeeb IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER| 37066b4cac81SBjoern A. Zeeb IEEE80211_IFACE_ITER__ACTIVE|IEEE80211_IFACE_ITER__ATOMIC)) { 37076b4cac81SBjoern A. Zeeb ic_printf(lhw->ic, "XXX TODO %s flags(%#x) not yet supported.\n", 37086b4cac81SBjoern A. Zeeb __func__, flags); 37096b4cac81SBjoern A. Zeeb } 37106b4cac81SBjoern A. Zeeb 37116b4cac81SBjoern A. Zeeb active = (flags & IEEE80211_IFACE_ITER__ACTIVE) != 0; 37126b4cac81SBjoern A. Zeeb atomic = (flags & IEEE80211_IFACE_ITER__ATOMIC) != 0; 371361a68e50SBjoern A. Zeeb nin_drv = (flags & IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER) != 0; 37146b4cac81SBjoern A. Zeeb 37156b4cac81SBjoern A. Zeeb if (atomic) 37168891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_LOCK(lhw); 37176b4cac81SBjoern A. Zeeb TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) { 37186b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 37196b4cac81SBjoern A. Zeeb 37206b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 37216b4cac81SBjoern A. Zeeb 37226b4cac81SBjoern A. Zeeb /* 37236b4cac81SBjoern A. Zeeb * If we want "active" interfaces, we need to distinguish on 37246b4cac81SBjoern A. Zeeb * whether the driver knows about them or not to be able to 37256b4cac81SBjoern A. Zeeb * handle the "resume" case correctly. Skip the ones the 37266b4cac81SBjoern A. Zeeb * driver does not know about. 37276b4cac81SBjoern A. Zeeb */ 37286b4cac81SBjoern A. Zeeb if (active && !lvif->added_to_drv && 37296b4cac81SBjoern A. Zeeb (flags & IEEE80211_IFACE_ITER_RESUME_ALL) != 0) 37306b4cac81SBjoern A. Zeeb continue; 37316b4cac81SBjoern A. Zeeb 37326b4cac81SBjoern A. Zeeb /* 373361a68e50SBjoern A. Zeeb * If we shall skip interfaces not added to the driver do so 373461a68e50SBjoern A. Zeeb * if we haven't yet. 373561a68e50SBjoern A. Zeeb */ 373661a68e50SBjoern A. Zeeb if (nin_drv && !lvif->added_to_drv) 373761a68e50SBjoern A. Zeeb continue; 373861a68e50SBjoern A. Zeeb 373961a68e50SBjoern A. Zeeb /* 37406b4cac81SBjoern A. Zeeb * Run the iterator function if we are either not asking 37416b4cac81SBjoern A. Zeeb * asking for active only or if the VAP is "running". 37426b4cac81SBjoern A. Zeeb */ 37436b4cac81SBjoern A. Zeeb /* XXX-BZ probably should have state in the lvif as well. */ 37446b4cac81SBjoern A. Zeeb vap = LVIF_TO_VAP(lvif); 37456b4cac81SBjoern A. Zeeb if (!active || (vap->iv_state != IEEE80211_S_INIT)) 37466b4cac81SBjoern A. Zeeb iterfunc(arg, vif->addr, vif); 37476b4cac81SBjoern A. Zeeb } 37486b4cac81SBjoern A. Zeeb if (atomic) 37498891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_UNLOCK(lhw); 37506b4cac81SBjoern A. Zeeb } 37516b4cac81SBjoern A. Zeeb 37526b4cac81SBjoern A. Zeeb void 37536b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_keys(struct ieee80211_hw *hw, 37546b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif, 37556b4cac81SBjoern A. Zeeb void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_vif *, 37566b4cac81SBjoern A. Zeeb struct ieee80211_sta *, struct ieee80211_key_conf *, void *), 37576b4cac81SBjoern A. Zeeb void *arg) 37586b4cac81SBjoern A. Zeeb { 37596b4cac81SBjoern A. Zeeb 37606b4cac81SBjoern A. Zeeb UNIMPLEMENTED; 37616b4cac81SBjoern A. Zeeb } 37626b4cac81SBjoern A. Zeeb 37636b4cac81SBjoern A. Zeeb void 37646b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_chan_contexts(struct ieee80211_hw *hw, 37656b4cac81SBjoern A. Zeeb void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_chanctx_conf *, 37666b4cac81SBjoern A. Zeeb void *), 37676b4cac81SBjoern A. Zeeb void *arg) 37686b4cac81SBjoern A. Zeeb { 37696b4cac81SBjoern A. Zeeb 37706b4cac81SBjoern A. Zeeb UNIMPLEMENTED; 37716b4cac81SBjoern A. Zeeb } 37726b4cac81SBjoern A. Zeeb 37736b4cac81SBjoern A. Zeeb void 37746b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_stations_atomic(struct ieee80211_hw *hw, 37756b4cac81SBjoern A. Zeeb void (*iterfunc)(void *, struct ieee80211_sta *), void *arg) 37766b4cac81SBjoern A. Zeeb { 37776b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 37786b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 37796b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 37806b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 37816b4cac81SBjoern A. Zeeb 37826b4cac81SBjoern A. Zeeb KASSERT(hw != NULL && iterfunc != NULL, 37836b4cac81SBjoern A. Zeeb ("%s: hw %p iterfunc %p arg %p\n", __func__, hw, iterfunc, arg)); 37846b4cac81SBjoern A. Zeeb 37856b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 37866b4cac81SBjoern A. Zeeb 37878891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_LOCK(lhw); 37886b4cac81SBjoern A. Zeeb TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) { 37896b4cac81SBjoern A. Zeeb 37906b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_LOCK(lvif); 37916b4cac81SBjoern A. Zeeb TAILQ_FOREACH(lsta, &lvif->lsta_head, lsta_entry) { 37926b4cac81SBjoern A. Zeeb if (!lsta->added_to_drv) 37936b4cac81SBjoern A. Zeeb continue; 37946b4cac81SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 37956b4cac81SBjoern A. Zeeb iterfunc(arg, sta); 37966b4cac81SBjoern A. Zeeb } 37976b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 37986b4cac81SBjoern A. Zeeb } 37998891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_UNLOCK(lhw); 38006b4cac81SBjoern A. Zeeb } 38016b4cac81SBjoern A. Zeeb 38026b4cac81SBjoern A. Zeeb int 38036b4cac81SBjoern A. Zeeb linuxkpi_regulatory_set_wiphy_regd_sync(struct wiphy *wiphy, 38046b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd) 38056b4cac81SBjoern A. Zeeb { 38066b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 38076b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 38086b4cac81SBjoern A. Zeeb struct ieee80211_regdomain *rd; 38096b4cac81SBjoern A. Zeeb 38106b4cac81SBjoern A. Zeeb lhw = wiphy_priv(wiphy); 38116b4cac81SBjoern A. Zeeb ic = lhw->ic; 38126b4cac81SBjoern A. Zeeb 38136b4cac81SBjoern A. Zeeb rd = &ic->ic_regdomain; 38146b4cac81SBjoern A. Zeeb if (rd->isocc[0] == '\0') { 38156b4cac81SBjoern A. Zeeb rd->isocc[0] = regd->alpha2[0]; 38166b4cac81SBjoern A. Zeeb rd->isocc[1] = regd->alpha2[1]; 38176b4cac81SBjoern A. Zeeb } 38186b4cac81SBjoern A. Zeeb 38196b4cac81SBjoern A. Zeeb TODO(); 38206b4cac81SBjoern A. Zeeb /* XXX-BZ finish the rest. */ 38216b4cac81SBjoern A. Zeeb 38226b4cac81SBjoern A. Zeeb return (0); 38236b4cac81SBjoern A. Zeeb } 38246b4cac81SBjoern A. Zeeb 38256b4cac81SBjoern A. Zeeb void 38266b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_scan_completed(struct ieee80211_hw *hw, 38276b4cac81SBjoern A. Zeeb struct cfg80211_scan_info *info) 38286b4cac81SBjoern A. Zeeb { 38296b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 38306b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 38316b4cac81SBjoern A. Zeeb struct ieee80211_scan_state *ss; 38326b4cac81SBjoern A. Zeeb 38336b4cac81SBjoern A. Zeeb lhw = wiphy_priv(hw->wiphy); 38346b4cac81SBjoern A. Zeeb ic = lhw->ic; 38356b4cac81SBjoern A. Zeeb ss = ic->ic_scan; 38366b4cac81SBjoern A. Zeeb 38376b4cac81SBjoern A. Zeeb ieee80211_scan_done(ss->ss_vap); 38386b4cac81SBjoern A. Zeeb 38396b4cac81SBjoern A. Zeeb LKPI_80211_LHW_LOCK(lhw); 38406b4cac81SBjoern A. Zeeb free(lhw->hw_req, M_LKPI80211); 38416b4cac81SBjoern A. Zeeb lhw->hw_req = NULL; 3842a486fbbdSBjoern A. Zeeb lhw->scan_flags &= ~LKPI_LHW_SCAN_RUNNING; 38436b4cac81SBjoern A. Zeeb wakeup(lhw); 38446b4cac81SBjoern A. Zeeb LKPI_80211_LHW_UNLOCK(lhw); 38456b4cac81SBjoern A. Zeeb 38466b4cac81SBjoern A. Zeeb return; 38476b4cac81SBjoern A. Zeeb } 38486b4cac81SBjoern A. Zeeb 3849e30e05d3SBjoern A. Zeeb /* For %list see comment towards the end of the function. */ 38506b4cac81SBjoern A. Zeeb void 38516b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb, 3852e30e05d3SBjoern A. Zeeb struct ieee80211_sta *sta, struct napi_struct *napi __unused, 3853e30e05d3SBjoern A. Zeeb struct list_head *list __unused) 38546b4cac81SBjoern A. Zeeb { 38556b4cac81SBjoern A. Zeeb struct epoch_tracker et; 38566b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 38576b4cac81SBjoern A. Zeeb struct ieee80211com *ic; 38586b4cac81SBjoern A. Zeeb struct mbuf *m; 38596b4cac81SBjoern A. Zeeb struct skb_shared_info *shinfo; 38606b4cac81SBjoern A. Zeeb struct ieee80211_rx_status *rx_status; 38616b4cac81SBjoern A. Zeeb struct ieee80211_rx_stats rx_stats; 38626b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 38636b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 38646b4cac81SBjoern A. Zeeb struct ieee80211_hdr *hdr; 38656b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 38669d9ba2b7SBjoern A. Zeeb int i, offset, ok; 3867170acccfSBjoern A. Zeeb int8_t rssi; 3868c0cadd99SBjoern A. Zeeb bool is_beacon; 38696b4cac81SBjoern A. Zeeb 38706b4cac81SBjoern A. Zeeb if (skb->len < 2) { 38716b4cac81SBjoern A. Zeeb /* Need 80211 stats here. */ 38726b4cac81SBjoern A. Zeeb IMPROVE(); 38736b4cac81SBjoern A. Zeeb goto err; 38746b4cac81SBjoern A. Zeeb } 38756b4cac81SBjoern A. Zeeb 38766b4cac81SBjoern A. Zeeb /* 38776b4cac81SBjoern A. Zeeb * For now do the data copy; we can later improve things. Might even 38786b4cac81SBjoern A. Zeeb * have an mbuf backing the skb data then? 38796b4cac81SBjoern A. Zeeb */ 38806b4cac81SBjoern A. Zeeb m = m_get2(skb->len, M_NOWAIT, MT_DATA, M_PKTHDR); 38816b4cac81SBjoern A. Zeeb if (m == NULL) 38826b4cac81SBjoern A. Zeeb goto err; 38836b4cac81SBjoern A. Zeeb m_copyback(m, 0, skb->tail - skb->data, skb->data); 38846b4cac81SBjoern A. Zeeb 38856b4cac81SBjoern A. Zeeb shinfo = skb_shinfo(skb); 38866b4cac81SBjoern A. Zeeb offset = m->m_len; 38876b4cac81SBjoern A. Zeeb for (i = 0; i < shinfo->nr_frags; i++) { 38886b4cac81SBjoern A. Zeeb m_copyback(m, offset, shinfo->frags[i].size, 38896b4cac81SBjoern A. Zeeb (uint8_t *)linux_page_address(shinfo->frags[i].page) + 38906b4cac81SBjoern A. Zeeb shinfo->frags[i].offset); 38916b4cac81SBjoern A. Zeeb offset += shinfo->frags[i].size; 38926b4cac81SBjoern A. Zeeb } 38936b4cac81SBjoern A. Zeeb 38946b4cac81SBjoern A. Zeeb rx_status = IEEE80211_SKB_RXCB(skb); 38956b4cac81SBjoern A. Zeeb 38966b4cac81SBjoern A. Zeeb hdr = (void *)skb->data; 3897c0cadd99SBjoern A. Zeeb is_beacon = ieee80211_is_beacon(hdr->frame_control); 3898c0cadd99SBjoern A. Zeeb 3899c0cadd99SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 39009d9ba2b7SBjoern A. Zeeb if (is_beacon && (linuxkpi_debug_80211 & D80211_TRACE_RX_BEACONS) == 0) 39016b4cac81SBjoern A. Zeeb goto no_trace_beacons; 39026b4cac81SBjoern A. Zeeb 39039d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_RX) 39046b4cac81SBjoern A. Zeeb printf("TRACE-RX: %s: skb %p a/l/d/t-len (%u/%u/%u/%u) " 3905c0cadd99SBjoern A. Zeeb "h %p d %p t %p e %p sh %p (%u) m %p plen %u len %u%s\n", 39066b4cac81SBjoern A. Zeeb __func__, skb, skb->_alloc_len, skb->len, skb->data_len, 39076b4cac81SBjoern A. Zeeb skb->truesize, skb->head, skb->data, skb->tail, skb->end, 39086b4cac81SBjoern A. Zeeb shinfo, shinfo->nr_frags, 3909c0cadd99SBjoern A. Zeeb m, m->m_pkthdr.len, m->m_len, is_beacon ? " beacon" : ""); 39106b4cac81SBjoern A. Zeeb 39119d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_RX_DUMP) 39126b4cac81SBjoern A. Zeeb hexdump(mtod(m, const void *), m->m_len, "RX (raw) ", 0); 39136b4cac81SBjoern A. Zeeb 39146b4cac81SBjoern A. Zeeb /* Implement a dump_rxcb() !!! */ 39159d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_RX) 3916c8dafefaSBjoern A. Zeeb printf("TRACE %s: RXCB: %ju %ju %u, %#0x, %u, %#0x, %#0x, " 391760970a32SBjoern A. Zeeb "%u band %u, %u { %d %d %d %d }, %d, %#x %#x %#x %#x %u %u %u\n", 39186b4cac81SBjoern A. Zeeb __func__, 3919c8dafefaSBjoern A. Zeeb (uintmax_t)rx_status->boottime_ns, 3920c8dafefaSBjoern A. Zeeb (uintmax_t)rx_status->mactime, 39216b4cac81SBjoern A. Zeeb rx_status->device_timestamp, 39226b4cac81SBjoern A. Zeeb rx_status->flag, 39236b4cac81SBjoern A. Zeeb rx_status->freq, 39246b4cac81SBjoern A. Zeeb rx_status->bw, 39256b4cac81SBjoern A. Zeeb rx_status->encoding, 39266b4cac81SBjoern A. Zeeb rx_status->ampdu_reference, 39276b4cac81SBjoern A. Zeeb rx_status->band, 39286b4cac81SBjoern A. Zeeb rx_status->chains, 39296b4cac81SBjoern A. Zeeb rx_status->chain_signal[0], 39306b4cac81SBjoern A. Zeeb rx_status->chain_signal[1], 39316b4cac81SBjoern A. Zeeb rx_status->chain_signal[2], 393260970a32SBjoern A. Zeeb rx_status->chain_signal[3], 39336b4cac81SBjoern A. Zeeb rx_status->signal, 39346b4cac81SBjoern A. Zeeb rx_status->enc_flags, 39356b4cac81SBjoern A. Zeeb rx_status->he_dcm, 39366b4cac81SBjoern A. Zeeb rx_status->he_gi, 39376b4cac81SBjoern A. Zeeb rx_status->he_ru, 39386b4cac81SBjoern A. Zeeb rx_status->zero_length_psdu_type, 39396b4cac81SBjoern A. Zeeb rx_status->nss, 39406b4cac81SBjoern A. Zeeb rx_status->rate_idx); 39416b4cac81SBjoern A. Zeeb no_trace_beacons: 39426b4cac81SBjoern A. Zeeb #endif 39436b4cac81SBjoern A. Zeeb 39446b4cac81SBjoern A. Zeeb memset(&rx_stats, 0, sizeof(rx_stats)); 39456b4cac81SBjoern A. Zeeb rx_stats.r_flags = IEEE80211_R_NF | IEEE80211_R_RSSI; 394660970a32SBjoern A. Zeeb /* XXX-BZ correct hardcoded rssi and noise floor, how? survey? */ 394760970a32SBjoern A. Zeeb rx_stats.c_nf = -96; 39486b4cac81SBjoern A. Zeeb if (ieee80211_hw_check(hw, SIGNAL_DBM) && 39496b4cac81SBjoern A. Zeeb !(rx_status->flag & RX_FLAG_NO_SIGNAL_VAL)) 3950170acccfSBjoern A. Zeeb rssi = rx_status->signal; 39516b4cac81SBjoern A. Zeeb else 3952170acccfSBjoern A. Zeeb rssi = rx_stats.c_nf; 3953170acccfSBjoern A. Zeeb /* 3954170acccfSBjoern A. Zeeb * net80211 signal strength data are in .5 dBm units relative to 3955170acccfSBjoern A. Zeeb * the current noise floor (see comment in ieee80211_node.h). 3956170acccfSBjoern A. Zeeb */ 3957170acccfSBjoern A. Zeeb rssi -= rx_stats.c_nf; 3958170acccfSBjoern A. Zeeb rx_stats.c_rssi = rssi * 2; 39596b4cac81SBjoern A. Zeeb rx_stats.r_flags |= IEEE80211_R_BAND; 39606b4cac81SBjoern A. Zeeb rx_stats.c_band = 39616b4cac81SBjoern A. Zeeb lkpi_nl80211_band_to_net80211_band(rx_status->band); 39626b4cac81SBjoern A. Zeeb rx_stats.r_flags |= IEEE80211_R_FREQ | IEEE80211_R_IEEE; 39636b4cac81SBjoern A. Zeeb rx_stats.c_freq = rx_status->freq; 39646b4cac81SBjoern A. Zeeb rx_stats.c_ieee = ieee80211_mhz2ieee(rx_stats.c_freq, rx_stats.c_band); 39656b4cac81SBjoern A. Zeeb 39666b4cac81SBjoern A. Zeeb /* XXX (*sta_statistics)() to get to some of that? */ 39676b4cac81SBjoern A. Zeeb /* XXX-BZ dump the FreeBSD version of rx_stats as well! */ 39686b4cac81SBjoern A. Zeeb 39696b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 39706b4cac81SBjoern A. Zeeb ic = lhw->ic; 39716b4cac81SBjoern A. Zeeb 39726b4cac81SBjoern A. Zeeb ok = ieee80211_add_rx_params(m, &rx_stats); 39736b4cac81SBjoern A. Zeeb if (ok == 0) { 3974dbc06dd9SBjoern A. Zeeb m_freem(m); 39756b4cac81SBjoern A. Zeeb counter_u64_add(ic->ic_ierrors, 1); 39766b4cac81SBjoern A. Zeeb goto err; 39776b4cac81SBjoern A. Zeeb } 39786b4cac81SBjoern A. Zeeb 39796b4cac81SBjoern A. Zeeb if (sta != NULL) { 39806b4cac81SBjoern A. Zeeb lsta = STA_TO_LSTA(sta); 39816b4cac81SBjoern A. Zeeb ni = ieee80211_ref_node(lsta->ni); 39826b4cac81SBjoern A. Zeeb } else { 3983c8dafefaSBjoern A. Zeeb struct ieee80211_frame_min *wh; 3984c8dafefaSBjoern A. Zeeb 39856b4cac81SBjoern A. Zeeb wh = mtod(m, struct ieee80211_frame_min *); 39866b4cac81SBjoern A. Zeeb ni = ieee80211_find_rxnode(ic, wh); 39876b4cac81SBjoern A. Zeeb if (ni != NULL) 39886b4cac81SBjoern A. Zeeb lsta = ni->ni_drv_data; 39896b4cac81SBjoern A. Zeeb } 39906b4cac81SBjoern A. Zeeb 39916b4cac81SBjoern A. Zeeb if (ni != NULL) 39926b4cac81SBjoern A. Zeeb vap = ni->ni_vap; 39936b4cac81SBjoern A. Zeeb else 39946b4cac81SBjoern A. Zeeb /* 39956b4cac81SBjoern A. Zeeb * XXX-BZ can we improve this by looking at the frame hdr 39966b4cac81SBjoern A. Zeeb * or other meta-data passed up? 39976b4cac81SBjoern A. Zeeb */ 39986b4cac81SBjoern A. Zeeb vap = TAILQ_FIRST(&ic->ic_vaps); 39996b4cac81SBjoern A. Zeeb 40009d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 40019d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_RX) 4002c0cadd99SBjoern A. Zeeb printf("TRACE %s: sta %p lsta %p state %d ni %p vap %p%s\n", 4003c0cadd99SBjoern A. Zeeb __func__, sta, lsta, (lsta != NULL) ? lsta->state : -1, 4004c0cadd99SBjoern A. Zeeb ni, vap, is_beacon ? " beacon" : ""); 40059d9ba2b7SBjoern A. Zeeb #endif 40066b4cac81SBjoern A. Zeeb 4007c0cadd99SBjoern A. Zeeb if (ni != NULL && vap != NULL && is_beacon && 4008c8dafefaSBjoern A. Zeeb rx_status->device_timestamp > 0 && 4009c8dafefaSBjoern A. Zeeb m->m_pkthdr.len >= sizeof(struct ieee80211_frame)) { 4010c8dafefaSBjoern A. Zeeb struct lkpi_vif *lvif; 4011c8dafefaSBjoern A. Zeeb struct ieee80211_vif *vif; 4012c8dafefaSBjoern A. Zeeb struct ieee80211_frame *wh; 4013c8dafefaSBjoern A. Zeeb 4014c8dafefaSBjoern A. Zeeb wh = mtod(m, struct ieee80211_frame *); 4015c8dafefaSBjoern A. Zeeb if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_bssid)) 4016c8dafefaSBjoern A. Zeeb goto skip_device_ts; 4017c8dafefaSBjoern A. Zeeb 4018c8dafefaSBjoern A. Zeeb lvif = VAP_TO_LVIF(vap); 4019c8dafefaSBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 4020c8dafefaSBjoern A. Zeeb 4021c8dafefaSBjoern A. Zeeb IMPROVE("TIMING_BEACON_ONLY?"); 4022c8dafefaSBjoern A. Zeeb /* mac80211 specific (not net80211) so keep it here. */ 4023c8dafefaSBjoern A. Zeeb vif->bss_conf.sync_device_ts = rx_status->device_timestamp; 4024c8dafefaSBjoern A. Zeeb /* 4025c8dafefaSBjoern A. Zeeb * net80211 should take care of the other information (sync_tsf, 4026c8dafefaSBjoern A. Zeeb * sync_dtim_count) as otherwise we need to parse the beacon. 4027c8dafefaSBjoern A. Zeeb */ 4028c8dafefaSBjoern A. Zeeb } 4029c8dafefaSBjoern A. Zeeb skip_device_ts: 4030c8dafefaSBjoern A. Zeeb 40316b4cac81SBjoern A. Zeeb if (vap != NULL && vap->iv_state > IEEE80211_S_INIT && 40326b4cac81SBjoern A. Zeeb ieee80211_radiotap_active_vap(vap)) { 40336b4cac81SBjoern A. Zeeb struct lkpi_radiotap_rx_hdr *rtap; 40346b4cac81SBjoern A. Zeeb 40356b4cac81SBjoern A. Zeeb rtap = &lhw->rtap_rx; 40366b4cac81SBjoern A. Zeeb rtap->wr_tsft = rx_status->device_timestamp; 40376b4cac81SBjoern A. Zeeb rtap->wr_flags = 0; 40386b4cac81SBjoern A. Zeeb if (rx_status->enc_flags & RX_ENC_FLAG_SHORTPRE) 40396b4cac81SBjoern A. Zeeb rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE; 40406b4cac81SBjoern A. Zeeb if (rx_status->enc_flags & RX_ENC_FLAG_SHORT_GI) 40416b4cac81SBjoern A. Zeeb rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTGI; 40426b4cac81SBjoern A. Zeeb #if 0 /* .. or it does not given we strip it below. */ 40436b4cac81SBjoern A. Zeeb if (ieee80211_hw_check(hw, RX_INCLUDES_FCS)) 40446b4cac81SBjoern A. Zeeb rtap->wr_flags |= IEEE80211_RADIOTAP_F_FCS; 40456b4cac81SBjoern A. Zeeb #endif 40466b4cac81SBjoern A. Zeeb if (rx_status->flag & RX_FLAG_FAILED_FCS_CRC) 40476b4cac81SBjoern A. Zeeb rtap->wr_flags |= IEEE80211_RADIOTAP_F_BADFCS; 40486b4cac81SBjoern A. Zeeb rtap->wr_rate = 0; 40496b4cac81SBjoern A. Zeeb IMPROVE(); 40506b4cac81SBjoern A. Zeeb /* XXX TODO status->encoding / rate_index / bw */ 40516b4cac81SBjoern A. Zeeb rtap->wr_chan_freq = htole16(rx_stats.c_freq); 40526b4cac81SBjoern A. Zeeb if (ic->ic_curchan->ic_ieee == rx_stats.c_ieee) 40536b4cac81SBjoern A. Zeeb rtap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags); 4054170acccfSBjoern A. Zeeb rtap->wr_dbm_antsignal = rssi; 40556b4cac81SBjoern A. Zeeb rtap->wr_dbm_antnoise = rx_stats.c_nf; 40566b4cac81SBjoern A. Zeeb } 40576b4cac81SBjoern A. Zeeb 40586b4cac81SBjoern A. Zeeb if (ieee80211_hw_check(hw, RX_INCLUDES_FCS)) 40596b4cac81SBjoern A. Zeeb m_adj(m, -IEEE80211_CRC_LEN); 40606b4cac81SBjoern A. Zeeb 4061e30e05d3SBjoern A. Zeeb #if 0 4062e30e05d3SBjoern A. Zeeb if (list != NULL) { 4063e30e05d3SBjoern A. Zeeb /* 4064e30e05d3SBjoern A. Zeeb * Normally this would be queued up and delivered by 4065e30e05d3SBjoern A. Zeeb * netif_receive_skb_list(), napi_gro_receive(), or the like. 4066e30e05d3SBjoern A. Zeeb * See mt76::mac80211.c as only current possible consumer. 4067e30e05d3SBjoern A. Zeeb */ 4068e30e05d3SBjoern A. Zeeb IMPROVE("we simply pass the packet to net80211 to deal with."); 4069e30e05d3SBjoern A. Zeeb } 4070e30e05d3SBjoern A. Zeeb #endif 4071e30e05d3SBjoern A. Zeeb 40726b4cac81SBjoern A. Zeeb NET_EPOCH_ENTER(et); 40736b4cac81SBjoern A. Zeeb if (ni != NULL) { 40749d9ba2b7SBjoern A. Zeeb ok = ieee80211_input_mimo(ni, m); 40756b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 4076dbc06dd9SBjoern A. Zeeb if (ok < 0) 4077dbc06dd9SBjoern A. Zeeb m_freem(m); 40786b4cac81SBjoern A. Zeeb } else { 40799d9ba2b7SBjoern A. Zeeb ok = ieee80211_input_mimo_all(ic, m); 4080dbc06dd9SBjoern A. Zeeb /* mbuf got consumed. */ 40816b4cac81SBjoern A. Zeeb } 40826b4cac81SBjoern A. Zeeb NET_EPOCH_EXIT(et); 40836b4cac81SBjoern A. Zeeb 40849d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 40859d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_RX) 40869d9ba2b7SBjoern A. Zeeb printf("TRACE %s: handled frame type %#0x\n", __func__, ok); 40879d9ba2b7SBjoern A. Zeeb #endif 40886b4cac81SBjoern A. Zeeb 40896b4cac81SBjoern A. Zeeb IMPROVE(); 40906b4cac81SBjoern A. Zeeb 40916b4cac81SBjoern A. Zeeb err: 40926b4cac81SBjoern A. Zeeb /* The skb is ours so we can free it :-) */ 40936b4cac81SBjoern A. Zeeb kfree_skb(skb); 40946b4cac81SBjoern A. Zeeb } 40956b4cac81SBjoern A. Zeeb 40966b4cac81SBjoern A. Zeeb uint8_t 4097ec190d91SBjoern A. Zeeb linuxkpi_ieee80211_get_tid(struct ieee80211_hdr *hdr, bool nonqos_ok) 40986b4cac81SBjoern A. Zeeb { 40996b4cac81SBjoern A. Zeeb const struct ieee80211_frame *wh; 4100ec190d91SBjoern A. Zeeb uint8_t tid; 4101ec190d91SBjoern A. Zeeb 4102ec190d91SBjoern A. Zeeb /* Linux seems to assume this is a QOS-Data-Frame */ 4103ec190d91SBjoern A. Zeeb KASSERT(nonqos_ok || ieee80211_is_data_qos(hdr->frame_control), 4104ec190d91SBjoern A. Zeeb ("%s: hdr %p fc %#06x not qos_data\n", __func__, hdr, 4105ec190d91SBjoern A. Zeeb hdr->frame_control)); 41066b4cac81SBjoern A. Zeeb 41076b4cac81SBjoern A. Zeeb wh = (const struct ieee80211_frame *)hdr; 4108ec190d91SBjoern A. Zeeb tid = ieee80211_gettid(wh); 4109ec190d91SBjoern A. Zeeb KASSERT(nonqos_ok || tid == (tid & IEEE80211_QOS_TID), ("%s: tid %u " 4110ec190d91SBjoern A. Zeeb "not expected (%u?)\n", __func__, tid, IEEE80211_NONQOS_TID)); 4111ec190d91SBjoern A. Zeeb 4112ec190d91SBjoern A. Zeeb return (tid); 41136b4cac81SBjoern A. Zeeb } 41146b4cac81SBjoern A. Zeeb 41156b4cac81SBjoern A. Zeeb struct wiphy * 41166b4cac81SBjoern A. Zeeb linuxkpi_wiphy_new(const struct cfg80211_ops *ops, size_t priv_len) 41176b4cac81SBjoern A. Zeeb { 41186b4cac81SBjoern A. Zeeb struct lkpi_wiphy *lwiphy; 41196b4cac81SBjoern A. Zeeb 41206b4cac81SBjoern A. Zeeb lwiphy = kzalloc(sizeof(*lwiphy) + priv_len, GFP_KERNEL); 41216b4cac81SBjoern A. Zeeb if (lwiphy == NULL) 41226b4cac81SBjoern A. Zeeb return (NULL); 41236b4cac81SBjoern A. Zeeb lwiphy->ops = ops; 41246b4cac81SBjoern A. Zeeb 41256b4cac81SBjoern A. Zeeb /* XXX TODO */ 41266b4cac81SBjoern A. Zeeb return (LWIPHY_TO_WIPHY(lwiphy)); 41276b4cac81SBjoern A. Zeeb } 41286b4cac81SBjoern A. Zeeb 41296b4cac81SBjoern A. Zeeb void 41306b4cac81SBjoern A. Zeeb linuxkpi_wiphy_free(struct wiphy *wiphy) 41316b4cac81SBjoern A. Zeeb { 41326b4cac81SBjoern A. Zeeb struct lkpi_wiphy *lwiphy; 41336b4cac81SBjoern A. Zeeb 41346b4cac81SBjoern A. Zeeb if (wiphy == NULL) 41356b4cac81SBjoern A. Zeeb return; 41366b4cac81SBjoern A. Zeeb 41376b4cac81SBjoern A. Zeeb lwiphy = WIPHY_TO_LWIPHY(wiphy); 41386b4cac81SBjoern A. Zeeb kfree(lwiphy); 41396b4cac81SBjoern A. Zeeb } 41406b4cac81SBjoern A. Zeeb 41416b4cac81SBjoern A. Zeeb uint32_t 41426b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_channel_to_frequency(uint32_t channel, 41436b4cac81SBjoern A. Zeeb enum nl80211_band band) 41446b4cac81SBjoern A. Zeeb { 41456b4cac81SBjoern A. Zeeb 41466b4cac81SBjoern A. Zeeb switch (band) { 41476b4cac81SBjoern A. Zeeb case NL80211_BAND_2GHZ: 41486b4cac81SBjoern A. Zeeb return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_2GHZ)); 41496b4cac81SBjoern A. Zeeb break; 41506b4cac81SBjoern A. Zeeb case NL80211_BAND_5GHZ: 41516b4cac81SBjoern A. Zeeb return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_5GHZ)); 41526b4cac81SBjoern A. Zeeb break; 41536b4cac81SBjoern A. Zeeb default: 41546b4cac81SBjoern A. Zeeb /* XXX abort, retry, error, panic? */ 41556b4cac81SBjoern A. Zeeb break; 41566b4cac81SBjoern A. Zeeb } 41576b4cac81SBjoern A. Zeeb 41586b4cac81SBjoern A. Zeeb return (0); 41596b4cac81SBjoern A. Zeeb } 41606b4cac81SBjoern A. Zeeb 41616b4cac81SBjoern A. Zeeb uint32_t 41626b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_frequency_to_channel(uint32_t freq, uint32_t flags __unused) 41636b4cac81SBjoern A. Zeeb { 41646b4cac81SBjoern A. Zeeb 41656b4cac81SBjoern A. Zeeb return (ieee80211_mhz2ieee(freq, 0)); 41666b4cac81SBjoern A. Zeeb } 41676b4cac81SBjoern A. Zeeb 41686b4cac81SBjoern A. Zeeb static struct lkpi_sta * 41696b4cac81SBjoern A. Zeeb lkpi_find_lsta_by_ni(struct lkpi_vif *lvif, struct ieee80211_node *ni) 41706b4cac81SBjoern A. Zeeb { 41716b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta, *temp; 41726b4cac81SBjoern A. Zeeb 41736b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_LOCK(lvif); 41746b4cac81SBjoern A. Zeeb TAILQ_FOREACH_SAFE(lsta, &lvif->lsta_head, lsta_entry, temp) { 41756b4cac81SBjoern A. Zeeb if (lsta->ni == ni) { 41766b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 41776b4cac81SBjoern A. Zeeb return (lsta); 41786b4cac81SBjoern A. Zeeb } 41796b4cac81SBjoern A. Zeeb } 41806b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 41816b4cac81SBjoern A. Zeeb 41826b4cac81SBjoern A. Zeeb return (NULL); 41836b4cac81SBjoern A. Zeeb } 41846b4cac81SBjoern A. Zeeb 41856b4cac81SBjoern A. Zeeb struct ieee80211_sta * 41866b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_find_sta(struct ieee80211_vif *vif, const u8 *peer) 41876b4cac81SBjoern A. Zeeb { 41886b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 41896b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta, *temp; 41906b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 41916b4cac81SBjoern A. Zeeb 41926b4cac81SBjoern A. Zeeb lvif = VIF_TO_LVIF(vif); 41936b4cac81SBjoern A. Zeeb 41946b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_LOCK(lvif); 41956b4cac81SBjoern A. Zeeb TAILQ_FOREACH_SAFE(lsta, &lvif->lsta_head, lsta_entry, temp) { 41966b4cac81SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 41976b4cac81SBjoern A. Zeeb if (IEEE80211_ADDR_EQ(sta->addr, peer)) { 41986b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 41996b4cac81SBjoern A. Zeeb return (sta); 42006b4cac81SBjoern A. Zeeb } 42016b4cac81SBjoern A. Zeeb } 42026b4cac81SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 42036b4cac81SBjoern A. Zeeb return (NULL); 42046b4cac81SBjoern A. Zeeb } 42056b4cac81SBjoern A. Zeeb 42066b4cac81SBjoern A. Zeeb struct ieee80211_sta * 42072e183d99SBjoern A. Zeeb linuxkpi_ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw, 42082e183d99SBjoern A. Zeeb const uint8_t *addr, const uint8_t *ourvifaddr) 42096b4cac81SBjoern A. Zeeb { 42106b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 42116b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 42126b4cac81SBjoern A. Zeeb struct lkpi_sta *lsta; 42136b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif; 42146b4cac81SBjoern A. Zeeb struct ieee80211_sta *sta; 42156b4cac81SBjoern A. Zeeb 42166b4cac81SBjoern A. Zeeb lhw = wiphy_priv(hw->wiphy); 42176b4cac81SBjoern A. Zeeb sta = NULL; 42186b4cac81SBjoern A. Zeeb 42198891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_LOCK(lhw); 42206b4cac81SBjoern A. Zeeb TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) { 42216b4cac81SBjoern A. Zeeb 42226b4cac81SBjoern A. Zeeb /* XXX-BZ check our address from the vif. */ 42236b4cac81SBjoern A. Zeeb 42246b4cac81SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 42256b4cac81SBjoern A. Zeeb if (ourvifaddr != NULL && 42266b4cac81SBjoern A. Zeeb !IEEE80211_ADDR_EQ(vif->addr, ourvifaddr)) 42276b4cac81SBjoern A. Zeeb continue; 42286b4cac81SBjoern A. Zeeb sta = linuxkpi_ieee80211_find_sta(vif, addr); 42296b4cac81SBjoern A. Zeeb if (sta != NULL) 42306b4cac81SBjoern A. Zeeb break; 42316b4cac81SBjoern A. Zeeb } 42328891c455SBjoern A. Zeeb LKPI_80211_LHW_LVIF_UNLOCK(lhw); 42336b4cac81SBjoern A. Zeeb 42346b4cac81SBjoern A. Zeeb if (sta != NULL) { 42356b4cac81SBjoern A. Zeeb lsta = STA_TO_LSTA(sta); 42366b4cac81SBjoern A. Zeeb if (!lsta->added_to_drv) 42376b4cac81SBjoern A. Zeeb return (NULL); 42386b4cac81SBjoern A. Zeeb } 42396b4cac81SBjoern A. Zeeb 42406b4cac81SBjoern A. Zeeb return (sta); 42416b4cac81SBjoern A. Zeeb } 42426b4cac81SBjoern A. Zeeb 42436b4cac81SBjoern A. Zeeb struct sk_buff * 42446b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_tx_dequeue(struct ieee80211_hw *hw, 42456b4cac81SBjoern A. Zeeb struct ieee80211_txq *txq) 42466b4cac81SBjoern A. Zeeb { 42476b4cac81SBjoern A. Zeeb struct lkpi_txq *ltxq; 42486b4cac81SBjoern A. Zeeb struct sk_buff *skb; 42496b4cac81SBjoern A. Zeeb 42506b4cac81SBjoern A. Zeeb ltxq = TXQ_TO_LTXQ(txq); 42516b4cac81SBjoern A. Zeeb ltxq->seen_dequeue = true; 42526b4cac81SBjoern A. Zeeb 42536b4cac81SBjoern A. Zeeb skb = skb_dequeue(<xq->skbq); 42546b4cac81SBjoern A. Zeeb 42556b4cac81SBjoern A. Zeeb return (skb); 42566b4cac81SBjoern A. Zeeb } 42576b4cac81SBjoern A. Zeeb 42586b4cac81SBjoern A. Zeeb void 42596b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_txq_get_depth(struct ieee80211_txq *txq, 426086220d3cSBjoern A. Zeeb unsigned long *frame_cnt, unsigned long *byte_cnt) 42616b4cac81SBjoern A. Zeeb { 42626b4cac81SBjoern A. Zeeb struct lkpi_txq *ltxq; 42636b4cac81SBjoern A. Zeeb struct sk_buff *skb; 426486220d3cSBjoern A. Zeeb unsigned long fc, bc; 42656b4cac81SBjoern A. Zeeb 42666b4cac81SBjoern A. Zeeb ltxq = TXQ_TO_LTXQ(txq); 42676b4cac81SBjoern A. Zeeb 42686b4cac81SBjoern A. Zeeb fc = bc = 0; 42696b4cac81SBjoern A. Zeeb skb_queue_walk(<xq->skbq, skb) { 42706b4cac81SBjoern A. Zeeb fc++; 42716b4cac81SBjoern A. Zeeb bc += skb->len; 42726b4cac81SBjoern A. Zeeb } 42736b4cac81SBjoern A. Zeeb if (frame_cnt) 42746b4cac81SBjoern A. Zeeb *frame_cnt = fc; 42756b4cac81SBjoern A. Zeeb if (byte_cnt) 42766b4cac81SBjoern A. Zeeb *byte_cnt = bc; 42776b4cac81SBjoern A. Zeeb 42786b4cac81SBjoern A. Zeeb /* Validate that this is doing the correct thing. */ 42796b4cac81SBjoern A. Zeeb /* Should we keep track on en/dequeue? */ 42806b4cac81SBjoern A. Zeeb IMPROVE(); 42816b4cac81SBjoern A. Zeeb } 42826b4cac81SBjoern A. Zeeb 42836b4cac81SBjoern A. Zeeb /* 42846b4cac81SBjoern A. Zeeb * We are called from ieee80211_free_txskb() or ieee80211_tx_status(). 42856b4cac81SBjoern A. Zeeb * The latter tries to derive the success status from the info flags 42866b4cac81SBjoern A. Zeeb * passed back from the driver. rawx_mit() saves the ni on the m and the 42876b4cac81SBjoern A. Zeeb * m on the skb for us to be able to give feedback to net80211. 42886b4cac81SBjoern A. Zeeb */ 4289a8397571SBjoern A. Zeeb static void 4290a8397571SBjoern A. Zeeb _lkpi_ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb, 42916b4cac81SBjoern A. Zeeb int status) 42926b4cac81SBjoern A. Zeeb { 42936b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 42946b4cac81SBjoern A. Zeeb struct mbuf *m; 42956b4cac81SBjoern A. Zeeb 42966b4cac81SBjoern A. Zeeb m = skb->m; 42976b4cac81SBjoern A. Zeeb skb->m = NULL; 42986b4cac81SBjoern A. Zeeb 42996b4cac81SBjoern A. Zeeb if (m != NULL) { 43006b4cac81SBjoern A. Zeeb ni = m->m_pkthdr.PH_loc.ptr; 43016b4cac81SBjoern A. Zeeb /* Status: 0 is ok, != 0 is error. */ 43026b4cac81SBjoern A. Zeeb ieee80211_tx_complete(ni, m, status); 43036b4cac81SBjoern A. Zeeb /* ni & mbuf were consumed. */ 43046b4cac81SBjoern A. Zeeb } 4305a8397571SBjoern A. Zeeb } 43066b4cac81SBjoern A. Zeeb 4307a8397571SBjoern A. Zeeb void 4308a8397571SBjoern A. Zeeb linuxkpi_ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb, 4309a8397571SBjoern A. Zeeb int status) 4310a8397571SBjoern A. Zeeb { 4311a8397571SBjoern A. Zeeb 4312a8397571SBjoern A. Zeeb _lkpi_ieee80211_free_txskb(hw, skb, status); 43136b4cac81SBjoern A. Zeeb kfree_skb(skb); 43146b4cac81SBjoern A. Zeeb } 43156b4cac81SBjoern A. Zeeb 4316383b3e8fSBjoern A. Zeeb void 4317a8397571SBjoern A. Zeeb linuxkpi_ieee80211_tx_status_ext(struct ieee80211_hw *hw, 4318a8397571SBjoern A. Zeeb struct ieee80211_tx_status *txstat) 4319383b3e8fSBjoern A. Zeeb { 4320a8397571SBjoern A. Zeeb struct sk_buff *skb; 4321383b3e8fSBjoern A. Zeeb struct ieee80211_tx_info *info; 4322383b3e8fSBjoern A. Zeeb struct ieee80211_ratectl_tx_status txs; 4323383b3e8fSBjoern A. Zeeb struct ieee80211_node *ni; 4324383b3e8fSBjoern A. Zeeb int status; 4325383b3e8fSBjoern A. Zeeb 4326a8397571SBjoern A. Zeeb skb = txstat->skb; 4327383b3e8fSBjoern A. Zeeb if (skb->m != NULL) { 4328383b3e8fSBjoern A. Zeeb struct mbuf *m; 4329383b3e8fSBjoern A. Zeeb 4330383b3e8fSBjoern A. Zeeb m = skb->m; 4331383b3e8fSBjoern A. Zeeb ni = m->m_pkthdr.PH_loc.ptr; 4332383b3e8fSBjoern A. Zeeb memset(&txs, 0, sizeof(txs)); 4333383b3e8fSBjoern A. Zeeb } else { 4334383b3e8fSBjoern A. Zeeb ni = NULL; 4335383b3e8fSBjoern A. Zeeb } 4336383b3e8fSBjoern A. Zeeb 4337a8397571SBjoern A. Zeeb info = txstat->info; 4338383b3e8fSBjoern A. Zeeb if (info->flags & IEEE80211_TX_STAT_ACK) { 4339383b3e8fSBjoern A. Zeeb status = 0; /* No error. */ 4340383b3e8fSBjoern A. Zeeb txs.status = IEEE80211_RATECTL_TX_SUCCESS; 4341383b3e8fSBjoern A. Zeeb } else { 4342383b3e8fSBjoern A. Zeeb status = 1; 4343383b3e8fSBjoern A. Zeeb txs.status = IEEE80211_RATECTL_TX_FAIL_UNSPECIFIED; 4344383b3e8fSBjoern A. Zeeb } 4345383b3e8fSBjoern A. Zeeb 4346383b3e8fSBjoern A. Zeeb if (ni != NULL) { 4347e2c5ab09SJohn Baldwin int ridx __unused; 4348383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 4349383b3e8fSBjoern A. Zeeb int old_rate; 4350383b3e8fSBjoern A. Zeeb 4351383b3e8fSBjoern A. Zeeb old_rate = ni->ni_vap->iv_bss->ni_txrate; 4352383b3e8fSBjoern A. Zeeb #endif 4353383b3e8fSBjoern A. Zeeb txs.pktlen = skb->len; 4354383b3e8fSBjoern A. Zeeb txs.flags |= IEEE80211_RATECTL_STATUS_PKTLEN; 4355383b3e8fSBjoern A. Zeeb if (info->status.rates[0].count > 1) { 4356383b3e8fSBjoern A. Zeeb txs.long_retries = info->status.rates[0].count - 1; /* 1 + retries in drivers. */ 4357383b3e8fSBjoern A. Zeeb txs.flags |= IEEE80211_RATECTL_STATUS_LONG_RETRY; 4358383b3e8fSBjoern A. Zeeb } 4359383b3e8fSBjoern A. Zeeb #if 0 /* Unused in net80211 currently. */ 4360a8397571SBjoern A. Zeeb /* XXX-BZ convert check .flags for MCS/VHT/.. */ 4361383b3e8fSBjoern A. Zeeb txs.final_rate = info->status.rates[0].idx; 4362383b3e8fSBjoern A. Zeeb txs.flags |= IEEE80211_RATECTL_STATUS_FINAL_RATE; 4363383b3e8fSBjoern A. Zeeb #endif 4364383b3e8fSBjoern A. Zeeb if (info->status.is_valid_ack_signal) { 4365383b3e8fSBjoern A. Zeeb txs.rssi = info->status.ack_signal; /* XXX-BZ CONVERT? */ 4366383b3e8fSBjoern A. Zeeb txs.flags |= IEEE80211_RATECTL_STATUS_RSSI; 4367383b3e8fSBjoern A. Zeeb } 4368383b3e8fSBjoern A. Zeeb 4369383b3e8fSBjoern A. Zeeb IMPROVE("only update of rate matches but that requires us to get a proper rate"); 4370383b3e8fSBjoern A. Zeeb ieee80211_ratectl_tx_complete(ni, &txs); 4371383b3e8fSBjoern A. Zeeb ridx = ieee80211_ratectl_rate(ni->ni_vap->iv_bss, NULL, 0); 4372383b3e8fSBjoern A. Zeeb 4373383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 4374383b3e8fSBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_TX) { 4375383b3e8fSBjoern A. Zeeb printf("TX-RATE: %s: old %d new %d ridx %d, " 4376383b3e8fSBjoern A. Zeeb "long_retries %d\n", __func__, 4377383b3e8fSBjoern A. Zeeb old_rate, ni->ni_vap->iv_bss->ni_txrate, 4378383b3e8fSBjoern A. Zeeb ridx, txs.long_retries); 4379383b3e8fSBjoern A. Zeeb } 4380383b3e8fSBjoern A. Zeeb #endif 4381383b3e8fSBjoern A. Zeeb } 4382383b3e8fSBjoern A. Zeeb 4383383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 4384383b3e8fSBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE_TX) 4385383b3e8fSBjoern A. Zeeb printf("TX-STATUS: %s: hw %p skb %p status %d : flags %#x " 4386383b3e8fSBjoern A. Zeeb "band %u hw_queue %u tx_time_est %d : " 4387383b3e8fSBjoern A. Zeeb "rates [ %u %u %#x, %u %u %#x, %u %u %#x, %u %u %#x ] " 4388383b3e8fSBjoern A. Zeeb "ack_signal %u ampdu_ack_len %u ampdu_len %u antenna %u " 4389383b3e8fSBjoern A. Zeeb "tx_time %u is_valid_ack_signal %u " 4390383b3e8fSBjoern A. Zeeb "status_driver_data [ %p %p ]\n", 4391383b3e8fSBjoern A. Zeeb __func__, hw, skb, status, info->flags, 4392383b3e8fSBjoern A. Zeeb info->band, info->hw_queue, info->tx_time_est, 4393383b3e8fSBjoern A. Zeeb info->status.rates[0].idx, info->status.rates[0].count, 4394383b3e8fSBjoern A. Zeeb info->status.rates[0].flags, 4395383b3e8fSBjoern A. Zeeb info->status.rates[1].idx, info->status.rates[1].count, 4396383b3e8fSBjoern A. Zeeb info->status.rates[1].flags, 4397383b3e8fSBjoern A. Zeeb info->status.rates[2].idx, info->status.rates[2].count, 4398383b3e8fSBjoern A. Zeeb info->status.rates[2].flags, 4399383b3e8fSBjoern A. Zeeb info->status.rates[3].idx, info->status.rates[3].count, 4400383b3e8fSBjoern A. Zeeb info->status.rates[3].flags, 4401383b3e8fSBjoern A. Zeeb info->status.ack_signal, info->status.ampdu_ack_len, 4402383b3e8fSBjoern A. Zeeb info->status.ampdu_len, info->status.antenna, 4403383b3e8fSBjoern A. Zeeb info->status.tx_time, info->status.is_valid_ack_signal, 4404383b3e8fSBjoern A. Zeeb info->status.status_driver_data[0], 4405383b3e8fSBjoern A. Zeeb info->status.status_driver_data[1]); 4406383b3e8fSBjoern A. Zeeb #endif 4407383b3e8fSBjoern A. Zeeb 4408a8397571SBjoern A. Zeeb if (txstat->free_list) { 4409a8397571SBjoern A. Zeeb _lkpi_ieee80211_free_txskb(hw, skb, status); 4410a8397571SBjoern A. Zeeb list_add_tail(&skb->list, txstat->free_list); 4411a8397571SBjoern A. Zeeb } else { 4412383b3e8fSBjoern A. Zeeb linuxkpi_ieee80211_free_txskb(hw, skb, status); 4413383b3e8fSBjoern A. Zeeb } 4414a8397571SBjoern A. Zeeb } 4415a8397571SBjoern A. Zeeb 4416a8397571SBjoern A. Zeeb void 4417a8397571SBjoern A. Zeeb linuxkpi_ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb) 4418a8397571SBjoern A. Zeeb { 4419a8397571SBjoern A. Zeeb struct ieee80211_tx_status status; 4420a8397571SBjoern A. Zeeb 4421a8397571SBjoern A. Zeeb memset(&status, 0, sizeof(status)); 4422a8397571SBjoern A. Zeeb status.info = IEEE80211_SKB_CB(skb); 4423a8397571SBjoern A. Zeeb status.skb = skb; 4424a8397571SBjoern A. Zeeb /* sta, n_rates, rates, free_list? */ 4425a8397571SBjoern A. Zeeb 4426a8397571SBjoern A. Zeeb ieee80211_tx_status_ext(hw, &status); 4427a8397571SBjoern A. Zeeb } 4428383b3e8fSBjoern A. Zeeb 44296b4cac81SBjoern A. Zeeb /* 44306b4cac81SBjoern A. Zeeb * This is an internal bandaid for the moment for the way we glue 44316b4cac81SBjoern A. Zeeb * skbs and mbufs together for TX. Once we have skbs backed by 44326b4cac81SBjoern A. Zeeb * mbufs this should go away. 44336b4cac81SBjoern A. Zeeb * This is a public function but kept on the private KPI (lkpi_) 44346b4cac81SBjoern A. Zeeb * and is not exposed by a header file. 44356b4cac81SBjoern A. Zeeb */ 44366b4cac81SBjoern A. Zeeb static void 44376b4cac81SBjoern A. Zeeb lkpi_ieee80211_free_skb_mbuf(void *p) 44386b4cac81SBjoern A. Zeeb { 44396b4cac81SBjoern A. Zeeb struct ieee80211_node *ni; 44406b4cac81SBjoern A. Zeeb struct mbuf *m; 44416b4cac81SBjoern A. Zeeb 44426b4cac81SBjoern A. Zeeb if (p == NULL) 44436b4cac81SBjoern A. Zeeb return; 44446b4cac81SBjoern A. Zeeb 44456b4cac81SBjoern A. Zeeb m = (struct mbuf *)p; 44466b4cac81SBjoern A. Zeeb M_ASSERTPKTHDR(m); 44476b4cac81SBjoern A. Zeeb 44486b4cac81SBjoern A. Zeeb ni = m->m_pkthdr.PH_loc.ptr; 44496b4cac81SBjoern A. Zeeb m->m_pkthdr.PH_loc.ptr = NULL; 44506b4cac81SBjoern A. Zeeb if (ni != NULL) 44516b4cac81SBjoern A. Zeeb ieee80211_free_node(ni); 44526b4cac81SBjoern A. Zeeb m_freem(m); 44536b4cac81SBjoern A. Zeeb } 44546b4cac81SBjoern A. Zeeb 44556b4cac81SBjoern A. Zeeb void 44566b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_delayed_work(struct ieee80211_hw *hw, 44576b4cac81SBjoern A. Zeeb struct delayed_work *w, int delay) 44586b4cac81SBjoern A. Zeeb { 44596b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 44606b4cac81SBjoern A. Zeeb 44616b4cac81SBjoern A. Zeeb /* Need to make sure hw is in a stable (non-suspended) state. */ 44626b4cac81SBjoern A. Zeeb IMPROVE(); 44636b4cac81SBjoern A. Zeeb 44646b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 44656b4cac81SBjoern A. Zeeb queue_delayed_work(lhw->workq, w, delay); 44666b4cac81SBjoern A. Zeeb } 44676b4cac81SBjoern A. Zeeb 44686b4cac81SBjoern A. Zeeb void 44696b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_work(struct ieee80211_hw *hw, 44706b4cac81SBjoern A. Zeeb struct work_struct *w) 44716b4cac81SBjoern A. Zeeb { 44726b4cac81SBjoern A. Zeeb struct lkpi_hw *lhw; 44736b4cac81SBjoern A. Zeeb 44746b4cac81SBjoern A. Zeeb /* Need to make sure hw is in a stable (non-suspended) state. */ 44756b4cac81SBjoern A. Zeeb IMPROVE(); 44766b4cac81SBjoern A. Zeeb 44776b4cac81SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 44786b4cac81SBjoern A. Zeeb queue_work(lhw->workq, w); 44796b4cac81SBjoern A. Zeeb } 44806b4cac81SBjoern A. Zeeb 44816b4cac81SBjoern A. Zeeb struct sk_buff * 4482ade774b1SBjoern A. Zeeb linuxkpi_ieee80211_probereq_get(struct ieee80211_hw *hw, uint8_t *addr, 4483ade774b1SBjoern A. Zeeb uint8_t *ssid, size_t ssid_len, size_t tailroom) 4484ade774b1SBjoern A. Zeeb { 4485ade774b1SBjoern A. Zeeb struct sk_buff *skb; 4486ade774b1SBjoern A. Zeeb struct ieee80211_frame *wh; 4487ade774b1SBjoern A. Zeeb uint8_t *p; 4488ade774b1SBjoern A. Zeeb size_t len; 4489ade774b1SBjoern A. Zeeb 4490ade774b1SBjoern A. Zeeb len = sizeof(*wh); 4491ade774b1SBjoern A. Zeeb len += 2 + ssid_len; 4492ade774b1SBjoern A. Zeeb 4493ade774b1SBjoern A. Zeeb skb = dev_alloc_skb(hw->extra_tx_headroom + len + tailroom); 4494ade774b1SBjoern A. Zeeb if (skb == NULL) 4495ade774b1SBjoern A. Zeeb return (NULL); 4496ade774b1SBjoern A. Zeeb 4497ade774b1SBjoern A. Zeeb skb_reserve(skb, hw->extra_tx_headroom); 4498ade774b1SBjoern A. Zeeb 4499ade774b1SBjoern A. Zeeb wh = skb_put_zero(skb, sizeof(*wh)); 4500ade774b1SBjoern A. Zeeb wh->i_fc[0] = IEEE80211_FC0_VERSION_0; 4501ade774b1SBjoern A. Zeeb wh->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PROBE_REQ | IEEE80211_FC0_TYPE_MGT; 4502ade774b1SBjoern A. Zeeb IEEE80211_ADDR_COPY(wh->i_addr1, ieee80211broadcastaddr); 4503ade774b1SBjoern A. Zeeb IEEE80211_ADDR_COPY(wh->i_addr2, addr); 4504ade774b1SBjoern A. Zeeb IEEE80211_ADDR_COPY(wh->i_addr3, ieee80211broadcastaddr); 4505ade774b1SBjoern A. Zeeb 4506ade774b1SBjoern A. Zeeb p = skb_put(skb, 2 + ssid_len); 4507ade774b1SBjoern A. Zeeb *p++ = IEEE80211_ELEMID_SSID; 4508ade774b1SBjoern A. Zeeb *p++ = ssid_len; 4509ade774b1SBjoern A. Zeeb if (ssid_len > 0) 4510ade774b1SBjoern A. Zeeb memcpy(p, ssid, ssid_len); 4511ade774b1SBjoern A. Zeeb 4512ade774b1SBjoern A. Zeeb return (skb); 4513ade774b1SBjoern A. Zeeb } 4514ade774b1SBjoern A. Zeeb 4515ade774b1SBjoern A. Zeeb struct sk_buff * 45166b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_pspoll_get(struct ieee80211_hw *hw, 45176b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif) 45186b4cac81SBjoern A. Zeeb { 45196b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 45206b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 45216b4cac81SBjoern A. Zeeb struct sk_buff *skb; 45226b4cac81SBjoern A. Zeeb struct ieee80211_frame_pspoll *psp; 45236b4cac81SBjoern A. Zeeb uint16_t v; 45246b4cac81SBjoern A. Zeeb 45256b4cac81SBjoern A. Zeeb skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*psp)); 45266b4cac81SBjoern A. Zeeb if (skb == NULL) 45276b4cac81SBjoern A. Zeeb return (NULL); 45286b4cac81SBjoern A. Zeeb 45296b4cac81SBjoern A. Zeeb skb_reserve(skb, hw->extra_tx_headroom); 45306b4cac81SBjoern A. Zeeb 45316b4cac81SBjoern A. Zeeb lvif = VIF_TO_LVIF(vif); 45326b4cac81SBjoern A. Zeeb vap = LVIF_TO_VAP(lvif); 45336b4cac81SBjoern A. Zeeb 45346b4cac81SBjoern A. Zeeb psp = skb_put_zero(skb, sizeof(*psp)); 45356b4cac81SBjoern A. Zeeb psp->i_fc[0] = IEEE80211_FC0_VERSION_0; 45366b4cac81SBjoern A. Zeeb psp->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PS_POLL | IEEE80211_FC0_TYPE_CTL; 45376b4cac81SBjoern A. Zeeb v = htole16(vif->bss_conf.aid | 1<<15 | 1<<16); 45386b4cac81SBjoern A. Zeeb memcpy(&psp->i_aid, &v, sizeof(v)); 45396b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(psp->i_bssid, vap->iv_bss->ni_macaddr); 45406b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(psp->i_ta, vif->addr); 45416b4cac81SBjoern A. Zeeb 45426b4cac81SBjoern A. Zeeb return (skb); 45436b4cac81SBjoern A. Zeeb } 45446b4cac81SBjoern A. Zeeb 45456b4cac81SBjoern A. Zeeb struct sk_buff * 45466b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_nullfunc_get(struct ieee80211_hw *hw, 45476b4cac81SBjoern A. Zeeb struct ieee80211_vif *vif, bool qos) 45486b4cac81SBjoern A. Zeeb { 45496b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 45506b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 45516b4cac81SBjoern A. Zeeb struct sk_buff *skb; 45526b4cac81SBjoern A. Zeeb struct ieee80211_frame *nullf; 45536b4cac81SBjoern A. Zeeb 45546b4cac81SBjoern A. Zeeb skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*nullf)); 45556b4cac81SBjoern A. Zeeb if (skb == NULL) 45566b4cac81SBjoern A. Zeeb return (NULL); 45576b4cac81SBjoern A. Zeeb 45586b4cac81SBjoern A. Zeeb skb_reserve(skb, hw->extra_tx_headroom); 45596b4cac81SBjoern A. Zeeb 45606b4cac81SBjoern A. Zeeb lvif = VIF_TO_LVIF(vif); 45616b4cac81SBjoern A. Zeeb vap = LVIF_TO_VAP(lvif); 45626b4cac81SBjoern A. Zeeb 45636b4cac81SBjoern A. Zeeb nullf = skb_put_zero(skb, sizeof(*nullf)); 45646b4cac81SBjoern A. Zeeb nullf->i_fc[0] = IEEE80211_FC0_VERSION_0; 45656b4cac81SBjoern A. Zeeb nullf->i_fc[0] |= IEEE80211_FC0_SUBTYPE_NODATA | IEEE80211_FC0_TYPE_DATA; 45666b4cac81SBjoern A. Zeeb nullf->i_fc[1] = IEEE80211_FC1_DIR_TODS; 45676b4cac81SBjoern A. Zeeb 45686b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(nullf->i_addr1, vap->iv_bss->ni_bssid); 45696b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(nullf->i_addr2, vif->addr); 45706b4cac81SBjoern A. Zeeb IEEE80211_ADDR_COPY(nullf->i_addr3, vap->iv_bss->ni_macaddr); 45716b4cac81SBjoern A. Zeeb 45726b4cac81SBjoern A. Zeeb return (skb); 45736b4cac81SBjoern A. Zeeb } 45746b4cac81SBjoern A. Zeeb 45756b4cac81SBjoern A. Zeeb struct wireless_dev * 45766b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_vif_to_wdev(struct ieee80211_vif *vif) 45776b4cac81SBjoern A. Zeeb { 45786b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 45796b4cac81SBjoern A. Zeeb 45806b4cac81SBjoern A. Zeeb lvif = VIF_TO_LVIF(vif); 45816b4cac81SBjoern A. Zeeb return (&lvif->wdev); 45826b4cac81SBjoern A. Zeeb } 45836b4cac81SBjoern A. Zeeb 45846b4cac81SBjoern A. Zeeb void 45856b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_connection_loss(struct ieee80211_vif *vif) 45866b4cac81SBjoern A. Zeeb { 45876b4cac81SBjoern A. Zeeb struct lkpi_vif *lvif; 45886b4cac81SBjoern A. Zeeb struct ieee80211vap *vap; 45896b4cac81SBjoern A. Zeeb enum ieee80211_state nstate; 45906b4cac81SBjoern A. Zeeb int arg; 45916b4cac81SBjoern A. Zeeb 45926b4cac81SBjoern A. Zeeb lvif = VIF_TO_LVIF(vif); 45936b4cac81SBjoern A. Zeeb vap = LVIF_TO_VAP(lvif); 45946b4cac81SBjoern A. Zeeb 45956b4cac81SBjoern A. Zeeb /* 4596f3229b62SBjoern A. Zeeb * Go to init; otherwise we need to elaborately check state and 45976b4cac81SBjoern A. Zeeb * handle accordingly, e.g., if in RUN we could call iv_bmiss. 45986b4cac81SBjoern A. Zeeb * Let the statemachine handle all neccessary changes. 45996b4cac81SBjoern A. Zeeb */ 4600f3229b62SBjoern A. Zeeb nstate = IEEE80211_S_INIT; 4601bb81db90SBjoern A. Zeeb arg = 0; /* Not a valid reason. */ 46026b4cac81SBjoern A. Zeeb 46039d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 46049d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE) 46056b4cac81SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: vif %p\n", __func__, vif); 46069d9ba2b7SBjoern A. Zeeb #endif 46076b4cac81SBjoern A. Zeeb ieee80211_new_state(vap, nstate, arg); 46086b4cac81SBjoern A. Zeeb } 46096b4cac81SBjoern A. Zeeb 4610bb81db90SBjoern A. Zeeb void 4611bb81db90SBjoern A. Zeeb linuxkpi_ieee80211_beacon_loss(struct ieee80211_vif *vif) 4612bb81db90SBjoern A. Zeeb { 4613bb81db90SBjoern A. Zeeb struct lkpi_vif *lvif; 4614bb81db90SBjoern A. Zeeb struct ieee80211vap *vap; 4615bb81db90SBjoern A. Zeeb 4616bb81db90SBjoern A. Zeeb lvif = VIF_TO_LVIF(vif); 4617bb81db90SBjoern A. Zeeb vap = LVIF_TO_VAP(lvif); 4618bb81db90SBjoern A. Zeeb 46199d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211 46209d9ba2b7SBjoern A. Zeeb if (linuxkpi_debug_80211 & D80211_TRACE || vap->iv_state != IEEE80211_S_RUN) 4621bb81db90SBjoern A. Zeeb ic_printf(vap->iv_ic, "%s: vif %p vap %p state %s\n", __func__, 4622bb81db90SBjoern A. Zeeb vif, vap, ieee80211_state_name[vap->iv_state]); 46239d9ba2b7SBjoern A. Zeeb #endif 46243540911bSBjoern A. Zeeb ieee80211_beacon_miss(vap->iv_ic); 4625bb81db90SBjoern A. Zeeb } 4626bb81db90SBjoern A. Zeeb 46275edde07cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 46285edde07cSBjoern A. Zeeb 4629*5a9a0d78SBjoern A. Zeeb void 4630*5a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_stop_queue(struct ieee80211_hw *hw, int qnum) 4631*5a9a0d78SBjoern A. Zeeb { 4632*5a9a0d78SBjoern A. Zeeb struct lkpi_hw *lhw; 4633*5a9a0d78SBjoern A. Zeeb struct lkpi_vif *lvif; 4634*5a9a0d78SBjoern A. Zeeb struct ieee80211_vif *vif; 4635*5a9a0d78SBjoern A. Zeeb int ac_count, ac; 4636*5a9a0d78SBjoern A. Zeeb 4637*5a9a0d78SBjoern A. Zeeb KASSERT(qnum < hw->queues, ("%s: qnum %d >= hw->queues %d, hw %p\n", 4638*5a9a0d78SBjoern A. Zeeb __func__, qnum, hw->queues, hw)); 4639*5a9a0d78SBjoern A. Zeeb 4640*5a9a0d78SBjoern A. Zeeb lhw = wiphy_priv(hw->wiphy); 4641*5a9a0d78SBjoern A. Zeeb 4642*5a9a0d78SBjoern A. Zeeb /* See lkpi_ic_vap_create(). */ 4643*5a9a0d78SBjoern A. Zeeb if (hw->queues >= IEEE80211_NUM_ACS) 4644*5a9a0d78SBjoern A. Zeeb ac_count = IEEE80211_NUM_ACS; 4645*5a9a0d78SBjoern A. Zeeb else 4646*5a9a0d78SBjoern A. Zeeb ac_count = 1; 4647*5a9a0d78SBjoern A. Zeeb 4648*5a9a0d78SBjoern A. Zeeb LKPI_80211_LHW_LVIF_LOCK(lhw); 4649*5a9a0d78SBjoern A. Zeeb TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) { 4650*5a9a0d78SBjoern A. Zeeb 4651*5a9a0d78SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 4652*5a9a0d78SBjoern A. Zeeb for (ac = 0; ac < ac_count; ac++) { 4653*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("LOCKING"); 4654*5a9a0d78SBjoern A. Zeeb if (qnum == vif->hw_queue[ac]) { 4655*5a9a0d78SBjoern A. Zeeb /* 4656*5a9a0d78SBjoern A. Zeeb * For now log this to better understand 4657*5a9a0d78SBjoern A. Zeeb * how this is supposed to work. 4658*5a9a0d78SBjoern A. Zeeb */ 4659*5a9a0d78SBjoern A. Zeeb if (lvif->hw_queue_stopped[ac]) 4660*5a9a0d78SBjoern A. Zeeb ic_printf(lhw->ic, "%s:%d: lhw %p hw %p " 4661*5a9a0d78SBjoern A. Zeeb "lvif %p vif %p ac %d qnum %d already " 4662*5a9a0d78SBjoern A. Zeeb "stopped\n", __func__, __LINE__, 4663*5a9a0d78SBjoern A. Zeeb lhw, hw, lvif, vif, ac, qnum); 4664*5a9a0d78SBjoern A. Zeeb lvif->hw_queue_stopped[ac] = true; 4665*5a9a0d78SBjoern A. Zeeb } 4666*5a9a0d78SBjoern A. Zeeb } 4667*5a9a0d78SBjoern A. Zeeb } 4668*5a9a0d78SBjoern A. Zeeb LKPI_80211_LHW_LVIF_UNLOCK(lhw); 4669*5a9a0d78SBjoern A. Zeeb } 4670*5a9a0d78SBjoern A. Zeeb 4671*5a9a0d78SBjoern A. Zeeb void 4672*5a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_stop_queues(struct ieee80211_hw *hw) 4673*5a9a0d78SBjoern A. Zeeb { 4674*5a9a0d78SBjoern A. Zeeb int i; 4675*5a9a0d78SBjoern A. Zeeb 4676*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("Locking; do we need further info?"); 4677*5a9a0d78SBjoern A. Zeeb for (i = 0; i < hw->queues; i++) 4678*5a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_stop_queue(hw, i); 4679*5a9a0d78SBjoern A. Zeeb } 4680*5a9a0d78SBjoern A. Zeeb 4681*5a9a0d78SBjoern A. Zeeb 4682*5a9a0d78SBjoern A. Zeeb static void 4683*5a9a0d78SBjoern A. Zeeb lkpi_ieee80211_wake_queues(struct ieee80211_hw *hw, int hwq) 4684*5a9a0d78SBjoern A. Zeeb { 4685*5a9a0d78SBjoern A. Zeeb struct lkpi_hw *lhw; 4686*5a9a0d78SBjoern A. Zeeb struct lkpi_vif *lvif; 4687*5a9a0d78SBjoern A. Zeeb struct lkpi_sta *lsta; 4688*5a9a0d78SBjoern A. Zeeb int ac_count, ac, tid; 4689*5a9a0d78SBjoern A. Zeeb 4690*5a9a0d78SBjoern A. Zeeb /* See lkpi_ic_vap_create(). */ 4691*5a9a0d78SBjoern A. Zeeb if (hw->queues >= IEEE80211_NUM_ACS) 4692*5a9a0d78SBjoern A. Zeeb ac_count = IEEE80211_NUM_ACS; 4693*5a9a0d78SBjoern A. Zeeb else 4694*5a9a0d78SBjoern A. Zeeb ac_count = 1; 4695*5a9a0d78SBjoern A. Zeeb 4696*5a9a0d78SBjoern A. Zeeb lhw = wiphy_priv(hw->wiphy); 4697*5a9a0d78SBjoern A. Zeeb 4698*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("Locking"); 4699*5a9a0d78SBjoern A. Zeeb LKPI_80211_LHW_LVIF_LOCK(lhw); 4700*5a9a0d78SBjoern A. Zeeb TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) { 4701*5a9a0d78SBjoern A. Zeeb struct ieee80211_vif *vif; 4702*5a9a0d78SBjoern A. Zeeb 4703*5a9a0d78SBjoern A. Zeeb vif = LVIF_TO_VIF(lvif); 4704*5a9a0d78SBjoern A. Zeeb for (ac = 0; ac < ac_count; ac++) { 4705*5a9a0d78SBjoern A. Zeeb 4706*5a9a0d78SBjoern A. Zeeb if (hwq == vif->hw_queue[ac]) { 4707*5a9a0d78SBjoern A. Zeeb 4708*5a9a0d78SBjoern A. Zeeb /* XXX-BZ what about software scan? */ 4709*5a9a0d78SBjoern A. Zeeb 4710*5a9a0d78SBjoern A. Zeeb /* 4711*5a9a0d78SBjoern A. Zeeb * For now log this to better understand 4712*5a9a0d78SBjoern A. Zeeb * how this is supposed to work. 4713*5a9a0d78SBjoern A. Zeeb */ 4714*5a9a0d78SBjoern A. Zeeb if (!lvif->hw_queue_stopped[ac]) 4715*5a9a0d78SBjoern A. Zeeb ic_printf(lhw->ic, "%s:%d: lhw %p hw %p " 4716*5a9a0d78SBjoern A. Zeeb "lvif %p vif %p ac %d hw_q not stopped\n", 4717*5a9a0d78SBjoern A. Zeeb __func__, __LINE__, 4718*5a9a0d78SBjoern A. Zeeb lhw, hw, lvif, vif, ac); 4719*5a9a0d78SBjoern A. Zeeb lvif->hw_queue_stopped[ac] = false; 4720*5a9a0d78SBjoern A. Zeeb 4721*5a9a0d78SBjoern A. Zeeb LKPI_80211_LVIF_LOCK(lvif); 4722*5a9a0d78SBjoern A. Zeeb TAILQ_FOREACH(lsta, &lvif->lsta_head, lsta_entry) { 4723*5a9a0d78SBjoern A. Zeeb struct ieee80211_sta *sta; 4724*5a9a0d78SBjoern A. Zeeb 4725*5a9a0d78SBjoern A. Zeeb sta = LSTA_TO_STA(lsta); 4726*5a9a0d78SBjoern A. Zeeb for (tid = 0; tid < nitems(sta->txq); tid++) { 4727*5a9a0d78SBjoern A. Zeeb struct lkpi_txq *ltxq; 4728*5a9a0d78SBjoern A. Zeeb 4729*5a9a0d78SBjoern A. Zeeb if (sta->txq[tid] == NULL) 4730*5a9a0d78SBjoern A. Zeeb continue; 4731*5a9a0d78SBjoern A. Zeeb 4732*5a9a0d78SBjoern A. Zeeb if (sta->txq[tid]->ac != ac) 4733*5a9a0d78SBjoern A. Zeeb continue; 4734*5a9a0d78SBjoern A. Zeeb 4735*5a9a0d78SBjoern A. Zeeb ltxq = TXQ_TO_LTXQ(sta->txq[tid]); 4736*5a9a0d78SBjoern A. Zeeb if (!ltxq->stopped) 4737*5a9a0d78SBjoern A. Zeeb continue; 4738*5a9a0d78SBjoern A. Zeeb 4739*5a9a0d78SBjoern A. Zeeb ltxq->stopped = false; 4740*5a9a0d78SBjoern A. Zeeb 4741*5a9a0d78SBjoern A. Zeeb /* XXX-BZ see when this explodes with all the locking. taskq? */ 4742*5a9a0d78SBjoern A. Zeeb lkpi_80211_mo_wake_tx_queue(hw, sta->txq[tid]); 4743*5a9a0d78SBjoern A. Zeeb } 4744*5a9a0d78SBjoern A. Zeeb } 4745*5a9a0d78SBjoern A. Zeeb LKPI_80211_LVIF_UNLOCK(lvif); 4746*5a9a0d78SBjoern A. Zeeb } 4747*5a9a0d78SBjoern A. Zeeb } 4748*5a9a0d78SBjoern A. Zeeb } 4749*5a9a0d78SBjoern A. Zeeb LKPI_80211_LHW_LVIF_UNLOCK(lhw); 4750*5a9a0d78SBjoern A. Zeeb } 4751*5a9a0d78SBjoern A. Zeeb 4752*5a9a0d78SBjoern A. Zeeb void 4753*5a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_wake_queues(struct ieee80211_hw *hw) 4754*5a9a0d78SBjoern A. Zeeb { 4755*5a9a0d78SBjoern A. Zeeb int i; 4756*5a9a0d78SBjoern A. Zeeb 4757*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("Is this all/enough here?"); 4758*5a9a0d78SBjoern A. Zeeb for (i = 0; i < hw->queues; i++) 4759*5a9a0d78SBjoern A. Zeeb lkpi_ieee80211_wake_queues(hw, i); 4760*5a9a0d78SBjoern A. Zeeb } 4761*5a9a0d78SBjoern A. Zeeb 4762*5a9a0d78SBjoern A. Zeeb void 4763*5a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_wake_queue(struct ieee80211_hw *hw, int qnum) 4764*5a9a0d78SBjoern A. Zeeb { 4765*5a9a0d78SBjoern A. Zeeb 4766*5a9a0d78SBjoern A. Zeeb KASSERT(qnum < hw->queues, ("%s: qnum %d >= hw->queues %d, hw %p\n", 4767*5a9a0d78SBjoern A. Zeeb __func__, qnum, hw->queues, hw)); 4768*5a9a0d78SBjoern A. Zeeb 4769*5a9a0d78SBjoern A. Zeeb lkpi_ieee80211_wake_queues(hw, qnum); 4770*5a9a0d78SBjoern A. Zeeb } 4771*5a9a0d78SBjoern A. Zeeb 4772*5a9a0d78SBjoern A. Zeeb /* This is just hardware queues. */ 4773*5a9a0d78SBjoern A. Zeeb void 4774*5a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_txq_schedule_start(struct ieee80211_hw *hw, uint8_t ac) 4775*5a9a0d78SBjoern A. Zeeb { 4776*5a9a0d78SBjoern A. Zeeb struct lkpi_hw *lhw; 4777*5a9a0d78SBjoern A. Zeeb 4778*5a9a0d78SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 4779*5a9a0d78SBjoern A. Zeeb 4780*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("Are there reasons why we wouldn't schedule?"); 4781*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("LOCKING"); 4782*5a9a0d78SBjoern A. Zeeb if (++lhw->txq_generation[ac] == 0) 4783*5a9a0d78SBjoern A. Zeeb lhw->txq_generation[ac]++; 4784*5a9a0d78SBjoern A. Zeeb } 4785*5a9a0d78SBjoern A. Zeeb 4786*5a9a0d78SBjoern A. Zeeb struct ieee80211_txq * 4787*5a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_next_txq(struct ieee80211_hw *hw, uint8_t ac) 4788*5a9a0d78SBjoern A. Zeeb { 4789*5a9a0d78SBjoern A. Zeeb struct lkpi_hw *lhw; 4790*5a9a0d78SBjoern A. Zeeb struct ieee80211_txq *txq; 4791*5a9a0d78SBjoern A. Zeeb struct lkpi_txq *ltxq; 4792*5a9a0d78SBjoern A. Zeeb 4793*5a9a0d78SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 4794*5a9a0d78SBjoern A. Zeeb txq = NULL; 4795*5a9a0d78SBjoern A. Zeeb 4796*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("LOCKING"); 4797*5a9a0d78SBjoern A. Zeeb 4798*5a9a0d78SBjoern A. Zeeb /* Check that we are scheduled. */ 4799*5a9a0d78SBjoern A. Zeeb if (lhw->txq_generation[ac] == 0) 4800*5a9a0d78SBjoern A. Zeeb goto out; 4801*5a9a0d78SBjoern A. Zeeb 4802*5a9a0d78SBjoern A. Zeeb ltxq = TAILQ_FIRST(&lhw->scheduled_txqs[ac]); 4803*5a9a0d78SBjoern A. Zeeb if (ltxq == NULL) 4804*5a9a0d78SBjoern A. Zeeb goto out; 4805*5a9a0d78SBjoern A. Zeeb if (ltxq->txq_generation == lhw->txq_generation[ac]) 4806*5a9a0d78SBjoern A. Zeeb goto out; 4807*5a9a0d78SBjoern A. Zeeb 4808*5a9a0d78SBjoern A. Zeeb ltxq->txq_generation = lhw->txq_generation[ac]; 4809*5a9a0d78SBjoern A. Zeeb TAILQ_REMOVE(&lhw->scheduled_txqs[ac], ltxq, txq_entry); 4810*5a9a0d78SBjoern A. Zeeb txq = <xq->txq; 4811*5a9a0d78SBjoern A. Zeeb TAILQ_ELEM_INIT(ltxq, txq_entry); 4812*5a9a0d78SBjoern A. Zeeb 4813*5a9a0d78SBjoern A. Zeeb out: 4814*5a9a0d78SBjoern A. Zeeb return (txq); 4815*5a9a0d78SBjoern A. Zeeb } 4816*5a9a0d78SBjoern A. Zeeb 4817*5a9a0d78SBjoern A. Zeeb void linuxkpi_ieee80211_schedule_txq(struct ieee80211_hw *hw, 4818*5a9a0d78SBjoern A. Zeeb struct ieee80211_txq *txq, bool withoutpkts) 4819*5a9a0d78SBjoern A. Zeeb { 4820*5a9a0d78SBjoern A. Zeeb struct lkpi_hw *lhw; 4821*5a9a0d78SBjoern A. Zeeb struct lkpi_txq *ltxq; 4822*5a9a0d78SBjoern A. Zeeb 4823*5a9a0d78SBjoern A. Zeeb ltxq = TXQ_TO_LTXQ(txq); 4824*5a9a0d78SBjoern A. Zeeb 4825*5a9a0d78SBjoern A. Zeeb IMPROVE_TXQ("LOCKING"); 4826*5a9a0d78SBjoern A. Zeeb 4827*5a9a0d78SBjoern A. Zeeb /* Only schedule if work to do or asked to anyway. */ 4828*5a9a0d78SBjoern A. Zeeb if (!withoutpkts && skb_queue_empty(<xq->skbq)) 4829*5a9a0d78SBjoern A. Zeeb goto out; 4830*5a9a0d78SBjoern A. Zeeb 4831*5a9a0d78SBjoern A. Zeeb /* Make sure we do not double-schedule. */ 4832*5a9a0d78SBjoern A. Zeeb if (ltxq->txq_entry.tqe_next != NULL) 4833*5a9a0d78SBjoern A. Zeeb goto out; 4834*5a9a0d78SBjoern A. Zeeb 4835*5a9a0d78SBjoern A. Zeeb lhw = HW_TO_LHW(hw); 4836*5a9a0d78SBjoern A. Zeeb TAILQ_INSERT_TAIL(&lhw->scheduled_txqs[txq->ac], ltxq, txq_entry); 4837*5a9a0d78SBjoern A. Zeeb out: 4838*5a9a0d78SBjoern A. Zeeb return; 4839*5a9a0d78SBjoern A. Zeeb } 4840*5a9a0d78SBjoern A. Zeeb 4841*5a9a0d78SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 4842*5a9a0d78SBjoern A. Zeeb 48435edde07cSBjoern A. Zeeb struct lkpi_cfg80211_bss { 48445edde07cSBjoern A. Zeeb u_int refcnt; 48455edde07cSBjoern A. Zeeb struct cfg80211_bss bss; 48465edde07cSBjoern A. Zeeb }; 48475edde07cSBjoern A. Zeeb 48485edde07cSBjoern A. Zeeb struct lkpi_cfg80211_get_bss_iter_lookup { 48495edde07cSBjoern A. Zeeb struct wiphy *wiphy; 48505edde07cSBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 48515edde07cSBjoern A. Zeeb const uint8_t *bssid; 48525edde07cSBjoern A. Zeeb const uint8_t *ssid; 48535edde07cSBjoern A. Zeeb size_t ssid_len; 48545edde07cSBjoern A. Zeeb enum ieee80211_bss_type bss_type; 48555edde07cSBjoern A. Zeeb enum ieee80211_privacy privacy; 48565edde07cSBjoern A. Zeeb 48575edde07cSBjoern A. Zeeb /* 48585edde07cSBjoern A. Zeeb * Something to store a copy of the result as the net80211 scan cache 48595edde07cSBjoern A. Zeeb * is not refoucnted so a scan entry might go away any time. 48605edde07cSBjoern A. Zeeb */ 48615edde07cSBjoern A. Zeeb bool match; 48625edde07cSBjoern A. Zeeb struct cfg80211_bss *bss; 48635edde07cSBjoern A. Zeeb }; 48645edde07cSBjoern A. Zeeb 48655edde07cSBjoern A. Zeeb static void 48665edde07cSBjoern A. Zeeb lkpi_cfg80211_get_bss_iterf(void *arg, const struct ieee80211_scan_entry *se) 48675edde07cSBjoern A. Zeeb { 48685edde07cSBjoern A. Zeeb struct lkpi_cfg80211_get_bss_iter_lookup *lookup; 48695edde07cSBjoern A. Zeeb size_t ielen; 48705edde07cSBjoern A. Zeeb 48715edde07cSBjoern A. Zeeb lookup = arg; 48725edde07cSBjoern A. Zeeb 48735edde07cSBjoern A. Zeeb /* Do not try to find another match. */ 48745edde07cSBjoern A. Zeeb if (lookup->match) 48755edde07cSBjoern A. Zeeb return; 48765edde07cSBjoern A. Zeeb 48775edde07cSBjoern A. Zeeb /* Nothing to store result. */ 48785edde07cSBjoern A. Zeeb if (lookup->bss == NULL) 48795edde07cSBjoern A. Zeeb return; 48805edde07cSBjoern A. Zeeb 48815edde07cSBjoern A. Zeeb if (lookup->privacy != IEEE80211_PRIVACY_ANY) { 48825edde07cSBjoern A. Zeeb /* if (se->se_capinfo & IEEE80211_CAPINFO_PRIVACY) */ 48835edde07cSBjoern A. Zeeb /* We have no idea what to compare to as the drivers only request ANY */ 48845edde07cSBjoern A. Zeeb return; 48855edde07cSBjoern A. Zeeb } 48865edde07cSBjoern A. Zeeb 48875edde07cSBjoern A. Zeeb if (lookup->bss_type != IEEE80211_BSS_TYPE_ANY) { 48885edde07cSBjoern A. Zeeb /* if (se->se_capinfo & (IEEE80211_CAPINFO_IBSS|IEEE80211_CAPINFO_ESS)) */ 48895edde07cSBjoern A. Zeeb /* We have no idea what to compare to as the drivers only request ANY */ 48905edde07cSBjoern A. Zeeb return; 48915edde07cSBjoern A. Zeeb } 48925edde07cSBjoern A. Zeeb 48935edde07cSBjoern A. Zeeb if (lookup->chan != NULL) { 48945edde07cSBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 48955edde07cSBjoern A. Zeeb 48965edde07cSBjoern A. Zeeb chan = linuxkpi_ieee80211_get_channel(lookup->wiphy, 48975edde07cSBjoern A. Zeeb se->se_chan->ic_freq); 48985edde07cSBjoern A. Zeeb if (chan == NULL || chan != lookup->chan) 48995edde07cSBjoern A. Zeeb return; 49005edde07cSBjoern A. Zeeb } 49015edde07cSBjoern A. Zeeb 49025edde07cSBjoern A. Zeeb if (lookup->bssid && !IEEE80211_ADDR_EQ(lookup->bssid, se->se_bssid)) 49035edde07cSBjoern A. Zeeb return; 49045edde07cSBjoern A. Zeeb 49055edde07cSBjoern A. Zeeb if (lookup->ssid) { 49065edde07cSBjoern A. Zeeb if (lookup->ssid_len != se->se_ssid[1] || 49075edde07cSBjoern A. Zeeb se->se_ssid[1] == 0) 49085edde07cSBjoern A. Zeeb return; 49095edde07cSBjoern A. Zeeb if (memcmp(lookup->ssid, se->se_ssid+2, lookup->ssid_len) != 0) 49105edde07cSBjoern A. Zeeb return; 49115edde07cSBjoern A. Zeeb } 49125edde07cSBjoern A. Zeeb 49135edde07cSBjoern A. Zeeb ielen = se->se_ies.len; 49145edde07cSBjoern A. Zeeb 49155edde07cSBjoern A. Zeeb lookup->bss->ies = malloc(sizeof(*lookup->bss->ies) + ielen, 49165edde07cSBjoern A. Zeeb M_LKPI80211, M_NOWAIT | M_ZERO); 49175edde07cSBjoern A. Zeeb if (lookup->bss->ies == NULL) 49185edde07cSBjoern A. Zeeb return; 49195edde07cSBjoern A. Zeeb 49205edde07cSBjoern A. Zeeb lookup->bss->ies->data = (uint8_t *)lookup->bss->ies + sizeof(*lookup->bss->ies); 49215edde07cSBjoern A. Zeeb lookup->bss->ies->len = ielen; 49225edde07cSBjoern A. Zeeb if (ielen) 49235edde07cSBjoern A. Zeeb memcpy(lookup->bss->ies->data, se->se_ies.data, ielen); 49245edde07cSBjoern A. Zeeb 49255edde07cSBjoern A. Zeeb lookup->match = true; 49265edde07cSBjoern A. Zeeb } 49275edde07cSBjoern A. Zeeb 49285edde07cSBjoern A. Zeeb struct cfg80211_bss * 49295edde07cSBjoern A. Zeeb linuxkpi_cfg80211_get_bss(struct wiphy *wiphy, struct linuxkpi_ieee80211_channel *chan, 49305edde07cSBjoern A. Zeeb const uint8_t *bssid, const uint8_t *ssid, size_t ssid_len, 49315edde07cSBjoern A. Zeeb enum ieee80211_bss_type bss_type, enum ieee80211_privacy privacy) 49325edde07cSBjoern A. Zeeb { 49335edde07cSBjoern A. Zeeb struct lkpi_cfg80211_bss *lbss; 49345edde07cSBjoern A. Zeeb struct lkpi_cfg80211_get_bss_iter_lookup lookup; 49355edde07cSBjoern A. Zeeb struct lkpi_hw *lhw; 49365edde07cSBjoern A. Zeeb struct ieee80211vap *vap; 49375edde07cSBjoern A. Zeeb 49385edde07cSBjoern A. Zeeb lhw = wiphy_priv(wiphy); 49395edde07cSBjoern A. Zeeb 49405edde07cSBjoern A. Zeeb /* Let's hope we can alloc. */ 49415edde07cSBjoern A. Zeeb lbss = malloc(sizeof(*lbss), M_LKPI80211, M_NOWAIT | M_ZERO); 49425edde07cSBjoern A. Zeeb if (lbss == NULL) { 49435edde07cSBjoern A. Zeeb ic_printf(lhw->ic, "%s: alloc failed.\n", __func__); 49445edde07cSBjoern A. Zeeb return (NULL); 49455edde07cSBjoern A. Zeeb } 49465edde07cSBjoern A. Zeeb 49475edde07cSBjoern A. Zeeb lookup.wiphy = wiphy; 49485edde07cSBjoern A. Zeeb lookup.chan = chan; 49495edde07cSBjoern A. Zeeb lookup.bssid = bssid; 49505edde07cSBjoern A. Zeeb lookup.ssid = ssid; 49515edde07cSBjoern A. Zeeb lookup.ssid_len = ssid_len; 49525edde07cSBjoern A. Zeeb lookup.bss_type = bss_type; 49535edde07cSBjoern A. Zeeb lookup.privacy = privacy; 49545edde07cSBjoern A. Zeeb lookup.match = false; 49555edde07cSBjoern A. Zeeb lookup.bss = &lbss->bss; 49565edde07cSBjoern A. Zeeb 49575edde07cSBjoern A. Zeeb IMPROVE("Iterate over all VAPs comparing perm_addr and addresses?"); 49585edde07cSBjoern A. Zeeb vap = TAILQ_FIRST(&lhw->ic->ic_vaps); 49595edde07cSBjoern A. Zeeb ieee80211_scan_iterate(vap, lkpi_cfg80211_get_bss_iterf, &lookup); 49605edde07cSBjoern A. Zeeb if (!lookup.match) { 49615edde07cSBjoern A. Zeeb free(lbss, M_LKPI80211); 49625edde07cSBjoern A. Zeeb return (NULL); 49635edde07cSBjoern A. Zeeb } 49645edde07cSBjoern A. Zeeb 49655edde07cSBjoern A. Zeeb refcount_init(&lbss->refcnt, 1); 49665edde07cSBjoern A. Zeeb return (&lbss->bss); 49675edde07cSBjoern A. Zeeb } 49685edde07cSBjoern A. Zeeb 49695edde07cSBjoern A. Zeeb void 49705edde07cSBjoern A. Zeeb linuxkpi_cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss) 49715edde07cSBjoern A. Zeeb { 49725edde07cSBjoern A. Zeeb struct lkpi_cfg80211_bss *lbss; 49735edde07cSBjoern A. Zeeb 49745edde07cSBjoern A. Zeeb lbss = container_of(bss, struct lkpi_cfg80211_bss, bss); 49755edde07cSBjoern A. Zeeb 49765edde07cSBjoern A. Zeeb /* Free everything again on refcount ... */ 49775edde07cSBjoern A. Zeeb if (refcount_release(&lbss->refcnt)) { 49785edde07cSBjoern A. Zeeb free(lbss->bss.ies, M_LKPI80211); 49795edde07cSBjoern A. Zeeb free(lbss, M_LKPI80211); 49805edde07cSBjoern A. Zeeb } 49815edde07cSBjoern A. Zeeb } 49825edde07cSBjoern A. Zeeb 49835edde07cSBjoern A. Zeeb void 49845edde07cSBjoern A. Zeeb linuxkpi_cfg80211_bss_flush(struct wiphy *wiphy) 49855edde07cSBjoern A. Zeeb { 49865edde07cSBjoern A. Zeeb struct lkpi_hw *lhw; 49875edde07cSBjoern A. Zeeb struct ieee80211com *ic; 49885edde07cSBjoern A. Zeeb struct ieee80211vap *vap; 49895edde07cSBjoern A. Zeeb 49905edde07cSBjoern A. Zeeb lhw = wiphy_priv(wiphy); 49915edde07cSBjoern A. Zeeb ic = lhw->ic; 49925edde07cSBjoern A. Zeeb 49935edde07cSBjoern A. Zeeb /* 49945edde07cSBjoern A. Zeeb * If we haven't called ieee80211_ifattach() yet 49955edde07cSBjoern A. Zeeb * or there is no VAP, there are no scans to flush. 49965edde07cSBjoern A. Zeeb */ 49975edde07cSBjoern A. Zeeb if (ic == NULL || 49985edde07cSBjoern A. Zeeb (lhw->sc_flags & LKPI_MAC80211_DRV_STARTED) == 0) 49995edde07cSBjoern A. Zeeb return; 50005edde07cSBjoern A. Zeeb 50015edde07cSBjoern A. Zeeb /* Should only happen on the current one? Not seen it late enough. */ 50025edde07cSBjoern A. Zeeb IEEE80211_LOCK(ic); 50035edde07cSBjoern A. Zeeb TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next) 50045edde07cSBjoern A. Zeeb ieee80211_scan_flush(vap); 50055edde07cSBjoern A. Zeeb IEEE80211_UNLOCK(ic); 50065edde07cSBjoern A. Zeeb } 50075edde07cSBjoern A. Zeeb 50085edde07cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 50095edde07cSBjoern A. Zeeb 50106b4cac81SBjoern A. Zeeb MODULE_VERSION(linuxkpi_wlan, 1); 50116b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, linuxkpi, 1, 1, 1); 50126b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, wlan, 1, 1, 1); 5013