blob: 2277e3e8e3fcb1ca74b1437e6f6200c7a9c20fb2 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Hanumantha Reddy Pothula07050f52015-02-24 11:36:12 +05302 * Copyright (c) 2012-2015 The Linux Foundation. All rights reserved.
Kiet Lam842dad02014-02-18 18:44:02 -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.
Jeff Johnson295189b2012-06-20 16:38:30 -070026 */
27
28/**===========================================================================
29
30 \file wlan_hdd_softap_tx_rx.c
31
32 \brief Linux HDD Tx/RX APIs
Jeff Johnson295189b2012-06-20 16:38:30 -070033
34 ==========================================================================*/
Jeff Johnson295189b2012-06-20 16:38:30 -070035
36/*---------------------------------------------------------------------------
37 Include files
38 -------------------------------------------------------------------------*/
39#include <linux/semaphore.h>
40#include <wlan_hdd_tx_rx.h>
41#include <wlan_hdd_softap_tx_rx.h>
42#include <wlan_hdd_dp_utils.h>
43#include <wlan_qct_tl.h>
44#include <linux/netdevice.h>
45#include <linux/skbuff.h>
46#include <linux/etherdevice.h>
47//#include <vos_list.h>
48#include <vos_types.h>
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053049#include <vos_sched.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070050#include <aniGlobal.h>
51#include <halTypes.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070052#include <net/ieee80211_radiotap.h>
Mihir Shetef3473692014-06-27 15:13:20 +053053#include <linux/ratelimit.h>
54#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0))
55#include <soc/qcom/subsystem_restart.h>
56#else
57#include <mach/subsystem_restart.h>
58#endif
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053059#include "sapInternal.h"
Mihir Shete5d148f12014-12-16 17:54:49 +053060#include "wlan_hdd_trace.h"
Sushant Kaushika8073312015-05-04 17:33:52 +053061#include "vos_diag_core_event.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070062/*---------------------------------------------------------------------------
63 Preprocessor definitions and constants
64 -------------------------------------------------------------------------*/
65
66/*---------------------------------------------------------------------------
67 Type declarations
68 -------------------------------------------------------------------------*/
69
70/*---------------------------------------------------------------------------
71 Function definitions and documenation
72 -------------------------------------------------------------------------*/
73#if 0
74static void hdd_softap_dump_sk_buff(struct sk_buff * skb)
75{
c_hpothu6d1d2a32014-03-18 20:17:03 +053076 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s: head = %p", __func__, skb->head);
77 //VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s: data = %p", __func__, skb->data);
78 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s: tail = %p", __func__, skb->tail);
79 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s: end = %p", __func__, skb->end);
80 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s: len = %d", __func__, skb->len);
81 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s: data_len = %d", __func__, skb->data_len);
82 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s: mac_len = %d", __func__, skb->mac_len);
Jeff Johnson295189b2012-06-20 16:38:30 -070083
c_hpothu6d1d2a32014-03-18 20:17:03 +053084 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x",
Jeff Johnson295189b2012-06-20 16:38:30 -070085 skb->data[0], skb->data[1], skb->data[2], skb->data[3], skb->data[4],
86 skb->data[5], skb->data[6], skb->data[7]);
c_hpothu6d1d2a32014-03-18 20:17:03 +053087 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x",
Jeff Johnson295189b2012-06-20 16:38:30 -070088 skb->data[8], skb->data[9], skb->data[10], skb->data[11], skb->data[12],
89 skb->data[13], skb->data[14], skb->data[15]);
90}
91#endif
Leo Chang64d68bc2013-06-04 15:40:52 -070092
93extern void hdd_set_wlan_suspend_mode(bool suspend);
94
Mihir Shetef3473692014-06-27 15:13:20 +053095#define HDD_SAP_TX_TIMEOUT_RATELIMIT_INTERVAL 20*HZ
96#define HDD_SAP_TX_TIMEOUT_RATELIMIT_BURST 1
97#define HDD_SAP_TX_STALL_SSR_THRESHOLD 5
Mihir Shete327c2ab2014-11-13 15:17:02 +053098#define HDD_SAP_TX_STALL_RECOVERY_THRESHOLD HDD_SAP_TX_STALL_SSR_THRESHOLD - 2
Mihir Shetef3473692014-06-27 15:13:20 +053099
100static DEFINE_RATELIMIT_STATE(hdd_softap_tx_timeout_rs, \
101 HDD_SAP_TX_TIMEOUT_RATELIMIT_INTERVAL, \
102 HDD_SAP_TX_TIMEOUT_RATELIMIT_BURST);
103
Leo Chang64d68bc2013-06-04 15:40:52 -0700104/**============================================================================
105 @brief hdd_softap_traffic_monitor_timeout_handler() -
106 SAP/P2P GO traffin monitor timeout handler function
107 If no traffic during programmed time, trigger suspand mode
108
109 @param pUsrData : [in] pointer to hdd context
110 @return : NONE
111 ===========================================================================*/
112void hdd_softap_traffic_monitor_timeout_handler( void *pUsrData )
113{
114 hdd_context_t *pHddCtx = (hdd_context_t *)pUsrData;
115 v_TIME_t currentTS;
116
Mahesh A Saptasagar4534e2b2015-03-05 20:45:41 +0530117 ENTER();
118 if (0 != (wlan_hdd_validate_context(pHddCtx)))
Leo Chang64d68bc2013-06-04 15:40:52 -0700119 {
Mahesh A Saptasagar4534e2b2015-03-05 20:45:41 +0530120 return;
Leo Chang64d68bc2013-06-04 15:40:52 -0700121 }
122
123 currentTS = vos_timer_get_system_time();
124 if (pHddCtx->cfg_ini->trafficIdleTimeout <
125 (currentTS - pHddCtx->traffic_monitor.lastFrameTs))
126 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530127 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Kiet Lambcf38522013-10-26 18:28:27 +0530128 "%s: No Data Activity calling Wlan Suspend", __func__ );
Leo Chang64d68bc2013-06-04 15:40:52 -0700129 hdd_set_wlan_suspend_mode(1);
130 atomic_set(&pHddCtx->traffic_monitor.isActiveMode, 0);
131 }
132 else
133 {
134 vos_timer_start(&pHddCtx->traffic_monitor.trafficTimer,
135 pHddCtx->cfg_ini->trafficIdleTimeout);
136 }
137
Mahesh A Saptasagar4534e2b2015-03-05 20:45:41 +0530138 EXIT();
Leo Chang64d68bc2013-06-04 15:40:52 -0700139 return;
140}
141
Kiet Lambcf38522013-10-26 18:28:27 +0530142VOS_STATUS hdd_start_trafficMonitor( hdd_adapter_t *pAdapter )
143{
144
145 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
146 VOS_STATUS status = VOS_STATUS_SUCCESS;
147
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +0530148 ENTER();
Kiet Lambcf38522013-10-26 18:28:27 +0530149 status = wlan_hdd_validate_context(pHddCtx);
Kiet Lambcf38522013-10-26 18:28:27 +0530150 if (0 != status)
151 {
Kiet Lambcf38522013-10-26 18:28:27 +0530152 return status;
153 }
154
155 if ((pHddCtx->cfg_ini->enableTrafficMonitor) &&
156 (!pHddCtx->traffic_monitor.isInitialized))
157 {
158 atomic_set(&pHddCtx->traffic_monitor.isActiveMode, 1);
159 vos_timer_init(&pHddCtx->traffic_monitor.trafficTimer,
160 VOS_TIMER_TYPE_SW,
161 hdd_softap_traffic_monitor_timeout_handler,
162 pHddCtx);
163 vos_lock_init(&pHddCtx->traffic_monitor.trafficLock);
164 pHddCtx->traffic_monitor.isInitialized = 1;
165 pHddCtx->traffic_monitor.lastFrameTs = 0;
166 /* Start traffic monitor timer here
167 * If no AP assoc, immediatly go into suspend */
c_hpothu6d1d2a32014-03-18 20:17:03 +0530168 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Kiet Lambcf38522013-10-26 18:28:27 +0530169 "%s Start Traffic Monitor Timer", __func__);
170 vos_timer_start(&pHddCtx->traffic_monitor.trafficTimer,
171 pHddCtx->cfg_ini->trafficIdleTimeout);
172 }
173 else
174 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530175 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Kiet Lambcf38522013-10-26 18:28:27 +0530176 "%s Traffic Monitor is not Enable in ini file", __func__);
177 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +0530178
179 EXIT();
Kiet Lambcf38522013-10-26 18:28:27 +0530180 return status;
181}
182
183VOS_STATUS hdd_stop_trafficMonitor( hdd_adapter_t *pAdapter )
184{
185 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
186 VOS_STATUS status = VOS_STATUS_SUCCESS;
187
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +0530188 ENTER();
Kiet Lambcf38522013-10-26 18:28:27 +0530189 status = wlan_hdd_validate_context(pHddCtx);
Kiet Lamae69d7a2013-11-08 14:38:04 +0530190 if (-ENODEV == status)
Kiet Lambcf38522013-10-26 18:28:27 +0530191 {
Kiet Lambcf38522013-10-26 18:28:27 +0530192 return status;
193 }
194
195 if (pHddCtx->traffic_monitor.isInitialized)
196 {
197 if (VOS_TIMER_STATE_STOPPED !=
198 vos_timer_getCurrentState(&pHddCtx->traffic_monitor.trafficTimer))
199 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530200 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Kiet Lambcf38522013-10-26 18:28:27 +0530201 "%s Stop Traffic Monitor Timer", __func__);
202 vos_timer_stop(&pHddCtx->traffic_monitor.trafficTimer);
203 }
c_hpothu6d1d2a32014-03-18 20:17:03 +0530204 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Kiet Lambcf38522013-10-26 18:28:27 +0530205 "%s Destroy Traffic Monitor Timer", __func__);
206 vos_timer_destroy(&pHddCtx->traffic_monitor.trafficTimer);
207 vos_lock_destroy(&pHddCtx->traffic_monitor.trafficLock);
208 pHddCtx->traffic_monitor.isInitialized = 0;
209 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +0530210 EXIT();
Kiet Lamae69d7a2013-11-08 14:38:04 +0530211 return VOS_STATUS_SUCCESS;
Kiet Lambcf38522013-10-26 18:28:27 +0530212}
213
Jeff Johnson295189b2012-06-20 16:38:30 -0700214/**============================================================================
215 @brief hdd_softap_flush_tx_queues() - Utility function to flush the TX queues
216
217 @param pAdapter : [in] pointer to adapter context
218 @return : VOS_STATUS_E_FAILURE if any errors encountered
219 : VOS_STATUS_SUCCESS otherwise
220 ===========================================================================*/
221static VOS_STATUS hdd_softap_flush_tx_queues( hdd_adapter_t *pAdapter )
222{
223 VOS_STATUS status = VOS_STATUS_SUCCESS;
224 v_SINT_t i = -1;
225 v_U8_t STAId = 0;
226 hdd_list_node_t *anchor = NULL;
227 skb_list_node_t *pktNode = NULL;
228 struct sk_buff *skb = NULL;
229
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530230 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
231 ptSapContext pSapCtx = NULL;
232 pSapCtx = VOS_GET_SAP_CB(pVosContext);
233 if(pSapCtx == NULL){
234 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
235 FL("psapCtx is NULL"));
236 return VOS_STATUS_E_FAULT;
237 }
238 spin_lock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -0700239 for (STAId = 0; STAId < WLAN_MAX_STA_COUNT; STAId++)
240 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530241 if (FALSE == pSapCtx->aStaInfo[STAId].isUsed)
Jeff Johnson295189b2012-06-20 16:38:30 -0700242 {
243 continue;
244 }
245
246 for (i = 0; i < NUM_TX_QUEUES; i ++)
247 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530248 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700249 while (true)
250 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530251 status = hdd_list_remove_front ( &pSapCtx->aStaInfo[STAId].wmm_tx_queue[i], &anchor);
Jeff Johnson295189b2012-06-20 16:38:30 -0700252
253 if (VOS_STATUS_E_EMPTY != status)
254 {
255 //If success then we got a valid packet from some AC
256 pktNode = list_entry(anchor, skb_list_node_t, anchor);
257 skb = pktNode->skb;
258 ++pAdapter->stats.tx_dropped;
259 ++pAdapter->hdd_stats.hddTxRxStats.txFlushed;
260 ++pAdapter->hdd_stats.hddTxRxStats.txFlushedAC[i];
261 kfree_skb(skb);
262 continue;
263 }
264
265 //current list is empty
266 break;
267 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530268 pSapCtx->aStaInfo[STAId].txSuspended[i] = VOS_FALSE;
269 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700270 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530271 pSapCtx->aStaInfo[STAId].vosLowResource = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -0700272 }
273
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530274 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -0700275
276 return status;
277}
278
279/**============================================================================
280 @brief hdd_softap_hard_start_xmit() - Function registered with the Linux OS for
281 transmitting packets. There are 2 versions of this function. One that uses
282 locked queue and other that uses lockless queues. Both have been retained to
283 do some performance testing
284
285 @param skb : [in] pointer to OS packet (sk_buff)
286 @param dev : [in] pointer to Libra network device
287
288 @return : NET_XMIT_DROP if packets are dropped
289 : NET_XMIT_SUCCESS if packet is enqueued succesfully
290 ===========================================================================*/
291int hdd_softap_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
292{
293 VOS_STATUS status;
294 WLANTL_ACEnumType ac = WLANTL_AC_BE;
295 sme_QosWmmUpType up = SME_QOS_WMM_UP_BE;
296 skb_list_node_t *pktNode = NULL;
297 v_SIZE_t pktListSize = 0;
298 v_BOOL_t txSuspended = VOS_FALSE;
299 hdd_adapter_t *pAdapter = (hdd_adapter_t *)netdev_priv(dev);
300 hdd_ap_ctx_t *pHddApCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
Dino Mycled9b7cc12014-09-04 18:43:07 +0530301 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -0700302 vos_list_node_t *anchor = NULL;
303 v_U8_t STAId = WLAN_MAX_STA_COUNT;
304 //Extract the destination address from ethernet frame
305 v_MACADDR_t *pDestMacAddress = (v_MACADDR_t*)skb->data;
306 int os_status = NETDEV_TX_OK;
Mihir Shetef8f74532014-12-04 11:53:34 +0530307 struct sk_buff *skb1;
Jeff Johnson295189b2012-06-20 16:38:30 -0700308
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530309 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
310 ptSapContext pSapCtx = NULL;
311 pSapCtx = VOS_GET_SAP_CB(pVosContext);
312 if(pSapCtx == NULL){
313 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
314 FL("psapCtx is NULL"));
315 ++pAdapter->stats.tx_dropped;
316 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
317 kfree_skb(skb);
318 return os_status;
319 }
320
Jeff Johnson295189b2012-06-20 16:38:30 -0700321 pDestMacAddress = (v_MACADDR_t*)skb->data;
322
323 ++pAdapter->hdd_stats.hddTxRxStats.txXmitCalled;
324
c_hpothu6d1d2a32014-03-18 20:17:03 +0530325 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700326 "%s: enter", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700327
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530328 spin_lock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -0700329 if (vos_is_macaddr_broadcast( pDestMacAddress ) || vos_is_macaddr_group(pDestMacAddress))
330 {
331 //The BC/MC station ID is assigned during BSS starting phase. SAP will return the station
332 //ID used for BC/MC traffic. The station id is registered to TL as well.
333 STAId = pHddApCtx->uBCStaId;
334
335 /* Setting priority for broadcast packets which doesn't go to select_queue function */
336 skb->priority = SME_QOS_WMM_UP_BE;
337 skb->queue_mapping = HDD_LINUX_AC_BE;
338
c_hpothu6d1d2a32014-03-18 20:17:03 +0530339 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO_LOW,
Arif Hussain6d2a3322013-11-17 19:50:10 -0800340 "%s: BC/MC packet", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700341 }
342 else
343 {
344 STAId = *(v_U8_t *)(((v_U8_t *)(skb->data)) - 1);
345 if (STAId == HDD_WLAN_INVALID_STA_ID)
346 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530347 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700348 "%s: Failed to find right station", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700349 ++pAdapter->stats.tx_dropped;
350 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
351 kfree_skb(skb);
352 goto xmit_done;
353 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530354 else if (FALSE == pSapCtx->aStaInfo[STAId].isUsed )
Jeff Johnson295189b2012-06-20 16:38:30 -0700355 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530356 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
357 "%s: STA %d is unregistered", __func__, STAId);
Jeff Johnson295189b2012-06-20 16:38:30 -0700358 ++pAdapter->stats.tx_dropped;
359 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
360 kfree_skb(skb);
361 goto xmit_done;
362 }
363
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530364 if ( (WLANTL_STA_CONNECTED != pSapCtx->aStaInfo[STAId].tlSTAState) &&
365 (WLANTL_STA_AUTHENTICATED != pSapCtx->aStaInfo[STAId].tlSTAState) )
Jeff Johnson295189b2012-06-20 16:38:30 -0700366 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530367 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700368 "%s: Station not connected yet", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700369 ++pAdapter->stats.tx_dropped;
370 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
371 kfree_skb(skb);
372 goto xmit_done;
373 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530374 else if(WLANTL_STA_CONNECTED == pSapCtx->aStaInfo[STAId].tlSTAState)
Jeff Johnson295189b2012-06-20 16:38:30 -0700375 {
376 if(ntohs(skb->protocol) != HDD_ETHERTYPE_802_1_X)
377 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530378 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700379 "%s: NON-EAPOL packet in non-Authenticated state", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700380 ++pAdapter->stats.tx_dropped;
381 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
382 kfree_skb(skb);
383 goto xmit_done;
384 }
385 }
386 }
387
388 //Get TL AC corresponding to Qdisc queue index/AC.
389 ac = hdd_QdiscAcToTlAC[skb->queue_mapping];
390 //user priority from IP header, which is already extracted and set from
391 //select_queue call back function
392 up = skb->priority;
393 ++pAdapter->hdd_stats.hddTxRxStats.txXmitClassifiedAC[ac];
394
c_hpothu6d1d2a32014-03-18 20:17:03 +0530395 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700396 "%s: Classified as ac %d up %d", __func__, ac, up);
Jeff Johnson295189b2012-06-20 16:38:30 -0700397
Sachin Ahuja8c65f382014-12-12 15:34:21 +0530398 if (( NULL != pHddCtx ) &&
399 (pHddCtx->cfg_ini->gEnableDebugLog & VOS_PKT_PROTO_TYPE_DHCP))
Dino Mycled9b7cc12014-09-04 18:43:07 +0530400 {
401 hdd_dump_dhcp_pkt(skb, TX_PATH);
402 }
403
Jeff Johnson295189b2012-06-20 16:38:30 -0700404 // If the memory differentiation mode is enabled, the memory limit of each queue will be
405 // checked. Over-limit packets will be dropped.
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530406 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
407 hdd_list_size(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &pktListSize);
Jeff Johnson295189b2012-06-20 16:38:30 -0700408 if(pktListSize >= pAdapter->aTxQueueLimit[ac])
409 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530410 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
Arif Hussain6d2a3322013-11-17 19:50:10 -0800411 "%s: station %d ac %d queue over limit %d", __func__, STAId, ac, pktListSize);
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530412 pSapCtx->aStaInfo[STAId].txSuspended[ac] = VOS_TRUE;
Jeff Johnson295189b2012-06-20 16:38:30 -0700413 netif_stop_subqueue(dev, skb_get_queue_mapping(skb));
414 txSuspended = VOS_TRUE;
Mihir Shete5d148f12014-12-16 17:54:49 +0530415 MTRACE(vos_trace(VOS_MODULE_ID_HDD, TRACE_CODE_HDD_STOP_NETDEV,
416 pAdapter->sessionId, ac));
Jeff Johnson295189b2012-06-20 16:38:30 -0700417 }
Madan Mohan Koyyalamudifd3b7a92013-10-10 15:02:58 +0530418
419 /* If 3/4th of the max queue size is used then enable the flag.
420 * This flag indicates to place the DHCP packets in VOICE AC queue.*/
421 if (WLANTL_AC_BE == ac)
422 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530423 if (pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].count >= HDD_TX_QUEUE_LOW_WATER_MARK)
Madan Mohan Koyyalamudifd3b7a92013-10-10 15:02:58 +0530424 {
425 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
426 "%s: TX queue for Best Effort AC is 3/4th full", __func__);
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530427 pSapCtx->aStaInfo[STAId].vosLowResource = VOS_TRUE;
Madan Mohan Koyyalamudifd3b7a92013-10-10 15:02:58 +0530428 }
429 else
430 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530431 pSapCtx->aStaInfo[STAId].vosLowResource = VOS_FALSE;
Madan Mohan Koyyalamudifd3b7a92013-10-10 15:02:58 +0530432 }
433 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530434 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700435
436 if (VOS_TRUE == txSuspended)
437 {
438 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
439 "%s: TX queue full for AC=%d Disable OS TX queue",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700440 __func__, ac );
Jeff Johnson295189b2012-06-20 16:38:30 -0700441 os_status = NETDEV_TX_BUSY;
442 goto xmit_done;
443 }
444
445 //Use the skb->cb field to hold the list node information
446 pktNode = (skb_list_node_t *)&skb->cb;
447
448 //Stick the OS packet inside this node.
449 pktNode->skb = skb;
450
451 //Stick the User Priority inside this node
452 pktNode->userPriority = up;
453
454 INIT_LIST_HEAD(&pktNode->anchor);
455
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530456 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
457 status = hdd_list_insert_back_size(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &pktNode->anchor, &pktListSize );
458 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700459 if ( !VOS_IS_STATUS_SUCCESS( status ) )
460 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530461 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
462 "%s:Insert Tx queue failed. Pkt dropped", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700463 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
464 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDroppedAC[ac];
465 ++pAdapter->stats.tx_dropped;
466 kfree_skb(skb);
467 goto xmit_done;
468 }
469
470 ++pAdapter->hdd_stats.hddTxRxStats.txXmitQueued;
471 ++pAdapter->hdd_stats.hddTxRxStats.txXmitQueuedAC[ac];
Rashmi Ramannacbffcb12014-01-07 13:22:13 +0530472 ++pAdapter->hdd_stats.hddTxRxStats.pkt_tx_count;
Jeff Johnson295189b2012-06-20 16:38:30 -0700473
474 if (1 == pktListSize)
475 {
476 //Let TL know we have a packet to send for this AC
477 status = WLANTL_STAPktPending( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext, STAId, ac );
478
479 if ( !VOS_IS_STATUS_SUCCESS( status ) )
480 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530481 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
482 "%s: Failed to signal TL for AC=%d STAId =%d",
483 __func__, ac, STAId );
Jeff Johnson295189b2012-06-20 16:38:30 -0700484
485 //Remove the packet from queue. It must be at the back of the queue, as TX thread cannot preempt us in the middle
486 //as we are in a soft irq context. Also it must be the same packet that we just allocated.
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530487 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
488 status = hdd_list_remove_back( &pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &anchor);
489 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
Mihir Shetef8f74532014-12-04 11:53:34 +0530490 /* Free the skb only if we are able to remove it from the list.
491 * If we are not able to retrieve it from the list it means that
492 * the skb was pulled by TX Thread and is use so we should not free
493 * it here
494 */
495 if (VOS_IS_STATUS_SUCCESS(status))
496 {
497 pktNode = list_entry(anchor, skb_list_node_t, anchor);
498 skb1 = pktNode->skb;
499 kfree_skb(skb1);
500 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700501 ++pAdapter->stats.tx_dropped;
502 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
503 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDroppedAC[ac];
Jeff Johnson295189b2012-06-20 16:38:30 -0700504 goto xmit_done;
505 }
506 }
507 dev->trans_start = jiffies;
508
c_hpothu6d1d2a32014-03-18 20:17:03 +0530509 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO_LOW,
510 "%s: exit", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700511
512xmit_done:
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530513 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -0700514 return os_status;
515}
516
517/**============================================================================
518 @brief hdd_softap_sta_2_sta_xmit This function for Transmitting the frames when the traffic is between two stations.
519
520 @param skb : [in] pointer to packet (sk_buff)
521 @param dev : [in] pointer to Libra network device
522 @param STAId : [in] Station Id of Destination Station
523 @param up : [in] User Priority
524
525 @return : NET_XMIT_DROP if packets are dropped
526 : NET_XMIT_SUCCESS if packet is enqueued succesfully
527 ===========================================================================*/
528VOS_STATUS hdd_softap_sta_2_sta_xmit(struct sk_buff *skb,
529 struct net_device *dev,
530 v_U8_t STAId,
531 v_U8_t up)
532{
533 VOS_STATUS status = VOS_STATUS_SUCCESS;
534 skb_list_node_t *pktNode = NULL;
535 v_SIZE_t pktListSize = 0;
536 hdd_adapter_t *pAdapter = (hdd_adapter_t *)netdev_priv(dev);
537 v_U8_t ac;
538 vos_list_node_t *anchor = NULL;
Mihir Shetef8f74532014-12-04 11:53:34 +0530539 struct sk_buff *skb1;
Jeff Johnson295189b2012-06-20 16:38:30 -0700540
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530541 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
542 ptSapContext pSapCtx = NULL;
543 pSapCtx = VOS_GET_SAP_CB(pVosContext);
544 if(pSapCtx == NULL){
545 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
546 FL("psapCtx is NULL"));
547 kfree_skb(skb);
548 status = VOS_STATUS_E_FAILURE;
549 return status;
550 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700551 ++pAdapter->hdd_stats.hddTxRxStats.txXmitCalled;
552
c_hpothu6d1d2a32014-03-18 20:17:03 +0530553 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700554 "%s: enter", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700555
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530556 spin_lock_bh( &pSapCtx->staInfo_lock );
557 if ( FALSE == pSapCtx->aStaInfo[STAId].isUsed )
Jeff Johnson295189b2012-06-20 16:38:30 -0700558 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530559 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +0530560 "%s: STA %d is unregistered", __func__, STAId );
Jeff Johnson295189b2012-06-20 16:38:30 -0700561 kfree_skb(skb);
562 status = VOS_STATUS_E_FAILURE;
563 goto xmit_end;
564 }
565
566 /* If the QoS is not enabled on the receiving station, then send it with BE priority */
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530567 if ( !pSapCtx->aStaInfo[STAId].isQosEnabled )
Jeff Johnson295189b2012-06-20 16:38:30 -0700568 up = SME_QOS_WMM_UP_BE;
569
570 ac = hddWmmUpToAcMap[up];
571 ++pAdapter->hdd_stats.hddTxRxStats.txXmitClassifiedAC[ac];
c_hpothu6d1d2a32014-03-18 20:17:03 +0530572 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700573 "%s: Classified as ac %d up %d", __func__, ac, up);
Jeff Johnson295189b2012-06-20 16:38:30 -0700574
575 skb->queue_mapping = hddLinuxUpToAcMap[up];
576
577 //Use the skb->cb field to hold the list node information
578 pktNode = (skb_list_node_t *)&skb->cb;
579
580 //Stick the OS packet inside this node.
581 pktNode->skb = skb;
582
583 //Stick the User Priority inside this node
584 pktNode->userPriority = up;
585
586 INIT_LIST_HEAD(&pktNode->anchor);
587
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530588 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
589 hdd_list_size(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &pktListSize);
590 if(pSapCtx->aStaInfo[STAId].txSuspended[ac] ||
Jeff Johnson295189b2012-06-20 16:38:30 -0700591 pktListSize >= pAdapter->aTxQueueLimit[ac])
592 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530593 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
Arif Hussain6d2a3322013-11-17 19:50:10 -0800594 "%s: station %d ac %d queue over limit %d", __func__, STAId, ac, pktListSize);
Jeff Johnson295189b2012-06-20 16:38:30 -0700595 /* TODO:Rx Flowchart should be trigerred here to SUPEND SSC on RX side.
596 * SUSPEND should be done based on Threshold. RESUME would be
597 * triggered in fetch cbk after recovery.
598 */
599 kfree_skb(skb);
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530600 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700601 status = VOS_STATUS_E_FAILURE;
602 goto xmit_end;
603 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530604 status = hdd_list_insert_back_size(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &pktNode->anchor, &pktListSize );
605 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700606
607 if ( !VOS_IS_STATUS_SUCCESS( status ) )
608 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530609 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
610 "%s:Insert Tx queue failed. Pkt dropped", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700611 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
612 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDroppedAC[ac];
613 ++pAdapter->stats.tx_dropped;
614 kfree_skb(skb);
615 status = VOS_STATUS_E_FAILURE;
616 goto xmit_end;
617 }
618
619 ++pAdapter->hdd_stats.hddTxRxStats.txXmitQueued;
620 ++pAdapter->hdd_stats.hddTxRxStats.txXmitQueuedAC[ac];
621
622 if (1 == pktListSize)
623 {
624 //Let TL know we have a packet to send for this AC
c_hpothu6d1d2a32014-03-18 20:17:03 +0530625 //VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,"%s:Indicating Packet to TL", __func__);
626 status = WLANTL_STAPktPending( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext, STAId, ac );
Jeff Johnson295189b2012-06-20 16:38:30 -0700627
628 if ( !VOS_IS_STATUS_SUCCESS( status ) )
629 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530630 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
631 "%s: Failed to signal TL for AC=%d STAId =%d",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700632 __func__, ac, STAId );
Jeff Johnson295189b2012-06-20 16:38:30 -0700633
634 //Remove the packet from queue. It must be at the back of the queue, as TX thread cannot preempt us in the middle
635 //as we are in a soft irq context. Also it must be the same packet that we just allocated.
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530636 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
637 status = hdd_list_remove_back( &pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &anchor);
638 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
Mihir Shetef8f74532014-12-04 11:53:34 +0530639 /* Free the skb only if we are able to remove it from the list.
640 * If we are not able to retrieve it from the list it means that
641 * the skb was pulled by TX Thread and is use so we should not free
642 * it here
643 */
644 if (VOS_IS_STATUS_SUCCESS(status))
645 {
646 pktNode = list_entry(anchor, skb_list_node_t, anchor);
647 skb1 = pktNode->skb;
648 kfree_skb(skb1);
649 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700650 ++pAdapter->stats.tx_dropped;
651 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDropped;
652 ++pAdapter->hdd_stats.hddTxRxStats.txXmitDroppedAC[ac];
Jeff Johnson295189b2012-06-20 16:38:30 -0700653 status = VOS_STATUS_E_FAILURE;
654 goto xmit_end;
655 }
656 }
657
c_hpothu6d1d2a32014-03-18 20:17:03 +0530658 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO_LOW, "%s: exit", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700659
660xmit_end:
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530661 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -0700662 return status;
663}
664
665/**============================================================================
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +0530666 @brief __hdd_softap_tx_timeout() - Function called by OS if there is any
Jeff Johnson295189b2012-06-20 16:38:30 -0700667 timeout during transmission. Since HDD simply enqueues packet
668 and returns control to OS right away, this would never be invoked
669
670 @param dev : [in] pointer to Libra network device
671 @return : None
672 ===========================================================================*/
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +0530673void __hdd_softap_tx_timeout(struct net_device *dev)
Jeff Johnson295189b2012-06-20 16:38:30 -0700674{
Mihir Shetef3473692014-06-27 15:13:20 +0530675 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
676 struct netdev_queue *txq;
677 int i = 0;
Mukul Sharma4b322632015-02-28 20:21:43 +0530678 int status = 0;
Anand N Sunkad26d71b92014-12-24 18:08:22 +0530679 hdd_context_t *pHddCtx;
Mihir Shetef3473692014-06-27 15:13:20 +0530680
c_hpothu6d1d2a32014-03-18 20:17:03 +0530681 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700682 "%s: Transmission timeout occurred", __func__);
Mihir Shetef3473692014-06-27 15:13:20 +0530683
684 if ( NULL == pAdapter )
685 {
686 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
687 FL("pAdapter is NULL"));
688 VOS_ASSERT(0);
689 return;
690 }
691
Anand N Sunkad26d71b92014-12-24 18:08:22 +0530692 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Mukul Sharma4b322632015-02-28 20:21:43 +0530693 status = wlan_hdd_validate_context(pHddCtx);
694 if (status != 0)
695 {
Anand N Sunkad26d71b92014-12-24 18:08:22 +0530696 return;
697 }
698
Mihir Shetef3473692014-06-27 15:13:20 +0530699 ++pAdapter->hdd_stats.hddTxRxStats.txTimeoutCount;
700
701 for (i = 0; i < 8; i++)
702 {
703 txq = netdev_get_tx_queue(dev, i);
704 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
705 "Queue%d status: %d", i, netif_tx_queue_stopped(txq));
706 }
707
708 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
709 "carrier state: %d", netif_carrier_ok(dev));
710
711 ++pAdapter->hdd_stats.hddTxRxStats.continuousTxTimeoutCount;
712
Mihir Shete327c2ab2014-11-13 15:17:02 +0530713 if (pAdapter->hdd_stats.hddTxRxStats.continuousTxTimeoutCount ==
714 HDD_SAP_TX_STALL_RECOVERY_THRESHOLD)
715 {
716 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
717 "%s: Request firmware for recovery",__func__);
718 WLANTL_TLDebugMessage(WLANTL_DEBUG_FW_CLEANUP);
719 }
Mihir Shetef3473692014-06-27 15:13:20 +0530720 if (pAdapter->hdd_stats.hddTxRxStats.continuousTxTimeoutCount >
721 HDD_SAP_TX_STALL_SSR_THRESHOLD)
722 {
723 // Driver could not recover, issue SSR
724 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
725 "%s: Cannot recover from Data stall Issue SSR",
726 __func__);
Mihir Shetefd62d9d2014-08-06 15:08:21 +0530727 WLANTL_FatalError();
Mihir Shetef3473692014-06-27 15:13:20 +0530728 return;
729 }
730
731 /* If Tx stalled for a long time then *hdd_tx_timeout* is called
732 * every 5sec. The TL debug spits out a lot of information on the
733 * serial console, if it is called every time *hdd_tx_timeout* is
734 * called then we may get a watchdog bite on the Application
735 * processor, so ratelimit the TL debug logs.
736 */
737 if (__ratelimit(&hdd_softap_tx_timeout_rs))
738 {
739 hdd_wmm_tx_snapshot(pAdapter);
Mihir Shete327c2ab2014-11-13 15:17:02 +0530740 WLANTL_TLDebugMessage(WLANTL_DEBUG_TX_SNAPSHOT);
Mihir Shetef3473692014-06-27 15:13:20 +0530741 }
742
Jeff Johnson295189b2012-06-20 16:38:30 -0700743}
744
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +0530745void hdd_softap_tx_timeout(struct net_device *dev)
746{
747 vos_ssr_protect(__func__);
748 __hdd_softap_tx_timeout(dev);
749 vos_ssr_unprotect(__func__);
750 return;
751}
Jeff Johnson295189b2012-06-20 16:38:30 -0700752
753/**============================================================================
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +0530754 @brief __hdd_softap_stats() - Function registered with the Linux OS for
Jeff Johnson295189b2012-06-20 16:38:30 -0700755 device TX/RX statistic
756
757 @param dev : [in] pointer to Libra network device
758
759 @return : pointer to net_device_stats structure
760 ===========================================================================*/
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +0530761struct net_device_stats* __hdd_softap_stats(struct net_device *dev)
Jeff Johnson295189b2012-06-20 16:38:30 -0700762{
763 hdd_adapter_t* priv = netdev_priv(dev);
764 return &priv->stats;
765}
766
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +0530767struct net_device_stats* hdd_softap_stats(struct net_device *dev)
768{
769 struct net_device_stats *priv_stats;
770 vos_ssr_protect(__func__);
771 priv_stats = __hdd_softap_stats(dev);
772 vos_ssr_unprotect(__func__);
773
774 return priv_stats;
775}
Jeff Johnson295189b2012-06-20 16:38:30 -0700776
777/**============================================================================
778 @brief hdd_softap_init_tx_rx() - Init function to initialize Tx/RX
779 modules in HDD
780
781 @param pAdapter : [in] pointer to adapter context
782 @return : VOS_STATUS_E_FAILURE if any errors encountered
783 : VOS_STATUS_SUCCESS otherwise
784 ===========================================================================*/
785VOS_STATUS hdd_softap_init_tx_rx( hdd_adapter_t *pAdapter )
786{
787 VOS_STATUS status = VOS_STATUS_SUCCESS;
788 v_SINT_t i = -1;
789 v_SIZE_t size = 0;
790
791 v_U8_t STAId = 0;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530792 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
793 ptSapContext pSapCtx = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -0700794
795 v_U8_t pACWeights[] = {
796 HDD_SOFTAP_BK_WEIGHT_DEFAULT,
797 HDD_SOFTAP_BE_WEIGHT_DEFAULT,
798 HDD_SOFTAP_VI_WEIGHT_DEFAULT,
799 HDD_SOFTAP_VO_WEIGHT_DEFAULT
800 };
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530801 pSapCtx = VOS_GET_SAP_CB(pVosContext);
802 if(pSapCtx == NULL){
803 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
804 FL("psapCtx is NULL"));
805 return VOS_STATUS_E_FAULT;
806 }
807
Leo Chang64d68bc2013-06-04 15:40:52 -0700808
Jeff Johnson295189b2012-06-20 16:38:30 -0700809 pAdapter->isVosOutOfResource = VOS_FALSE;
Madan Mohan Koyyalamudifd3b7a92013-10-10 15:02:58 +0530810 pAdapter->isVosLowResource = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -0700811
812 vos_mem_zero(&pAdapter->stats, sizeof(struct net_device_stats));
813
814 while (++i != NUM_TX_QUEUES)
815 hdd_list_init( &pAdapter->wmm_tx_queue[i], HDD_TX_QUEUE_MAX_LEN);
816
817 /* Initial HDD buffer control / flow control fields*/
818 vos_pkt_get_available_buffer_pool (VOS_PKT_TYPE_TX_802_3_DATA, &size);
819
820 pAdapter->aTxQueueLimit[WLANTL_AC_BK] = HDD_SOFTAP_TX_BK_QUEUE_MAX_LEN;
821 pAdapter->aTxQueueLimit[WLANTL_AC_BE] = HDD_SOFTAP_TX_BE_QUEUE_MAX_LEN;
822 pAdapter->aTxQueueLimit[WLANTL_AC_VI] = HDD_SOFTAP_TX_VI_QUEUE_MAX_LEN;
823 pAdapter->aTxQueueLimit[WLANTL_AC_VO] = HDD_SOFTAP_TX_VO_QUEUE_MAX_LEN;
824
Jeff Johnson295189b2012-06-20 16:38:30 -0700825 for (STAId = 0; STAId < WLAN_MAX_STA_COUNT; STAId++)
826 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530827 vos_mem_zero(&pSapCtx->aStaInfo[STAId], sizeof(hdd_station_info_t));
Jeff Johnson295189b2012-06-20 16:38:30 -0700828 for (i = 0; i < NUM_TX_QUEUES; i ++)
829 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530830 hdd_list_init(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i], HDD_TX_QUEUE_MAX_LEN);
Jeff Johnson295189b2012-06-20 16:38:30 -0700831 }
832 }
833
Yue Ma3ede6052013-08-29 00:33:26 -0700834 /* Update the AC weights suitable for SoftAP mode of operation */
835 WLANTL_SetACWeights((WLAN_HDD_GET_CTX(pAdapter))->pvosContext, pACWeights);
836
Kiet Lambcf38522013-10-26 18:28:27 +0530837 if (VOS_STATUS_SUCCESS != hdd_start_trafficMonitor(pAdapter))
Leo Chang64d68bc2013-06-04 15:40:52 -0700838 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530839 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Kiet Lambcf38522013-10-26 18:28:27 +0530840 "%s: failed to start Traffic Monito timer ", __func__ );
841 return VOS_STATUS_E_INVAL;
Leo Chang64d68bc2013-06-04 15:40:52 -0700842 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700843 return status;
844}
845
846/**============================================================================
847 @brief hdd_softap_deinit_tx_rx() - Deinit function to clean up Tx/RX
848 modules in HDD
849
850 @param pAdapter : [in] pointer to adapter context
851 @return : VOS_STATUS_E_FAILURE if any errors encountered
852 : VOS_STATUS_SUCCESS otherwise
853 ===========================================================================*/
854VOS_STATUS hdd_softap_deinit_tx_rx( hdd_adapter_t *pAdapter )
855{
856 VOS_STATUS status = VOS_STATUS_SUCCESS;
Leo Chang64d68bc2013-06-04 15:40:52 -0700857
Kiet Lambcf38522013-10-26 18:28:27 +0530858 if (VOS_STATUS_SUCCESS != hdd_stop_trafficMonitor(pAdapter))
Leo Chang64d68bc2013-06-04 15:40:52 -0700859 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530860 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Kiet Lambcf38522013-10-26 18:28:27 +0530861 "%s: Fail to Stop Traffic Monito timer", __func__ );
862 return VOS_STATUS_E_INVAL;
Leo Chang64d68bc2013-06-04 15:40:52 -0700863 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700864
865 status = hdd_softap_flush_tx_queues(pAdapter);
866
867 return status;
868}
869
870/**============================================================================
871 @brief hdd_softap_flush_tx_queues_sta() - Utility function to flush the TX queues of a station
872
873 @param pAdapter : [in] pointer to adapter context
874 @param STAId : [in] Station ID to deinit
875 @return : VOS_STATUS_E_FAILURE if any errors encountered
876 : VOS_STATUS_SUCCESS otherwise
877 ===========================================================================*/
878static VOS_STATUS hdd_softap_flush_tx_queues_sta( hdd_adapter_t *pAdapter, v_U8_t STAId )
879{
Jeff Johnson295189b2012-06-20 16:38:30 -0700880 v_U8_t i = -1;
881
882 hdd_list_node_t *anchor = NULL;
883
884 skb_list_node_t *pktNode = NULL;
885 struct sk_buff *skb = NULL;
886
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530887 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
888 ptSapContext pSapCtx = NULL;
889 pSapCtx = VOS_GET_SAP_CB(pVosContext);
890 if(pSapCtx == NULL){
891 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
892 FL("psapCtx is NULL"));
893 return VOS_STATUS_E_FAULT;
894 }
895 if (FALSE == pSapCtx->aStaInfo[STAId].isUsed)
Jeff Johnson295189b2012-06-20 16:38:30 -0700896 {
Hanumantha Reddy Pothulac7100902013-12-28 18:17:36 +0530897 return VOS_STATUS_SUCCESS;
Jeff Johnson295189b2012-06-20 16:38:30 -0700898 }
899
900 for (i = 0; i < NUM_TX_QUEUES; i ++)
901 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530902 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700903 while (true)
904 {
Hanumantha Reddy Pothulac7100902013-12-28 18:17:36 +0530905 if (VOS_STATUS_E_EMPTY !=
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530906 hdd_list_remove_front(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i],
Hanumantha Reddy Pothulac7100902013-12-28 18:17:36 +0530907 &anchor))
Jeff Johnson295189b2012-06-20 16:38:30 -0700908 {
909 //If success then we got a valid packet from some AC
910 pktNode = list_entry(anchor, skb_list_node_t, anchor);
911 skb = pktNode->skb;
912 ++pAdapter->stats.tx_dropped;
913 ++pAdapter->hdd_stats.hddTxRxStats.txFlushed;
914 ++pAdapter->hdd_stats.hddTxRxStats.txFlushedAC[i];
915 kfree_skb(skb);
916 continue;
917 }
918
919 //current list is empty
920 break;
921 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530922 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i].lock);
Jeff Johnson295189b2012-06-20 16:38:30 -0700923 }
924
Hanumantha Reddy Pothulac7100902013-12-28 18:17:36 +0530925 return VOS_STATUS_SUCCESS;
Jeff Johnson295189b2012-06-20 16:38:30 -0700926}
927
928/**============================================================================
929 @brief hdd_softap_init_tx_rx_sta() - Init function to initialize a station in Tx/RX
930 modules in HDD
931
932 @param pAdapter : [in] pointer to adapter context
933 @param STAId : [in] Station ID to deinit
934 @param pmacAddrSTA : [in] pointer to the MAC address of the station
935 @return : VOS_STATUS_E_FAILURE if any errors encountered
936 : VOS_STATUS_SUCCESS otherwise
937 ===========================================================================*/
938VOS_STATUS hdd_softap_init_tx_rx_sta( hdd_adapter_t *pAdapter, v_U8_t STAId, v_MACADDR_t *pmacAddrSTA)
939{
940 v_U8_t i = 0;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530941 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
942 ptSapContext pSapCtx = NULL;
943 pSapCtx = VOS_GET_SAP_CB(pVosContext);
944 if(pSapCtx == NULL){
945 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
946 FL("psapCtx is NULL"));
947 return VOS_STATUS_E_FAULT;
948 }
949
950 spin_lock_bh( &pSapCtx->staInfo_lock );
951 if (pSapCtx->aStaInfo[STAId].isUsed)
Jeff Johnson295189b2012-06-20 16:38:30 -0700952 {
c_hpothu6d1d2a32014-03-18 20:17:03 +0530953 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
954 "%s: Reinit station %d", __func__, STAId );
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530955 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -0700956 return VOS_STATUS_E_FAILURE;
957 }
958
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530959 vos_mem_zero(&pSapCtx->aStaInfo[STAId], sizeof(hdd_station_info_t));
Jeff Johnson295189b2012-06-20 16:38:30 -0700960 for (i = 0; i < NUM_TX_QUEUES; i ++)
961 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530962 hdd_list_init(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i], HDD_TX_QUEUE_MAX_LEN);
Jeff Johnson295189b2012-06-20 16:38:30 -0700963 }
964
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530965 pSapCtx->aStaInfo[STAId].isUsed = TRUE;
966 pSapCtx->aStaInfo[STAId].isDeauthInProgress = FALSE;
967 vos_copy_macaddr( &pSapCtx->aStaInfo[STAId].macAddrSTA, pmacAddrSTA);
Jeff Johnson295189b2012-06-20 16:38:30 -0700968
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530969 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -0700970 return VOS_STATUS_SUCCESS;
971}
972
973/**============================================================================
974 @brief hdd_softap_deinit_tx_rx_sta() - Deinit function to clean up a statioin in Tx/RX
975 modules in HDD
976
977 @param pAdapter : [in] pointer to adapter context
978 @param STAId : [in] Station ID to deinit
979 @return : VOS_STATUS_E_FAILURE if any errors encountered
980 : VOS_STATUS_SUCCESS otherwise
981 ===========================================================================*/
982VOS_STATUS hdd_softap_deinit_tx_rx_sta ( hdd_adapter_t *pAdapter, v_U8_t STAId )
983{
984 VOS_STATUS status = VOS_STATUS_SUCCESS;
985 v_U8_t ac;
986 /**Track whether OS TX queue has been disabled.*/
987 v_BOOL_t txSuspended[NUM_TX_QUEUES];
988 v_U8_t tlAC;
989 hdd_hostapd_state_t *pHostapdState;
Rajesh Chauhan52d885b2013-11-01 10:54:25 -0700990 v_U8_t i;
Jeff Johnson295189b2012-06-20 16:38:30 -0700991
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530992 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
993 ptSapContext pSapCtx = NULL;
994 pSapCtx = VOS_GET_SAP_CB(pVosContext);
995 if(pSapCtx == NULL){
996 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
997 FL("psapCtx is NULL"));
998 return VOS_STATUS_E_FAULT;
999 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001000 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
1001
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301002 spin_lock_bh( &pSapCtx->staInfo_lock );
1003 if (FALSE == pSapCtx->aStaInfo[STAId].isUsed)
Jeff Johnson295189b2012-06-20 16:38:30 -07001004 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301005 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001006 "%s: Deinit station not inited %d", __func__, STAId );
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301007 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -07001008 return VOS_STATUS_E_FAILURE;
1009 }
1010
1011 status = hdd_softap_flush_tx_queues_sta(pAdapter, STAId);
1012
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301013 pSapCtx->aStaInfo[STAId].isUsed = FALSE;
1014 pSapCtx->aStaInfo[STAId].isDeauthInProgress = FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07001015 /* if this STA had any of its WMM TX queues suspended, then the
1016 associated queue on the network interface was disabled. check
1017 to see if that is the case, in which case we need to re-enable
1018 the interface queue. but we only do this if the BSS is running
1019 since, if the BSS is stopped, all of the interfaces have been
1020 stopped and should not be re-enabled */
1021
1022 if (BSS_START == pHostapdState->bssState)
1023 {
1024 for (ac = HDD_LINUX_AC_VO; ac <= HDD_LINUX_AC_BK; ac++)
1025 {
1026 tlAC = hdd_QdiscAcToTlAC[ac];
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301027 txSuspended[ac] = pSapCtx->aStaInfo[STAId].txSuspended[tlAC];
Jeff Johnson295189b2012-06-20 16:38:30 -07001028 }
1029 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301030 vos_mem_zero(&pSapCtx->aStaInfo[STAId], sizeof(hdd_station_info_t));
Jeff Johnson295189b2012-06-20 16:38:30 -07001031
Rajesh Chauhan52d885b2013-11-01 10:54:25 -07001032 /* re-init spin lock, since netdev can still open adapter until
1033 * driver gets unloaded
1034 */
1035 for (i = 0; i < NUM_TX_QUEUES; i ++)
1036 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301037 hdd_list_init(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i],
Rajesh Chauhan52d885b2013-11-01 10:54:25 -07001038 HDD_TX_QUEUE_MAX_LEN);
1039 }
1040
Jeff Johnson295189b2012-06-20 16:38:30 -07001041 if (BSS_START == pHostapdState->bssState)
1042 {
1043 for (ac = HDD_LINUX_AC_VO; ac <= HDD_LINUX_AC_BK; ac++)
1044 {
1045 if (txSuspended[ac])
1046 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301047 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001048 "%s: TX queue re-enabled", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001049 netif_wake_subqueue(pAdapter->dev, ac);
1050 }
1051 }
1052 }
1053
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301054 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -07001055 return status;
1056}
1057
1058/**============================================================================
1059 @brief hdd_softap_disconnect_tx_rx() - Disconnect function to clean up Tx/RX
1060 modules in HDD
1061
1062 @param pAdapter : [in] pointer to adapter context
1063 @return : VOS_STATUS_E_FAILURE if any errors encountered
1064 : VOS_STATUS_SUCCESS otherwise
1065 ===========================================================================*/
1066VOS_STATUS hdd_softap_disconnect_tx_rx( hdd_adapter_t *pAdapter )
1067{
1068 return hdd_softap_flush_tx_queues(pAdapter);
1069}
1070
1071/**============================================================================
1072 @brief hdd_softap_tx_complete_cbk() - Callback function invoked by TL
1073 to indicate that a packet has been transmitted across the bus
1074 succesfully. OS packet resources can be released after this cbk.
1075
1076 @param vosContext : [in] pointer to VOS context
1077 @param pVosPacket : [in] pointer to VOS packet (containing skb)
1078 @param vosStatusIn : [in] status of the transmission
1079
1080 @return : VOS_STATUS_E_FAILURE if any errors encountered
1081 : VOS_STATUS_SUCCESS otherwise
1082 ===========================================================================*/
1083VOS_STATUS hdd_softap_tx_complete_cbk( v_VOID_t *vosContext,
1084 vos_pkt_t *pVosPacket,
1085 VOS_STATUS vosStatusIn )
1086{
1087 VOS_STATUS status = VOS_STATUS_SUCCESS;
1088 hdd_adapter_t *pAdapter = NULL;
1089 void* pOsPkt = NULL;
1090
1091 if( ( NULL == vosContext ) || ( NULL == pVosPacket ) )
1092 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301093 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1094 "%s: Null params being passed", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001095 return VOS_STATUS_E_FAILURE;
1096 }
1097
1098 //Return the skb to the OS
1099 status = vos_pkt_get_os_packet( pVosPacket, &pOsPkt, VOS_TRUE );
Rajesh Chauhana0516c62014-01-30 16:11:18 -08001100 if ((!VOS_IS_STATUS_SUCCESS(status)) || (!pOsPkt))
Jeff Johnson295189b2012-06-20 16:38:30 -07001101 {
1102 //This is bad but still try to free the VOSS resources if we can
c_hpothu6d1d2a32014-03-18 20:17:03 +05301103 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1104 "%s: Failure extracting skb from vos pkt", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001105 vos_pkt_return_packet( pVosPacket );
1106 return VOS_STATUS_E_FAILURE;
1107 }
1108
1109 //Get the Adapter context.
1110 pAdapter = (hdd_adapter_t *)netdev_priv(((struct sk_buff *)pOsPkt)->dev);
Hanumantha Reddy Pothula2b9f1562015-02-25 13:38:29 +05301111 if((pAdapter == NULL) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic))
Jeff Johnson295189b2012-06-20 16:38:30 -07001112 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301113 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Hanumantha Reddy Pothula2b9f1562015-02-25 13:38:29 +05301114 "%s: HDD adapter context is invalid", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001115 }
1116 else
1117 {
1118 ++pAdapter->hdd_stats.hddTxRxStats.txCompleted;
1119 }
1120
1121 kfree_skb((struct sk_buff *)pOsPkt);
1122
1123 //Return the VOS packet resources.
1124 status = vos_pkt_return_packet( pVosPacket );
1125 if(!VOS_IS_STATUS_SUCCESS( status ))
1126 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301127 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1128 "%s: Could not return VOS packet to the pool", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001129 }
1130
1131 return status;
1132}
1133
1134
1135/**============================================================================
1136 @brief hdd_softap_tx_fetch_packet_cbk() - Callback function invoked by TL to
1137 fetch a packet for transmission.
1138
1139 @param vosContext : [in] pointer to VOS context
1140 @param staId : [in] Station for which TL is requesting a pkt
1141 @param ac : [in] access category requested by TL
1142 @param pVosPacket : [out] pointer to VOS packet packet pointer
1143 @param pPktMetaInfo : [out] pointer to meta info for the pkt
1144
1145 @return : VOS_STATUS_E_EMPTY if no packets to transmit
1146 : VOS_STATUS_E_FAILURE if any errors encountered
1147 : VOS_STATUS_SUCCESS otherwise
1148 ===========================================================================*/
1149VOS_STATUS hdd_softap_tx_fetch_packet_cbk( v_VOID_t *vosContext,
1150 v_U8_t *pStaId,
1151 WLANTL_ACEnumType ac,
1152 vos_pkt_t **ppVosPacket,
1153 WLANTL_MetaInfoType *pPktMetaInfo )
1154{
1155 VOS_STATUS status = VOS_STATUS_E_FAILURE;
1156 hdd_adapter_t *pAdapter = NULL;
1157 hdd_list_node_t *anchor = NULL;
1158 skb_list_node_t *pktNode = NULL;
1159 struct sk_buff *skb = NULL;
1160 vos_pkt_t *pVosPacket = NULL;
1161 v_MACADDR_t* pDestMacAddress = NULL;
1162 v_TIME_t timestamp;
1163 v_SIZE_t size = 0;
1164 v_U8_t STAId = WLAN_MAX_STA_COUNT;
1165 hdd_context_t *pHddCtx = NULL;
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001166 v_U8_t proto_type = 0;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301167 v_CONTEXT_t pVosContext = NULL;
1168 ptSapContext pSapCtx = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07001169 //Sanity check on inputs
1170 if ( ( NULL == vosContext ) ||
1171 ( NULL == pStaId ) ||
1172 ( NULL == ppVosPacket ) ||
1173 ( NULL == pPktMetaInfo ) )
1174 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301175 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1176 "%s: Null Params being passed", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001177 return VOS_STATUS_E_FAILURE;
1178 }
1179
1180 //Get the HDD context.
1181 pHddCtx = (hdd_context_t *)vos_get_context( VOS_MODULE_ID_HDD, vosContext );
1182 if ( NULL == pHddCtx )
1183 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301184 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1185 "%s: HDD adapter context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001186 return VOS_STATUS_E_FAILURE;
1187 }
1188
Jeff Johnsonb156c922013-12-05 17:19:46 -08001189 STAId = *pStaId;
1190 if (STAId >= WLAN_MAX_STA_COUNT)
1191 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301192 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Jeff Johnsonb156c922013-12-05 17:19:46 -08001193 "%s: Invalid STAId %d passed by TL", __func__, STAId);
1194 return VOS_STATUS_E_FAILURE;
1195 }
1196
1197 pAdapter = pHddCtx->sta_to_adapter[STAId];
1198 if ((NULL == pAdapter) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic))
Jeff Johnson295189b2012-06-20 16:38:30 -07001199 {
1200 VOS_ASSERT(0);
1201 return VOS_STATUS_E_FAILURE;
1202 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301203 pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
1204 pSapCtx = VOS_GET_SAP_CB(pVosContext);
1205 if(pSapCtx == NULL){
1206 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1207 FL("psapCtx is NULL"));
1208 return VOS_STATUS_E_FAULT;
1209 }
1210
1211 if (FALSE == pSapCtx->aStaInfo[STAId].isUsed )
Jeff Johnsonb156c922013-12-05 17:19:46 -08001212 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301213 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Jeff Johnsonb156c922013-12-05 17:19:46 -08001214 "%s: Unregistered STAId %d passed by TL", __func__, STAId);
1215 return VOS_STATUS_E_FAILURE;
1216 }
1217
Leo Chang64d68bc2013-06-04 15:40:52 -07001218 /* Monitor traffic */
1219 if ( pHddCtx->cfg_ini->enableTrafficMonitor )
1220 {
1221 pHddCtx->traffic_monitor.lastFrameTs = vos_timer_get_system_time();
1222 if ( !atomic_read(&pHddCtx->traffic_monitor.isActiveMode) )
1223 {
1224 vos_lock_acquire(&pHddCtx->traffic_monitor.trafficLock);
1225 /* It was IDLE mode,
1226 * this is new state, then switch mode from suspend to resume */
1227 if ( !atomic_read(&pHddCtx->traffic_monitor.isActiveMode) )
1228 {
1229 hdd_set_wlan_suspend_mode(0);
1230 vos_timer_start(&pHddCtx->traffic_monitor.trafficTimer,
1231 pHddCtx->cfg_ini->trafficIdleTimeout);
1232 atomic_set(&pHddCtx->traffic_monitor.isActiveMode, 1);
1233 }
1234 vos_lock_release(&pHddCtx->traffic_monitor.trafficLock);
1235 }
1236 }
1237
Jeff Johnson295189b2012-06-20 16:38:30 -07001238 ++pAdapter->hdd_stats.hddTxRxStats.txFetched;
1239
Jeff Johnson295189b2012-06-20 16:38:30 -07001240 *ppVosPacket = NULL;
1241
1242 //Make sure the AC being asked for is sane
1243 if( ac > WLANTL_MAX_AC || ac < 0)
1244 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301245 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001246 "%s: Invalid AC %d passed by TL", __func__, ac);
Jeff Johnson295189b2012-06-20 16:38:30 -07001247 return VOS_STATUS_E_FAILURE;
1248 }
1249
1250 ++pAdapter->hdd_stats.hddTxRxStats.txFetchedAC[ac];
1251
c_hpothu6d1d2a32014-03-18 20:17:03 +05301252 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001253 "%s: AC %d passed by TL", __func__, ac);
Jeff Johnson295189b2012-06-20 16:38:30 -07001254
1255 //Get the vos packet. I don't want to dequeue and enqueue again if we are out of VOS resources
1256 //This simplifies the locking and unlocking of Tx queue
1257 status = vos_pkt_wrap_data_packet( &pVosPacket,
1258 VOS_PKT_TYPE_TX_802_3_DATA,
1259 NULL, //OS Pkt is not being passed
1260 hdd_softap_tx_low_resource_cbk,
1261 pAdapter );
1262
1263 if (status == VOS_STATUS_E_ALREADY || status == VOS_STATUS_E_RESOURCES)
1264 {
1265 //Remember VOS is in a low resource situation
1266 pAdapter->isVosOutOfResource = VOS_TRUE;
1267 ++pAdapter->hdd_stats.hddTxRxStats.txFetchLowResources;
c_hpothu6d1d2a32014-03-18 20:17:03 +05301268 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_WARN,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001269 "%s: VOSS in Low Resource scenario", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001270 //TL needs to handle this case. VOS_STATUS_E_EMPTY is returned when the queue is empty.
1271 return VOS_STATUS_E_FAILURE;
1272 }
1273
1274 /* Only fetch this station and this AC. Return VOS_STATUS_E_EMPTY if nothing there. Do not get next AC
1275 as the other branch does.
1276 */
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301277 spin_lock_bh( &pSapCtx->staInfo_lock );
1278 spin_lock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
1279 hdd_list_size(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &size);
Jeff Johnson295189b2012-06-20 16:38:30 -07001280
1281 if (0 == size)
1282 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301283 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
1284 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -07001285 vos_pkt_return_packet(pVosPacket);
1286 return VOS_STATUS_E_EMPTY;
1287 }
1288
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301289 status = hdd_list_remove_front( &pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac], &anchor );
1290 spin_unlock_bh(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[ac].lock);
1291 spin_unlock_bh( &pSapCtx->staInfo_lock );
Jeff Johnson295189b2012-06-20 16:38:30 -07001292
c_hpothu6d1d2a32014-03-18 20:17:03 +05301293 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001294 "%s: AC %d has packets pending", __func__, ac);
Jeff Johnson295189b2012-06-20 16:38:30 -07001295
1296 if(VOS_STATUS_SUCCESS == status)
1297 {
1298 //If success then we got a valid packet from some AC
1299 pktNode = list_entry(anchor, skb_list_node_t, anchor);
1300 skb = pktNode->skb;
1301 }
1302 else
1303 {
1304 ++pAdapter->hdd_stats.hddTxRxStats.txFetchDequeueError;
c_hpothu6d1d2a32014-03-18 20:17:03 +05301305 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07001306 "%s: Error in de-queuing skb from Tx queue status = %d",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001307 __func__, status );
Jeff Johnson295189b2012-06-20 16:38:30 -07001308 vos_pkt_return_packet(pVosPacket);
1309 return VOS_STATUS_E_FAILURE;
1310 }
1311
1312 //Attach skb to VOS packet.
1313 status = vos_pkt_set_os_packet( pVosPacket, skb );
1314 if (status != VOS_STATUS_SUCCESS)
1315 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301316 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001317 "%s: Error attaching skb", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001318 vos_pkt_return_packet(pVosPacket);
1319 ++pAdapter->stats.tx_dropped;
1320 ++pAdapter->hdd_stats.hddTxRxStats.txFetchDequeueError;
1321 kfree_skb(skb);
1322 return VOS_STATUS_E_FAILURE;
1323 }
1324
1325 //Just being paranoid. To be removed later
1326 if(pVosPacket == NULL)
1327 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301328 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001329 "%s: VOS packet returned by VOSS is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001330 ++pAdapter->stats.tx_dropped;
1331 ++pAdapter->hdd_stats.hddTxRxStats.txFetchDequeueError;
1332 kfree_skb(skb);
1333 return VOS_STATUS_E_FAILURE;
1334 }
1335
1336 //Return VOS packet to TL;
1337 *ppVosPacket = pVosPacket;
1338
1339 //Fill out the meta information needed by TL
1340 //FIXME This timestamp is really the time stamp of wrap_data_packet
1341 vos_pkt_get_timestamp( pVosPacket, &timestamp );
1342 pPktMetaInfo->usTimeStamp = (v_U16_t)timestamp;
1343 if ( 1 < size )
1344 {
1345 pPktMetaInfo->bMorePackets = 1; //HDD has more packets to send
1346 }
1347 else
1348 {
1349 pPktMetaInfo->bMorePackets = 0;
1350 }
1351
1352 pPktMetaInfo->ucIsEapol = 0;
1353
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301354 if(pSapCtx->aStaInfo[STAId].tlSTAState != WLANTL_STA_AUTHENTICATED)
Jeff Johnson295189b2012-06-20 16:38:30 -07001355 {
1356 if (TRUE == hdd_IsEAPOLPacket( pVosPacket ))
1357 {
Jeff Johnson295189b2012-06-20 16:38:30 -07001358 pPktMetaInfo->ucIsEapol = 1;
Sushant Kaushika8073312015-05-04 17:33:52 +05301359 wlan_hdd_log_eapol(skb,
1360 WIFI_EVENT_DRIVER_EAPOL_FRAME_TRANSMIT_REQUESTED);
Jeff Johnson295189b2012-06-20 16:38:30 -07001361 }
1362 }
Sushant Kaushika8073312015-05-04 17:33:52 +05301363
Sachin Ahuja8c65f382014-12-12 15:34:21 +05301364 if ((NULL != pHddCtx) &&
1365 (pHddCtx->cfg_ini->gEnableDebugLog))
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001366 {
1367 proto_type = vos_pkt_get_proto_type(skb,
1368 pHddCtx->cfg_ini->gEnableDebugLog);
1369 if (VOS_PKT_PROTO_TYPE_EAPOL & proto_type)
1370 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05301371 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Nirav Shah4b53d4b2015-05-08 05:35:00 -07001372 "SAP TX EAPOL");
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001373 }
1374 else if (VOS_PKT_PROTO_TYPE_DHCP & proto_type)
1375 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05301376 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001377 "SAP TX DHCP");
1378 }
1379 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001380//xg: @@@@: temporarily disble these. will revisit later
Jeff Johnson295189b2012-06-20 16:38:30 -07001381 {
Kanchanapally, Vidyullathaed969c62015-02-18 11:39:11 +05301382 pPktMetaInfo->ac = ac;
Jeff Johnson295189b2012-06-20 16:38:30 -07001383 pPktMetaInfo->ucUP = pktNode->userPriority;
1384 pPktMetaInfo->ucTID = pPktMetaInfo->ucUP;
1385 }
1386
1387 pPktMetaInfo->ucType = 0; //FIXME Don't know what this is
1388 //Extract the destination address from ethernet frame
1389 pDestMacAddress = (v_MACADDR_t*)skb->data;
1390
1391 // we need 802.3 to 802.11 frame translation
1392 // (note that Bcast/Mcast will be translated in SW, unicast in HW)
1393 pPktMetaInfo->ucDisableFrmXtl = 0;
1394 pPktMetaInfo->ucBcast = vos_is_macaddr_broadcast( pDestMacAddress ) ? 1 : 0;
1395 pPktMetaInfo->ucMcast = vos_is_macaddr_group( pDestMacAddress ) ? 1 : 0;
1396
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301397 if ( (pSapCtx->aStaInfo[STAId].txSuspended[ac]) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07001398 (size <= ((pAdapter->aTxQueueLimit[ac]*3)/4) ))
1399 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301400 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001401 "%s: TX queue re-enabled", __func__);
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301402 pSapCtx->aStaInfo[STAId].txSuspended[ac] = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07001403 netif_wake_subqueue(pAdapter->dev, skb_get_queue_mapping(skb));
Mihir Shete5d148f12014-12-16 17:54:49 +05301404 MTRACE(vos_trace(VOS_MODULE_ID_HDD, TRACE_CODE_HDD_WAKE_NETDEV,
1405 pAdapter->sessionId, ac));
Jeff Johnson295189b2012-06-20 16:38:30 -07001406 }
1407
1408 // We're giving the packet to TL so consider it transmitted from
1409 // a statistics perspective. We account for it here instead of
1410 // when the packet is returned for two reasons. First, TL will
1411 // manipulate the skb to the point where the len field is not
1412 // accurate, leading to inaccurate byte counts if we account for
1413 // it later. Second, TL does not provide any feedback as to
1414 // whether or not the packet was successfully sent over the air,
1415 // so the packet counts will be the same regardless of where we
1416 // account for them
1417 pAdapter->stats.tx_bytes += skb->len;
1418 ++pAdapter->stats.tx_packets;
1419 ++pAdapter->hdd_stats.hddTxRxStats.txFetchDequeued;
1420 ++pAdapter->hdd_stats.hddTxRxStats.txFetchDequeuedAC[ac];
Mihir Shetef3473692014-06-27 15:13:20 +05301421 pAdapter->hdd_stats.hddTxRxStats.continuousTxTimeoutCount = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07001422
c_hpothu6d1d2a32014-03-18 20:17:03 +05301423 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001424 "%s: Valid VOS PKT returned to TL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001425
1426 return status;
1427}
1428
1429
1430/**============================================================================
1431 @brief hdd_softap_tx_low_resource_cbk() - Callback function invoked in the
1432 case where VOS packets are not available at the time of the call to get
1433 packets. This callback function is invoked by VOS when packets are
1434 available.
1435
1436 @param pVosPacket : [in] pointer to VOS packet
1437 @param userData : [in] opaque user data that was passed initially
1438
1439 @return : VOS_STATUS_E_FAILURE if any errors encountered,
1440 : VOS_STATUS_SUCCESS otherwise
1441 =============================================================================*/
1442VOS_STATUS hdd_softap_tx_low_resource_cbk( vos_pkt_t *pVosPacket,
1443 v_VOID_t *userData )
1444{
1445 VOS_STATUS status;
1446 v_SINT_t i = 0;
1447 v_SIZE_t size = 0;
1448 hdd_adapter_t* pAdapter = (hdd_adapter_t *)userData;
1449 v_U8_t STAId = WLAN_MAX_STA_COUNT;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301450 v_CONTEXT_t pVosContext = NULL;
1451 ptSapContext pSapCtx = NULL;
Hanumantha Reddy Pothula4ba27c52015-03-12 14:31:10 +05301452
1453 if (pAdapter == NULL || WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
Jeff Johnson295189b2012-06-20 16:38:30 -07001454 {
Hanumantha Reddy Pothula4ba27c52015-03-12 14:31:10 +05301455 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1456 FL("Invalid adapter %p"), pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07001457 return VOS_STATUS_E_FAILURE;
1458 }
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301459 pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
1460 pSapCtx = VOS_GET_SAP_CB(pVosContext);
1461 if(pSapCtx == NULL){
1462 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1463 FL("psapCtx is NULL"));
1464 return VOS_STATUS_E_FAULT;
1465 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001466 //Return the packet to VOS. We just needed to know that VOS is out of low resource
1467 //situation. Here we will only signal TL that there is a pending data for a STA.
1468 //VOS packet will be requested (if needed) when TL comes back to fetch data.
1469 vos_pkt_return_packet( pVosPacket );
1470
1471 pAdapter->isVosOutOfResource = VOS_FALSE;
1472
1473 // Indicate to TL that there is pending data if a queue is non empty.
1474 // This Code wasnt included in earlier version which resulted in
1475 // Traffic stalling
1476 for (STAId = 0; STAId < WLAN_MAX_STA_COUNT; STAId++)
1477 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301478 if ((pSapCtx->aStaInfo[STAId].tlSTAState == WLANTL_STA_AUTHENTICATED) ||
1479 (pSapCtx->aStaInfo[STAId].tlSTAState == WLANTL_STA_CONNECTED))
Jeff Johnson295189b2012-06-20 16:38:30 -07001480 {
1481 for( i=NUM_TX_QUEUES-1; i>=0; --i )
1482 {
1483 size = 0;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301484 hdd_list_size(&pSapCtx->aStaInfo[STAId].wmm_tx_queue[i], &size);
Jeff Johnson295189b2012-06-20 16:38:30 -07001485 if ( size > 0 )
1486 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301487 status = WLANTL_STAPktPending( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
1488 STAId,
Jeff Johnson295189b2012-06-20 16:38:30 -07001489 (WLANTL_ACEnumType)i );
1490 if( !VOS_IS_STATUS_SUCCESS( status ) )
1491 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301492 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1493 "%s: Failure in indicating pkt to TL for ac=%d", __func__,i);
Jeff Johnson295189b2012-06-20 16:38:30 -07001494 }
1495 }
1496 }
1497 }
1498 }
1499 return VOS_STATUS_SUCCESS;
1500}
1501
1502
1503/**============================================================================
1504 @brief hdd_softap_rx_packet_cbk() - Receive callback registered with TL.
1505 TL will call this to notify the HDD when one or more packets were
1506 received for a registered STA.
1507
1508 @param vosContext : [in] pointer to VOS context
1509 @param pVosPacketChain : [in] pointer to VOS packet chain
1510 @param staId : [in] Station Id (Adress 1 Index)
1511 @param pRxMetaInfo : [in] pointer to meta info for the received pkt(s).
1512
1513 @return : VOS_STATUS_E_FAILURE if any errors encountered,
1514 : VOS_STATUS_SUCCESS otherwise
1515 ===========================================================================*/
1516VOS_STATUS hdd_softap_rx_packet_cbk( v_VOID_t *vosContext,
1517 vos_pkt_t *pVosPacketChain,
1518 v_U8_t staId,
1519 WLANTL_RxMetaInfoType* pRxMetaInfo )
1520{
1521 hdd_adapter_t *pAdapter = NULL;
1522 VOS_STATUS status = VOS_STATUS_E_FAILURE;
1523 int rxstat;
1524 struct sk_buff *skb = NULL;
1525 vos_pkt_t* pVosPacket;
1526 vos_pkt_t* pNextVosPacket;
1527 hdd_context_t *pHddCtx = NULL;
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001528 v_U8_t proto_type;
Jeff Johnson295189b2012-06-20 16:38:30 -07001529
1530 //Sanity check on inputs
1531 if ( ( NULL == vosContext ) ||
1532 ( NULL == pVosPacketChain ) ||
1533 ( NULL == pRxMetaInfo ) )
1534 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301535 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1536 "%s: Null params being passed", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001537 return VOS_STATUS_E_FAILURE;
1538 }
1539
1540 pHddCtx = (hdd_context_t *)vos_get_context( VOS_MODULE_ID_HDD, vosContext );
1541 if ( NULL == pHddCtx )
1542 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301543 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1544 "%s: HDD adapter context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001545 return VOS_STATUS_E_FAILURE;
1546 }
1547
1548 pAdapter = pHddCtx->sta_to_adapter[staId];
Abhishek Singh82a7a5b2014-10-07 13:05:12 +05301549 if( (NULL == pAdapter) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic) )
Jeff Johnson295189b2012-06-20 16:38:30 -07001550 {
Abhishek Singh82a7a5b2014-10-07 13:05:12 +05301551 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1552 "%s: invalid adapter or adapter has invalid magic",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001553 VOS_ASSERT(0);
1554 return VOS_STATUS_E_FAILURE;
1555 }
Leo Chang64d68bc2013-06-04 15:40:52 -07001556
1557 /* Monitor traffic */
1558 if ( pHddCtx->cfg_ini->enableTrafficMonitor )
1559 {
1560 pHddCtx->traffic_monitor.lastFrameTs = vos_timer_get_system_time();
1561 if ( !atomic_read(&pHddCtx->traffic_monitor.isActiveMode) )
1562 {
1563 vos_lock_acquire(&pHddCtx->traffic_monitor.trafficLock);
1564 /* It was IDLE mode,
1565 * this is new state, then switch mode from suspend to resume */
1566 if ( !atomic_read(&pHddCtx->traffic_monitor.isActiveMode) )
1567 {
1568 hdd_set_wlan_suspend_mode(0);
1569 vos_timer_start(&pHddCtx->traffic_monitor.trafficTimer,
1570 pHddCtx->cfg_ini->trafficIdleTimeout);
1571 atomic_set(&pHddCtx->traffic_monitor.isActiveMode, 1);
1572 }
1573 vos_lock_release(&pHddCtx->traffic_monitor.trafficLock);
1574 }
1575 }
1576
Jeff Johnson295189b2012-06-20 16:38:30 -07001577 ++pAdapter->hdd_stats.hddTxRxStats.rxChains;
1578
1579 // walk the chain until all are processed
1580 pVosPacket = pVosPacketChain;
1581 do
1582 {
1583 // get the pointer to the next packet in the chain
1584 // (but don't unlink the packet since we free the entire chain later)
1585 status = vos_pkt_walk_packet_chain( pVosPacket, &pNextVosPacket, VOS_FALSE);
1586
1587 // both "success" and "empty" are acceptable results
1588 if (!((status == VOS_STATUS_SUCCESS) || (status == VOS_STATUS_E_EMPTY)))
1589 {
1590 ++pAdapter->hdd_stats.hddTxRxStats.rxDropped;
c_hpothu6d1d2a32014-03-18 20:17:03 +05301591 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1592 "%s: Failure walking packet chain", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001593 return VOS_STATUS_E_FAILURE;
1594 }
1595
1596 // Extract the OS packet (skb).
Sushant Kaushikd43987b2015-06-05 12:18:34 +05301597 status = vos_pkt_get_os_packet( pVosPacket, (v_VOID_t **)&skb, VOS_FALSE );
Jeff Johnson295189b2012-06-20 16:38:30 -07001598 if(!VOS_IS_STATUS_SUCCESS( status ))
1599 {
1600 ++pAdapter->hdd_stats.hddTxRxStats.rxDropped;
c_hpothu6d1d2a32014-03-18 20:17:03 +05301601 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1602 "%s: Failure extracting skb from vos pkt", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001603 return VOS_STATUS_E_FAILURE;
1604 }
Sushant Kaushikd43987b2015-06-05 12:18:34 +05301605
1606 if (TRUE == hdd_IsEAPOLPacket(pVosPacket))
1607 wlan_hdd_log_eapol(skb, WIFI_EVENT_DRIVER_EAPOL_FRAME_RECEIVED);
1608
1609 pVosPacket->pSkb = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07001610 //hdd_softap_dump_sk_buff(skb);
1611
1612 skb->dev = pAdapter->dev;
1613
1614 if(skb->dev == NULL) {
1615
c_hpothu6d1d2a32014-03-18 20:17:03 +05301616 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_FATAL,
1617 "ERROR!!Invalid netdevice");
Jeff Johnson295189b2012-06-20 16:38:30 -07001618 return VOS_STATUS_E_FAILURE;
1619 }
1620 ++pAdapter->hdd_stats.hddTxRxStats.rxPackets;
1621 ++pAdapter->stats.rx_packets;
1622 pAdapter->stats.rx_bytes += skb->len;
1623
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001624 if (pHddCtx->cfg_ini->gEnableDebugLog)
1625 {
1626 proto_type = vos_pkt_get_proto_type(skb,
1627 pHddCtx->cfg_ini->gEnableDebugLog);
1628 if (VOS_PKT_PROTO_TYPE_EAPOL & proto_type)
1629 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05301630 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Nirav Shah4b53d4b2015-05-08 05:35:00 -07001631 "SAP RX EAPOL");
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001632 }
1633 else if (VOS_PKT_PROTO_TYPE_DHCP & proto_type)
1634 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05301635 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Tushnim Bhattacharyyaa3ba5a52014-01-30 11:37:33 -08001636 "SAP RX DHCP");
1637 }
1638 }
1639
Jeff Johnson295189b2012-06-20 16:38:30 -07001640 if (WLAN_RX_BCMC_STA_ID == pRxMetaInfo->ucDesSTAId)
1641 {
1642 //MC/BC packets. Duplicate a copy of packet
1643 struct sk_buff *pSkbCopy;
1644 hdd_ap_ctx_t *pHddApCtx;
1645
1646 pHddApCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
1647 if (!(pHddApCtx->apDisableIntraBssFwd))
1648 {
1649 pSkbCopy = skb_copy(skb, GFP_ATOMIC);
1650 if (pSkbCopy)
1651 {
1652 hdd_softap_sta_2_sta_xmit(pSkbCopy, pSkbCopy->dev,
1653 pHddApCtx->uBCStaId, (pRxMetaInfo->ucUP));
1654 }
1655 }
1656 else
1657 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301658 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001659 "%s: skb allocation fails", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001660 }
1661
1662
1663 } //(WLAN_RX_BCMC_STA_ID == staId)
1664
1665 if ((WLAN_RX_BCMC_STA_ID == pRxMetaInfo->ucDesSTAId) ||
1666 (WLAN_RX_SAP_SELF_STA_ID == pRxMetaInfo->ucDesSTAId))
1667 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301668 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO_LOW,
Arif Hussain6d2a3322013-11-17 19:50:10 -08001669 "%s: send one packet to kernel", __func__);
Sachin Ahuja8c65f382014-12-12 15:34:21 +05301670 if ((NULL != pHddCtx) &&
1671 (pHddCtx->cfg_ini->gEnableDebugLog & VOS_PKT_PROTO_TYPE_DHCP))
Dino Mycled9b7cc12014-09-04 18:43:07 +05301672 {
1673 hdd_dump_dhcp_pkt(skb, RX_PATH);
1674 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001675
1676 skb->protocol = eth_type_trans(skb, skb->dev);
Madan Mohan Koyyalamudif91902f2012-10-25 11:59:19 -07001677 skb->ip_summed = CHECKSUM_NONE;
Jeff Johnsone7245742012-09-05 17:12:55 -07001678#ifdef WLAN_FEATURE_HOLD_RX_WAKELOCK
Sushant Kaushik83392fa2015-05-05 17:44:40 +05301679 vos_wake_lock_timeout_release(&pHddCtx->rx_wake_lock,
1680 HDD_WAKE_LOCK_DURATION,
1681 WIFI_POWER_EVENT_WAKELOCK_HOLD_RX);
1682
Sameer Thalappil50dc0092013-02-19 17:23:33 -08001683#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001684 rxstat = netif_rx_ni(skb);
1685 if (NET_RX_SUCCESS == rxstat)
1686 {
1687 ++pAdapter->hdd_stats.hddTxRxStats.rxDelivered;
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -07001688 ++pAdapter->hdd_stats.hddTxRxStats.pkt_rx_count;
Jeff Johnson295189b2012-06-20 16:38:30 -07001689 }
1690 else
1691 {
1692 ++pAdapter->hdd_stats.hddTxRxStats.rxRefused;
1693 }
1694 }
1695 else if ((WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->apDisableIntraBssFwd)
1696 {
1697 kfree_skb(skb);
1698 }
1699 else
1700 {
1701 //loopback traffic
1702 status = hdd_softap_sta_2_sta_xmit(skb, skb->dev,
1703 pRxMetaInfo->ucDesSTAId, (pRxMetaInfo->ucUP));
1704 }
1705
1706 // now process the next packet in the chain
1707 pVosPacket = pNextVosPacket;
1708
1709 } while (pVosPacket);
1710
1711 //Return the entire VOS packet chain to the resource pool
1712 status = vos_pkt_return_packet( pVosPacketChain );
1713 if(!VOS_IS_STATUS_SUCCESS( status ))
1714 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301715 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1716 "%s: Failure returning vos pkt", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07001717 }
1718
1719 pAdapter->dev->last_rx = jiffies;
1720
1721 return status;
1722}
1723
1724VOS_STATUS hdd_softap_DeregisterSTA( hdd_adapter_t *pAdapter, tANI_U8 staId )
1725{
1726 VOS_STATUS vosStatus = VOS_STATUS_SUCCESS;
Gopichand Nakkala3bd53fa2013-05-22 20:04:18 +05301727 hdd_context_t *pHddCtx;
1728 if (NULL == pAdapter)
1729 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301730 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala3bd53fa2013-05-22 20:04:18 +05301731 "%s: pAdapter is NULL", __func__);
1732 return VOS_STATUS_E_INVAL;
1733 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001734
Gopichand Nakkala3bd53fa2013-05-22 20:04:18 +05301735 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
1736 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301737 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala3bd53fa2013-05-22 20:04:18 +05301738 "%s: Invalid pAdapter magic", __func__);
1739 return VOS_STATUS_E_INVAL;
1740 }
1741
1742 pHddCtx = (hdd_context_t*)(pAdapter->pHddCtx);
c_hpothu6d1d2a32014-03-18 20:17:03 +05301743 //Clear station in TL and then update HDD data structures. This helps
Jeff Johnson295189b2012-06-20 16:38:30 -07001744 //to block RX frames from other station to this station.
Gopichand Nakkala3bd53fa2013-05-22 20:04:18 +05301745 vosStatus = WLANTL_ClearSTAClient( pHddCtx->pvosContext, staId );
Jeff Johnson295189b2012-06-20 16:38:30 -07001746 if ( !VOS_IS_STATUS_SUCCESS( vosStatus ) )
1747 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301748 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07001749 "WLANTL_ClearSTAClient() failed to for staID %d. "
Jeff Johnson0299d0a2013-10-30 12:37:43 -07001750 "Status= %d [0x%08X]",
Jeff Johnson295189b2012-06-20 16:38:30 -07001751 staId, vosStatus, vosStatus );
1752 }
1753
1754 vosStatus = hdd_softap_deinit_tx_rx_sta ( pAdapter, staId );
1755 if( VOS_STATUS_E_FAILURE == vosStatus )
1756 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301757 VOS_TRACE ( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07001758 "hdd_softap_deinit_tx_rx_sta() failed for staID %d. "
Jeff Johnson0299d0a2013-10-30 12:37:43 -07001759 "Status = %d [0x%08X]",
Jeff Johnson295189b2012-06-20 16:38:30 -07001760 staId, vosStatus, vosStatus );
1761 return( vosStatus );
1762 }
1763
1764 pHddCtx->sta_to_adapter[staId] = NULL;
1765
1766 return( vosStatus );
1767}
1768
1769VOS_STATUS hdd_softap_RegisterSTA( hdd_adapter_t *pAdapter,
1770 v_BOOL_t fAuthRequired,
1771 v_BOOL_t fPrivacyBit,
1772 v_U8_t staId,
1773 v_U8_t ucastSig,
1774 v_U8_t bcastSig,
1775 v_MACADDR_t *pPeerMacAddress,
1776 v_BOOL_t fWmmEnabled )
1777{
1778 VOS_STATUS vosStatus = VOS_STATUS_E_FAILURE;
Prathyushaf5442802012-12-12 13:58:11 -08001779 WLAN_STADescType staDesc = {0};
Jeff Johnson295189b2012-06-20 16:38:30 -07001780 hdd_context_t *pHddCtx = pAdapter->pHddCtx;
1781 hdd_adapter_t *pmonAdapter = NULL;
1782
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301783 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
1784 ptSapContext pSapCtx = NULL;
1785 pSapCtx = VOS_GET_SAP_CB(pVosContext);
1786 if(pSapCtx == NULL){
1787 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1788 FL("psapCtx is NULL"));
1789 return VOS_STATUS_E_FAULT;
1790 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001791 //eCsrEncryptionType connectedCipherAlgo;
1792 //v_BOOL_t fConnected;
1793
1794 /*
1795 * Clean up old entry if it is not cleaned up properly
1796 */
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301797 if ( pSapCtx->aStaInfo[staId].isUsed )
Jeff Johnson295189b2012-06-20 16:38:30 -07001798 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301799 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07001800 "clean up old entry for STA %d", staId);
1801 hdd_softap_DeregisterSTA( pAdapter, staId );
1802 }
1803
1804 // Get the Station ID from the one saved during the assocation.
1805
1806 staDesc.ucSTAId = staId;
1807
1808
1809 /*Save the pAdapter Pointer for this staId*/
1810 pHddCtx->sta_to_adapter[staId] = pAdapter;
1811
1812 staDesc.wSTAType = WLAN_STA_SOFTAP;
1813
1814 vos_mem_copy( staDesc.vSTAMACAddress.bytes, pPeerMacAddress->bytes,sizeof(pPeerMacAddress->bytes) );
1815 vos_mem_copy( staDesc.vBSSIDforIBSS.bytes, &pAdapter->macAddressCurrent,6 );
1816 vos_copy_macaddr( &staDesc.vSelfMACAddress, &pAdapter->macAddressCurrent );
1817
c_hpothu6d1d2a32014-03-18 20:17:03 +05301818 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -08001819 "register station");
c_hpothu6d1d2a32014-03-18 20:17:03 +05301820 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -08001821 "station mac " MAC_ADDRESS_STR,
1822 MAC_ADDR_ARRAY(staDesc.vSTAMACAddress.bytes));
c_hpothu6d1d2a32014-03-18 20:17:03 +05301823 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -08001824 "BSSIDforIBSS " MAC_ADDRESS_STR,
1825 MAC_ADDR_ARRAY(staDesc.vBSSIDforIBSS.bytes));
c_hpothu6d1d2a32014-03-18 20:17:03 +05301826 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -08001827 "SOFTAP SELFMAC " MAC_ADDRESS_STR,
1828 MAC_ADDR_ARRAY(staDesc.vSelfMACAddress.bytes));
Jeff Johnson295189b2012-06-20 16:38:30 -07001829
1830 vosStatus = hdd_softap_init_tx_rx_sta(pAdapter, staId, &staDesc.vSTAMACAddress);
1831
Jeff Johnson295189b2012-06-20 16:38:30 -07001832 staDesc.ucQosEnabled = fWmmEnabled;
c_hpothu6d1d2a32014-03-18 20:17:03 +05301833 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07001834 "HDD SOFTAP register TL QoS_enabled=%d",
1835 staDesc.ucQosEnabled );
1836
1837 staDesc.ucProtectedFrame = (v_U8_t)fPrivacyBit ;
1838
1839
Jeff Johnson295189b2012-06-20 16:38:30 -07001840 // For PRIMA UMA frame translation is not enable yet.
1841 staDesc.ucSwFrameTXXlation = 1;
1842 staDesc.ucSwFrameRXXlation = 1;
Jeff Johnson295189b2012-06-20 16:38:30 -07001843 staDesc.ucAddRmvLLC = 1;
1844
1845 // Initialize signatures and state
1846 staDesc.ucUcastSig = ucastSig;
1847 staDesc.ucBcastSig = bcastSig;
1848 staDesc.ucInitState = fAuthRequired ?
1849 WLANTL_STA_CONNECTED : WLANTL_STA_AUTHENTICATED;
1850
Prathyushaf5442802012-12-12 13:58:11 -08001851 staDesc.ucIsReplayCheckValid = VOS_FALSE;
1852
Jeff Johnson295189b2012-06-20 16:38:30 -07001853 // Register the Station with TL...
c_hpothu6d1d2a32014-03-18 20:17:03 +05301854 vosStatus = WLANTL_RegisterSTAClient( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
1855 hdd_softap_rx_packet_cbk,
1856 hdd_softap_tx_complete_cbk,
Jeff Johnson295189b2012-06-20 16:38:30 -07001857 hdd_softap_tx_fetch_packet_cbk, &staDesc, 0 );
1858
1859 if ( !VOS_IS_STATUS_SUCCESS( vosStatus ) )
1860 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301861 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson0299d0a2013-10-30 12:37:43 -07001862 "SOFTAP WLANTL_RegisterSTAClient() failed to register. Status= %d [0x%08X]",
Jeff Johnson295189b2012-06-20 16:38:30 -07001863 vosStatus, vosStatus );
1864 return vosStatus;
1865 }
1866
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -07001867 //Timer value should be in milliseconds
1868 if ( pHddCtx->cfg_ini->dynSplitscan &&
1869 ( VOS_TIMER_STATE_RUNNING !=
1870 vos_timer_getCurrentState(&pHddCtx->tx_rx_trafficTmr)))
1871 {
1872 vos_timer_start(&pHddCtx->tx_rx_trafficTmr,
1873 pHddCtx->cfg_ini->trafficMntrTmrForSplitScan);
1874 }
1875
Jeff Johnson295189b2012-06-20 16:38:30 -07001876 // if ( WPA ), tell TL to go to 'connected' and after keys come to the driver,
1877 // then go to 'authenticated'. For all other authentication types (those that do
1878 // not require upper layer authentication) we can put TL directly into 'authenticated'
1879 // state.
1880
1881 //VOS_ASSERT( fConnected );
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301882 pSapCtx->aStaInfo[staId].ucSTAId = staId;
1883 pSapCtx->aStaInfo[staId].isQosEnabled = fWmmEnabled;
Jeff Johnson295189b2012-06-20 16:38:30 -07001884 if ( !fAuthRequired )
1885 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301886 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
1887 "open/shared auth StaId= %d. Changing TL state to AUTHENTICATED at Join time",
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301888 pSapCtx->aStaInfo[staId].ucSTAId );
Jeff Johnson295189b2012-06-20 16:38:30 -07001889
1890 // Connections that do not need Upper layer auth, transition TL directly
1891 // to 'Authenticated' state.
1892 vosStatus = WLANTL_ChangeSTAState( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext, staDesc.ucSTAId,
1893 WLANTL_STA_AUTHENTICATED );
1894
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301895 pSapCtx->aStaInfo[staId].tlSTAState = WLANTL_STA_AUTHENTICATED;
Jeff Johnson295189b2012-06-20 16:38:30 -07001896 pAdapter->sessionCtx.ap.uIsAuthenticated = VOS_TRUE;
1897 }
1898 else
1899 {
1900
c_hpothu6d1d2a32014-03-18 20:17:03 +05301901 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301902 "ULA auth StaId= %d. Changing TL state to CONNECTED at Join time", pSapCtx->aStaInfo[staId].ucSTAId );
Jeff Johnson295189b2012-06-20 16:38:30 -07001903
1904 vosStatus = WLANTL_ChangeSTAState( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext, staDesc.ucSTAId,
1905 WLANTL_STA_CONNECTED );
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301906 pSapCtx->aStaInfo[staId].tlSTAState = WLANTL_STA_CONNECTED;
Jeff Johnson295189b2012-06-20 16:38:30 -07001907
1908 pAdapter->sessionCtx.ap.uIsAuthenticated = VOS_FALSE;
1909
1910 }
1911 pmonAdapter= hdd_get_mon_adapter( pAdapter->pHddCtx);
1912 if(pmonAdapter)
1913 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301914 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO_HIGH,
1915 "Turn on Monitor the carrier");
Jeff Johnson295189b2012-06-20 16:38:30 -07001916 netif_carrier_on(pmonAdapter->dev);
1917 //Enable Tx queue
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05301918 hddLog(VOS_TRACE_LEVEL_INFO, FL("Enabling queues"));
Jeff Johnson295189b2012-06-20 16:38:30 -07001919 netif_tx_start_all_queues(pmonAdapter->dev);
1920 }
1921 netif_carrier_on(pAdapter->dev);
1922 //Enable Tx queue
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05301923 hddLog(VOS_TRACE_LEVEL_INFO, FL("Enabling queues"));
Jeff Johnson295189b2012-06-20 16:38:30 -07001924 netif_tx_start_all_queues(pAdapter->dev);
1925
1926 return( vosStatus );
1927}
1928
1929VOS_STATUS hdd_softap_Register_BC_STA( hdd_adapter_t *pAdapter, v_BOOL_t fPrivacyBit)
1930{
1931 VOS_STATUS vosStatus = VOS_STATUS_E_FAILURE;
1932 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1933 v_MACADDR_t broadcastMacAddr = VOS_MAC_ADDR_BROADCAST_INITIALIZER;
1934
1935
1936 pHddCtx->sta_to_adapter[WLAN_RX_BCMC_STA_ID] = pAdapter;
1937 pHddCtx->sta_to_adapter[WLAN_RX_SAP_SELF_STA_ID] = pAdapter;
1938 vosStatus = hdd_softap_RegisterSTA( pAdapter, VOS_FALSE, fPrivacyBit, (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->uBCStaId, 0, 1, &broadcastMacAddr,0);
1939
1940 return vosStatus;
1941}
1942
1943VOS_STATUS hdd_softap_Deregister_BC_STA( hdd_adapter_t *pAdapter)
1944{
1945 return hdd_softap_DeregisterSTA( pAdapter, (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->uBCStaId);
1946}
1947
1948VOS_STATUS hdd_softap_stop_bss( hdd_adapter_t *pAdapter)
1949{
1950 VOS_STATUS vosStatus = VOS_STATUS_E_FAILURE;
1951 v_U8_t staId = 0;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301952 hdd_context_t *pHddCtx;
Wilson Yangf80a0542013-10-07 13:02:37 -07001953
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301954 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
1955 ptSapContext pSapCtx = NULL;
1956 pSapCtx = VOS_GET_SAP_CB(pVosContext);
1957 if(pSapCtx == NULL){
1958 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
1959 FL("psapCtx is NULL"));
1960 return VOS_STATUS_E_FAULT;
1961 }
1962
1963 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Wilson Yangf80a0542013-10-07 13:02:37 -07001964 /*bss deregister is not allowed during wlan driver loading or unloading*/
Mihir Shete18156292014-03-11 15:38:30 +05301965 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Wilson Yangf80a0542013-10-07 13:02:37 -07001966 {
1967 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1968 "%s:Loading_unloading in Progress. Ignore!!!",__func__);
1969 return VOS_STATUS_E_PERM;
1970 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001971
1972 vosStatus = hdd_softap_Deregister_BC_STA( pAdapter);
1973
Jeff Johnson43971f52012-07-17 12:26:56 -07001974 if (!VOS_IS_STATUS_SUCCESS(vosStatus))
Jeff Johnson295189b2012-06-20 16:38:30 -07001975 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301976 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001977 "%s: Failed to deregister BC sta Id %d", __func__, (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->uBCStaId);
Jeff Johnson295189b2012-06-20 16:38:30 -07001978 }
1979
1980 for (staId = 0; staId < WLAN_MAX_STA_COUNT; staId++)
1981 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05301982 if (pSapCtx->aStaInfo[staId].isUsed)// This excludes BC sta as it is already deregistered
Jeff Johnson295189b2012-06-20 16:38:30 -07001983 {
Hanumantha Reddy Pothulac7100902013-12-28 18:17:36 +05301984 vosStatus = hdd_softap_DeregisterSTA( pAdapter, staId);
1985 if (!VOS_IS_STATUS_SUCCESS(vosStatus))
1986 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05301987 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07001988 "%s: Failed to deregister sta Id %d", __func__, staId);
Hanumantha Reddy Pothulac7100902013-12-28 18:17:36 +05301989 }
1990 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001991 }
1992
1993 return vosStatus;
1994}
1995
1996VOS_STATUS hdd_softap_change_STA_state( hdd_adapter_t *pAdapter, v_MACADDR_t *pDestMacAddress, WLANTL_STAStateType state)
1997{
1998 v_U8_t ucSTAId = WLAN_MAX_STA_COUNT;
1999 VOS_STATUS vosStatus = eHAL_STATUS_SUCCESS;
2000 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07002001
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05302002 ptSapContext pSapCtx = NULL;
2003 pSapCtx = VOS_GET_SAP_CB(pVosContext);
2004 if(pSapCtx == NULL){
2005 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
2006 FL("psapCtx is NULL"));
2007 return VOS_STATUS_E_FAULT;
2008 }
c_hpothu6d1d2a32014-03-18 20:17:03 +05302009 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002010 "%s: enter", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07002011
Jeff Johnson43971f52012-07-17 12:26:56 -07002012 if (VOS_STATUS_SUCCESS != hdd_softap_GetStaId(pAdapter, pDestMacAddress, &ucSTAId))
Jeff Johnson295189b2012-06-20 16:38:30 -07002013 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05302014 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002015 "%s: Failed to find right station", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07002016 return VOS_STATUS_E_FAILURE;
2017 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002018
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05302019 if (FALSE == vos_is_macaddr_equal(&pSapCtx->aStaInfo[ucSTAId].macAddrSTA, pDestMacAddress))
Jeff Johnson295189b2012-06-20 16:38:30 -07002020 {
c_hpothu6d1d2a32014-03-18 20:17:03 +05302021 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002022 "%s: Station MAC address does not matching", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07002023 return VOS_STATUS_E_FAILURE;
2024 }
2025
2026 vosStatus = WLANTL_ChangeSTAState( pVosContext, ucSTAId, state );
c_hpothu6d1d2a32014-03-18 20:17:03 +05302027 VOS_TRACE( VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002028 "%s: change station to state %d succeed", __func__, state);
Jeff Johnson295189b2012-06-20 16:38:30 -07002029
Jeff Johnson43971f52012-07-17 12:26:56 -07002030 if (VOS_STATUS_SUCCESS == vosStatus)
Jeff Johnson295189b2012-06-20 16:38:30 -07002031 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05302032 pSapCtx->aStaInfo[ucSTAId].tlSTAState = WLANTL_STA_AUTHENTICATED;
Jeff Johnson295189b2012-06-20 16:38:30 -07002033 }
2034
c_hpothu6d1d2a32014-03-18 20:17:03 +05302035 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -08002036 "%s exit",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07002037
2038 return vosStatus;
2039}
2040
2041
2042VOS_STATUS hdd_softap_GetStaId(hdd_adapter_t *pAdapter, v_MACADDR_t *pMacAddress, v_U8_t *staId)
2043{
2044 v_U8_t i;
2045
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05302046 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
2047 ptSapContext pSapCtx = NULL;
2048 pSapCtx = VOS_GET_SAP_CB(pVosContext);
2049 if(pSapCtx == NULL){
2050 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
2051 FL("psapCtx is NULL"));
2052 return VOS_STATUS_E_FAULT;
2053 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002054 for (i = 0; i < WLAN_MAX_STA_COUNT; i++)
2055 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05302056 if (vos_mem_compare(&pSapCtx->aStaInfo[i].macAddrSTA, pMacAddress, sizeof(v_MACADDR_t)) &&
2057 pSapCtx->aStaInfo[i].isUsed)
Jeff Johnson295189b2012-06-20 16:38:30 -07002058 {
2059 *staId = i;
2060 return VOS_STATUS_SUCCESS;
2061 }
2062 }
2063
2064 return VOS_STATUS_E_FAILURE;
2065}
2066
Madan Mohan Koyyalamudie68989b2013-09-10 01:15:19 +05302067VOS_STATUS hdd_softap_GetConnectedStaId(hdd_adapter_t *pAdapter, v_U8_t *staId)
2068{
2069 v_U8_t i;
2070
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05302071 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
2072 ptSapContext pSapCtx = NULL;
2073 pSapCtx = VOS_GET_SAP_CB(pVosContext);
2074 if(pSapCtx == NULL){
2075 VOS_TRACE(VOS_MODULE_ID_HDD_SAP_DATA, VOS_TRACE_LEVEL_ERROR,
2076 FL("psapCtx is NULL"));
2077 return VOS_STATUS_E_FAULT;
2078 }
Madan Mohan Koyyalamudie68989b2013-09-10 01:15:19 +05302079 for (i = 0; i < WLAN_MAX_STA_COUNT; i++)
2080 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +05302081 if (pSapCtx->aStaInfo[i].isUsed &&
2082 (!vos_is_macaddr_broadcast(&pSapCtx->aStaInfo[i].macAddrSTA)))
Madan Mohan Koyyalamudie68989b2013-09-10 01:15:19 +05302083 {
2084 *staId = i;
2085 return VOS_STATUS_SUCCESS;
2086 }
2087 }
2088
2089 return VOS_STATUS_E_FAILURE;
2090}