FD.io VPP  v16.06
Vector Packet Processing
ip6_packet.h
Go to the documentation of this file.
1 /*
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 
43 #include <vnet/ip/tcp_packet.h>
44 #include <vnet/ip/ip4_packet.h>
45 
46 typedef union {
47  u8 as_u8[16];
48  u16 as_u16[8];
49  u32 as_u32[4];
50  u64 as_u64[2];
51  uword as_uword[16 / sizeof (uword)];
53 
54 /* Packed so that the mhash key doesn't include uninitialized pad bytes */
55 typedef CLIB_PACKED (struct {
56  /* IP address must be first for ip_interface_address_get_address() to work */
57  ip6_address_t ip6_addr;
58  u32 fib_index;
59 }) ip6_address_fib_t;
60 
61 typedef CLIB_PACKED (union {
62  struct {
63  u32 pad[3];
64  ip4_address_t ip4;
65  };
66  ip6_address_t ip6;
67  u64 as_u64[2];
68 }) ip46_address_t;
69 #define ip46_address_is_ip4(ip46) (((ip46)->pad[0] | (ip46)->pad[1] | (ip46)->pad[2]) == 0)
70 #define ip46_address_mask_ip4(ip46) ((ip46)->pad[0] = (ip46)->pad[1] = (ip46)->pad[2] = 0)
71 #define ip46_address_set_ip4(ip46, ip) (ip46_address_mask_ip4(ip46), (ip46)->ip4 = (ip)[0])
72 #define ip46_address_reset(ip46) ((ip46)->as_u64[0] = (ip46)->as_u64[1] = 0)
73 
74 always_inline void
75 ip6_addr_fib_init (ip6_address_fib_t * addr_fib, ip6_address_t * address,
76  u32 fib_index)
77 {
78  addr_fib->ip6_addr.as_u64[0] = address->as_u64[0];
79  addr_fib->ip6_addr.as_u64[1] = address->as_u64[1];
80  addr_fib->fib_index = fib_index;
81 }
82 
83 /* Special addresses:
84  unspecified ::/128
85  loopback ::1/128
86  global unicast 2000::/3
87  unique local unicast fc00::/7
88  link local unicast fe80::/10
89  multicast ff00::/8
90  ietf reserved everything else. */
91 
92 #define foreach_ip6_multicast_address_scope \
93  _ (loopback, 0x1) \
94  _ (link_local, 0x2) \
95  _ (admin_local, 0x4) \
96  _ (site_local, 0x5) \
97  _ (organization_local, 0x8) \
98  _ (global, 0xe)
99 
100 #define foreach_ip6_multicast_link_local_group_id \
101  _ (all_hosts, 0x1) \
102  _ (all_routers, 0x2) \
103  _ (rip_routers, 0x9) \
104  _ (eigrp_routers, 0xa) \
105  _ (pim_routers, 0xd) \
106  _ (mldv2_routers, 0x16)
107 
108 typedef enum {
109 #define _(f,n) IP6_MULTICAST_SCOPE_##f = n,
111 #undef _
113 
114 typedef enum {
115 #define _(f,n) IP6_MULTICAST_GROUP_ID_##f = n,
117 #undef _
119 
122 { return a->as_u8[0] == 0xff; }
123 
124 always_inline void
126  ip6_multicast_address_scope_t scope,
127  u16 id)
128 {
129  a->as_u64[0] = a->as_u64[1] = 0;
130  a->as_u16[0] = clib_host_to_net_u16 (0xff00 | scope);
131  a->as_u16[7] = clib_host_to_net_u16 (id);
132 }
133 
134 always_inline void
136 {
137  /* 0xff02::1:ffXX:XXXX. */
138  a->as_u64[0] = a->as_u64[1] = 0;
139  a->as_u16[0] = clib_host_to_net_u16 (0xff02);
140  a->as_u8[11] = 1;
141  ASSERT ((id >> 24) == 0);
142  id |= 0xff << 24;
143  a->as_u32[3] = clib_host_to_net_u32 (id);
144 }
145 
146 always_inline void
148 {
149  a->as_u64[0] = a->as_u64[1] = 0;
150  a->as_u16[0] = clib_host_to_net_u16 (0xfe80);
151  /* Always set locally administered bit (6). */
152  a->as_u8[0x8] = ethernet_address[0] | (1 << 6);
153  a->as_u8[0x9] = ethernet_address[1];
154  a->as_u8[0xa] = ethernet_address[2];
155  a->as_u8[0xb] = 0xff;
156  a->as_u8[0xc] = 0xfe;
157  a->as_u8[0xd] = ethernet_address[3];
158  a->as_u8[0xe] = ethernet_address[4];
159  a->as_u8[0xf] = ethernet_address[5];
160 }
161 
162 always_inline void
163 ip6_multicast_ethernet_address (u8 * ethernet_address, u32 group_id)
164 {
165  ethernet_address[0] = 0x33;
166  ethernet_address[1] = 0x33;
167  ethernet_address[2] = ((group_id >> 24) & 0xff);
168  ethernet_address[3] = ((group_id >> 16) & 0xff);
169  ethernet_address[4] = ((group_id >> 8) & 0xff);
170  ethernet_address[5] = ((group_id >> 0) & 0xff);
171 }
172 
175 {
176  int i;
177  for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
178  if (a->as_uword[i] != b->as_uword[i])
179  return 0;
180  return 1;
181 }
182 
185  ip6_address_t * mask)
186 {
187  int i;
188  for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
189  {
190  uword a_masked, b_masked;
191  a_masked = a->as_uword[i] & mask->as_uword[i];
192  b_masked = b->as_uword[i] & mask->as_uword[i];
193 
194  if (a_masked != b_masked)
195  return 0;
196  }
197  return 1;
198 }
199 
200 always_inline void
202 {
203  int i;
204  for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
205  a->as_uword[i] &= mask->as_uword[i];
206 }
207 
208 always_inline void
210 {
211  int i;
212  for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
213  a->as_uword[i] = 0;
214 }
215 
216 always_inline void
218 {
219  int i, byte, bit, bitnum;
220  ASSERT (width <= 128);
221  memset (a, 0, sizeof (a[0]));
222  for (i = 0; i < width; i++)
223  {
224  bitnum = (7 - (i & 7));
225  byte = i / 8;
226  bit = 1<<bitnum;
227  a->as_u8[byte] |= bit;
228  }
229 }
230 
233 {
234  int i;
235  for (i = 0; i < ARRAY_LEN (a->as_uword); i++)
236  if (a->as_uword[i] != 0)
237  return 0;
238  return 1;
239 }
240 
241 /* Check for unspecified address ::0 */
244 { return ip6_address_is_zero (a); }
245 
246 /* Check for loopback address ::1 */
249 {
250  uword is_loopback;
251  u8 save = a->as_u8[15];
252  a->as_u8[15] = save ^ 1;
253  is_loopback = ip6_address_is_zero (a);
254  a->as_u8[15] = save;
255  return is_loopback;
256 }
257 
258 /* Check for link local unicast fe80::/10. */
261 { return a->as_u8[0] == 0xfe && (a->as_u8[1] & 0xc0) == 0x80; }
262 
263 /* Check for unique local unicast fc00::/7. */
266 { return (a->as_u8[0] & 0xfe) == 0xfc; }
267 
268 /* Check for solicited node multicast 0xff02::1:ff00:0/104 */
271 {
272  return (a->as_u32[0] == clib_host_to_net_u32 (0xff020000)
273  && a->as_u32[1] == 0
274  && a->as_u32[2] == clib_host_to_net_u32 (1)
275  && a->as_u8[12] == 0xff);
276 }
277 
278 typedef struct {
279  /* 4 bit version, 8 bit traffic class and 20 bit flow label. */
281 
282  /* Total packet length not including this header (but including
283  any extension headers if present). */
285 
286  /* Protocol for next header. */
288 
289  /* Hop limit decremented by router at each hop. */
291 
292  /* Source and destination address. */
294 } ip6_header_t;
295 
296 always_inline void *
298 { return (void *) (i + 1); }
299 
300 always_inline void
302 {
303  {
304  ip6_address_t src0, dst0;
305 
306  src0 = ip0->src_address;
307  dst0 = ip0->dst_address;
308  ip0->src_address = dst0;
309  ip0->dst_address = src0;
310  }
311 
312  {
313  u16 src0, dst0;
314 
315  src0 = tcp0->ports.src;
316  dst0 = tcp0->ports.dst;
317  tcp0->ports.src = dst0;
318  tcp0->ports.dst = src0;
319  }
320 }
321 
322 always_inline void
324  tcp_header_t * tcp0, tcp_header_t * tcp1)
325 {
326  {
327  ip6_address_t src0, dst0, src1, dst1;
328 
329  src0 = ip0->src_address;
330  src1 = ip1->src_address;
331  dst0 = ip0->dst_address;
332  dst1 = ip1->dst_address;
333  ip0->src_address = dst0;
334  ip1->src_address = dst1;
335  ip0->dst_address = src0;
336  ip1->dst_address = src1;
337  }
338 
339  {
340  u16 src0, dst0, src1, dst1;
341 
342  src0 = tcp0->ports.src;
343  src1 = tcp1->ports.src;
344  dst0 = tcp0->ports.dst;
345  dst1 = tcp1->ports.dst;
346  tcp0->ports.src = dst0;
347  tcp1->ports.src = dst1;
348  tcp0->ports.dst = src0;
349  tcp1->ports.dst = src1;
350  }
351 }
352 
353 
354 typedef CLIB_PACKED (struct {
355  u8 data;
356 }) ip6_pad1_option_t;
357 
358 typedef CLIB_PACKED (struct {
359  u8 type;
360  u8 len;
361  u8 data[0];
362 }) ip6_padN_option_t;
363 
364 typedef CLIB_PACKED (struct {
365 #define IP6_MLDP_ALERT_TYPE 0x5
366  u8 type;
367  u8 len;
368  u16 value;
369 }) ip6_router_alert_option_t;
370 
371 typedef CLIB_PACKED (struct {
372  u8 next_hdr;
373  /* Length of this header plus option data in 8 byte units. */
374  u8 n_data_u64s;
375  u8 data[0];
376 }) ip6_hop_by_hop_ext_t;
377 
378 typedef CLIB_PACKED (struct {
379  u8 next_hdr;
380  u8 rsv;
381  u16 fragment_offset_and_more;
382  u32 identification;
383 }) ip6_frag_hdr_t;
384 
385 #define ip6_frag_hdr_offset(hdr) \
386  (clib_net_to_host_u16((hdr)->fragment_offset_and_more) >> 3)
387 
388 #define ip6_frag_hdr_more(hdr) \
389  (clib_net_to_host_u16((hdr)->fragment_offset_and_more) & 0x1)
390 
391 #define ip6_frag_hdr_offset_and_more(offset, more) \
392  clib_host_to_net_u16(((offset) << 3) + !!(more))
393 
394 #endif /* included_ip6_packet_h */
always_inline void ip6_multicast_ethernet_address(u8 *ethernet_address, u32 group_id)
Definition: ip6_packet.h:163
#define foreach_ip6_multicast_link_local_group_id
Definition: ip6_packet.h:100
always_inline void ip6_address_mask_from_width(ip6_address_t *a, u32 width)
Definition: ip6_packet.h:217
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:267
a
Definition: bitmap.h:393
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
ip6_multicast_address_scope_t
Definition: ip6_packet.h:108
always_inline uword ip6_address_is_unspecified(ip6_address_t *a)
Definition: ip6_packet.h:243
always_inline void ip6_tcp_reply_x1(ip6_header_t *ip0, tcp_header_t *tcp0)
Definition: ip6_packet.h:301
always_inline void ip6_set_reserved_multicast_address(ip6_address_t *a, ip6_multicast_address_scope_t scope, u16 id)
Definition: ip6_packet.h:125
u8 as_u8[16]
Definition: ip6_packet.h:47
u64 as_u64[2]
Definition: ip6_packet.h:50
always_inline uword ip6_address_is_link_local_unicast(ip6_address_t *a)
Definition: ip6_packet.h:260
always_inline uword ip6_address_is_multicast(ip6_address_t *a)
Definition: ip6_packet.h:121
union tcp_header_t::@119 ports
always_inline void * ip6_next_header(ip6_header_t *i)
Definition: ip6_packet.h:297
ip6_address_t src_address
Definition: ip6_packet.h:293
uword as_uword[16/sizeof(uword)]
Definition: ip6_packet.h:51
typedef CLIB_PACKED(struct{ip6_address_t ip6_addr;u32 fib_index;}) ip6_address_fib_t
always_inline uword ip6_address_is_zero(ip6_address_t *a)
Definition: ip6_packet.h:232
#define always_inline
Definition: clib.h:84
always_inline uword ip6_address_is_equal_masked(ip6_address_t *a, ip6_address_t *b, ip6_address_t *mask)
Definition: ip6_packet.h:184
#define foreach_ip6_multicast_address_scope
Definition: ip6_packet.h:92
unsigned long u64
Definition: types.h:89
always_inline uword ip6_address_is_loopback(ip6_address_t *a)
Definition: ip6_packet.h:248
always_inline void ip6_tcp_reply_x2(ip6_header_t *ip0, ip6_header_t *ip1, tcp_header_t *tcp0, tcp_header_t *tcp1)
Definition: ip6_packet.h:323
u32 as_u32[4]
Definition: ip6_packet.h:49
always_inline uword ip6_address_is_equal(ip6_address_t *a, ip6_address_t *b)
Definition: ip6_packet.h:174
always_inline void ip6_address_set_zero(ip6_address_t *a)
Definition: ip6_packet.h:209
always_inline void ip6_link_local_address_from_ethernet_address(ip6_address_t *a, u8 *ethernet_address)
Definition: ip6_packet.h:147
#define ARRAY_LEN(x)
Definition: clib.h:59
always_inline void ip6_set_solicited_node_multicast_address(ip6_address_t *a, u32 id)
Definition: ip6_packet.h:135
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
always_inline uword ip6_is_solicited_node_multicast_address(ip6_address_t *a)
Definition: ip6_packet.h:270
ip6_multicast_link_local_group_id_t
Definition: ip6_packet.h:114
u64 uword
Definition: types.h:112
u32 ip_version_traffic_class_and_flow_label
Definition: ip6_packet.h:280
unsigned short u16
Definition: types.h:57
u16 payload_length
Definition: ip6_packet.h:284
unsigned char u8
Definition: types.h:56
always_inline void ip6_addr_fib_init(ip6_address_fib_t *addr_fib, ip6_address_t *address, u32 fib_index)
Definition: ip6_packet.h:75
u16 as_u16[8]
Definition: ip6_packet.h:48
always_inline void ip6_address_mask(ip6_address_t *a, ip6_address_t *mask)
Definition: ip6_packet.h:201
always_inline uword ip6_address_is_local_unicast(ip6_address_t *a)
Definition: ip6_packet.h:265
ip6_address_t dst_address
Definition: ip6_packet.h:293