21a5ef5d35291fce85f11d23cf5735f4ab0ff0a9
[deb_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(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         uint32_t curr_idx = 0;
70
71         first_len = fp->frags[IP_FIRST_FRAG_IDX].len;
72         n = fp->last_idx - 1;
73
74         /*start from the last fragment. */
75         m = fp->frags[IP_LAST_FRAG_IDX].mb;
76         ofs = fp->frags[IP_LAST_FRAG_IDX].ofs;
77         last_len = fp->frags[IP_LAST_FRAG_IDX].len;
78         curr_idx = IP_LAST_FRAG_IDX;
79
80         payload_len = ofs + last_len;
81
82         while (ofs != first_len) {
83
84                 prev = m;
85
86                 for (i = n; i != IP_FIRST_FRAG_IDX && ofs != first_len; i--) {
87
88                         /* previous fragment found. */
89                         if (fp->frags[i].ofs + fp->frags[i].len == ofs) {
90
91                                 /* adjust start of the last fragment data. */
92                                 rte_pktmbuf_adj(m, (uint16_t)(m->l2_len + m->l3_len));
93                                 rte_pktmbuf_chain(fp->frags[i].mb, m);
94
95                                 /* this mbuf should not be accessed directly */
96                                 fp->frags[curr_idx].mb = NULL;
97                                 curr_idx = i;
98
99                                 /* update our last fragment and offset. */
100                                 m = fp->frags[i].mb;
101                                 ofs = fp->frags[i].ofs;
102                         }
103                 }
104
105                 /* error - hole in the packet. */
106                 if (m == prev) {
107                         return NULL;
108                 }
109         }
110
111         /* chain with the first fragment. */
112         rte_pktmbuf_adj(m, (uint16_t)(m->l2_len + m->l3_len));
113         rte_pktmbuf_chain(fp->frags[IP_FIRST_FRAG_IDX].mb, m);
114         m = fp->frags[IP_FIRST_FRAG_IDX].mb;
115
116         /* update mbuf fields for reassembled packet. */
117         m->ol_flags |= PKT_TX_IP_CKSUM;
118
119         /* update ipv6 header for the reassembled datagram */
120         ip_hdr = rte_pktmbuf_mtod_offset(m, struct ipv6_hdr *, m->l2_len);
121
122         ip_hdr->payload_len = rte_cpu_to_be_16(payload_len);
123
124         /*
125          * remove fragmentation header. note that per RFC2460, we need to update
126          * the last non-fragmentable header with the "next header" field to contain
127          * type of the first fragmentable header, but we currently don't support
128          * other headers, so we assume there are no other headers and thus update
129          * the main IPv6 header instead.
130          */
131         move_len = m->l2_len + m->l3_len - sizeof(*frag_hdr);
132         frag_hdr = (struct ipv6_extension_fragment *) (ip_hdr + 1);
133         ip_hdr->proto = frag_hdr->next_header;
134
135         ip_frag_memmove(rte_pktmbuf_mtod_offset(m, char *, sizeof(*frag_hdr)),
136                         rte_pktmbuf_mtod(m, char*), move_len);
137
138         rte_pktmbuf_adj(m, sizeof(*frag_hdr));
139
140         return m;
141 }
142
143 /*
144  * Process new mbuf with fragment of IPV6 datagram.
145  * Incoming mbuf should have its l2_len/l3_len fields setup correctly.
146  * @param tbl
147  *   Table where to lookup/add the fragmented packet.
148  * @param mb
149  *   Incoming mbuf with IPV6 fragment.
150  * @param tms
151  *   Fragment arrival timestamp.
152  * @param ip_hdr
153  *   Pointer to the IPV6 header.
154  * @param frag_hdr
155  *   Pointer to the IPV6 fragment extension header.
156  * @return
157  *   Pointer to mbuf for reassembled packet, or NULL if:
158  *   - an error occured.
159  *   - not all fragments of the packet are collected yet.
160  */
161 #define MORE_FRAGS(x) (((x) & 0x100) >> 8)
162 #define FRAG_OFFSET(x) (rte_cpu_to_be_16(x) >> 3)
163 struct rte_mbuf *
164 rte_ipv6_frag_reassemble_packet(struct rte_ip_frag_tbl *tbl,
165                 struct rte_ip_frag_death_row *dr, struct rte_mbuf *mb, uint64_t tms,
166                 struct ipv6_hdr *ip_hdr, struct ipv6_extension_fragment *frag_hdr)
167 {
168         struct ip_frag_pkt *fp;
169         struct ip_frag_key key;
170         uint16_t ip_len, ip_ofs;
171
172         rte_memcpy(&key.src_dst[0], ip_hdr->src_addr, 16);
173         rte_memcpy(&key.src_dst[2], ip_hdr->dst_addr, 16);
174
175         key.id = frag_hdr->id;
176         key.key_len = IPV6_KEYLEN;
177
178         ip_ofs = FRAG_OFFSET(frag_hdr->frag_data) * 8;
179
180         /*
181          * as per RFC2460, payload length contains all extension headers as well.
182          * since we don't support anything but frag headers, this is what we remove
183          * from the payload len.
184          */
185         ip_len = rte_be_to_cpu_16(ip_hdr->payload_len) - sizeof(*frag_hdr);
186
187         IP_FRAG_LOG(DEBUG, "%s:%d:\n"
188                 "mbuf: %p, tms: %" PRIu64
189                 ", key: <" IPv6_KEY_BYTES_FMT ", %#x>, ofs: %u, len: %u, flags: %#x\n"
190                 "tbl: %p, max_cycles: %" PRIu64 ", entry_mask: %#x, "
191                 "max_entries: %u, use_entries: %u\n\n",
192                 __func__, __LINE__,
193                 mb, tms, IPv6_KEY_BYTES(key.src_dst), key.id, ip_ofs, ip_len,
194                 RTE_IPV6_GET_MF(frag_hdr->frag_data),
195                 tbl, tbl->max_cycles, tbl->entry_mask, tbl->max_entries,
196                 tbl->use_entries);
197
198         /* try to find/add entry into the fragment's table. */
199         fp = ip_frag_find(tbl, dr, &key, tms);
200         if (fp == NULL) {
201                 IP_FRAG_MBUF2DR(dr, mb);
202                 return NULL;
203         }
204
205         IP_FRAG_LOG(DEBUG, "%s:%d:\n"
206                 "tbl: %p, max_entries: %u, use_entries: %u\n"
207                 "ipv6_frag_pkt: %p, key: <" IPv6_KEY_BYTES_FMT ", %#x>, start: %" PRIu64
208                 ", total_size: %u, frag_size: %u, last_idx: %u\n\n",
209                 __func__, __LINE__,
210                 tbl, tbl->max_entries, tbl->use_entries,
211                 fp, IPv6_KEY_BYTES(fp->key.src_dst), fp->key.id, fp->start,
212                 fp->total_size, fp->frag_size, fp->last_idx);
213
214
215         /* process the fragmented packet. */
216         mb = ip_frag_process(fp, dr, mb, ip_ofs, ip_len,
217                         MORE_FRAGS(frag_hdr->frag_data));
218         ip_frag_inuse(tbl, fp);
219
220         IP_FRAG_LOG(DEBUG, "%s:%d:\n"
221                 "mbuf: %p\n"
222                 "tbl: %p, max_entries: %u, use_entries: %u\n"
223                 "ipv6_frag_pkt: %p, key: <" IPv6_KEY_BYTES_FMT ", %#x>, start: %" PRIu64
224                 ", total_size: %u, frag_size: %u, last_idx: %u\n\n",
225                 __func__, __LINE__, mb,
226                 tbl, tbl->max_entries, tbl->use_entries,
227                 fp, IPv6_KEY_BYTES(fp->key.src_dst), fp->key.id, fp->start,
228                 fp->total_size, fp->frag_size, fp->last_idx);
229
230         return mb;
231 }