blob: 09eef478922415df67f11141f15e3c479a73db0b [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Jeff Johnson4fca3b52017-01-12 08:44:18 -08002 * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -080028/* denote that this file does not allow legacy hddLog */
29#define HDD_DISALLOW_LEGACY_HDDLOG 1
30
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080031/* Include files */
32#include <linux/semaphore.h>
33#include <wlan_hdd_tx_rx.h>
34#include <wlan_hdd_softap_tx_rx.h>
35#include <linux/netdevice.h>
36#include <linux/skbuff.h>
37#include <linux/etherdevice.h>
Anurag Chouhan6d760662016-02-20 16:05:43 +053038#include <qdf_types.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080039#include <ani_global.h>
Anurag Chouhan6d760662016-02-20 16:05:43 +053040#include <qdf_types.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080041#include <net/ieee80211_radiotap.h>
42#include <cds_sched.h>
43#include <wlan_hdd_napi.h>
Leo Changfdb45c32016-10-28 11:09:23 -070044#include <cdp_txrx_cmn.h>
Dhanashri Atreb08959a2016-03-01 17:28:03 -080045#include <cdp_txrx_peer_ops.h>
Manjunathappa Prakash779e4862016-09-12 17:00:11 -070046#include <cds_utils.h>
Leo Changfdb45c32016-10-28 11:09:23 -070047#include <cdp_txrx_flow_ctrl_v2.h>
Venkata Sharath Chandra Manchala0d44d452016-11-23 17:48:15 -080048#include <cdp_txrx_handle.h>
Abhishek Singh07c627e2017-03-20 17:56:34 +053049#include <wlan_hdd_object_manager.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080050#ifdef IPA_OFFLOAD
51#include <wlan_hdd_ipa.h>
52#endif
53
54/* Preprocessor definitions and constants */
55#undef QCA_HDD_SAP_DUMP_SK_BUFF
56
57/* Type declarations */
58
59/* Function definitions and documenation */
60#ifdef QCA_HDD_SAP_DUMP_SK_BUFF
61/**
62 * hdd_softap_dump_sk_buff() - Dump an skb
63 * @skb: skb to dump
64 *
65 * Return: None
66 */
67static void hdd_softap_dump_sk_buff(struct sk_buff *skb)
68{
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053069 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080070 "%s: head = %p ", __func__, skb->head);
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053071 /* QDF_TRACE( QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,"%s: data = %p ", __func__, skb->data); */
72 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080073 "%s: tail = %p ", __func__, skb->tail);
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053074 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080075 "%s: end = %p ", __func__, skb->end);
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053076 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080077 "%s: len = %d ", __func__, skb->len);
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053078 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080079 "%s: data_len = %d ", __func__, skb->data_len);
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053080 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080081 "%s: mac_len = %d", __func__, skb->mac_len);
82
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053083 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080084 "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x ", skb->data[0],
85 skb->data[1], skb->data[2], skb->data[3], skb->data[4],
86 skb->data[5], skb->data[6], skb->data[7]);
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053087 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080088 "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x", skb->data[8],
89 skb->data[9], skb->data[10], skb->data[11], skb->data[12],
90 skb->data[13], skb->data[14], skb->data[15]);
91}
92#else
93static void hdd_softap_dump_sk_buff(struct sk_buff *skb)
94{
95}
96#endif
97
98#ifdef QCA_LL_LEGACY_TX_FLOW_CONTROL
99/**
100 * hdd_softap_tx_resume_timer_expired_handler() - TX Q resume timer handler
101 * @adapter_context: pointer to vdev adapter
102 *
103 * TX Q resume timer handler for SAP and P2P GO interface. If Blocked
104 * OS Q is not resumed during timeout period, to prevent permanent
105 * stall, resume OS Q forcefully for SAP and P2P GO interface.
106 *
107 * Return: None
108 */
109void hdd_softap_tx_resume_timer_expired_handler(void *adapter_context)
110{
111 hdd_adapter_t *pAdapter = (hdd_adapter_t *) adapter_context;
112
113 if (!pAdapter) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800114 hdd_err("NULL adapter");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800115 return;
116 }
117
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800118 hdd_notice("Enabling queues");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800119 wlan_hdd_netif_queue_control(pAdapter, WLAN_WAKE_ALL_NETIF_QUEUE,
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800120 WLAN_CONTROL_PATH);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800121 return;
122}
123
Poddar, Siddarthb61cf642016-04-28 16:02:39 +0530124#if defined(CONFIG_PER_VDEV_TX_DESC_POOL)
125
126/**
127 * hdd_softap_tx_resume_false() - Resume OS TX Q false leads to queue disabling
128 * @pAdapter: pointer to hdd adapter
129 * @tx_resume: TX Q resume trigger
130 *
131 *
132 * Return: None
133 */
134static void
135hdd_softap_tx_resume_false(hdd_adapter_t *pAdapter, bool tx_resume)
136{
137 if (true == tx_resume)
138 return;
139
140 hdd_notice("Disabling queues");
141 wlan_hdd_netif_queue_control(pAdapter, WLAN_STOP_ALL_NETIF_QUEUE,
142 WLAN_DATA_FLOW_CONTROL);
143
144 if (QDF_TIMER_STATE_STOPPED ==
145 qdf_mc_timer_get_current_state(&pAdapter->
146 tx_flow_control_timer)) {
147 QDF_STATUS status;
148 status = qdf_mc_timer_start(&pAdapter->tx_flow_control_timer,
149 WLAN_SAP_HDD_TX_FLOW_CONTROL_OS_Q_BLOCK_TIME);
150
151 if (!QDF_IS_STATUS_SUCCESS(status))
152 hdd_err("Failed to start tx_flow_control_timer");
153 else
154 pAdapter->hdd_stats.hddTxRxStats.txflow_timer_cnt++;
155 }
156 return;
157}
158#else
159
160static inline void
161hdd_softap_tx_resume_false(hdd_adapter_t *pAdapter, bool tx_resume)
162{
163 return;
164}
165#endif
166
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800167/**
168 * hdd_softap_tx_resume_cb() - Resume OS TX Q.
169 * @adapter_context: pointer to vdev apdapter
170 * @tx_resume: TX Q resume trigger
171 *
172 * Q was stopped due to WLAN TX path low resource condition
173 *
174 * Return: None
175 */
176void hdd_softap_tx_resume_cb(void *adapter_context, bool tx_resume)
177{
178 hdd_adapter_t *pAdapter = (hdd_adapter_t *) adapter_context;
179
180 if (!pAdapter) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800181 hdd_err("NULL adapter");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800182 return;
183 }
184
185 /* Resume TX */
186 if (true == tx_resume) {
Anurag Chouhan210db072016-02-22 18:42:15 +0530187 if (QDF_TIMER_STATE_STOPPED !=
188 qdf_mc_timer_get_current_state(&pAdapter->
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800189 tx_flow_control_timer)) {
Anurag Chouhan210db072016-02-22 18:42:15 +0530190 qdf_mc_timer_stop(&pAdapter->tx_flow_control_timer);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800191 }
192
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800193 hdd_notice("Enabling queues");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800194 wlan_hdd_netif_queue_control(pAdapter,
195 WLAN_WAKE_ALL_NETIF_QUEUE,
196 WLAN_DATA_FLOW_CONTROL);
197 }
Poddar, Siddarthb61cf642016-04-28 16:02:39 +0530198 hdd_softap_tx_resume_false(pAdapter, tx_resume);
199
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800200 return;
201}
gbianec670c592016-11-24 11:21:30 +0800202
203static inline struct sk_buff *hdd_skb_orphan(hdd_adapter_t *pAdapter,
204 struct sk_buff *skb)
205{
206 if (pAdapter->tx_flow_low_watermark > 0)
207 skb_orphan(skb);
208 else {
209 skb = skb_unshare(skb, GFP_ATOMIC);
210 }
211
212 return skb;
213}
214
215#else
Mohit Khannad0b63f52017-02-18 18:05:52 -0800216/**
217 * hdd_skb_orphan() - skb_unshare a cloned packed else skb_orphan
218 * @pAdapter: pointer to HDD adapter
219 * @skb: pointer to skb data packet
220 *
221 * Return: pointer to skb structure
222 */
223static struct sk_buff *hdd_skb_orphan(hdd_adapter_t *pAdapter,
224 struct sk_buff *skb) {
gbianec670c592016-11-24 11:21:30 +0800225
Mohit Khannad0b63f52017-02-18 18:05:52 -0800226 struct sk_buff *nskb;
227 nskb = skb_unshare(skb, GFP_ATOMIC);
228
229 if (nskb == skb) {
230 /*
231 * For UDP packets we want to orphan the packet to allow the app
232 * to send more packets. The flow would ultimately be controlled
233 * by the limited number of tx descriptors for the vdev.
234 */
235 ++pAdapter->hdd_stats.hddTxRxStats.txXmitOrphaned;
236 skb_orphan(skb);
237 }
238 return nskb;
gbianec670c592016-11-24 11:21:30 +0800239}
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800240#endif /* QCA_LL_LEGACY_TX_FLOW_CONTROL */
241
242/**
Mukul Sharmac4de4ef2016-09-12 15:39:00 +0530243 * __hdd_softap_hard_start_xmit() - Transmit a frame
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800244 * @skb: pointer to OS packet (sk_buff)
245 * @dev: pointer to network device
246 *
247 * Function registered with the Linux OS for transmitting
248 * packets. This version of the function directly passes
249 * the packet to Transport Layer.
250 *
251 * Return: Always returns NETDEV_TX_OK
252 */
Jeff Johnson6376abe2016-10-05 16:24:56 -0700253static int __hdd_softap_hard_start_xmit(struct sk_buff *skb,
254 struct net_device *dev)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800255{
256 sme_ac_enum_type ac = SME_AC_BE;
257 hdd_adapter_t *pAdapter = (hdd_adapter_t *) netdev_priv(dev);
258 hdd_ap_ctx_t *pHddApCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
Anurag Chouhan6d760662016-02-20 16:05:43 +0530259 struct qdf_mac_addr *pDestMacAddress;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800260 uint8_t STAId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800261
262 ++pAdapter->hdd_stats.hddTxRxStats.txXmitCalled;
263 /* Prevent this function from being called during SSR since TL
264 * context may not be reinitialized at this time which may
265 * lead to a crash.
266 */
Prashanth Bhatta9e143052015-12-04 11:56:47 -0800267 if (cds_is_driver_recovering()) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530268 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_INFO_HIGH,
Prashanth Bhatta9e143052015-12-04 11:56:47 -0800269 "%s: Recovery in Progress. Ignore!!!", __func__);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800270 goto drop_pkt;
271 }
272
273 /*
274 * If the device is operating on a DFS Channel
275 * then check if SAP is in CAC WAIT state and
276 * drop the packets. In CAC WAIT state device
277 * is expected not to transmit any frames.
278 * SAP starts Tx only after the BSS START is
279 * done.
280 */
281 if (pHddApCtx->dfs_cac_block_tx) {
282 goto drop_pkt;
283 }
284
Dhanashri Atre168d2b42016-02-22 14:43:06 -0800285 /*
Jeff Johnson4fca3b52017-01-12 08:44:18 -0800286 * If a transmit function is not registered, drop packet
287 */
Dhanashri Atre168d2b42016-02-22 14:43:06 -0800288 if (!pAdapter->tx_fn) {
289 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_INFO_HIGH,
290 "%s: TX function not registered by the data path",
291 __func__);
292 goto drop_pkt;
293 }
294
Nirav Shah5e74bb82016-07-20 16:01:27 +0530295 wlan_hdd_classify_pkt(skb);
296
Anurag Chouhan6d760662016-02-20 16:05:43 +0530297 pDestMacAddress = (struct qdf_mac_addr *) skb->data;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800298
Nirav Shah5e74bb82016-07-20 16:01:27 +0530299 if (QDF_NBUF_CB_GET_IS_BCAST(skb) ||
300 QDF_NBUF_CB_GET_IS_MCAST(skb)) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800301 /* The BC/MC station ID is assigned during BSS
302 * starting phase. SAP will return the station ID
303 * used for BC/MC traffic.
304 */
305 STAId = pHddApCtx->uBCStaId;
306 } else {
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530307 if (QDF_STATUS_SUCCESS !=
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800308 hdd_softap_get_sta_id(pAdapter,
309 pDestMacAddress, &STAId)) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530310 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA,
311 QDF_TRACE_LEVEL_WARN,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800312 "%s: Failed to find right station", __func__);
313 goto drop_pkt;
314 }
315
Prakash Dhavali3107b752016-11-28 14:35:06 +0530316 if (STAId >= WLAN_MAX_STA_COUNT) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530317 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA,
318 QDF_TRACE_LEVEL_WARN,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800319 "%s: Failed to find right station", __func__);
320 goto drop_pkt;
321 } else if (false == pAdapter->aStaInfo[STAId].isUsed) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530322 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA,
323 QDF_TRACE_LEVEL_WARN,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800324 "%s: STA %d is unregistered", __func__,
325 STAId);
326 goto drop_pkt;
Poddar, Siddartha5075462017-03-16 19:20:09 +0530327 } else if (true == pAdapter->aStaInfo[STAId].
328 isDeauthInProgress) {
329 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA,
330 QDF_TRACE_LEVEL_WARN,
331 "%s: STA %d deauth in progress", __func__,
332 STAId);
333 goto drop_pkt;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800334 }
335
Dhanashri Atreb08959a2016-03-01 17:28:03 -0800336 if ((OL_TXRX_PEER_STATE_CONN !=
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800337 pAdapter->aStaInfo[STAId].tlSTAState)
Dhanashri Atreb08959a2016-03-01 17:28:03 -0800338 && (OL_TXRX_PEER_STATE_AUTH !=
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800339 pAdapter->aStaInfo[STAId].tlSTAState)) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530340 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA,
341 QDF_TRACE_LEVEL_WARN,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800342 "%s: Station not connected yet", __func__);
343 goto drop_pkt;
Dhanashri Atreb08959a2016-03-01 17:28:03 -0800344 } else if (OL_TXRX_PEER_STATE_CONN ==
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800345 pAdapter->aStaInfo[STAId].tlSTAState) {
346 if (ntohs(skb->protocol) != HDD_ETHERTYPE_802_1_X) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530347 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA,
348 QDF_TRACE_LEVEL_WARN,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800349 "%s: NON-EAPOL packet in non-Authenticated state",
350 __func__);
351 goto drop_pkt;
352 }
353 }
354 }
355
356 hdd_get_tx_resource(pAdapter, STAId,
357 WLAN_SAP_HDD_TX_FLOW_CONTROL_OS_Q_BLOCK_TIME);
358
359 /* Get TL AC corresponding to Qdisc queue index/AC. */
360 ac = hdd_qdisc_ac_to_tl_ac[skb->queue_mapping];
361 ++pAdapter->hdd_stats.hddTxRxStats.txXmitClassifiedAC[ac];
362
363#if defined (IPA_OFFLOAD)
Nirav Shahcbc6d722016-03-01 16:24:53 +0530364 if (!qdf_nbuf_ipa_owned_get(skb)) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800365#endif
gbianec670c592016-11-24 11:21:30 +0800366
367#if (LINUX_VERSION_CODE > KERNEL_VERSION(3, 19, 0))
368 /*
Jeff Johnson4fca3b52017-01-12 08:44:18 -0800369 * The TCP TX throttling logic is changed a little after
370 * 3.19-rc1 kernel, the TCP sending limit will be smaller,
371 * which will throttle the TCP packets to the host driver.
372 * The TCP UP LINK throughput will drop heavily. In order to
373 * fix this issue, need to orphan the socket buffer asap, which
374 * will call skb's destructor to notify the TCP stack that the
375 * SKB buffer is unowned. And then the TCP stack will pump more
376 * packets to host driver.
377 *
378 * The TX packets might be dropped for UDP case in the iperf
379 * testing. So need to be protected by follow control.
380 */
gbianec670c592016-11-24 11:21:30 +0800381 skb = hdd_skb_orphan(pAdapter, skb);
382#else
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800383 /* Check if the buffer has enough header room */
384 skb = skb_unshare(skb, GFP_ATOMIC);
gbianec670c592016-11-24 11:21:30 +0800385#endif
386
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800387 if (!skb)
Jeff Johnsonedeff232015-11-11 17:19:42 -0800388 goto drop_pkt_accounting;
gbianec670c592016-11-24 11:21:30 +0800389
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800390#if defined (IPA_OFFLOAD)
391 }
392#endif
393
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800394 pAdapter->stats.tx_bytes += skb->len;
Mohit Khannab1dd1e82017-02-04 15:14:38 -0800395
396 if (qdf_nbuf_is_tso(skb))
397 pAdapter->stats.tx_packets += qdf_nbuf_get_tso_num_seg(skb);
398 else {
399 ++pAdapter->stats.tx_packets;
400 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800401
Nirav Shah5e74bb82016-07-20 16:01:27 +0530402 hdd_event_eapol_log(skb, QDF_TX);
Nirav Shah0d58a7e2016-04-26 22:54:12 +0530403 qdf_dp_trace_log_pkt(pAdapter->sessionId, skb, QDF_TX);
Nirav Shahcbc6d722016-03-01 16:24:53 +0530404 QDF_NBUF_CB_TX_PACKET_TRACK(skb) = QDF_NBUF_TX_PKT_DATA_TRACK;
405 QDF_NBUF_UPDATE_TX_PKT_COUNT(skb, QDF_NBUF_TX_PKT_HDD);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800406
Nirav Shah0d58a7e2016-04-26 22:54:12 +0530407 qdf_dp_trace_set_track(skb, QDF_TX);
408 DPTRACE(qdf_dp_trace(skb, QDF_DP_TRACE_HDD_TX_PACKET_PTR_RECORD,
Himanshu Agarwalee3411a2017-01-31 12:56:47 +0530409 qdf_nbuf_data_addr(skb), sizeof(qdf_nbuf_data(skb)),
410 QDF_TX));
Nirav Shah0d58a7e2016-04-26 22:54:12 +0530411 DPTRACE(qdf_dp_trace(skb, QDF_DP_TRACE_HDD_TX_PACKET_RECORD,
412 (uint8_t *)skb->data, qdf_nbuf_len(skb), QDF_TX));
Nirav Shahcbc6d722016-03-01 16:24:53 +0530413 if (qdf_nbuf_len(skb) > QDF_DP_TRACE_RECORD_SIZE)
Nirav Shah0d58a7e2016-04-26 22:54:12 +0530414 DPTRACE(qdf_dp_trace(skb, QDF_DP_TRACE_HDD_TX_PACKET_RECORD,
415 (uint8_t *)&skb->data[QDF_DP_TRACE_RECORD_SIZE],
416 (qdf_nbuf_len(skb)-QDF_DP_TRACE_RECORD_SIZE), QDF_TX));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800417
Leo Changfdb45c32016-10-28 11:09:23 -0700418 if (pAdapter->tx_fn(pAdapter->txrx_vdev,
Dhanashri Atre168d2b42016-02-22 14:43:06 -0800419 (qdf_nbuf_t) skb) != NULL) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530420 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_WARN,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800421 "%s: Failed to send packet to txrx for staid:%d",
422 __func__, STAId);
423 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDroppedAC[ac];
424 goto drop_pkt;
425 }
Dustin Browne0024fa2016-10-14 16:29:21 -0700426 netif_trans_update(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800427
428 return NETDEV_TX_OK;
429
430drop_pkt:
431
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530432 DPTRACE(qdf_dp_trace(skb, QDF_DP_TRACE_DROP_PACKET_RECORD,
Nirav Shah0d58a7e2016-04-26 22:54:12 +0530433 (uint8_t *)skb->data, qdf_nbuf_len(skb), QDF_TX));
Nirav Shahcbc6d722016-03-01 16:24:53 +0530434 if (qdf_nbuf_len(skb) > QDF_DP_TRACE_RECORD_SIZE)
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530435 DPTRACE(qdf_dp_trace(skb, QDF_DP_TRACE_DROP_PACKET_RECORD,
Nirav Shah0d58a7e2016-04-26 22:54:12 +0530436 (uint8_t *)&skb->data[QDF_DP_TRACE_RECORD_SIZE],
437 (qdf_nbuf_len(skb)-QDF_DP_TRACE_RECORD_SIZE), QDF_TX));
Jeff Johnsonedeff232015-11-11 17:19:42 -0800438 kfree_skb(skb);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800439
Jeff Johnsonedeff232015-11-11 17:19:42 -0800440drop_pkt_accounting:
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800441 ++pAdapter->stats.tx_dropped;
442 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800443
444 return NETDEV_TX_OK;
445}
446
447/**
Mukul Sharmac4de4ef2016-09-12 15:39:00 +0530448 * hdd_softap_hard_start_xmit() - Wrapper function to protect
449 * __hdd_softap_hard_start_xmit from SSR
450 * @skb: pointer to OS packet
451 * @dev: pointer to net_device structure
452 *
453 * Function called by OS if any packet needs to transmit.
454 *
455 * Return: Always returns NETDEV_TX_OK
456 */
457int hdd_softap_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
458{
459 int ret;
460
461 cds_ssr_protect(__func__);
462 ret = __hdd_softap_hard_start_xmit(skb, dev);
463 cds_ssr_unprotect(__func__);
464
465 return ret;
466}
467
Sen, Devendra154b3c42017-02-13 20:44:15 +0530468#ifdef FEATURE_WLAN_DIAG_SUPPORT
469/**
470 * hdd_wlan_datastall_sap_event()- Send SAP datastall information
471 *
472 * This Function send send SAP datastall diag event
473 *
474 * Return: void.
475 */
476static void hdd_wlan_datastall_sap_event(void)
477{
478 WLAN_HOST_DIAG_EVENT_DEF(sap_data_stall,
479 struct host_event_wlan_datastall);
480 qdf_mem_zero(&sap_data_stall, sizeof(sap_data_stall));
481 sap_data_stall.reason = SOFTAP_TX_TIMEOUT;
482 WLAN_HOST_DIAG_EVENT_REPORT(&sap_data_stall,
483 EVENT_WLAN_SOFTAP_DATASTALL);
484}
485#else
486static inline void hdd_wlan_datastall_sap_event(void)
487{
488
489}
490#endif
491
Mukul Sharmac4de4ef2016-09-12 15:39:00 +0530492/**
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800493 * __hdd_softap_tx_timeout() - TX timeout handler
494 * @dev: pointer to network device
495 *
496 * This function is registered as a netdev ndo_tx_timeout method, and
497 * is invoked by the kernel if the driver takes too long to transmit a
498 * frame.
499 *
500 * Return: None
501 */
502static void __hdd_softap_tx_timeout(struct net_device *dev)
503{
504 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
505 hdd_context_t *hdd_ctx;
Nirav Shah89223f72016-03-01 18:10:38 +0530506 struct netdev_queue *txq;
507 int i;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800508
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530509 DPTRACE(qdf_dp_trace(NULL, QDF_DP_TRACE_HDD_SOFTAP_TX_TIMEOUT,
Nirav Shah0d58a7e2016-04-26 22:54:12 +0530510 NULL, 0, QDF_TX));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800511 /* Getting here implies we disabled the TX queues for too
512 * long. Queues are disabled either because of disassociation
513 * or low resource scenarios. In case of disassociation it is
514 * ok to ignore this. But if associated, we have do possible
515 * recovery here
516 */
517 hdd_ctx = WLAN_HDD_GET_CTX(adapter);
Prashanth Bhatta9e143052015-12-04 11:56:47 -0800518 if (cds_is_driver_recovering()) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530519 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prashanth Bhatta9e143052015-12-04 11:56:47 -0800520 "%s: Recovery in Progress. Ignore!!!", __func__);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800521 return;
522 }
Nirav Shah89223f72016-03-01 18:10:38 +0530523
Dustin Browne0024fa2016-10-14 16:29:21 -0700524 TX_TIMEOUT_TRACE(dev, QDF_MODULE_ID_HDD_SAP_DATA);
Nirav Shah89223f72016-03-01 18:10:38 +0530525
526 for (i = 0; i < NUM_TX_QUEUES; i++) {
527 txq = netdev_get_tx_queue(dev, i);
528 QDF_TRACE(QDF_MODULE_ID_HDD_DATA,
529 QDF_TRACE_LEVEL_ERROR,
530 "Queue%d status: %d txq->trans_start %lu",
531 i, netif_tx_queue_stopped(txq), txq->trans_start);
532 }
533
534 wlan_hdd_display_netif_queue_history(hdd_ctx);
Leo Changfdb45c32016-10-28 11:09:23 -0700535 cdp_dump_flow_pool_info(cds_get_context(QDF_MODULE_ID_SOC));
Nirav Shah89223f72016-03-01 18:10:38 +0530536 QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_ERROR,
537 "carrier state: %d", netif_carrier_ok(dev));
Sen, Devendra154b3c42017-02-13 20:44:15 +0530538 hdd_wlan_datastall_sap_event();
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800539}
540
541/**
542 * hdd_softap_tx_timeout() - SSR wrapper for __hdd_softap_tx_timeout
543 * @dev: pointer to net_device
544 *
545 * Return: none
546 */
547void hdd_softap_tx_timeout(struct net_device *dev)
548{
549 cds_ssr_protect(__func__);
550 __hdd_softap_tx_timeout(dev);
551 cds_ssr_unprotect(__func__);
552}
553
554/**
555 * @hdd_softap_init_tx_rx() - Initialize Tx/RX module
556 * @pAdapter: pointer to adapter context
557 *
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530558 * Return: QDF_STATUS_E_FAILURE if any errors encountered,
559 * QDF_STATUS_SUCCESS otherwise
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800560 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530561QDF_STATUS hdd_softap_init_tx_rx(hdd_adapter_t *pAdapter)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800562{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530563 QDF_STATUS status = QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800564
565 uint8_t STAId = 0;
566
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530567 qdf_mem_zero(&pAdapter->stats, sizeof(struct net_device_stats));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800568
569 spin_lock_init(&pAdapter->staInfo_lock);
570
571 for (STAId = 0; STAId < WLAN_MAX_STA_COUNT; STAId++) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530572 qdf_mem_zero(&pAdapter->aStaInfo[STAId],
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800573 sizeof(hdd_station_info_t));
574 }
575
576 return status;
577}
578
579/**
580 * @hdd_softap_deinit_tx_rx() - Deinitialize Tx/RX module
581 * @pAdapter: pointer to adapter context
582 *
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530583 * Return: QDF_STATUS_E_FAILURE if any errors encountered,
584 * QDF_STATUS_SUCCESS otherwise
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800585 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530586QDF_STATUS hdd_softap_deinit_tx_rx(hdd_adapter_t *pAdapter)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800587{
Dhanashri Atreed3bf512017-02-21 12:25:53 -0800588 if (pAdapter == NULL) {
589 hdd_err("Called with pAdapter = NULL.");
590 return QDF_STATUS_E_FAILURE;
591 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800592
Dhanashri Atreed3bf512017-02-21 12:25:53 -0800593 pAdapter->txrx_vdev = NULL;
594 pAdapter->tx_fn = NULL;
595 hdd_info("Deregistering TX function hook !");
596 return QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800597}
598
599/**
600 * hdd_softap_init_tx_rx_sta() - Initialize tx/rx for a softap station
601 * @pAdapter: pointer to adapter context
602 * @STAId: Station ID to initialize
603 * @pmacAddrSTA: pointer to the MAC address of the station
604 *
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530605 * Return: QDF_STATUS_E_FAILURE if any errors encountered,
606 * QDF_STATUS_SUCCESS otherwise
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800607 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530608QDF_STATUS hdd_softap_init_tx_rx_sta(hdd_adapter_t *pAdapter, uint8_t STAId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530609 struct qdf_mac_addr *pmacAddrSTA)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800610{
611 spin_lock_bh(&pAdapter->staInfo_lock);
612 if (pAdapter->aStaInfo[STAId].isUsed) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800613 spin_unlock_bh(&pAdapter->staInfo_lock);
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800614 hdd_err("Reinit of in use station %d", STAId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530615 return QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800616 }
617
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530618 qdf_mem_zero(&pAdapter->aStaInfo[STAId], sizeof(hdd_station_info_t));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800619
620 pAdapter->aStaInfo[STAId].isUsed = true;
621 pAdapter->aStaInfo[STAId].isDeauthInProgress = false;
Anurag Chouhanc5548422016-02-24 18:33:27 +0530622 qdf_copy_macaddr(&pAdapter->aStaInfo[STAId].macAddrSTA, pmacAddrSTA);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800623
624 spin_unlock_bh(&pAdapter->staInfo_lock);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530625 return QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800626}
627
628/**
629 * hdd_softap_deinit_tx_rx_sta() - Deinitialize tx/rx for a softap station
630 * @pAdapter: pointer to adapter context
631 * @STAId: Station ID to deinitialize
632 *
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530633 * Return: QDF_STATUS_E_FAILURE if any errors encountered,
634 * QDF_STATUS_SUCCESS otherwise
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800635 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530636QDF_STATUS hdd_softap_deinit_tx_rx_sta(hdd_adapter_t *pAdapter, uint8_t STAId)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800637{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530638 QDF_STATUS status = QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800639 hdd_hostapd_state_t *pHostapdState;
640
641 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
642
643 spin_lock_bh(&pAdapter->staInfo_lock);
644
645 if (false == pAdapter->aStaInfo[STAId].isUsed) {
646 spin_unlock_bh(&pAdapter->staInfo_lock);
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800647 hdd_err("Deinit station not inited %d", STAId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530648 return QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800649 }
650
651 pAdapter->aStaInfo[STAId].isUsed = false;
652 pAdapter->aStaInfo[STAId].isDeauthInProgress = false;
653
654 spin_unlock_bh(&pAdapter->staInfo_lock);
655 return status;
656}
657
658/**
659 * hdd_softap_rx_packet_cbk() - Receive packet handler
Dhanashri Atre182b0272016-02-17 15:35:07 -0800660 * @context: pointer to HDD context
Nirav Shahcbc6d722016-03-01 16:24:53 +0530661 * @rxBuf: pointer to rx qdf_nbuf
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800662 *
663 * Receive callback registered with TL. TL will call this to notify
664 * the HDD when one or more packets were received for a registered
665 * STA.
666 *
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530667 * Return: QDF_STATUS_E_FAILURE if any errors encountered,
668 * QDF_STATUS_SUCCESS otherwise
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800669 */
Dhanashri Atre182b0272016-02-17 15:35:07 -0800670QDF_STATUS hdd_softap_rx_packet_cbk(void *context, qdf_nbuf_t rxBuf)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800671{
672 hdd_adapter_t *pAdapter = NULL;
673 int rxstat;
674 unsigned int cpu_index;
675 struct sk_buff *skb = NULL;
Dhanashri Atrecefa8802017-02-02 16:17:14 -0800676 struct sk_buff *next = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800677 hdd_context_t *pHddCtx = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800678
679 /* Sanity check on inputs */
Dhanashri Atre182b0272016-02-17 15:35:07 -0800680 if (unlikely((NULL == context) || (NULL == rxBuf))) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530681 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800682 "%s: Null params being passed", __func__);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530683 return QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800684 }
685
Dhanashri Atre182b0272016-02-17 15:35:07 -0800686 pAdapter = (hdd_adapter_t *)context;
687 if (unlikely(WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)) {
688 QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_FATAL,
689 "Magic cookie(%x) for adapter sanity verification is invalid",
690 pAdapter->magic);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530691 return QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800692 }
693
Dhanashri Atre182b0272016-02-17 15:35:07 -0800694 pHddCtx = pAdapter->pHddCtx;
695 if (unlikely(NULL == pHddCtx)) {
696 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
697 "%s: HDD context is Null", __func__);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530698 return QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800699 }
700
701 /* walk the chain until all are processed */
Dhanashri Atrecefa8802017-02-02 16:17:14 -0800702 next = (struct sk_buff *)rxBuf;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800703
Dhanashri Atrecefa8802017-02-02 16:17:14 -0800704 while (next) {
705 skb = next;
706 next = skb->next;
Dhanashri Atre63d98022017-01-24 18:22:09 -0800707 skb->next = NULL;
Dhanashri Atrecefa8802017-02-02 16:17:14 -0800708
709#ifdef QCA_WIFI_NAPIER_EMULATION /* Debug code, remove later */
710 QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_ERROR,
711 "%s: skb %p skb->len %d\n", __func__, skb, skb->len);
712#endif
713
Dhanashri Atre63d98022017-01-24 18:22:09 -0800714 hdd_softap_dump_sk_buff(skb);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800715
Dhanashri Atre63d98022017-01-24 18:22:09 -0800716 skb->dev = pAdapter->dev;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800717
Dhanashri Atre63d98022017-01-24 18:22:09 -0800718 if (unlikely(skb->dev == NULL)) {
719
720 QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, QDF_TRACE_LEVEL_ERROR,
721 "%s: ERROR!!Invalid netdevice", __func__);
Dhanashri Atrecefa8802017-02-02 16:17:14 -0800722 continue;
Dhanashri Atre63d98022017-01-24 18:22:09 -0800723 }
724 cpu_index = wlan_hdd_get_cpu();
725 ++pAdapter->hdd_stats.hddTxRxStats.rxPackets[cpu_index];
726 ++pAdapter->stats.rx_packets;
727 pAdapter->stats.rx_bytes += skb->len;
728
729 hdd_event_eapol_log(skb, QDF_RX);
Himanshu Agarwalee3411a2017-01-31 12:56:47 +0530730 DPTRACE(qdf_dp_trace(skb,
Dhanashri Atre63d98022017-01-24 18:22:09 -0800731 QDF_DP_TRACE_RX_HDD_PACKET_PTR_RECORD,
Himanshu Agarwalee3411a2017-01-31 12:56:47 +0530732 qdf_nbuf_data_addr(skb),
733 sizeof(qdf_nbuf_data(skb)), QDF_RX));
734 DPTRACE(qdf_dp_trace(skb, QDF_DP_TRACE_HDD_RX_PACKET_RECORD,
735 (uint8_t *)skb->data, qdf_nbuf_len(skb), QDF_RX));
736 if (qdf_nbuf_len(skb) > QDF_DP_TRACE_RECORD_SIZE)
737 DPTRACE(qdf_dp_trace(skb,
738 QDF_DP_TRACE_HDD_RX_PACKET_RECORD,
739 (uint8_t *)&skb->data[QDF_DP_TRACE_RECORD_SIZE],
740 (qdf_nbuf_len(skb)-QDF_DP_TRACE_RECORD_SIZE),
741 QDF_RX));
Dhanashri Atre63d98022017-01-24 18:22:09 -0800742
743 skb->protocol = eth_type_trans(skb, skb->dev);
744
745 /* hold configurable wakelock for unicast traffic */
746 if (pHddCtx->config->rx_wakelock_timeout &&
747 skb->pkt_type != PACKET_BROADCAST &&
748 skb->pkt_type != PACKET_MULTICAST) {
749 cds_host_diag_log_work(&pHddCtx->rx_wake_lock,
750 pHddCtx->config->rx_wakelock_timeout,
751 WIFI_POWER_EVENT_WAKELOCK_HOLD_RX);
752 qdf_wake_lock_timeout_acquire(&pHddCtx->rx_wake_lock,
753 pHddCtx->config->
754 rx_wakelock_timeout);
755 }
756
757 /* Remove SKB from internal tracking table before submitting
758 * it to stack
759 */
760 qdf_net_buf_debug_release_skb(rxBuf);
761 if (hdd_napi_enabled(HDD_NAPI_ANY) &&
762 !pHddCtx->enableRxThread)
763 rxstat = netif_receive_skb(skb);
764 else
765 rxstat = netif_rx_ni(skb);
766 if (NET_RX_SUCCESS == rxstat) {
767 ++pAdapter->hdd_stats.hddTxRxStats.rxDelivered[cpu_index];
768 } else {
769 ++pAdapter->hdd_stats.hddTxRxStats.rxRefused[cpu_index];
770 }
771
772 pAdapter->dev->last_rx = jiffies;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800773 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800774
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530775 return QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800776}
777
778/**
779 * hdd_softap_deregister_sta(hdd_adapter_t *pAdapter, uint8_t staId)
780 * @pAdapter: pointer to adapter context
781 * @staId: Station ID to deregister
782 *
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530783 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800784 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530785QDF_STATUS hdd_softap_deregister_sta(hdd_adapter_t *pAdapter, uint8_t staId)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800786{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530787 QDF_STATUS qdf_status = QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800788 hdd_context_t *pHddCtx;
Abhishek Singh07c627e2017-03-20 17:56:34 +0530789 int ret;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800790
791 if (NULL == pAdapter) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800792 hdd_err("NULL adapter");
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530793 return QDF_STATUS_E_INVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800794 }
795
796 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800797 hdd_err("Invalid adapter magic");
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530798 return QDF_STATUS_E_INVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800799 }
800
801 pHddCtx = (hdd_context_t *) (pAdapter->pHddCtx);
802 /* Clear station in TL and then update HDD data
803 * structures. This helps to block RX frames from other
804 * station to this station.
805 */
Krishna Kumaar Natarajane58b4092017-01-25 15:47:35 -0800806 qdf_status = cdp_clear_peer(cds_get_context(QDF_MODULE_ID_SOC),
Venkata Sharath Chandra Manchala0d44d452016-11-23 17:48:15 -0800807 (struct cdp_pdev *)cds_get_context(QDF_MODULE_ID_TXRX),
808 staId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530809 if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
Krishna Kumaar Natarajane58b4092017-01-25 15:47:35 -0800810 hdd_err("cdp_clear_peer failed for staID %d, Status=%d [0x%08X]",
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800811 staId, qdf_status, qdf_status);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800812 }
813
Dustin Brown7d043f62017-03-27 12:07:36 -0700814 ret = hdd_objmgr_remove_peer_object(pAdapter->hdd_vdev,
815 pAdapter->aStaInfo[staId].
816 macAddrSTA.bytes);
Abhishek Singh07c627e2017-03-20 17:56:34 +0530817 if (ret)
818 hdd_err("Peer obj %pM delete fails",
819 pAdapter->aStaInfo[staId].macAddrSTA.bytes);
820
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800821 if (pAdapter->aStaInfo[staId].isUsed) {
822 spin_lock_bh(&pAdapter->staInfo_lock);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530823 qdf_mem_zero(&pAdapter->aStaInfo[staId],
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800824 sizeof(hdd_station_info_t));
825 spin_unlock_bh(&pAdapter->staInfo_lock);
826 }
Abhishek Singh07c627e2017-03-20 17:56:34 +0530827
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800828 pHddCtx->sta_to_adapter[staId] = NULL;
829
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530830 return qdf_status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800831}
832
833/**
834 * hdd_softap_register_sta() - Register a SoftAP STA
835 * @pAdapter: pointer to adapter context
836 * @fAuthRequired: is additional authentication required?
837 * @fPrivacyBit: should 802.11 privacy bit be set?
838 * @staId: station ID assigned to this station
839 * @ucastSig: unicast security signature
840 * @bcastSig: broadcast security signature
841 * @pPeerMacAddress: station MAC address
842 * @fWmmEnabled: is WMM enabled for this STA?
843 *
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530844 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800845 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530846QDF_STATUS hdd_softap_register_sta(hdd_adapter_t *pAdapter,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800847 bool fAuthRequired,
848 bool fPrivacyBit,
849 uint8_t staId,
850 uint8_t ucastSig,
851 uint8_t bcastSig,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530852 struct qdf_mac_addr *pPeerMacAddress,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800853 bool fWmmEnabled)
854{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530855 QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800856 struct ol_txrx_desc_type staDesc = { 0 };
857 hdd_context_t *pHddCtx = pAdapter->pHddCtx;
Dhanashri Atre182b0272016-02-17 15:35:07 -0800858 struct ol_txrx_ops txrx_ops;
Leo Changfdb45c32016-10-28 11:09:23 -0700859 void *soc = cds_get_context(QDF_MODULE_ID_SOC);
860 void *pdev = cds_get_context(QDF_MODULE_ID_TXRX);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800861
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800862 hdd_info("STA:%u, Auth:%u, Priv:%u, WMM:%u",
863 staId, fAuthRequired, fPrivacyBit, fWmmEnabled);
864
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800865 /*
866 * Clean up old entry if it is not cleaned up properly
867 */
868 if (pAdapter->aStaInfo[staId].isUsed) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800869 hdd_info("clean up old entry for STA %d", staId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800870 hdd_softap_deregister_sta(pAdapter, staId);
871 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800872
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800873 /* Get the Station ID from the one saved during the assocation. */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800874 staDesc.sta_id = staId;
875
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800876 /* Save the pAdapter Pointer for this staId */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800877 pHddCtx->sta_to_adapter[staId] = pAdapter;
878
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530879 qdf_status =
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800880 hdd_softap_init_tx_rx_sta(pAdapter, staId,
881 pPeerMacAddress);
882
883 staDesc.is_qos_enabled = fWmmEnabled;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800884
Dhanashri Atre182b0272016-02-17 15:35:07 -0800885 /* Register the vdev transmit and receive functions */
886 qdf_mem_zero(&txrx_ops, sizeof(txrx_ops));
887 txrx_ops.rx.rx = hdd_softap_rx_packet_cbk;
Leo Changfdb45c32016-10-28 11:09:23 -0700888 cdp_vdev_register(soc,
Venkata Sharath Chandra Manchala0d44d452016-11-23 17:48:15 -0800889 (struct cdp_vdev *)cdp_get_vdev_from_vdev_id(soc,
890 (struct cdp_pdev *)pdev, pAdapter->sessionId),
891 pAdapter, &txrx_ops);
892 pAdapter->txrx_vdev = (void *)cdp_get_vdev_from_vdev_id(soc,
893 (struct cdp_pdev *)pdev,
Leo Changfdb45c32016-10-28 11:09:23 -0700894 pAdapter->sessionId);
Dhanashri Atre168d2b42016-02-22 14:43:06 -0800895 pAdapter->tx_fn = txrx_ops.tx.tx;
Dhanashri Atre182b0272016-02-17 15:35:07 -0800896
Venkata Sharath Chandra Manchala0d44d452016-11-23 17:48:15 -0800897 qdf_status = cdp_peer_register(soc,
898 (struct cdp_pdev *)pdev, &staDesc);
Dhanashri Atre50141c52016-04-07 13:15:29 -0700899 if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800900 hdd_err("cdp_peer_register() failed to register. Status = %d [0x%08X]",
901 qdf_status, qdf_status);
Dhanashri Atre50141c52016-04-07 13:15:29 -0700902 return qdf_status;
903 }
904
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800905 /* if ( WPA ), tell TL to go to 'connected' and after keys come to the
906 * driver then go to 'authenticated'. For all other authentication
907 * types (those that do not require upper layer authentication) we can
908 * put TL directly into 'authenticated' state
909 */
910
911 pAdapter->aStaInfo[staId].ucSTAId = staId;
912 pAdapter->aStaInfo[staId].isQosEnabled = fWmmEnabled;
913
914 if (!fAuthRequired) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800915 hdd_info("open/shared auth StaId= %d. Changing TL state to AUTHENTICATED at Join time",
916 pAdapter->aStaInfo[staId].ucSTAId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800917
918 /* Connections that do not need Upper layer auth,
919 * transition TL directly to 'Authenticated' state.
920 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530921 qdf_status = hdd_change_peer_state(pAdapter, staDesc.sta_id,
Dhanashri Atreb08959a2016-03-01 17:28:03 -0800922 OL_TXRX_PEER_STATE_AUTH, false);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800923
Dhanashri Atreb08959a2016-03-01 17:28:03 -0800924 pAdapter->aStaInfo[staId].tlSTAState = OL_TXRX_PEER_STATE_AUTH;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800925 pAdapter->sessionCtx.ap.uIsAuthenticated = true;
926 } else {
927
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800928 hdd_info("ULA auth StaId= %d. Changing TL state to CONNECTED at Join time",
929 pAdapter->aStaInfo[staId].ucSTAId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800930
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530931 qdf_status = hdd_change_peer_state(pAdapter, staDesc.sta_id,
Dhanashri Atreb08959a2016-03-01 17:28:03 -0800932 OL_TXRX_PEER_STATE_CONN, false);
933 pAdapter->aStaInfo[staId].tlSTAState = OL_TXRX_PEER_STATE_CONN;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800934
935 pAdapter->sessionCtx.ap.uIsAuthenticated = false;
936
937 }
938
939 /* Enable Tx queue */
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -0800940 hdd_notice("Enabling queues");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800941 wlan_hdd_netif_queue_control(pAdapter,
942 WLAN_START_ALL_NETIF_QUEUE_N_CARRIER,
943 WLAN_CONTROL_PATH);
944
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530945 return qdf_status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800946}
947
948/**
949 * hdd_softap_register_bc_sta() - Register the SoftAP broadcast STA
950 * @pAdapter: pointer to adapter context
951 * @fPrivacyBit: should 802.11 privacy bit be set?
952 *
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530953 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800954 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530955QDF_STATUS hdd_softap_register_bc_sta(hdd_adapter_t *pAdapter,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800956 bool fPrivacyBit)
957{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530958 QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800959 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Anurag Chouhan6d760662016-02-20 16:05:43 +0530960 struct qdf_mac_addr broadcastMacAddr =
961 QDF_MAC_ADDR_BROADCAST_INITIALIZER;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800962 hdd_ap_ctx_t *pHddApCtx;
963
964 pHddApCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
965
966 pHddCtx->sta_to_adapter[WLAN_RX_BCMC_STA_ID] = pAdapter;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800967 pHddCtx->sta_to_adapter[pHddApCtx->uBCStaId] = pAdapter;
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530968 qdf_status =
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800969 hdd_softap_register_sta(pAdapter, false, fPrivacyBit,
970 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->
971 uBCStaId, 0, 1, &broadcastMacAddr, 0);
972
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530973 return qdf_status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800974}
975
976/**
977 * hdd_softap_deregister_bc_sta() - Deregister the SoftAP broadcast STA
978 * @pAdapter: pointer to adapter context
979 *
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530980 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800981 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530982QDF_STATUS hdd_softap_deregister_bc_sta(hdd_adapter_t *pAdapter)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800983{
984 return hdd_softap_deregister_sta(pAdapter,
985 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->
986 uBCStaId);
987}
988
989/**
990 * hdd_softap_stop_bss() - Stop the BSS
991 * @pAdapter: pointer to adapter context
992 *
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530993 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800994 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530995QDF_STATUS hdd_softap_stop_bss(hdd_adapter_t *pAdapter)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800996{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530997 QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800998 uint8_t staId = 0;
999 hdd_context_t *pHddCtx;
1000 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1001
1002 /* bss deregister is not allowed during wlan driver loading or
1003 * unloading
1004 */
Rajeev Kumarfec3dbe2016-01-19 15:23:52 -08001005 if (cds_is_load_or_unload_in_progress()) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001006 hdd_err("Loading_unloading in Progress, state: 0x%x. Ignore!!!",
1007 cds_get_driver_state());
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301008 return QDF_STATUS_E_PERM;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001009 }
1010
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301011 qdf_status = hdd_softap_deregister_bc_sta(pAdapter);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001012
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301013 if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001014 hdd_err("Failed to deregister BC sta Id %d",
1015 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->uBCStaId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001016 }
1017
1018 for (staId = 0; staId < WLAN_MAX_STA_COUNT; staId++) {
1019 /* This excludes BC sta as it is already deregistered */
1020 if (pAdapter->aStaInfo[staId].isUsed) {
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301021 qdf_status = hdd_softap_deregister_sta(pAdapter, staId);
1022 if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001023 hdd_err("Failed to deregister sta Id %d",
1024 staId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001025 }
1026 }
1027 }
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301028 return qdf_status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001029}
1030
1031/**
1032 * hdd_softap_change_sta_state() - Change the state of a SoftAP station
1033 * @pAdapter: pointer to adapter context
1034 * @pDestMacAddress: MAC address of the station
1035 * @state: new state of the station
1036 *
Anurag Chouhanf04e84f2016-03-03 10:12:12 +05301037 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001038 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301039QDF_STATUS hdd_softap_change_sta_state(hdd_adapter_t *pAdapter,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301040 struct qdf_mac_addr *pDestMacAddress,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001041 enum ol_txrx_peer_state state)
1042{
1043 uint8_t ucSTAId = WLAN_MAX_STA_COUNT;
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001044 QDF_STATUS qdf_status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001045
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001046 ENTER_DEV(pAdapter->dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001047
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001048 qdf_status = hdd_softap_get_sta_id(pAdapter, pDestMacAddress, &ucSTAId);
1049 if (QDF_STATUS_SUCCESS != qdf_status) {
1050 hdd_err("Failed to find right station");
1051 return qdf_status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001052 }
1053
1054 if (false ==
Anurag Chouhanc5548422016-02-24 18:33:27 +05301055 qdf_is_macaddr_equal(&pAdapter->aStaInfo[ucSTAId].macAddrSTA,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001056 pDestMacAddress)) {
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001057 hdd_err("Station %u MAC address not matching", ucSTAId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301058 return QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001059 }
1060
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301061 qdf_status =
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001062 hdd_change_peer_state(pAdapter, ucSTAId, state, false);
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001063 hdd_info("Station %u changed to state %d", ucSTAId, state);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001064
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301065 if (QDF_STATUS_SUCCESS == qdf_status) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001066 pAdapter->aStaInfo[ucSTAId].tlSTAState =
Dhanashri Atreb08959a2016-03-01 17:28:03 -08001067 OL_TXRX_PEER_STATE_AUTH;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001068 }
1069
Jeff Johnsond5bd6fd2016-12-05 12:29:21 -08001070 EXIT();
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301071 return qdf_status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001072}
1073
1074/*
1075 * hdd_softap_get_sta_id() - Find station ID from MAC address
1076 * @pAdapter: pointer to adapter context
1077 * @pDestMacAddress: MAC address of the destination
1078 * @staId: Station ID associated with the MAC address
1079 *
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301080 * Return: QDF_STATUS_SUCCESS if a match was found, in which case
1081 * staId is populated, QDF_STATUS_E_FAILURE if a match is
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001082 * not found
1083 */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301084QDF_STATUS hdd_softap_get_sta_id(hdd_adapter_t *pAdapter,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301085 struct qdf_mac_addr *pMacAddress,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001086 uint8_t *staId)
1087{
1088 uint8_t i;
1089
1090 for (i = 0; i < WLAN_MAX_STA_COUNT; i++) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301091 if (!qdf_mem_cmp
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001092 (&pAdapter->aStaInfo[i].macAddrSTA, pMacAddress,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301093 QDF_MAC_ADDR_SIZE) && pAdapter->aStaInfo[i].isUsed) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001094 *staId = i;
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301095 return QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001096 }
1097 }
1098
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301099 return QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001100}