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