blob: 1be2ceae5a108b39db80214185a9a756df645e9b [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];
Neale Ranns3ec09e92020-02-24 13:32:30 +000052 u64x2 as_u128;
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 uword as_uword[16 / sizeof (uword)];
Dave Barachd7cb1b52016-12-09 09:52:16 -050054}
Neale Ranns3ec09e92020-02-24 13:32:30 +000055__clib_packed ip6_address_t;
56
57STATIC_ASSERT_SIZEOF (ip6_address_t, 16);
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
Damjan Mariona35cc142018-03-16 01:25:27 +010059typedef struct
60{
61 ip6_address_t addr, mask;
62} ip6_address_and_mask_t;
63
Ed Warnickecb9cada2015-12-08 15:45:58 -070064/* Packed so that the mhash key doesn't include uninitialized pad bytes */
Dave Barachd7cb1b52016-12-09 09:52:16 -050065/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070066typedef CLIB_PACKED (struct {
67 /* IP address must be first for ip_interface_address_get_address() to work */
68 ip6_address_t ip6_addr;
69 u32 fib_index;
70}) ip6_address_fib_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -050071/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
Eyal Baric5b13602016-11-24 19:42:43 +020073always_inline void
Neale Rannsd69f4392018-08-31 06:30:16 -040074ip6_addr_fib_init (ip6_address_fib_t * addr_fib,
75 const ip6_address_t * address, u32 fib_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070076{
Eyal Barie101e1f2017-03-15 08:23:42 +020077 addr_fib->ip6_addr = *address;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 addr_fib->fib_index = fib_index;
79}
80
81/* Special addresses:
82 unspecified ::/128
83 loopback ::1/128
84 global unicast 2000::/3
85 unique local unicast fc00::/7
86 link local unicast fe80::/10
87 multicast ff00::/8
88 ietf reserved everything else. */
Dave Barachd7cb1b52016-12-09 09:52:16 -050089
Ed Warnickecb9cada2015-12-08 15:45:58 -070090#define foreach_ip6_multicast_address_scope \
91 _ (loopback, 0x1) \
92 _ (link_local, 0x2) \
93 _ (admin_local, 0x4) \
94 _ (site_local, 0x5) \
95 _ (organization_local, 0x8) \
96 _ (global, 0xe)
97
98#define foreach_ip6_multicast_link_local_group_id \
99 _ (all_hosts, 0x1) \
100 _ (all_routers, 0x2) \
101 _ (rip_routers, 0x9) \
102 _ (eigrp_routers, 0xa) \
103 _ (pim_routers, 0xd) \
104 _ (mldv2_routers, 0x16)
105
Dave Barachd7cb1b52016-12-09 09:52:16 -0500106typedef enum
107{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108#define _(f,n) IP6_MULTICAST_SCOPE_##f = n,
109 foreach_ip6_multicast_address_scope
110#undef _
111} ip6_multicast_address_scope_t;
112
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113typedef enum
114{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115#define _(f,n) IP6_MULTICAST_GROUP_ID_##f = n,
116 foreach_ip6_multicast_link_local_group_id
117#undef _
118} ip6_multicast_link_local_group_id_t;
119
120always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400121ip6_address_is_multicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122{
123 return a->as_u8[0] == 0xff;
124}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
126always_inline void
Neale Ranns37029302018-08-10 05:30:06 -0700127ip6_address_copy (ip6_address_t * dst, const ip6_address_t * src)
128{
129 dst->as_u64[0] = src->as_u64[0];
130 dst->as_u64[1] = src->as_u64[1];
131}
132
133always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134ip6_set_reserved_multicast_address (ip6_address_t * a,
135 ip6_multicast_address_scope_t scope,
136 u16 id)
137{
138 a->as_u64[0] = a->as_u64[1] = 0;
139 a->as_u16[0] = clib_host_to_net_u16 (0xff00 | scope);
140 a->as_u16[7] = clib_host_to_net_u16 (id);
141}
142
143always_inline void
144ip6_set_solicited_node_multicast_address (ip6_address_t * a, u32 id)
145{
146 /* 0xff02::1:ffXX:XXXX. */
147 a->as_u64[0] = a->as_u64[1] = 0;
148 a->as_u16[0] = clib_host_to_net_u16 (0xff02);
149 a->as_u8[11] = 1;
150 ASSERT ((id >> 24) == 0);
151 id |= 0xff << 24;
152 a->as_u32[3] = clib_host_to_net_u32 (id);
153}
154
155always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156ip6_multicast_ethernet_address (u8 * ethernet_address, u32 group_id)
157{
158 ethernet_address[0] = 0x33;
159 ethernet_address[1] = 0x33;
160 ethernet_address[2] = ((group_id >> 24) & 0xff);
161 ethernet_address[3] = ((group_id >> 16) & 0xff);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500162 ethernet_address[4] = ((group_id >> 8) & 0xff);
163 ethernet_address[5] = ((group_id >> 0) & 0xff);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164}
165
166always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400167ip6_address_is_equal (const ip6_address_t * a, const ip6_address_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168{
169 int i;
170 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
171 if (a->as_uword[i] != b->as_uword[i])
172 return 0;
173 return 1;
174}
175
176always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400177ip6_address_is_equal_masked (const ip6_address_t * a,
178 const ip6_address_t * b,
179 const ip6_address_t * mask)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180{
181 int i;
182 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
183 {
184 uword a_masked, b_masked;
185 a_masked = a->as_uword[i] & mask->as_uword[i];
186 b_masked = b->as_uword[i] & mask->as_uword[i];
187
188 if (a_masked != b_masked)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500189 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190 }
191 return 1;
192}
193
194always_inline void
Neale Rannsd69f4392018-08-31 06:30:16 -0400195ip6_address_mask (ip6_address_t * a, const ip6_address_t * mask)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196{
197 int i;
198 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
199 a->as_uword[i] &= mask->as_uword[i];
200}
201
202always_inline void
203ip6_address_set_zero (ip6_address_t * a)
204{
205 int i;
206 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
207 a->as_uword[i] = 0;
208}
209
210always_inline void
211ip6_address_mask_from_width (ip6_address_t * a, u32 width)
212{
213 int i, byte, bit, bitnum;
214 ASSERT (width <= 128);
Dave Barachb7b92992018-10-17 10:38:51 -0400215 clib_memset (a, 0, sizeof (a[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 for (i = 0; i < width; i++)
217 {
218 bitnum = (7 - (i & 7));
219 byte = i / 8;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500220 bit = 1 << bitnum;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 a->as_u8[byte] |= bit;
222 }
223}
224
225always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400226ip6_address_is_zero (const ip6_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227{
228 int i;
229 for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
230 if (a->as_uword[i] != 0)
231 return 0;
232 return 1;
233}
234
235/* Check for unspecified address ::0 */
236always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400237ip6_address_is_unspecified (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500238{
239 return ip6_address_is_zero (a);
240}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
242/* Check for loopback address ::1 */
243always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400244ip6_address_is_loopback (const ip6_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245{
Neale Rannsd69f4392018-08-31 06:30:16 -0400246 return (a->as_u64[0] == 0 &&
247 a->as_u32[2] == 0 &&
248 a->as_u16[6] == 0 && a->as_u8[14] == 0 && a->as_u8[15] == 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249}
250
251/* Check for link local unicast fe80::/10. */
252always_inline uword
Neale Ranns53da2212018-02-24 02:11:19 -0800253ip6_address_is_link_local_unicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500254{
255 return a->as_u8[0] == 0xfe && (a->as_u8[1] & 0xc0) == 0x80;
256}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
258/* Check for unique local unicast fc00::/7. */
259always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400260ip6_address_is_local_unicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500261{
262 return (a->as_u8[0] & 0xfe) == 0xfc;
263}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Chris Lukebfd32fd2016-06-24 20:38:06 -0400265/* Check for unique global unicast 2000::/3. */
266always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400267ip6_address_is_global_unicast (const ip6_address_t * a)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500268{
269 return (a->as_u8[0] & 0xe0) == 0x20;
270}
Chris Lukebfd32fd2016-06-24 20:38:06 -0400271
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272/* Check for solicited node multicast 0xff02::1:ff00:0/104 */
273always_inline uword
Neale Rannsd69f4392018-08-31 06:30:16 -0400274ip6_is_solicited_node_multicast_address (const ip6_address_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275{
276 return (a->as_u32[0] == clib_host_to_net_u32 (0xff020000)
277 && a->as_u32[1] == 0
278 && a->as_u32[2] == clib_host_to_net_u32 (1)
279 && a->as_u8[12] == 0xff);
280}
281
Neale Rannscd35e532018-08-31 02:51:45 -0700282always_inline u32
283ip6_address_hash_to_u32 (const ip6_address_t * a)
284{
285 return (a->as_u32[0] ^ a->as_u32[1] ^ a->as_u32[2] ^ a->as_u32[3]);
286}
287
288always_inline u64
289ip6_address_hash_to_u64 (const ip6_address_t * a)
290{
291 return (a->as_u64[0] ^ a->as_u64[1]);
292}
293
Dave Barachd7cb1b52016-12-09 09:52:16 -0500294typedef struct
295{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296 /* 4 bit version, 8 bit traffic class and 20 bit flow label. */
297 u32 ip_version_traffic_class_and_flow_label;
298
299 /* Total packet length not including this header (but including
300 any extension headers if present). */
301 u16 payload_length;
302
303 /* Protocol for next header. */
304 u8 protocol;
305
306 /* Hop limit decremented by router at each hop. */
307 u8 hop_limit;
308
309 /* Source and destination address. */
310 ip6_address_t src_address, dst_address;
311} ip6_header_t;
312
Neale Ranns041add72020-01-02 04:06:10 +0000313#define IP6_PACKET_TC_MASK 0x0FF00000
314#define IP6_PACKET_DSCP_MASK 0x0FC00000
315#define IP6_PACKET_ECN_MASK 0x00300000
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +0000316#define IP6_PACKET_FL_MASK 0x000FFFFF
Neale Ranns041add72020-01-02 04:06:10 +0000317
Neale Ranns038e1df2019-07-19 14:01:02 +0000318always_inline ip_dscp_t
Neale Ranns31ed7442018-02-23 05:29:09 -0800319ip6_traffic_class (const ip6_header_t * i)
Ole Troan5c749732017-03-13 13:39:52 +0100320{
Neale Ranns041add72020-01-02 04:06:10 +0000321 return (i->ip_version_traffic_class_and_flow_label & IP6_PACKET_TC_MASK) >>
322 20;
Ole Troan5c749732017-03-13 13:39:52 +0100323}
324
Neale Ranns038e1df2019-07-19 14:01:02 +0000325static_always_inline ip_dscp_t
Neale Ranns31ed7442018-02-23 05:29:09 -0800326ip6_traffic_class_network_order (const ip6_header_t * ip6)
327{
328 return (clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label)
Neale Ranns041add72020-01-02 04:06:10 +0000329 & IP6_PACKET_TC_MASK) >> 20;
Neale Ranns31ed7442018-02-23 05:29:09 -0800330}
331
Neale Ranns95346962019-11-25 13:04:44 +0000332static_always_inline ip_dscp_t
333ip6_dscp_network_order (const ip6_header_t * ip6)
334{
335 return (clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label)
Neale Ranns041add72020-01-02 04:06:10 +0000336 & IP6_PACKET_DSCP_MASK) >> 22;
Neale Ranns95346962019-11-25 13:04:44 +0000337}
338
339static_always_inline ip_ecn_t
340ip6_ecn_network_order (const ip6_header_t * ip6)
341{
342 return (clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label)
Neale Ranns041add72020-01-02 04:06:10 +0000343 & IP6_PACKET_ECN_MASK) >> 20;
Neale Ranns95346962019-11-25 13:04:44 +0000344}
345
Neale Ranns3d5f08a2021-01-22 16:12:38 +0000346static_always_inline u32
347ip6_flow_label_network_order (const ip6_header_t *ip6)
348{
349 return (clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label) &
350 IP6_PACKET_FL_MASK);
351}
352
Neale Ranns31ed7442018-02-23 05:29:09 -0800353static_always_inline void
Neale Ranns038e1df2019-07-19 14:01:02 +0000354ip6_set_traffic_class_network_order (ip6_header_t * ip6, ip_dscp_t dscp)
Neale Ranns31ed7442018-02-23 05:29:09 -0800355{
356 u32 tmp =
357 clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label);
Neale Ranns039cbfe2018-02-27 03:45:38 -0800358 tmp &= 0xf00fffff;
Neale Ranns31ed7442018-02-23 05:29:09 -0800359 tmp |= (dscp << 20);
360 ip6->ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (tmp);
361}
362
Neale Ranns95346962019-11-25 13:04:44 +0000363static_always_inline void
364ip6_set_dscp_network_order (ip6_header_t * ip6, ip_dscp_t dscp)
365{
366 u32 tmp =
367 clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label);
368 tmp &= 0xf03fffff;
369 tmp |= (dscp << 22);
370 ip6->ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (tmp);
371}
372
373static_always_inline void
374ip6_set_ecn_network_order (ip6_header_t * ip6, ip_ecn_t ecn)
375{
376 u32 tmp =
377 clib_net_to_host_u32 (ip6->ip_version_traffic_class_and_flow_label);
378 tmp &= 0xffcfffff;
379 tmp |= (ecn << 20);
380 ip6->ip_version_traffic_class_and_flow_label = clib_host_to_net_u32 (tmp);
381}
382
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383always_inline void *
384ip6_next_header (ip6_header_t * i)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500385{
386 return (void *) (i + 1);
387}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
389always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390ip6_copy_header (ip6_header_t * dst, const ip6_header_t * src)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100391{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500392 dst->ip_version_traffic_class_and_flow_label =
393 src->ip_version_traffic_class_and_flow_label;
394 dst->payload_length = src->payload_length;
395 dst->protocol = src->protocol;
396 dst->hop_limit = src->hop_limit;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398 dst->src_address.as_uword[0] = src->src_address.as_uword[0];
399 dst->src_address.as_uword[1] = src->src_address.as_uword[1];
400 dst->dst_address.as_uword[0] = src->dst_address.as_uword[0];
401 dst->dst_address.as_uword[1] = src->dst_address.as_uword[1];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100402}
403
404always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405ip6_tcp_reply_x1 (ip6_header_t * ip0, tcp_header_t * tcp0)
406{
407 {
408 ip6_address_t src0, dst0;
409
410 src0 = ip0->src_address;
411 dst0 = ip0->dst_address;
412 ip0->src_address = dst0;
413 ip0->dst_address = src0;
414 }
415
416 {
417 u16 src0, dst0;
418
Dave Barach68b0fb02017-02-28 15:15:56 -0500419 src0 = tcp0->src;
420 dst0 = tcp0->dst;
421 tcp0->src = dst0;
422 tcp0->dst = src0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 }
424}
425
426always_inline void
427ip6_tcp_reply_x2 (ip6_header_t * ip0, ip6_header_t * ip1,
428 tcp_header_t * tcp0, tcp_header_t * tcp1)
429{
430 {
431 ip6_address_t src0, dst0, src1, dst1;
432
433 src0 = ip0->src_address;
434 src1 = ip1->src_address;
435 dst0 = ip0->dst_address;
436 dst1 = ip1->dst_address;
437 ip0->src_address = dst0;
438 ip1->src_address = dst1;
439 ip0->dst_address = src0;
440 ip1->dst_address = src1;
441 }
442
443 {
444 u16 src0, dst0, src1, dst1;
445
Dave Barach68b0fb02017-02-28 15:15:56 -0500446 src0 = tcp0->src;
447 src1 = tcp1->src;
448 dst0 = tcp0->dst;
449 dst1 = tcp1->dst;
450 tcp0->src = dst0;
451 tcp1->src = dst1;
452 tcp0->dst = src0;
453 tcp1->dst = src1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454 }
455}
456
457
Dave Barachd7cb1b52016-12-09 09:52:16 -0500458/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459typedef CLIB_PACKED (struct {
460 u8 data;
461}) ip6_pad1_option_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500462/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463
Dave Barachd7cb1b52016-12-09 09:52:16 -0500464/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465typedef CLIB_PACKED (struct {
466 u8 type;
467 u8 len;
468 u8 data[0];
469}) ip6_padN_option_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500470/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473typedef CLIB_PACKED (struct {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500474#define IP6_MLDP_ALERT_TYPE 0x5
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475 u8 type;
476 u8 len;
477 u16 value;
478}) ip6_router_alert_option_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480
Dave Barachd7cb1b52016-12-09 09:52:16 -0500481/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482typedef CLIB_PACKED (struct {
483 u8 next_hdr;
484 /* Length of this header plus option data in 8 byte units. */
485 u8 n_data_u64s;
Shwethab78292e2016-09-13 11:51:00 +0100486}) ip6_ext_header_t;
Klement Sekera769145c2019-03-06 11:59:57 +0100487/* *INDENT-ON* */
Shwethab78292e2016-09-13 11:51:00 +0100488
Damjan Marion831d2382019-03-22 13:58:08 +0100489#define foreach_ext_hdr_type \
490 _(IP6_HOP_BY_HOP_OPTIONS) \
491 _(IPV6_ROUTE) \
492 _(IPV6_FRAGMENTATION) \
493 _(IPSEC_ESP) \
494 _(IPSEC_AH) \
495 _(IP6_DESTINATION_OPTIONS) \
496 _(MOBILITY) \
497 _(HIP) \
498 _(SHIM6)
499
Klement Sekera769145c2019-03-06 11:59:57 +0100500always_inline u8
501ip6_ext_hdr (u8 nexthdr)
Shwethab78292e2016-09-13 11:51:00 +0100502{
Damjan Marion831d2382019-03-22 13:58:08 +0100503#ifdef CLIB_HAVE_VEC128
504 static const u8x16 ext_hdr_types = {
505#define _(x) IP_PROTOCOL_##x,
Klement Sekera769145c2019-03-06 11:59:57 +0100506 foreach_ext_hdr_type
Damjan Marion831d2382019-03-22 13:58:08 +0100507#undef _
508 };
509
510 return !u8x16_is_all_zero (ext_hdr_types == u8x16_splat (nexthdr));
511#else
Shwethab78292e2016-09-13 11:51:00 +0100512 /*
513 * find out if nexthdr is an extension header or a protocol
514 */
Klement Sekera769145c2019-03-06 11:59:57 +0100515 return 0
Damjan Marion831d2382019-03-22 13:58:08 +0100516#define _(x) || (nexthdr == IP_PROTOCOL_##x)
Klement Sekera769145c2019-03-06 11:59:57 +0100517 foreach_ext_hdr_type;
Damjan Marion831d2382019-03-22 13:58:08 +0100518#undef _
519#endif
Shwethab78292e2016-09-13 11:51:00 +0100520}
521
Pablo Camarillofb380952016-12-07 18:34:18 +0100522#define ip6_ext_header_len(p) ((((ip6_ext_header_t *)(p))->n_data_u64s+1) << 3)
523#define ip6_ext_authhdr_len(p) ((((ip6_ext_header_t *)(p))->n_data_u64s+2) << 2)
Shwethab78292e2016-09-13 11:51:00 +0100524
525always_inline void *
Klement Sekera769145c2019-03-06 11:59:57 +0100526ip6_ext_next_header (ip6_ext_header_t * ext_hdr)
527{
528 return (void *) ((u8 *) ext_hdr + ip6_ext_header_len (ext_hdr));
Pablo Camarillofb380952016-12-07 18:34:18 +0100529}
530
Klement Sekera769145c2019-03-06 11:59:57 +0100531always_inline int
532vlib_object_within_buffer_data (vlib_main_t * vm, vlib_buffer_t * b,
533 void *obj, size_t len)
534{
535 u8 *o = obj;
536 if (o < b->data ||
537 o + len > b->data + vlib_buffer_get_default_data_size (vm))
538 return 0;
539 return 1;
540}
Pablo Camarillofb380952016-12-07 18:34:18 +0100541
Klement Sekera769145c2019-03-06 11:59:57 +0100542/*
543 * find ipv6 extension header within ipv6 header within buffer b
544 *
545 * @param vm
546 * @param b buffer to limit search to
547 * @param ip6_header ipv6 header
548 * @param header_type extension header type to search for
549 * @param[out] prev_ext_header address of header preceding found header
550 */
551always_inline void *
552ip6_ext_header_find (vlib_main_t * vm, vlib_buffer_t * b,
553 ip6_header_t * ip6_header, u8 header_type,
554 ip6_ext_header_t ** prev_ext_header)
555{
556 ip6_ext_header_t *prev = NULL;
557 ip6_ext_header_t *result = NULL;
558 if ((ip6_header)->protocol == header_type)
559 {
560 result = (void *) (ip6_header + 1);
561 if (!vlib_object_within_buffer_data (vm, b, result,
562 ip6_ext_header_len (result)))
563 {
564 result = NULL;
565 }
566 }
567 else
568 {
569 result = NULL;
570 prev = (void *) (ip6_header + 1);
571 while (ip6_ext_hdr (prev->next_hdr) && prev->next_hdr != header_type)
572 {
573 prev = ip6_ext_next_header (prev);
574 if (!vlib_object_within_buffer_data (vm, b, prev,
575 ip6_ext_header_len (prev)))
576 {
577 prev = NULL;
578 break;
579 }
580 }
581 if (prev && (prev->next_hdr == header_type))
582 {
583 result = ip6_ext_next_header (prev);
584 if (!vlib_object_within_buffer_data (vm, b, result,
585 ip6_ext_header_len (result)))
586 {
587 result = NULL;
588 }
589 }
590 }
591 if (prev_ext_header)
592 {
593 *prev_ext_header = prev;
594 }
595 return result;
596}
597
Klement Sekeraf126e742019-10-10 09:46:06 +0000598/*
599 * walk extension headers, looking for a specific extension header and last
600 * extension header, calculating length of all extension headers
601 *
602 * @param vm
603 * @param b buffer to limit search to
604 * @param ip6_header ipv6 header
605 * @param find_hdr extension header to look for (ignored if ext_hdr is NULL)
606 * @param length[out] length of all extension headers
607 * @param ext_hdr[out] extension header of type find_hdr (may be NULL)
608 * @param last_ext_hdr[out] last extension header (may be NULL)
609 *
610 * @return 0 on success, -1 on failure (ext headers crossing buffer boundary)
611 */
612always_inline int
613ip6_walk_ext_hdr (vlib_main_t * vm, vlib_buffer_t * b,
614 const ip6_header_t * ip6_header, u8 find_hdr, u32 * length,
615 ip6_ext_header_t ** ext_hdr,
616 ip6_ext_header_t ** last_ext_hdr)
617{
618 if (!ip6_ext_hdr (ip6_header->protocol))
619 {
620 *length = 0;
621 *ext_hdr = NULL;
622 *last_ext_hdr = NULL;
623 return 0;
624 }
625 *length = 0;
626 ip6_ext_header_t *h = (void *) (ip6_header + 1);
627 if (!vlib_object_within_buffer_data (vm, b, h, ip6_ext_header_len (h)))
628 {
629 return -1;
630 }
631 *length += ip6_ext_header_len (h);
632 *last_ext_hdr = h;
633 *ext_hdr = NULL;
634 if (ip6_header->protocol == find_hdr)
635 {
636 *ext_hdr = h;
637 }
638 while (ip6_ext_hdr (h->next_hdr))
639 {
640 if (h->next_hdr == find_hdr)
641 {
642 h = ip6_ext_next_header (h);
643 *ext_hdr = h;
644 }
645 else
646 {
647 h = ip6_ext_next_header (h);
648 }
649 if (!vlib_object_within_buffer_data (vm, b, h, ip6_ext_header_len (h)))
650 {
651 return -1;
652 }
653 *length += ip6_ext_header_len (h);
654 *last_ext_hdr = h;
655 }
656 return 0;
657}
658
Klement Sekera769145c2019-03-06 11:59:57 +0100659/* *INDENT-OFF* */
Shwethab78292e2016-09-13 11:51:00 +0100660typedef CLIB_PACKED (struct {
661 u8 next_hdr;
662 /* Length of this header plus option data in 8 byte units. */
663 u8 n_data_u64s;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664 u8 data[0];
665}) ip6_hop_by_hop_ext_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500666/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
Dave Barachd7cb1b52016-12-09 09:52:16 -0500668/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669typedef CLIB_PACKED (struct {
670 u8 next_hdr;
671 u8 rsv;
672 u16 fragment_offset_and_more;
673 u32 identification;
674}) ip6_frag_hdr_t;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500675/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676
677#define ip6_frag_hdr_offset(hdr) \
678 (clib_net_to_host_u16((hdr)->fragment_offset_and_more) >> 3)
679
Klement Sekera75e7d132017-09-20 08:26:30 +0200680#define ip6_frag_hdr_offset_bytes(hdr) \
681 (8 * ip6_frag_hdr_offset(hdr))
682
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683#define ip6_frag_hdr_more(hdr) \
684 (clib_net_to_host_u16((hdr)->fragment_offset_and_more) & 0x1)
685
686#define ip6_frag_hdr_offset_and_more(offset, more) \
687 clib_host_to_net_u16(((offset) << 3) + !!(more))
688
689#endif /* included_ip6_packet_h */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500690
691/*
692 * fd.io coding-style-patch-verification: ON
693 *
694 * Local Variables:
695 * eval: (c-set-style "gnu")
696 * End:
697 */