blob: 015dd01f8aa53ee4dbf199840d21e12617d2b90e [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * ip6/packet.h: ip6 packet format
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#ifndef included_ip6_packet_h
41#define included_ip6_packet_h
42
Dave Barach68b0fb02017-02-28 15:15:56 -050043#include <vnet/tcp/tcp_packet.h>
Pierre Pfister1dabaaf2016-04-25 14:15:15 +010044#include <vnet/ip/ip4_packet.h>
45
Dave Barachd7cb1b52016-12-09 09:52:16 -050046typedef union
47{
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 u8 as_u8[16];
49 u16 as_u16[8];
50 u32 as_u32[4];
51 u64 as_u64[2];
52 uword as_uword[16 / sizeof (uword)];
Dave Barachd7cb1b52016-12-09 09:52:16 -050053}
54ip6_address_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Damjan Mariona35cc142018-03-16 01:25:27 +010056typedef struct
57{
58 ip6_address_t addr, mask;
59} ip6_address_and_mask_t;
60
Ed Warnickecb9cada2015-12-08 15:45:58 -070061/* Packed so that the mhash key doesn't include uninitialized pad bytes */
Dave Barachd7cb1b52016-12-09 09:52:16 -050062/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070063typedef CLIB_PACKED (struct {
64 /* IP address must be first for ip_interface_address_get_address() to work */
65 ip6_address_t ip6_addr;
66 u32 fib_index;
67}) ip6_address_fib_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -050068/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
Neale Rannsd0df49f2018-08-08 01:06:40 -070070typedef enum
71{
72 IP46_TYPE_ANY,
73 IP46_TYPE_IP4,
74 IP46_TYPE_IP6
75} ip46_type_t;
76
Dave Barachd7cb1b52016-12-09 09:52:16 -050077/* *INDENT-OFF* */
Pierre Pfister1dabaaf2016-04-25 14:15:15 +010078typedef CLIB_PACKED (union {
79 struct {
80 u32 pad[3];
81 ip4_address_t ip4;
82 };
83 ip6_address_t ip6;
Eyal Baric5b13602016-11-24 19:42:43 +020084 u8 as_u8[16];
Damjan Marion1a64ab92016-04-29 14:51:57 +020085 u64 as_u64[2];
Pierre Pfister1dabaaf2016-04-25 14:15:15 +010086}) ip46_address_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -050087/* *INDENT-ON* */
Damjan Marion1a64ab92016-04-29 14:51:57 +020088#define ip46_address_is_ip4(ip46) (((ip46)->pad[0] | (ip46)->pad[1] | (ip46)->pad[2]) == 0)
89#define ip46_address_mask_ip4(ip46) ((ip46)->pad[0] = (ip46)->pad[1] = (ip46)->pad[2] = 0)
90#define ip46_address_set_ip4(ip46, ip) (ip46_address_mask_ip4(ip46), (ip46)->ip4 = (ip)[0])
91#define ip46_address_reset(ip46) ((ip46)->as_u64[0] = (ip46)->as_u64[1] = 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010092#define ip46_address_cmp(ip46_1, ip46_2) (memcmp(ip46_1, ip46_2, sizeof(*ip46_1)))
93#define ip46_address_is_zero(ip46) (((ip46)->as_u64[0] == 0) && ((ip46)->as_u64[1] == 0))
Neale Ranns3466c302017-02-16 07:45:03 -080094#define ip46_address_is_equal(a1, a2) (((a1)->as_u64[0] == (a2)->as_u64[0]) \
95 && ((a1)->as_u64[1] == (a2)->as_u64[1]))
Neale Ranns0bdd3192018-09-07 11:04:52 -070096#define ip46_address_initializer {{{ 0 }}}
97
Neale Rannsc0a93142018-09-05 15:42:26 -070098static_always_inline void
99ip46_address_copy (ip46_address_t * dst, const ip46_address_t * src)
100{
101 dst->as_u64[0] = src->as_u64[0];
102 dst->as_u64[1] = src->as_u64[1];
103}
104
Neale Ranns0bdd3192018-09-07 11:04:52 -0700105static_always_inline void
106ip46_address_set_ip6 (ip46_address_t * dst, const ip6_address_t * src)
107{
108 dst->as_u64[0] = src->as_u64[0];
109 dst->as_u64[1] = src->as_u64[1];
110}
Pierre Pfister1dabaaf2016-04-25 14:15:15 +0100111
Eyal Barie101e1f2017-03-15 08:23:42 +0200112always_inline ip46_address_t
113to_ip46 (u32 is_ipv6, u8 * buf)
Eyal Baric5b13602016-11-24 19:42:43 +0200114{
Eyal Barie101e1f2017-03-15 08:23:42 +0200115 ip46_address_t ip;
Eyal Baric5b13602016-11-24 19:42:43 +0200116 if (is_ipv6)
Eyal Barie101e1f2017-03-15 08:23:42 +0200117 ip.ip6 = *((ip6_address_t *) buf);
Eyal Baric5b13602016-11-24 19:42:43 +0200118 else
Eyal Barie101e1f2017-03-15 08:23:42 +0200119 ip46_address_set_ip4 (&ip, (ip4_address_t *) buf);
120 return ip;
Eyal Baric5b13602016-11-24 19:42:43 +0200121}
122
Eyal Barie101e1f2017-03-15 08:23:42 +0200123
Eyal Baric5b13602016-11-24 19:42:43 +0200124always_inline void
Neale Rannsd69f4392018-08-31 06:30:16 -0400125ip6_addr_fib_init (ip6_address_fib_t * addr_fib,
126 const ip6_address_t * address, u32 fib_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127{
Eyal Barie101e1f2017-03-15 08:23:42 +0200128 addr_fib->ip6_addr = *address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 addr_fib->fib_index = fib_index;
130}
131
132/* Special addresses:
133 unspecified ::/128
134 loopback ::1/128
135 global unicast 2000::/3
136 unique local unicast fc00::/7
137 link local unicast fe80::/10
138 multicast ff00::/8
139 ietf reserved everything else. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141#define foreach_ip6_multicast_address_scope \
142 _ (loopback, 0x1) \
143 _ (link_local, 0x2) \
144 _ (admin_local, 0x4) \
145 _ (site_local, 0x5) \
146 _ (organization_local, 0x8) \
147 _ (global, 0xe)
148
149#define foreach_ip6_multicast_link_local_group_id \
150 _ (all_hosts, 0x1) \
151 _ (all_routers, 0x2) \
152 _ (rip_routers, 0x9) \
153 _ (eigrp_routers, 0xa) \
154 _ (pim_routers, 0xd) \
155 _ (mldv2_routers, 0x16)
156
Dave Barachd7cb1b52016-12-09 09:52:16 -0500157typedef enum
158{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159#define _(f,n) IP6_MULTICAST_SCOPE_##f = n,
160 foreach_ip6_multicast_address_scope
161#undef _
162} ip6_multicast_address_scope_t;
163
Dave Barachd7cb1b52016-12-09 09:52:16 -0500164typedef enum
165{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166#define _(f,n) IP6_MULTICAST_GROUP_ID_##f = n,
167 foreach_ip6_multicast_link_local_group_id
168#undef _
169} ip6_multicast_link_local_group_id_t;
170
171always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400172ip6_address_is_multicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500173{
174 return a->as_u8[0] == 0xff;
175}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
Eyal Baric5b13602016-11-24 19:42:43 +0200177always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400178ip46_address_is_multicast (const ip46_address_t * a)
Eyal Baric5b13602016-11-24 19:42:43 +0200179{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500180 return ip46_address_is_ip4 (a) ? ip4_address_is_multicast (&a->ip4) :
181 ip6_address_is_multicast (&a->ip6);
Eyal Baric5b13602016-11-24 19:42:43 +0200182}
183
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184always_inline void
185ip6_set_reserved_multicast_address (ip6_address_t * a,
186 ip6_multicast_address_scope_t scope,
187 u16 id)
188{
189 a->as_u64[0] = a->as_u64[1] = 0;
190 a->as_u16[0] = clib_host_to_net_u16 (0xff00 | scope);
191 a->as_u16[7] = clib_host_to_net_u16 (id);
192}
193
194always_inline void
195ip6_set_solicited_node_multicast_address (ip6_address_t * a, u32 id)
196{
197 /* 0xff02::1:ffXX:XXXX. */
198 a->as_u64[0] = a->as_u64[1] = 0;
199 a->as_u16[0] = clib_host_to_net_u16 (0xff02);
200 a->as_u8[11] = 1;
201 ASSERT ((id >> 24) == 0);
202 id |= 0xff << 24;
203 a->as_u32[3] = clib_host_to_net_u32 (id);
204}
205
206always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500207ip6_link_local_address_from_ethernet_address (ip6_address_t * a,
Neale Rannsd69f4392018-08-31 06:30:16 -0400208 const u8 * ethernet_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209{
210 a->as_u64[0] = a->as_u64[1] = 0;
211 a->as_u16[0] = clib_host_to_net_u16 (0xfe80);
212 /* Always set locally administered bit (6). */
213 a->as_u8[0x8] = ethernet_address[0] | (1 << 6);
214 a->as_u8[0x9] = ethernet_address[1];
215 a->as_u8[0xa] = ethernet_address[2];
216 a->as_u8[0xb] = 0xff;
217 a->as_u8[0xc] = 0xfe;
218 a->as_u8[0xd] = ethernet_address[3];
219 a->as_u8[0xe] = ethernet_address[4];
220 a->as_u8[0xf] = ethernet_address[5];
221}
222
223always_inline void
224ip6_multicast_ethernet_address (u8 * ethernet_address, u32 group_id)
225{
226 ethernet_address[0] = 0x33;
227 ethernet_address[1] = 0x33;
228 ethernet_address[2] = ((group_id >> 24) & 0xff);
229 ethernet_address[3] = ((group_id >> 16) & 0xff);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500230 ethernet_address[4] = ((group_id >> 8) & 0xff);
231 ethernet_address[5] = ((group_id >> 0) & 0xff);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232}
233
234always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400235ip6_address_is_equal (const ip6_address_t * a, const ip6_address_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236{
237 int i;
238 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
239 if (a->as_uword[i] != b->as_uword[i])
240 return 0;
241 return 1;
242}
243
244always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400245ip6_address_is_equal_masked (const ip6_address_t * a,
246 const ip6_address_t * b,
247 const ip6_address_t * mask)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248{
249 int i;
250 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
251 {
252 uword a_masked, b_masked;
253 a_masked = a->as_uword[i] & mask->as_uword[i];
254 b_masked = b->as_uword[i] & mask->as_uword[i];
255
256 if (a_masked != b_masked)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500257 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 }
259 return 1;
260}
261
262always_inline void
Neale Rannsd69f4392018-08-31 06:30:16 -0400263ip6_address_mask (ip6_address_t * a, const ip6_address_t * mask)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264{
265 int i;
266 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
267 a->as_uword[i] &= mask->as_uword[i];
268}
269
270always_inline void
271ip6_address_set_zero (ip6_address_t * a)
272{
273 int i;
274 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
275 a->as_uword[i] = 0;
276}
277
278always_inline void
279ip6_address_mask_from_width (ip6_address_t * a, u32 width)
280{
281 int i, byte, bit, bitnum;
282 ASSERT (width <= 128);
Dave Barachb7b92992018-10-17 10:38:51 -0400283 clib_memset (a, 0, sizeof (a[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 for (i = 0; i < width; i++)
285 {
286 bitnum = (7 - (i & 7));
287 byte = i / 8;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500288 bit = 1 << bitnum;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289 a->as_u8[byte] |= bit;
290 }
291}
292
293always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400294ip6_address_is_zero (const ip6_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295{
296 int i;
297 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
298 if (a->as_uword[i] != 0)
299 return 0;
300 return 1;
301}
302
303/* Check for unspecified address ::0 */
304always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400305ip6_address_is_unspecified (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306{
307 return ip6_address_is_zero (a);
308}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
310/* Check for loopback address ::1 */
311always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400312ip6_address_is_loopback (const ip6_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313{
Neale Rannsd69f4392018-08-31 06:30:16 -0400314 return (a->as_u64[0] == 0 &&
315 a->as_u32[2] == 0 &&
316 a->as_u16[6] == 0 && a->as_u8[14] == 0 && a->as_u8[15] == 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317}
318
319/* Check for link local unicast fe80::/10. */
320always_inline uword
Neale Ranns53da2212018-02-24 02:11:19 -0800321ip6_address_is_link_local_unicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322{
323 return a->as_u8[0] == 0xfe && (a->as_u8[1] & 0xc0) == 0x80;
324}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
326/* Check for unique local unicast fc00::/7. */
327always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400328ip6_address_is_local_unicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500329{
330 return (a->as_u8[0] & 0xfe) == 0xfc;
331}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
Chris Lukebfd32fd2016-06-24 20:38:06 -0400333/* Check for unique global unicast 2000::/3. */
334always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400335ip6_address_is_global_unicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336{
337 return (a->as_u8[0] & 0xe0) == 0x20;
338}
Chris Lukebfd32fd2016-06-24 20:38:06 -0400339
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340/* Check for solicited node multicast 0xff02::1:ff00:0/104 */
341always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400342ip6_is_solicited_node_multicast_address (const ip6_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343{
344 return (a->as_u32[0] == clib_host_to_net_u32 (0xff020000)
345 && a->as_u32[1] == 0
346 && a->as_u32[2] == clib_host_to_net_u32 (1)
347 && a->as_u8[12] == 0xff);
348}
349
Neale Rannscd35e532018-08-31 02:51:45 -0700350always_inline u32
351ip6_address_hash_to_u32 (const ip6_address_t * a)
352{
353 return (a->as_u32[0] ^ a->as_u32[1] ^ a->as_u32[2] ^ a->as_u32[3]);
354}
355
356always_inline u64
357ip6_address_hash_to_u64 (const ip6_address_t * a)
358{
359 return (a->as_u64[0] ^ a->as_u64[1]);
360}
361
Dave Barachd7cb1b52016-12-09 09:52:16 -0500362typedef struct
363{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364 /* 4 bit version, 8 bit traffic class and 20 bit flow label. */
365 u32 ip_version_traffic_class_and_flow_label;
366
367 /* Total packet length not including this header (but including
368 any extension headers if present). */
369 u16 payload_length;
370
371 /* Protocol for next header. */
372 u8 protocol;
373
374 /* Hop limit decremented by router at each hop. */
375 u8 hop_limit;
376
377 /* Source and destination address. */
378 ip6_address_t src_address, dst_address;
379} ip6_header_t;
380
Ole Troan5c749732017-03-13 13:39:52 +0100381always_inline u8
Neale Ranns31ed7442018-02-23 05:29:09 -0800382ip6_traffic_class (const ip6_header_t * i)
Ole Troan5c749732017-03-13 13:39:52 +0100383{
384 return (i->ip_version_traffic_class_and_flow_label & 0x0FF00000) >> 20;
385}
386
Neale Ranns31ed7442018-02-23 05:29:09 -0800387static_always_inline u8
388ip6_traffic_class_network_order (const ip6_header_t * ip6)
389{
390 return (clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label)
391 & 0x0ff00000) >> 20;
392}
393
394static_always_inline void
395ip6_set_traffic_class_network_order (ip6_header_t * ip6, u8 dscp)
396{
397 u32 tmp =
398 clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label);
Neale Ranns039cbfe2018-02-27 03:45:38 -0800399 tmp &= 0xf00fffff;
Neale Ranns31ed7442018-02-23 05:29:09 -0800400 tmp |= (dscp << 20);
401 ip6->ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (tmp);
402}
403
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404always_inline void *
405ip6_next_header (ip6_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500406{
407 return (void *) (i + 1);
408}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409
410always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500411ip6_copy_header (ip6_header_t * dst, const ip6_header_t * src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100412{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500413 dst->ip_version_traffic_class_and_flow_label =
414 src->ip_version_traffic_class_and_flow_label;
415 dst->payload_length = src->payload_length;
416 dst->protocol = src->protocol;
417 dst->hop_limit = src->hop_limit;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100418
Dave Barachd7cb1b52016-12-09 09:52:16 -0500419 dst->src_address.as_uword[0] = src->src_address.as_uword[0];
420 dst->src_address.as_uword[1] = src->src_address.as_uword[1];
421 dst->dst_address.as_uword[0] = src->dst_address.as_uword[0];
422 dst->dst_address.as_uword[1] = src->dst_address.as_uword[1];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100423}
424
425always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426ip6_tcp_reply_x1 (ip6_header_t * ip0, tcp_header_t * tcp0)
427{
428 {
429 ip6_address_t src0, dst0;
430
431 src0 = ip0->src_address;
432 dst0 = ip0->dst_address;
433 ip0->src_address = dst0;
434 ip0->dst_address = src0;
435 }
436
437 {
438 u16 src0, dst0;
439
Dave Barach68b0fb02017-02-28 15:15:56 -0500440 src0 = tcp0->src;
441 dst0 = tcp0->dst;
442 tcp0->src = dst0;
443 tcp0->dst = src0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444 }
445}
446
447always_inline void
448ip6_tcp_reply_x2 (ip6_header_t * ip0, ip6_header_t * ip1,
449 tcp_header_t * tcp0, tcp_header_t * tcp1)
450{
451 {
452 ip6_address_t src0, dst0, src1, dst1;
453
454 src0 = ip0->src_address;
455 src1 = ip1->src_address;
456 dst0 = ip0->dst_address;
457 dst1 = ip1->dst_address;
458 ip0->src_address = dst0;
459 ip1->src_address = dst1;
460 ip0->dst_address = src0;
461 ip1->dst_address = src1;
462 }
463
464 {
465 u16 src0, dst0, src1, dst1;
466
Dave Barach68b0fb02017-02-28 15:15:56 -0500467 src0 = tcp0->src;
468 src1 = tcp1->src;
469 dst0 = tcp0->dst;
470 dst1 = tcp1->dst;
471 tcp0->src = dst0;
472 tcp1->src = dst1;
473 tcp0->dst = src0;
474 tcp1->dst = src1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475 }
476}
477
478
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480typedef CLIB_PACKED (struct {
481 u8 data;
482}) ip6_pad1_option_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500483/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486typedef CLIB_PACKED (struct {
487 u8 type;
488 u8 len;
489 u8 data[0];
490}) ip6_padN_option_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500491/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494typedef CLIB_PACKED (struct {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500495#define IP6_MLDP_ALERT_TYPE 0x5
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496 u8 type;
497 u8 len;
498 u16 value;
499}) ip6_router_alert_option_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500500/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
Dave Barachd7cb1b52016-12-09 09:52:16 -0500502/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503typedef CLIB_PACKED (struct {
504 u8 next_hdr;
505 /* Length of this header plus option data in 8 byte units. */
506 u8 n_data_u64s;
Shwethab78292e2016-09-13 11:51:00 +0100507}) ip6_ext_header_t;
508
509always_inline u8 ip6_ext_hdr(u8 nexthdr)
510{
511 /*
512 * find out if nexthdr is an extension header or a protocol
513 */
514 return (nexthdr == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) ||
Shwethab78292e2016-09-13 11:51:00 +0100515 (nexthdr == IP_PROTOCOL_IPV6_FRAGMENTATION) ||
516 (nexthdr == IP_PROTOCOL_IPSEC_AH) ||
517 (nexthdr == IP_PROTOCOL_IPV6_ROUTE) ||
518 (nexthdr == IP_PROTOCOL_IP6_DESTINATION_OPTIONS);
519}
520
Pablo Camarillofb380952016-12-07 18:34:18 +0100521#define ip6_ext_header_len(p) ((((ip6_ext_header_t *)(p))->n_data_u64s+1) << 3)
522#define ip6_ext_authhdr_len(p) ((((ip6_ext_header_t *)(p))->n_data_u64s+2) << 2)
Shwethab78292e2016-09-13 11:51:00 +0100523
524always_inline void *
525ip6_ext_next_header (ip6_ext_header_t *ext_hdr )
526{ return (void *)((u8 *) ext_hdr + ip6_ext_header_len(ext_hdr)); }
527
Pablo Camarillofb380952016-12-07 18:34:18 +0100528/*
529 * Macro to find the IPv6 ext header of type t
530 * I is the IPv6 header
531 * P is the previous IPv6 ext header (NULL if none)
532 * M is the matched IPv6 ext header of type t
533 */
534#define ip6_ext_header_find_t(i, p, m, t) \
535if ((i)->protocol == t) \
536{ \
537 (m) = (void *)((i)+1); \
538 (p) = NULL; \
539} \
540else \
541{ \
542 (m) = NULL; \
543 (p) = (void *)((i)+1); \
544 while (ip6_ext_hdr((p)->next_hdr) && \
545 ((ip6_ext_header_t *)(p))->next_hdr != (t)) \
546 { \
547 (p) = ip6_ext_next_header((p)); \
548 } \
shwethabe146f132017-03-09 16:58:26 +0000549 if ( ((p)->next_hdr) == (t)) \
Pablo Camarillofb380952016-12-07 18:34:18 +0100550 { \
551 (m) = (void *)(ip6_ext_next_header((p))); \
552 } \
553}
554
555
Shwethab78292e2016-09-13 11:51:00 +0100556typedef CLIB_PACKED (struct {
557 u8 next_hdr;
558 /* Length of this header plus option data in 8 byte units. */
559 u8 n_data_u64s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 u8 data[0];
561}) ip6_hop_by_hop_ext_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500562/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563
Dave Barachd7cb1b52016-12-09 09:52:16 -0500564/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565typedef CLIB_PACKED (struct {
566 u8 next_hdr;
567 u8 rsv;
568 u16 fragment_offset_and_more;
569 u32 identification;
570}) ip6_frag_hdr_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500571/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
573#define ip6_frag_hdr_offset(hdr) \
574 (clib_net_to_host_u16((hdr)->fragment_offset_and_more) >> 3)
575
Klement Sekera75e7d132017-09-20 08:26:30 +0200576#define ip6_frag_hdr_offset_bytes(hdr) \
577 (8 * ip6_frag_hdr_offset(hdr))
578
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579#define ip6_frag_hdr_more(hdr) \
580 (clib_net_to_host_u16((hdr)->fragment_offset_and_more) & 0x1)
581
582#define ip6_frag_hdr_offset_and_more(offset, more) \
583 clib_host_to_net_u16(((offset) << 3) + !!(more))
584
585#endif /* included_ip6_packet_h */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500586
587/*
588 * fd.io coding-style-patch-verification: ON
589 *
590 * Local Variables:
591 * eval: (c-set-style "gnu")
592 * End:
593 */