blob: 04cf9f11d70c936ac111b52007ad00d02a551b12 [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 * ip/ip_packet.h: packet format common between ip4 & ip6
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_ip_packet_h
41#define included_ip_packet_h
42
43#include <vppinfra/byte_order.h>
44#include <vppinfra/error.h>
Neale Ranns041add72020-01-02 04:06:10 +000045#include <vppinfra/format.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070046
Dave Barachd7cb1b52016-12-09 09:52:16 -050047typedef enum ip_protocol
48{
Ed Warnickecb9cada2015-12-08 15:45:58 -070049#define ip_protocol(n,s) IP_PROTOCOL_##s = n,
50#include "protocols.def"
51#undef ip_protocol
Neale Ranns3ec09e92020-02-24 13:32:30 +000052} __clib_packed ip_protocol_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
54/* TCP/UDP ports. */
Dave Barachd7cb1b52016-12-09 09:52:16 -050055typedef enum
56{
Ed Warnickecb9cada2015-12-08 15:45:58 -070057#define ip_port(s,n) IP_PORT_##s = n,
58#include "ports.def"
59#undef ip_port
60} ip_port_t;
61
Kevin Paul Herbert8f9e7d42016-01-26 18:32:24 -080062/* Classifies protocols into UDP, ICMP or other. */
Dave Barachd7cb1b52016-12-09 09:52:16 -050063typedef enum
64{
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 IP_BUILTIN_PROTOCOL_UDP,
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 IP_BUILTIN_PROTOCOL_ICMP,
67 IP_BUILTIN_PROTOCOL_UNKNOWN,
68} ip_builtin_protocol_t;
69
70#define foreach_ip_builtin_multicast_group \
71 _ (1, all_hosts_on_subnet) \
72 _ (2, all_routers_on_subnet) \
73 _ (4, dvmrp) \
74 _ (5, ospf_all_routers) \
75 _ (6, ospf_designated_routers) \
76 _ (13, pim) \
77 _ (18, vrrp) \
78 _ (102, hsrp) \
79 _ (22, igmp_v3)
80
Dave Barachd7cb1b52016-12-09 09:52:16 -050081typedef enum
82{
Ed Warnickecb9cada2015-12-08 15:45:58 -070083#define _(n,f) IP_MULTICAST_GROUP_##f = n,
84 foreach_ip_builtin_multicast_group
85#undef _
86} ip_multicast_group_t;
87
Neale Ranns038e1df2019-07-19 14:01:02 +000088
89/**
90 * The set of RFC defined DSCP values.
91 */
92#define foreach_ip_dscp \
93 _(0, CS0) \
94 _(8, CS1) \
95 _(10, AF11) \
96 _(12, AF12) \
97 _(14, AF13) \
98 _(16, CS2) \
99 _(18, AF21) \
100 _(20, AF22) \
101 _(22, AF23) \
102 _(24, CS3) \
103 _(26, AF31) \
104 _(28, AF32) \
105 _(30, AF33) \
106 _(32, CS4) \
107 _(34, AF41) \
108 _(36, AF42) \
109 _(38, AF43) \
110 _(40, CS5) \
111 _(46, EF) \
112 _(48, CS6) \
113 _(50, CS7)
114
115typedef enum ip_dscp_t_
116{
117#define _(n,f) IP_DSCP_##f = n,
118 foreach_ip_dscp
119#undef _
120} __clib_packed ip_dscp_t;
121
Neale Ranns038e1df2019-07-19 14:01:02 +0000122extern u8 *format_ip_dscp (u8 * s, va_list * va);
Neale Ranns041add72020-01-02 04:06:10 +0000123unformat_function_t unformat_ip_dscp;
Neale Ranns038e1df2019-07-19 14:01:02 +0000124
Neale Ranns95346962019-11-25 13:04:44 +0000125/**
126 * IP DSCP bit shift
127 * The ECN occupies the 2 least significant bits of the TC field
128 */
129#define IP_PACKET_TC_FIELD_DSCP_BIT_SHIFT 2
130#define IP_PACKET_TC_FIELD_ECN_MASK 0x03
131
132/**
133 * The set of RFC defined DSCP values.
134 */
135#define foreach_ip_ecn \
136 _(0, NON_ECN) \
137 _(1, ECT_0) \
138 _(2, ECT_1) \
139 _(3, CE)
140
141typedef enum ip_ecn_t_
142{
143#define _(n,f) IP_ECN_##f = n,
144 foreach_ip_ecn
145#undef _
146} __clib_packed ip_ecn_t;
147
148STATIC_ASSERT_SIZEOF (ip_ecn_t, 1);
149
150extern u8 *format_ip_ecn (u8 * s, va_list * va);
151
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152/* Incremental checksum update. */
153typedef uword ip_csum_t;
154
155always_inline ip_csum_t
156ip_csum_with_carry (ip_csum_t sum, ip_csum_t x)
157{
158 ip_csum_t t = sum + x;
159 return t + (t < x);
160}
161
162/* Update checksum changing field at even byte offset from x -> 0. */
163always_inline ip_csum_t
164ip_csum_add_even (ip_csum_t c, ip_csum_t x)
165{
166 ip_csum_t d;
167
168 d = c - x;
169
170 /* Fold in carry from high bit. */
171 d -= d > c;
172
Hongjun Ni79c38af2018-06-15 05:32:23 +0800173 ip_csum_t t = ip_csum_with_carry (d, x);
174 ASSERT ((t - c == 0) || (t - c == ~0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
176 return d;
177}
178
179/* Update checksum changing field at even byte offset from 0 -> x. */
180always_inline ip_csum_t
181ip_csum_sub_even (ip_csum_t c, ip_csum_t x)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500182{
183 return ip_csum_with_carry (c, x);
184}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
186always_inline ip_csum_t
187ip_csum_update_inline (ip_csum_t sum, ip_csum_t old, ip_csum_t new,
188 u32 field_byte_offset, u32 field_n_bytes)
189{
190 /* For even 1-byte fields on big-endian and odd 1-byte fields on little endian
191 we need to shift byte into place for checksum. */
192 if ((field_n_bytes % 2)
193 && (field_byte_offset % 2) == CLIB_ARCH_IS_LITTLE_ENDIAN)
194 {
195 old = old << 8;
196 new = new << 8;
197 }
198 sum = ip_csum_sub_even (sum, old);
199 sum = ip_csum_add_even (sum, new);
200 return sum;
201}
202
203#define ip_csum_update(sum,old,new,type,field) \
204 ip_csum_update_inline ((sum), (old), (new), \
205 STRUCT_OFFSET_OF (type, field), \
206 STRUCT_SIZE_OF (type, field))
207
Dave Barachd7cb1b52016-12-09 09:52:16 -0500208always_inline u16
209ip_csum_fold (ip_csum_t c)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210{
211 /* Reduce to 16 bits. */
Steven Luong4d769c72021-11-10 08:54:38 -0800212#if defined(__x86_64__) && defined(__BMI2__)
Damjan Marione6709ff2021-10-28 12:02:15 +0200213 u64 tmp;
214 asm volatile(
215 /* using ADC is much faster than mov, shift, add sequence
216 * compiler produces */
217 "mov %k[sum], %k[tmp] \n\t"
218 "shr $32, %[sum] \n\t"
219 "add %k[tmp], %k[sum] \n\t"
220 "mov $16, %k[tmp] \n\t"
221 "shrx %k[tmp], %k[sum], %k[tmp] \n\t"
222 "adc %w[tmp], %w[sum] \n\t"
223 "adc $0, %w[sum] \n\t"
224 : [ sum ] "+&r"(c), [ tmp ] "=&r"(tmp));
225#else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226#if uword_bits == 64
227 c = (c & (ip_csum_t) 0xffffffff) + (c >> (ip_csum_t) 32);
228 c = (c & 0xffff) + (c >> 16);
229#endif
230
231 c = (c & 0xffff) + (c >> 16);
232 c = (c & 0xffff) + (c >> 16);
Damjan Marione6709ff2021-10-28 12:02:15 +0200233#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 return c;
235}
236
Dave Barachc6215d92018-06-14 18:05:30 -0400237extern ip_csum_t (*vnet_incremental_checksum_fp) (ip_csum_t, void *, uword);
238
BenoƮt Ganne5b1379b2019-10-07 15:06:52 +0200239/* Checksum routine. */
Dave Barachc6215d92018-06-14 18:05:30 -0400240always_inline ip_csum_t
241ip_incremental_checksum (ip_csum_t sum, void *_data, uword n_bytes)
242{
243 return (*vnet_incremental_checksum_fp) (sum, _data, n_bytes);
244}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
246always_inline u16
Dave Barachd7cb1b52016-12-09 09:52:16 -0500247ip_csum_and_memcpy_fold (ip_csum_t sum, void *dst)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 return ip_csum_fold (sum);
250}
251
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252#endif /* included_ip_packet_h */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500253
254/*
255 * fd.io coding-style-patch-verification: ON
256 *
257 * Local Variables:
258 * eval: (c-set-style "gnu")
259 * End:
260 */