Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 1 | /* |
| 2 | * sfe_ipv4.h |
| 3 | * Shortcut forwarding engine header file for IPv4. |
| 4 | * |
| 5 | * Copyright (c) 2013-2016, 2019-2020, The Linux Foundation. All rights reserved. |
Guduri Prathyusha | 5f27e23 | 2022-01-06 14:39:04 +0530 | [diff] [blame] | 6 | * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved. |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 7 | * |
| 8 | * Permission to use, copy, modify, and/or distribute this software for any |
| 9 | * purpose with or without fee is hereby granted, provided that the above |
| 10 | * copyright notice and this permission notice appear in all copies. |
| 11 | * |
| 12 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 13 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 14 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 15 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 16 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 17 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 18 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 19 | */ |
| 20 | |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 21 | #ifndef __SFE_IPV4_H |
| 22 | #define __SFE_IPV4_H |
| 23 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 24 | #define SFE_IPV4_DSCP_MASK 0x3 |
| 25 | #define SFE_IPV4_DSCP_SHIFT 2 |
Tian Yang | d98d91b | 2022-03-09 14:50:12 -0800 | [diff] [blame^] | 26 | #include <linux/version.h> |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 27 | |
| 28 | /* |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 29 | * Specifies the lower bound on ACK numbers carried in the TCP header |
| 30 | */ |
| 31 | #define SFE_IPV4_TCP_MAX_ACK_WINDOW 65520 |
| 32 | |
| 33 | /* |
| 34 | * IPv4 TCP connection match additional data. |
| 35 | */ |
| 36 | struct sfe_ipv4_tcp_connection_match { |
| 37 | u8 win_scale; /* Window scale */ |
| 38 | u32 max_win; /* Maximum window size seen */ |
| 39 | u32 end; /* Sequence number of the next byte to send (seq + segment length) */ |
| 40 | u32 max_end; /* Sequence number of the last byte to ack */ |
| 41 | }; |
| 42 | |
| 43 | /* |
| 44 | * Bit flags for IPv4 connection matching entry. |
| 45 | */ |
| 46 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_XLATE_SRC (1<<0) |
| 47 | /* Perform source translation */ |
| 48 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_XLATE_DEST (1<<1) |
| 49 | /* Perform destination translation */ |
| 50 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_NO_SEQ_CHECK (1<<2) |
| 51 | /* Ignore TCP sequence numbers */ |
| 52 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_WRITE_FAST_ETH_HDR (1<<3) |
| 53 | /* Fast Ethernet header write */ |
| 54 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_WRITE_L2_HDR (1<<4) |
| 55 | /* Fast Ethernet header write */ |
| 56 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_PRIORITY_REMARK (1<<5) |
| 57 | /* remark priority of SKB */ |
| 58 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_DSCP_REMARK (1<<6) |
| 59 | /* remark DSCP of packet */ |
Ratheesh Kannoth | a3cf0e0 | 2021-12-09 09:44:10 +0530 | [diff] [blame] | 60 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_CSUM_OFFLOAD (1<<7) |
| 61 | /* checksum offload.*/ |
Guduri Prathyusha | eb31c90 | 2021-11-10 20:18:50 +0530 | [diff] [blame] | 62 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_PPPOE_DECAP (1<<8) |
| 63 | /* Indicates that PPPoE should be decapsulated */ |
| 64 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_PPPOE_ENCAP (1<<9) |
| 65 | /* Indicates that PPPoE should be encapsulated */ |
Ratheesh Kannoth | 71fc51e | 2022-01-05 10:02:47 +0530 | [diff] [blame] | 66 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_BRIDGE_FLOW (1<<10) |
| 67 | /* Bridge flow */ |
Ken Zhu | 37040ea | 2021-09-09 21:11:15 -0700 | [diff] [blame] | 68 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_MARK (1<<11) |
| 69 | /* skb mark of the packet */ |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 70 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_INSERT_EGRESS_VLAN_TAG (1<<12) |
| 71 | /* Insert VLAN tag */ |
Ratheesh Kannoth | 5dee377 | 2022-01-18 11:27:14 +0530 | [diff] [blame] | 72 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_SRC_INTERFACE_CHECK (1<<13) |
| 73 | /* Source interface check.*/ |
Nitin Shetty | e6ed5b5 | 2021-12-27 14:50:11 +0530 | [diff] [blame] | 74 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_PASSTHROUGH (1<<14) |
| 75 | /* passthrough flow: encap/decap to be skipped for this flow */ |
Ken Zhu | 7e38d1a | 2021-11-30 17:31:46 -0800 | [diff] [blame] | 76 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT (1<<15) |
| 77 | /* skb go fast xmit */ |
| 78 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT_FLOW_CHECKED (1<<16) |
| 79 | /* Fast xmit flow checked or not */ |
| 80 | #define SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT_DEV_ADMISSION (1<<17) |
| 81 | /* Fast xmit may be possible for this flow, if SFE check passes */ |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 82 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 83 | /* |
| 84 | * IPv4 connection matching structure. |
| 85 | */ |
| 86 | struct sfe_ipv4_connection_match { |
| 87 | /* |
| 88 | * References to other objects. |
| 89 | */ |
Ratheesh Kannoth | 94fc5b8 | 2021-10-20 07:45:06 +0530 | [diff] [blame] | 90 | struct hlist_node hnode; |
| 91 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 92 | struct sfe_ipv4_connection *connection; |
| 93 | struct sfe_ipv4_connection_match *counter_match; |
| 94 | /* Matches the flow in the opposite direction as the one in *connection */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 95 | /* |
| 96 | * Characteristics that identify flows that match this rule. |
| 97 | */ |
| 98 | struct net_device *match_dev; /* Network device */ |
| 99 | u8 match_protocol; /* Protocol */ |
| 100 | __be32 match_src_ip; /* Source IP address */ |
| 101 | __be32 match_dest_ip; /* Destination IP address */ |
| 102 | __be16 match_src_port; /* Source port/connection ident */ |
| 103 | __be16 match_dest_port; /* Destination port/connection ident */ |
| 104 | |
Amitesh Anand | 63be37d | 2021-12-24 20:51:48 +0530 | [diff] [blame] | 105 | struct udp_sock *up; /* Stores UDP sock information; valid only in decap path */ |
Tian Yang | d98d91b | 2022-03-09 14:50:12 -0800 | [diff] [blame^] | 106 | #if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 13, 0)) |
| 107 | const struct net_protocol *proto; /* stores protocol handler; valid only in decap path */ |
| 108 | #else |
Nitin Shetty | e6ed5b5 | 2021-12-27 14:50:11 +0530 | [diff] [blame] | 109 | struct net_protocol *proto; /* stores protocol handler; valid only in decap path */ |
Tian Yang | d98d91b | 2022-03-09 14:50:12 -0800 | [diff] [blame^] | 110 | #endif |
Amitesh Anand | 63be37d | 2021-12-24 20:51:48 +0530 | [diff] [blame] | 111 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 112 | /* |
| 113 | * Control the operations of the match. |
| 114 | */ |
| 115 | u32 flags; /* Bit flags */ |
| 116 | #ifdef CONFIG_NF_FLOW_COOKIE |
| 117 | u32 flow_cookie; /* used flow cookie, for debug */ |
| 118 | #endif |
| 119 | #ifdef CONFIG_XFRM |
| 120 | u32 flow_accel; /* The flow accelerated or not */ |
| 121 | #endif |
| 122 | |
| 123 | /* |
| 124 | * Connection state that we track once we match. |
| 125 | */ |
| 126 | union { /* Protocol-specific state */ |
| 127 | struct sfe_ipv4_tcp_connection_match tcp; |
| 128 | } protocol_state; |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 129 | |
| 130 | /* |
| 131 | * VLAN headers |
| 132 | */ |
| 133 | struct sfe_vlan_hdr ingress_vlan_hdr[SFE_MAX_VLAN_DEPTH]; |
| 134 | struct sfe_vlan_hdr egress_vlan_hdr[SFE_MAX_VLAN_DEPTH]; |
| 135 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 136 | /* |
| 137 | * Stats recorded in a sync period. These stats will be added to |
| 138 | * rx_packet_count64/rx_byte_count64 after a sync period. |
| 139 | */ |
Ratheesh Kannoth | 94fc5b8 | 2021-10-20 07:45:06 +0530 | [diff] [blame] | 140 | atomic_t rx_packet_count; |
| 141 | atomic_t rx_byte_count; |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 142 | |
| 143 | /* |
| 144 | * Packet translation information. |
| 145 | */ |
| 146 | __be32 xlate_src_ip; /* Address after source translation */ |
| 147 | __be16 xlate_src_port; /* Port/connection ident after source translation */ |
| 148 | u16 xlate_src_csum_adjustment; |
| 149 | /* Transport layer checksum adjustment after source translation */ |
| 150 | u16 xlate_src_partial_csum_adjustment; |
| 151 | /* Transport layer pseudo header checksum adjustment after source translation */ |
| 152 | |
| 153 | __be32 xlate_dest_ip; /* Address after destination translation */ |
| 154 | __be16 xlate_dest_port; /* Port/connection ident after destination translation */ |
| 155 | u16 xlate_dest_csum_adjustment; |
| 156 | /* Transport layer checksum adjustment after destination translation */ |
| 157 | u16 xlate_dest_partial_csum_adjustment; |
| 158 | /* Transport layer pseudo header checksum adjustment after destination translation */ |
| 159 | |
| 160 | /* |
| 161 | * QoS information |
| 162 | */ |
| 163 | u32 priority; |
| 164 | u32 dscp; |
Ken Zhu | 37040ea | 2021-09-09 21:11:15 -0700 | [diff] [blame] | 165 | u32 mark; /* mark for outgoing packet */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 166 | |
| 167 | /* |
| 168 | * Packet transmit information. |
| 169 | */ |
| 170 | struct net_device *xmit_dev; /* Network device on which to transmit */ |
| 171 | unsigned short int xmit_dev_mtu; |
| 172 | /* Interface MTU */ |
| 173 | u16 xmit_dest_mac[ETH_ALEN / 2]; |
| 174 | /* Destination MAC address to use when forwarding */ |
| 175 | u16 xmit_src_mac[ETH_ALEN / 2]; |
| 176 | /* Source MAC address to use when forwarding */ |
| 177 | |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 178 | u8 ingress_vlan_hdr_cnt; /* Ingress active vlan headers count */ |
| 179 | u8 egress_vlan_hdr_cnt; /* Egress active vlan headers count */ |
| 180 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 181 | /* |
| 182 | * Summary stats. |
| 183 | */ |
| 184 | u64 rx_packet_count64; |
| 185 | u64 rx_byte_count64; |
Guduri Prathyusha | eb31c90 | 2021-11-10 20:18:50 +0530 | [diff] [blame] | 186 | |
| 187 | /* |
| 188 | * PPPoE information |
| 189 | */ |
| 190 | u16 pppoe_session_id; |
| 191 | u8 pppoe_remote_mac[ETH_ALEN]; |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 192 | |
| 193 | /* |
| 194 | * Size of all needed L2 headers |
| 195 | */ |
| 196 | u16 l2_hdr_size; |
Ken Zhu | 7e38d1a | 2021-11-30 17:31:46 -0800 | [diff] [blame] | 197 | |
| 198 | /* |
| 199 | * xmit device's feature |
| 200 | */ |
| 201 | netdev_features_t features; |
Parikshit Gune | d31a820 | 2022-01-05 22:15:04 +0530 | [diff] [blame] | 202 | bool sawf_valid; /* Indicates mark has valid SAWF information */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | /* |
| 206 | * Per-connection data structure. |
| 207 | */ |
| 208 | struct sfe_ipv4_connection { |
| 209 | struct sfe_ipv4_connection *next; |
| 210 | /* Pointer to the next entry in a hash chain */ |
| 211 | struct sfe_ipv4_connection *prev; |
| 212 | /* Pointer to the previous entry in a hash chain */ |
| 213 | int protocol; /* IP protocol number */ |
| 214 | __be32 src_ip; /* Src IP addr pre-translation */ |
| 215 | __be32 src_ip_xlate; /* Src IP addr post-translation */ |
| 216 | __be32 dest_ip; /* Dest IP addr pre-translation */ |
| 217 | __be32 dest_ip_xlate; /* Dest IP addr post-translation */ |
| 218 | __be16 src_port; /* Src port pre-translation */ |
| 219 | __be16 src_port_xlate; /* Src port post-translation */ |
| 220 | __be16 dest_port; /* Dest port pre-translation */ |
| 221 | __be16 dest_port_xlate; /* Dest port post-translation */ |
| 222 | struct sfe_ipv4_connection_match *original_match; |
| 223 | /* Original direction matching structure */ |
| 224 | struct net_device *original_dev; |
| 225 | /* Original direction source device */ |
| 226 | struct sfe_ipv4_connection_match *reply_match; |
| 227 | /* Reply direction matching structure */ |
| 228 | struct net_device *reply_dev; /* Reply direction source device */ |
| 229 | u64 last_sync_jiffies; /* Jiffies count for the last sync */ |
| 230 | struct sfe_ipv4_connection *all_connections_next; |
| 231 | /* Pointer to the next entry in the list of all connections */ |
| 232 | struct sfe_ipv4_connection *all_connections_prev; |
| 233 | /* Pointer to the previous entry in the list of all connections */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 234 | u32 debug_read_seq; /* sequence number for debug dump */ |
Ratheesh Kannoth | 94fc5b8 | 2021-10-20 07:45:06 +0530 | [diff] [blame] | 235 | bool removed; /* Indicates the connection is removed */ |
| 236 | struct rcu_head rcu; /* delay rcu free */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 237 | }; |
| 238 | |
| 239 | /* |
| 240 | * IPv4 connections and hash table size information. |
| 241 | */ |
| 242 | #define SFE_IPV4_CONNECTION_HASH_SHIFT 12 |
| 243 | #define SFE_IPV4_CONNECTION_HASH_SIZE (1 << SFE_IPV4_CONNECTION_HASH_SHIFT) |
| 244 | #define SFE_IPV4_CONNECTION_HASH_MASK (SFE_IPV4_CONNECTION_HASH_SIZE - 1) |
| 245 | |
| 246 | enum sfe_ipv4_exception_events { |
| 247 | SFE_IPV4_EXCEPTION_EVENT_UDP_HEADER_INCOMPLETE, |
| 248 | SFE_IPV4_EXCEPTION_EVENT_UDP_NO_CONNECTION, |
| 249 | SFE_IPV4_EXCEPTION_EVENT_UDP_IP_OPTIONS_OR_INITIAL_FRAGMENT, |
| 250 | SFE_IPV4_EXCEPTION_EVENT_UDP_SMALL_TTL, |
| 251 | SFE_IPV4_EXCEPTION_EVENT_UDP_NEEDS_FRAGMENTATION, |
| 252 | SFE_IPV4_EXCEPTION_EVENT_TCP_HEADER_INCOMPLETE, |
| 253 | SFE_IPV4_EXCEPTION_EVENT_TCP_NO_CONNECTION_SLOW_FLAGS, |
| 254 | SFE_IPV4_EXCEPTION_EVENT_TCP_NO_CONNECTION_FAST_FLAGS, |
| 255 | SFE_IPV4_EXCEPTION_EVENT_TCP_IP_OPTIONS_OR_INITIAL_FRAGMENT, |
| 256 | SFE_IPV4_EXCEPTION_EVENT_TCP_SMALL_TTL, |
| 257 | SFE_IPV4_EXCEPTION_EVENT_TCP_NEEDS_FRAGMENTATION, |
| 258 | SFE_IPV4_EXCEPTION_EVENT_TCP_FLAGS, |
| 259 | SFE_IPV4_EXCEPTION_EVENT_TCP_SEQ_EXCEEDS_RIGHT_EDGE, |
| 260 | SFE_IPV4_EXCEPTION_EVENT_TCP_SMALL_DATA_OFFS, |
| 261 | SFE_IPV4_EXCEPTION_EVENT_TCP_BAD_SACK, |
| 262 | SFE_IPV4_EXCEPTION_EVENT_TCP_BIG_DATA_OFFS, |
| 263 | SFE_IPV4_EXCEPTION_EVENT_TCP_SEQ_BEFORE_LEFT_EDGE, |
| 264 | SFE_IPV4_EXCEPTION_EVENT_TCP_ACK_EXCEEDS_RIGHT_EDGE, |
| 265 | SFE_IPV4_EXCEPTION_EVENT_TCP_ACK_BEFORE_LEFT_EDGE, |
| 266 | SFE_IPV4_EXCEPTION_EVENT_ICMP_HEADER_INCOMPLETE, |
| 267 | SFE_IPV4_EXCEPTION_EVENT_ICMP_UNHANDLED_TYPE, |
| 268 | SFE_IPV4_EXCEPTION_EVENT_ICMP_IPV4_HEADER_INCOMPLETE, |
| 269 | SFE_IPV4_EXCEPTION_EVENT_ICMP_IPV4_NON_V4, |
| 270 | SFE_IPV4_EXCEPTION_EVENT_ICMP_IPV4_IP_OPTIONS_INCOMPLETE, |
| 271 | SFE_IPV4_EXCEPTION_EVENT_ICMP_IPV4_UDP_HEADER_INCOMPLETE, |
| 272 | SFE_IPV4_EXCEPTION_EVENT_ICMP_IPV4_TCP_HEADER_INCOMPLETE, |
| 273 | SFE_IPV4_EXCEPTION_EVENT_ICMP_IPV4_UNHANDLED_PROTOCOL, |
| 274 | SFE_IPV4_EXCEPTION_EVENT_ICMP_NO_CONNECTION, |
| 275 | SFE_IPV4_EXCEPTION_EVENT_ICMP_FLUSHED_CONNECTION, |
| 276 | SFE_IPV4_EXCEPTION_EVENT_HEADER_INCOMPLETE, |
Ratheesh Kannoth | 43d64f8 | 2021-10-20 08:23:29 +0530 | [diff] [blame] | 277 | SFE_IPV4_EXCEPTION_EVENT_HEADER_CSUM_BAD, |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 278 | SFE_IPV4_EXCEPTION_EVENT_BAD_TOTAL_LENGTH, |
| 279 | SFE_IPV4_EXCEPTION_EVENT_NON_V4, |
| 280 | SFE_IPV4_EXCEPTION_EVENT_NON_INITIAL_FRAGMENT, |
| 281 | SFE_IPV4_EXCEPTION_EVENT_DATAGRAM_INCOMPLETE, |
| 282 | SFE_IPV4_EXCEPTION_EVENT_IP_OPTIONS_INCOMPLETE, |
| 283 | SFE_IPV4_EXCEPTION_EVENT_UNHANDLED_PROTOCOL, |
Guduri Prathyusha | 5f27e23 | 2022-01-06 14:39:04 +0530 | [diff] [blame] | 284 | SFE_IPV4_EXCEPTION_EVENT_NO_HEADROOM, |
Guduri Prathyusha | 647fe3e | 2021-11-22 19:17:51 +0530 | [diff] [blame] | 285 | SFE_IPV4_EXCEPTION_EVENT_INVALID_PPPOE_SESSION, |
| 286 | SFE_IPV4_EXCEPTION_EVENT_INCORRECT_PPPOE_PARSING, |
| 287 | SFE_IPV4_EXCEPTION_EVENT_PPPOE_NOT_SET_IN_CME, |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 288 | SFE_IPV4_EXCEPTION_EVENT_INGRESS_VLAN_TAG_MISMATCH, |
Ratheesh Kannoth | 5dee377 | 2022-01-18 11:27:14 +0530 | [diff] [blame] | 289 | SFE_IPV4_EXCEPTION_EVENT_INVALID_SRC_IFACE, |
Tian Yang | d98d91b | 2022-03-09 14:50:12 -0800 | [diff] [blame^] | 290 | SFE_IPV4_EXCEPTION_EVENT_TUN6RD_NO_CONNECTION, |
| 291 | SFE_IPV4_EXCEPTION_EVENT_TUN6RD_NEEDS_FRAGMENTATION, |
| 292 | SFE_IPV4_EXCEPTION_EVENT_TUN6RD_SYNC_ON_FIND, |
Nitin Shetty | e6ed5b5 | 2021-12-27 14:50:11 +0530 | [diff] [blame] | 293 | SFE_IPV4_EXCEPTION_EVENT_GRE_HEADER_INCOMPLETE, |
| 294 | SFE_IPV4_EXCEPTION_EVENT_GRE_NO_CONNECTION, |
| 295 | SFE_IPV4_EXCEPTION_EVENT_GRE_IP_OPTIONS_OR_INITIAL_FRAGMENT, |
| 296 | SFE_IPV4_EXCEPTION_EVENT_GRE_SMALL_TTL, |
| 297 | SFE_IPV4_EXCEPTION_EVENT_GRE_NEEDS_FRAGMENTATION, |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 298 | SFE_IPV4_EXCEPTION_EVENT_LAST |
| 299 | }; |
| 300 | |
| 301 | /* |
Ratheesh Kannoth | 3aeb289 | 2021-10-20 07:57:15 +0530 | [diff] [blame] | 302 | * per CPU stats |
| 303 | */ |
| 304 | struct sfe_ipv4_stats { |
| 305 | /* |
| 306 | * Stats recorded in a sync period. These stats will be added to |
| 307 | * connection_xxx64 after a sync period. |
| 308 | */ |
| 309 | u64 connection_create_requests64; |
| 310 | /* Number of IPv4 connection create requests */ |
| 311 | u64 connection_create_collisions64; |
| 312 | /* Number of IPv4 connection create requests that collided with existing hash table entries */ |
Ratheesh Kannoth | 89302a7 | 2021-10-20 08:10:37 +0530 | [diff] [blame] | 313 | u64 connection_create_failures64; |
| 314 | /* Number of IPv4 connection create requests that failed */ |
Ratheesh Kannoth | 3aeb289 | 2021-10-20 07:57:15 +0530 | [diff] [blame] | 315 | u64 connection_destroy_requests64; |
| 316 | /* Number of IPv4 connection destroy requests */ |
| 317 | u64 connection_destroy_misses64; |
| 318 | /* Number of IPv4 connection destroy requests that missed our hash table */ |
| 319 | u64 connection_match_hash_hits64; |
| 320 | /* Number of IPv4 connection match hash hits */ |
| 321 | u64 connection_match_hash_reorders64; |
| 322 | /* Number of IPv4 connection match hash reorders */ |
| 323 | u64 connection_flushes64; /* Number of IPv4 connection flushes */ |
Amitesh Anand | 63be37d | 2021-12-24 20:51:48 +0530 | [diff] [blame] | 324 | u64 packets_dropped64; /* Number of IPv4 packets dropped */ |
Ratheesh Kannoth | 3aeb289 | 2021-10-20 07:57:15 +0530 | [diff] [blame] | 325 | u64 packets_forwarded64; /* Number of IPv4 packets forwarded */ |
Ken Zhu | 7e38d1a | 2021-11-30 17:31:46 -0800 | [diff] [blame] | 326 | u64 packets_fast_xmited64; /* Number of IPv4 packets fast transmited */ |
Ratheesh Kannoth | 3aeb289 | 2021-10-20 07:57:15 +0530 | [diff] [blame] | 327 | u64 packets_not_forwarded64; /* Number of IPv4 packets not forwarded */ |
| 328 | u64 exception_events64[SFE_IPV4_EXCEPTION_EVENT_LAST]; |
Guduri Prathyusha | 034d635 | 2022-01-12 16:49:04 +0530 | [diff] [blame] | 329 | u64 pppoe_encap_packets_forwarded64; /* Number of IPv4 PPPoE encap packets forwarded */ |
| 330 | u64 pppoe_decap_packets_forwarded64; /* Number of IPv4 PPPoE decap packets forwarded */ |
| 331 | u64 pppoe_bridge_packets_forwarded64; /* Number of IPv4 PPPoE bridge packets forwarded */ |
Ratheesh Kannoth | 3aeb289 | 2021-10-20 07:57:15 +0530 | [diff] [blame] | 332 | }; |
| 333 | |
| 334 | /* |
Parikshit Gune | d31a820 | 2022-01-05 22:15:04 +0530 | [diff] [blame] | 335 | * sfe_ipv4_per_service_class_stats |
| 336 | * Per service class stats |
| 337 | */ |
| 338 | struct sfe_ipv4_per_service_class_stats { |
| 339 | u64 tx_bytes; /* Byte count */ |
| 340 | u64 tx_packets; /* Packet count */ |
| 341 | seqcount_t seq; /* seq lock for read/write protection */ |
| 342 | /* |
| 343 | * TODO : add entries to be collected later. |
| 344 | */ |
| 345 | }; |
| 346 | |
| 347 | /* |
| 348 | * sfe_ipv4_service_class_stats_db |
| 349 | * stat entries for each service class. |
| 350 | */ |
| 351 | struct sfe_ipv4_service_class_stats_db { |
| 352 | struct sfe_ipv4_per_service_class_stats psc_stats[SFE_MAX_SERVICE_CLASS_ID]; |
| 353 | /* Per service class stats */ |
| 354 | }; |
| 355 | |
| 356 | /* |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 357 | * Per-module structure. |
| 358 | */ |
| 359 | struct sfe_ipv4 { |
| 360 | spinlock_t lock; /* Lock for SMP correctness */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 361 | struct sfe_ipv4_connection *all_connections_head; |
| 362 | /* Head of the list of all connections */ |
| 363 | struct sfe_ipv4_connection *all_connections_tail; |
| 364 | /* Tail of the list of all connections */ |
| 365 | unsigned int num_connections; /* Number of connections */ |
Ken Zhu | 137722d | 2021-09-23 17:57:36 -0700 | [diff] [blame] | 366 | struct delayed_work sync_dwork; /* Work to sync the statistics */ |
| 367 | unsigned int work_cpu; /* The core to run stats sync on */ |
| 368 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 369 | sfe_sync_rule_callback_t __rcu sync_rule_callback; |
Ken Zhu | 7a43d88 | 2022-01-04 10:51:44 -0800 | [diff] [blame] | 370 | sfe_ipv4_many_sync_callback_t __rcu many_sync_callback; |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 371 | /* Callback function registered by a connection manager for stats syncing */ |
| 372 | struct sfe_ipv4_connection *conn_hash[SFE_IPV4_CONNECTION_HASH_SIZE]; |
| 373 | /* Connection hash table */ |
Ratheesh Kannoth | 94fc5b8 | 2021-10-20 07:45:06 +0530 | [diff] [blame] | 374 | |
| 375 | struct hlist_head hlist_conn_match_hash_head[SFE_IPV4_CONNECTION_HASH_SIZE]; |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 376 | /* Connection match hash table */ |
Ratheesh Kannoth | 94fc5b8 | 2021-10-20 07:45:06 +0530 | [diff] [blame] | 377 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 378 | #ifdef CONFIG_NF_FLOW_COOKIE |
| 379 | struct sfe_flow_cookie_entry sfe_flow_cookie_table[SFE_FLOW_COOKIE_SIZE]; |
| 380 | /* flow cookie table*/ |
| 381 | flow_cookie_set_func_t flow_cookie_set_func; |
| 382 | /* function used to configure flow cookie in hardware*/ |
| 383 | int flow_cookie_enable; |
| 384 | /* Enable/disable flow cookie at runtime */ |
| 385 | #endif |
Parikshit Gune | d31a820 | 2022-01-05 22:15:04 +0530 | [diff] [blame] | 386 | struct sfe_ipv4_service_class_stats_db __percpu *stats_pcpu_psc; |
| 387 | /* Database to maintain per cpu per service class statistics */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 388 | |
Ratheesh Kannoth | 3aeb289 | 2021-10-20 07:57:15 +0530 | [diff] [blame] | 389 | struct sfe_ipv4_stats __percpu *stats_pcpu; |
| 390 | /* Per CPU statistics. */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 391 | |
Ken Zhu | dc42367 | 2021-09-02 18:27:01 -0700 | [diff] [blame] | 392 | struct sfe_ipv4_connection *wc_next; /* Connection list walk pointer for stats sync */ |
| 393 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 394 | /* |
| 395 | * Control state. |
| 396 | */ |
Ratheesh Kannoth | 6307bec | 2021-11-25 08:26:39 +0530 | [diff] [blame] | 397 | struct kobject *sys_ipv4; /* sysfs linkage */ |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 398 | int debug_dev; /* Major number of the debug char device */ |
| 399 | u32 debug_read_seq; /* sequence number for debug dump */ |
| 400 | }; |
| 401 | |
| 402 | /* |
| 403 | * Enumeration of the XML output. |
| 404 | */ |
| 405 | enum sfe_ipv4_debug_xml_states { |
| 406 | SFE_IPV4_DEBUG_XML_STATE_START, |
| 407 | SFE_IPV4_DEBUG_XML_STATE_CONNECTIONS_START, |
| 408 | SFE_IPV4_DEBUG_XML_STATE_CONNECTIONS_CONNECTION, |
| 409 | SFE_IPV4_DEBUG_XML_STATE_CONNECTIONS_END, |
| 410 | SFE_IPV4_DEBUG_XML_STATE_EXCEPTIONS_START, |
| 411 | SFE_IPV4_DEBUG_XML_STATE_EXCEPTIONS_EXCEPTION, |
| 412 | SFE_IPV4_DEBUG_XML_STATE_EXCEPTIONS_END, |
| 413 | SFE_IPV4_DEBUG_XML_STATE_STATS, |
| 414 | SFE_IPV4_DEBUG_XML_STATE_END, |
| 415 | SFE_IPV4_DEBUG_XML_STATE_DONE |
| 416 | }; |
| 417 | |
| 418 | /* |
| 419 | * XML write state. |
| 420 | */ |
| 421 | struct sfe_ipv4_debug_xml_write_state { |
| 422 | enum sfe_ipv4_debug_xml_states state; |
| 423 | /* XML output file state machine state */ |
| 424 | int iter_exception; /* Next exception iterator */ |
| 425 | }; |
| 426 | |
| 427 | typedef bool (*sfe_ipv4_debug_xml_write_method_t)(struct sfe_ipv4 *si, char *buffer, char *msg, size_t *length, |
| 428 | int *total_read, struct sfe_ipv4_debug_xml_write_state *ws); |
| 429 | |
Ratheesh Kannoth | 6307bec | 2021-11-25 08:26:39 +0530 | [diff] [blame] | 430 | u16 sfe_ipv4_gen_ip_csum(struct iphdr *iph); |
Jackson Bockus | 3fafbf3 | 2022-02-13 17:15:26 -0800 | [diff] [blame] | 431 | bool sfe_ipv4_service_class_stats_get(uint8_t sid, uint64_t *bytes, uint64_t *packets); |
Parikshit Gune | d31a820 | 2022-01-05 22:15:04 +0530 | [diff] [blame] | 432 | void sfe_ipv4_service_class_stats_inc(struct sfe_ipv4 *si, uint8_t sid, uint64_t bytes); |
Ratheesh Kannoth | 6307bec | 2021-11-25 08:26:39 +0530 | [diff] [blame] | 433 | void sfe_ipv4_exception_stats_inc(struct sfe_ipv4 *si, enum sfe_ipv4_exception_events reason); |
| 434 | bool sfe_ipv4_remove_connection(struct sfe_ipv4 *si, struct sfe_ipv4_connection *c); |
| 435 | void sfe_ipv4_flush_connection(struct sfe_ipv4 *si, struct sfe_ipv4_connection *c, sfe_sync_reason_t reason); |
Ken Zhu | 88c5815 | 2021-12-09 15:12:06 -0800 | [diff] [blame] | 436 | void sfe_ipv4_sync_status(struct sfe_ipv4 *si, struct sfe_ipv4_connection *c, sfe_sync_reason_t reason); |
Ratheesh Kannoth | 6307bec | 2021-11-25 08:26:39 +0530 | [diff] [blame] | 437 | |
| 438 | struct sfe_ipv4_connection_match * |
| 439 | sfe_ipv4_find_connection_match_rcu(struct sfe_ipv4 *si, struct net_device *dev, u8 protocol, |
| 440 | __be32 src_ip, __be16 src_port, |
| 441 | __be32 dest_ip, __be16 dest_port); |
| 442 | |
Ratheesh Kannoth | 24fb1db | 2021-10-20 07:28:06 +0530 | [diff] [blame] | 443 | void sfe_ipv4_exit(void); |
| 444 | int sfe_ipv4_init(void); |
Wayne Tan | bb7f178 | 2021-12-13 11:16:04 -0800 | [diff] [blame] | 445 | |
| 446 | #endif /* __SFE_IPV4_H */ |