/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2023 Intel Corporation */ #ifndef _GRO_TCP6_H_ #define _GRO_TCP6_H_ #include "gro_tcp.h" #define GRO_TCP6_TBL_MAX_ITEM_NUM (1024UL * 1024UL) /* Header fields representing a TCP/IPv6 flow */ struct tcp6_flow_key { struct cmn_tcp_key cmn_key; uint8_t src_addr[16]; uint8_t dst_addr[16]; rte_be32_t vtc_flow; }; struct gro_tcp6_flow { struct tcp6_flow_key key; /* * The index of the first packet in the flow. * INVALID_ARRAY_INDEX indicates an empty flow. */ uint32_t start_index; }; /* * TCP/IPv6 reassembly table structure. */ struct gro_tcp6_tbl { /* item array */ struct gro_tcp_item *items; /* flow array */ struct gro_tcp6_flow *flows; /* current item number */ uint32_t item_num; /* current flow num */ uint32_t flow_num; /* item array size */ uint32_t max_item_num; /* flow array size */ uint32_t max_flow_num; }; /** * This function creates a TCP/IPv6 reassembly table. * * @param socket_id * Socket index for allocating the TCP/IPv6 reassemble table * @param max_flow_num * The maximum number of flows in the TCP/IPv6 GRO table * @param max_item_per_flow * The maximum number of packets per flow * * @return * - Return the table pointer on success. * - Return NULL on failure. */ void *gro_tcp6_tbl_create(uint16_t socket_id, uint16_t max_flow_num, uint16_t max_item_per_flow); /** * This function destroys a TCP/IPv6 reassembly table. * * @param tbl * Pointer pointing to the TCP/IPv6 reassembly table. */ void gro_tcp6_tbl_destroy(void *tbl); /** * This function merges a TCP/IPv6 packet. It doesn't process the packet, * which has SYN, FIN, RST, PSH, CWR, ECE or URG set, or doesn't have * payload. * * This function doesn't check if the packet has correct checksums and * doesn't re-calculate checksums for the merged packet. Additionally, * it assumes the packets are complete (i.e., MF==0 && frag_off==0), * when IP fragmentation is possible (i.e., DF==0). It returns the * packet, if the packet has invalid parameters (e.g. SYN bit is set) * or there is no available space in the table. * * @param pkt * Packet to reassemble * @param tbl * Pointer pointing to the TCP/IPv6 reassembly table * @start_time * The time when the packet is inserted into the table * * @return * - Return a positive value if the packet is merged. * - Return zero if the packet isn't merged but stored in the table. * - Return a negative value for invalid parameters or no available * space in the table. */ int32_t gro_tcp6_reassemble(struct rte_mbuf *pkt, struct gro_tcp6_tbl *tbl, uint64_t start_time); /** * This function flushes timeout packets in a TCP/IPv6 reassembly table, * and without updating checksums. * * @param tbl * TCP/IPv6 reassembly table pointer * @param flush_timestamp * Flush packets which are inserted into the table before or at the * flush_timestamp. * @param out * Pointer array used to keep flushed packets * @param nb_out * The element number in 'out'. It also determines the maximum number of * packets that can be flushed finally. * * @return * The number of flushed packets */ uint16_t gro_tcp6_tbl_timeout_flush(struct gro_tcp6_tbl *tbl, uint64_t flush_timestamp, struct rte_mbuf **out, uint16_t nb_out); /** * This function returns the number of the packets in a TCP/IPv6 * reassembly table. * * @param tbl * TCP/IPv6 reassembly table pointer * * @return * The number of packets in the table */ uint32_t gro_tcp6_tbl_pkt_count(void *tbl); /* * Check if two TCP/IPv6 packets belong to the same flow. */ static inline int is_same_tcp6_flow(struct tcp6_flow_key *k1, struct tcp6_flow_key *k2) { rte_be32_t vtc_flow_diff; if (memcmp(&k1->src_addr, &k2->src_addr, 16)) return 0; if (memcmp(&k1->dst_addr, &k2->dst_addr, 16)) return 0; /* * IP version (4) Traffic Class (8) Flow Label (20) * All fields except Traffic class should be same */ vtc_flow_diff = (k1->vtc_flow ^ k2->vtc_flow); if (vtc_flow_diff & htonl(0xF00FFFFF)) return 0; return is_same_common_tcp_key(&k1->cmn_key, &k2->cmn_key); } #endif