| /* |
| * Copyright (c) 2014, 2016 The Linux Foundation. All rights reserved. |
| * |
| * Previously licensed under the ISC license by Qualcomm Atheros, Inc. |
| * |
| * |
| * Permission to use, copy, modify, and/or distribute this software for |
| * any purpose with or without fee is hereby granted, provided that the |
| * above copyright notice and this permission notice appear in all |
| * copies. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL |
| * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
| * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| * PERFORMANCE OF THIS SOFTWARE. |
| */ |
| |
| /* |
| * This file was originally distributed by Qualcomm Atheros, Inc. |
| * under proprietary terms before Copyright ownership was assigned |
| * to the Linux Foundation. |
| */ |
| |
| |
| /****************************************************************************** |
| * |
| * Name: wlan_hdd_packet_filtering.h |
| * |
| * Description: Packet Filter Definitions. |
| * |
| * |
| ******************************************************************************/ |
| |
| #ifndef __WLAN_HDD_PACKET_FILTERING_H__ |
| #define __WLAN_HDD_PACKET_FILTERING_H__ |
| |
| |
| |
| #ifdef WLAN_FEATURE_PACKET_FILTERING |
| |
| #define HDD_MAX_CMP_PER_PACKET_FILTER 5 |
| #define HDD_FILTER_IPV6_MC_UC 1 |
| #define HDD_FILTER_IPV6_MC 0 |
| #define HDD_FILTER_ID_IPV6_MC 10 |
| #define HDD_FILTER_ID_IPV6_UC 11 |
| |
| #define HDD_IPV6_MC_CMP_DATA 0x33 |
| #define HDD_IPV6_UC_CMP_DATA 0x01 |
| #define HDD_IPV6_CMP_DATA_0 0x86 |
| #define HDD_IPV6_CMP_DATA_1 0xDD |
| |
| #define HDD_WLAN_MAC_ADDR_LEN 6 |
| #define HDD_MAX_NUM_MULTICAST_ADDRESS 16 |
| |
| typedef enum |
| { |
| HDD_FILTER_PROTO_TYPE_INVALID = 0, |
| HDD_FILTER_PROTO_TYPE_MAC = 1, |
| HDD_FILTER_PROTO_TYPE_ARP = 2, |
| HDD_FILTER_PROTO_TYPE_IPV4 =3 , |
| HDD_FILTER_PROTO_TYPE_IPV6 = 4, |
| HDD_FILTER_PROTO_TYPE_UDP = 5, |
| HDD_FILTER_PROTO_TYPE_MAX |
| } eProtoLayer; |
| |
| typedef enum |
| { |
| HDD_RCV_FILTER_INVALID = 0, |
| HDD_RCV_FILTER_SET = 1, |
| HDD_RCV_FILTER_CLEAR = 2, |
| HDD_RCV_FILTER_MAX |
| }eFilterAction; |
| |
| typedef enum |
| { |
| HDD_FILTER_CMP_TYPE_INVALID = 0, |
| HDD_FILTER_CMP_TYPE_EQUAL = 1, |
| HDD_FILTER_CMP_TYPE_MASK_EQUAL = 2, |
| HDD_FILTER_CMP_TYPE_NOT_EQUAL = 3, |
| HDD_FILTER_CMP_TYPE_MASK_NOT_EQUAL = 4, |
| HDD_FILTER_CMP_TYPE_MAX |
| }eCompareFlag; |
| |
| struct PacketFilterParamsCfg |
| { |
| v_U8_t protocolLayer; |
| v_U8_t cmpFlag; |
| v_U8_t dataOffset; |
| v_U8_t dataLength; |
| v_U8_t compareData[8]; |
| v_U8_t dataMask[8]; |
| }; |
| |
| typedef struct |
| { |
| v_U8_t filterAction; |
| v_U8_t filterId; |
| v_U8_t numParams; |
| struct PacketFilterParamsCfg paramsData [HDD_MAX_CMP_PER_PACKET_FILTER]; |
| }tPacketFilterCfg, *tpPacketFilterCfg; |
| |
| typedef v_U8_t tHddMacAddr[HDD_WLAN_MAC_ADDR_LEN]; |
| |
| typedef struct |
| { |
| v_U8_t mcastBcastFilterSetting; |
| v_U8_t mcast_addr_cnt; |
| tHddMacAddr multicastAddr[HDD_MAX_NUM_MULTICAST_ADDRESS]; |
| } tRcvFltMcAddrList, *tpRcvFltMcAddrList; |
| |
| #endif |
| #endif // __WLAN_HDD_PACKET_FILTERING_H__ |