mbuf: remove the rte_pktmbuf structure
[dpdk.git] / lib / librte_ip_frag / rte_ipv6_reassembly.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stddef.h>
35
36 #include <rte_memcpy.h>
37
38 #include "ip_frag_common.h"
39
40 /**
41  * @file
42  * IPv6 reassemble
43  *
44  * Implementation of IPv6 reassembly.
45  *
46  */
47
48 static inline void
49 ip_frag_memmove(char *dst, char *src, int len)
50 {
51         int i;
52
53         /* go backwards to make sure we don't overwrite anything important */
54         for (i = len - 1; i >= 0; i--)
55                 dst[i] = src[i];
56 }
57
58 /*
59  * Reassemble fragments into one packet.
60  */
61 struct rte_mbuf *
62 ipv6_frag_reassemble(const struct ip_frag_pkt *fp)
63 {
64         struct ipv6_hdr *ip_hdr;
65         struct ipv6_extension_fragment *frag_hdr;
66         struct rte_mbuf *m, *prev;
67         uint32_t i, n, ofs, first_len;
68         uint32_t last_len, move_len, payload_len;
69
70         first_len = fp->frags[IP_FIRST_FRAG_IDX].len;
71         n = fp->last_idx - 1;
72
73         /*start from the last fragment. */
74         m = fp->frags[IP_LAST_FRAG_IDX].mb;
75         ofs = fp->frags[IP_LAST_FRAG_IDX].ofs;
76         last_len = fp->frags[IP_LAST_FRAG_IDX].len;
77
78         payload_len = ofs + last_len;
79
80         while (ofs != first_len) {
81
82                 prev = m;
83
84                 for (i = n; i != IP_FIRST_FRAG_IDX && ofs != first_len; i--) {
85
86                         /* previous fragment found. */
87                         if (fp->frags[i].ofs + fp->frags[i].len == ofs) {
88
89                                 ip_frag_chain(fp->frags[i].mb, m);
90
91                                 /* update our last fragment and offset. */
92                                 m = fp->frags[i].mb;
93                                 ofs = fp->frags[i].ofs;
94                         }
95                 }
96
97                 /* error - hole in the packet. */
98                 if (m == prev) {
99                         return NULL;
100                 }
101         }
102
103         /* chain with the first fragment. */
104         ip_frag_chain(fp->frags[IP_FIRST_FRAG_IDX].mb, m);
105         m = fp->frags[IP_FIRST_FRAG_IDX].mb;
106
107         /* update mbuf fields for reassembled packet. */
108         m->ol_flags |= PKT_TX_IP_CKSUM;
109
110         /* update ipv6 header for the reassembled datagram */
111         ip_hdr = (struct ipv6_hdr *) (rte_pktmbuf_mtod(m, uint8_t *) +
112                                                                   m->vlan_macip.f.l2_len);
113
114         ip_hdr->payload_len = rte_cpu_to_be_16(payload_len);
115
116         /*
117          * remove fragmentation header. note that per RFC2460, we need to update
118          * the last non-fragmentable header with the "next header" field to contain
119          * type of the first fragmentable header, but we currently don't support
120          * other headers, so we assume there are no other headers and thus update
121          * the main IPv6 header instead.
122          */
123         move_len = m->vlan_macip.f.l2_len + m->vlan_macip.f.l3_len -
124                         sizeof(*frag_hdr);
125         frag_hdr = (struct ipv6_extension_fragment *) (ip_hdr + 1);
126         ip_hdr->proto = frag_hdr->next_header;
127
128         ip_frag_memmove(rte_pktmbuf_mtod(m, char*) + sizeof(*frag_hdr),
129                         rte_pktmbuf_mtod(m, char*), move_len);
130
131         rte_pktmbuf_adj(m, sizeof(*frag_hdr));
132
133         return m;
134 }
135
136 /*
137  * Process new mbuf with fragment of IPV6 datagram.
138  * Incoming mbuf should have its l2_len/l3_len fields setup correctly.
139  * @param tbl
140  *   Table where to lookup/add the fragmented packet.
141  * @param mb
142  *   Incoming mbuf with IPV6 fragment.
143  * @param tms
144  *   Fragment arrival timestamp.
145  * @param ip_hdr
146  *   Pointer to the IPV6 header.
147  * @param frag_hdr
148  *   Pointer to the IPV6 fragment extension header.
149  * @return
150  *   Pointer to mbuf for reassembled packet, or NULL if:
151  *   - an error occured.
152  *   - not all fragments of the packet are collected yet.
153  */
154 #define MORE_FRAGS(x) (((x) & 0x100) >> 8)
155 #define FRAG_OFFSET(x) (rte_cpu_to_be_16(x) >> 3)
156 struct rte_mbuf *
157 rte_ipv6_frag_reassemble_packet(struct rte_ip_frag_tbl *tbl,
158                 struct rte_ip_frag_death_row *dr, struct rte_mbuf *mb, uint64_t tms,
159                 struct ipv6_hdr *ip_hdr, struct ipv6_extension_fragment *frag_hdr)
160 {
161         struct ip_frag_pkt *fp;
162         struct ip_frag_key key;
163         uint16_t ip_len, ip_ofs;
164
165         rte_memcpy(&key.src_dst[0], ip_hdr->src_addr, 16);
166         rte_memcpy(&key.src_dst[2], ip_hdr->dst_addr, 16);
167
168         key.id = frag_hdr->id;
169         key.key_len = IPV6_KEYLEN;
170
171         ip_ofs = FRAG_OFFSET(frag_hdr->frag_data) * 8;
172
173         /*
174          * as per RFC2460, payload length contains all extension headers as well.
175          * since we don't support anything but frag headers, this is what we remove
176          * from the payload len.
177          */
178         ip_len = rte_be_to_cpu_16(ip_hdr->payload_len) - sizeof(*frag_hdr);
179
180         IP_FRAG_LOG(DEBUG, "%s:%d:\n"
181                 "mbuf: %p, tms: %" PRIu64
182                 ", key: <" IPv6_KEY_BYTES_FMT ", %#x>, ofs: %u, len: %u, flags: %#x\n"
183                 "tbl: %p, max_cycles: %" PRIu64 ", entry_mask: %#x, "
184                 "max_entries: %u, use_entries: %u\n\n",
185                 __func__, __LINE__,
186                 mb, tms, IPv6_KEY_BYTES(key.src_dst), key.id, ip_ofs, ip_len, frag_hdr->more_frags,
187                 tbl, tbl->max_cycles, tbl->entry_mask, tbl->max_entries,
188                 tbl->use_entries);
189
190         /* try to find/add entry into the fragment's table. */
191         fp = ip_frag_find(tbl, dr, &key, tms);
192         if (fp == NULL) {
193                 IP_FRAG_MBUF2DR(dr, mb);
194                 return NULL;
195         }
196
197         IP_FRAG_LOG(DEBUG, "%s:%d:\n"
198                 "tbl: %p, max_entries: %u, use_entries: %u\n"
199                 "ipv6_frag_pkt: %p, key: <" IPv6_KEY_BYTES_FMT ", %#x>, start: %" PRIu64
200                 ", total_size: %u, frag_size: %u, last_idx: %u\n\n",
201                 __func__, __LINE__,
202                 tbl, tbl->max_entries, tbl->use_entries,
203                 fp, IPv6_KEY_BYTES(fp->key.src_dst), fp->key.id, fp->start,
204                 fp->total_size, fp->frag_size, fp->last_idx);
205
206
207         /* process the fragmented packet. */
208         mb = ip_frag_process(fp, dr, mb, ip_ofs, ip_len,
209                         MORE_FRAGS(frag_hdr->frag_data));
210         ip_frag_inuse(tbl, fp);
211
212         IP_FRAG_LOG(DEBUG, "%s:%d:\n"
213                 "mbuf: %p\n"
214                 "tbl: %p, max_entries: %u, use_entries: %u\n"
215                 "ipv6_frag_pkt: %p, key: <" IPv6_KEY_BYTES_FMT ", %#x>, start: %" PRIu64
216                 ", total_size: %u, frag_size: %u, last_idx: %u\n\n",
217                 __func__, __LINE__, mb,
218                 tbl, tbl->max_entries, tbl->use_entries,
219                 fp, IPv6_KEY_BYTES(fp->key.src_dst), fp->key.id, fp->start,
220                 fp->total_size, fp->frag_size, fp->last_idx);
221
222         return mb;
223 }