1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
9 #include "ip_frag_common.h"
12 * Reassemble fragments into one packet.
15 ipv4_frag_reassemble(struct ip_frag_pkt *fp)
17 struct rte_ipv4_hdr *ip_hdr;
18 struct rte_mbuf *m, *prev;
19 uint32_t i, n, ofs, first_len;
20 uint32_t curr_idx = 0;
22 first_len = fp->frags[IP_FIRST_FRAG_IDX].len;
25 /*start from the last fragment. */
26 m = fp->frags[IP_LAST_FRAG_IDX].mb;
27 ofs = fp->frags[IP_LAST_FRAG_IDX].ofs;
28 curr_idx = IP_LAST_FRAG_IDX;
30 while (ofs != first_len) {
34 for (i = n; i != IP_FIRST_FRAG_IDX && ofs != first_len; i--) {
36 /* previous fragment found. */
37 if(fp->frags[i].ofs + fp->frags[i].len == ofs) {
39 RTE_ASSERT(curr_idx != i);
41 /* adjust start of the last fragment data. */
43 (uint16_t)(m->l2_len + m->l3_len));
44 rte_pktmbuf_chain(fp->frags[i].mb, m);
46 /* this mbuf should not be accessed directly */
47 fp->frags[curr_idx].mb = NULL;
50 /* update our last fragment and offset. */
52 ofs = fp->frags[i].ofs;
56 /* error - hole in the packet. */
62 /* chain with the first fragment. */
63 rte_pktmbuf_adj(m, (uint16_t)(m->l2_len + m->l3_len));
64 rte_pktmbuf_chain(fp->frags[IP_FIRST_FRAG_IDX].mb, m);
65 fp->frags[curr_idx].mb = NULL;
66 m = fp->frags[IP_FIRST_FRAG_IDX].mb;
67 fp->frags[IP_FIRST_FRAG_IDX].mb = NULL;
69 /* update ipv4 header for the reassembled packet */
70 ip_hdr = rte_pktmbuf_mtod_offset(m, struct rte_ipv4_hdr *, m->l2_len);
72 ip_hdr->total_length = rte_cpu_to_be_16((uint16_t)(fp->total_size +
74 ip_hdr->fragment_offset = (uint16_t)(ip_hdr->fragment_offset &
75 rte_cpu_to_be_16(RTE_IPV4_HDR_DF_FLAG));
76 ip_hdr->hdr_checksum = 0;
82 * Process new mbuf with fragment of IPV4 packet.
83 * Incoming mbuf should have it's l2_len/l3_len fields setuped correclty.
85 * Table where to lookup/add the fragmented packet.
87 * Incoming mbuf with IPV4 fragment.
89 * Fragment arrival timestamp.
91 * Pointer to the IPV4 header inside the fragment.
93 * Pointer to mbuf for reassembled packet, or NULL if:
94 * - an error occurred.
95 * - not all fragments of the packet are collected yet.
98 rte_ipv4_frag_reassemble_packet(struct rte_ip_frag_tbl *tbl,
99 struct rte_ip_frag_death_row *dr, struct rte_mbuf *mb, uint64_t tms,
100 struct rte_ipv4_hdr *ip_hdr)
102 struct ip_frag_pkt *fp;
103 struct ip_frag_key key;
104 const unaligned_uint64_t *psd;
105 uint16_t flag_offset, ip_ofs, ip_flag;
109 flag_offset = rte_be_to_cpu_16(ip_hdr->fragment_offset);
110 ip_ofs = (uint16_t)(flag_offset & RTE_IPV4_HDR_OFFSET_MASK);
111 ip_flag = (uint16_t)(flag_offset & RTE_IPV4_HDR_MF_FLAG);
113 psd = (unaligned_uint64_t *)&ip_hdr->src_addr;
114 /* use first 8 bytes only */
115 key.src_dst[0] = psd[0];
116 key.id = ip_hdr->packet_id;
117 key.key_len = IPV4_KEYLEN;
119 ip_ofs *= RTE_IPV4_HDR_OFFSET_UNITS;
120 ip_len = rte_be_to_cpu_16(ip_hdr->total_length) - mb->l3_len;
121 trim = mb->pkt_len - (ip_len + mb->l3_len + mb->l2_len);
123 IP_FRAG_LOG(DEBUG, "%s:%d:\n"
124 "mbuf: %p, tms: %" PRIu64 ", key: <%" PRIx64 ", %#x>"
125 "ofs: %u, len: %d, padding: %d, flags: %#x\n"
126 "tbl: %p, max_cycles: %" PRIu64 ", entry_mask: %#x, "
127 "max_entries: %u, use_entries: %u\n\n",
129 mb, tms, key.src_dst[0], key.id, ip_ofs, ip_len, trim, ip_flag,
130 tbl, tbl->max_cycles, tbl->entry_mask, tbl->max_entries,
133 /* check that fragment length is greater then zero. */
135 IP_FRAG_MBUF2DR(dr, mb);
139 if (unlikely(trim > 0))
140 rte_pktmbuf_trim(mb, trim);
142 /* try to find/add entry into the fragment's table. */
143 if ((fp = ip_frag_find(tbl, dr, &key, tms)) == NULL) {
144 IP_FRAG_MBUF2DR(dr, mb);
148 IP_FRAG_LOG(DEBUG, "%s:%d:\n"
149 "tbl: %p, max_entries: %u, use_entries: %u\n"
150 "ipv4_frag_pkt: %p, key: <%" PRIx64 ", %#x>, start: %" PRIu64
151 ", total_size: %u, frag_size: %u, last_idx: %u\n\n",
153 tbl, tbl->max_entries, tbl->use_entries,
154 fp, fp->key.src_dst[0], fp->key.id, fp->start,
155 fp->total_size, fp->frag_size, fp->last_idx);
158 /* process the fragmented packet. */
159 mb = ip_frag_process(fp, dr, mb, ip_ofs, ip_len, ip_flag);
160 ip_frag_inuse(tbl, fp);
162 IP_FRAG_LOG(DEBUG, "%s:%d:\n"
164 "tbl: %p, max_entries: %u, use_entries: %u\n"
165 "ipv4_frag_pkt: %p, key: <%" PRIx64 ", %#x>, start: %" PRIu64
166 ", total_size: %u, frag_size: %u, last_idx: %u\n\n",
167 __func__, __LINE__, mb,
168 tbl, tbl->max_entries, tbl->use_entries,
169 fp, fp->key.src_dst[0], fp->key.id, fp->start,
170 fp->total_size, fp->frag_size, fp->last_idx);