blob: d586649646dead038dc3899de84895d9798d85a8 [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 * ip4/ip_checksum.c: ip/tcp/udp checksums
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#include <vnet/ip/ip.h>
41
Dave Barachc6215d92018-06-14 18:05:30 -040042static ip_csum_t
43_ip_incremental_checksum (ip_csum_t sum, void *_data, uword n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -070044{
45 uword data = pointer_to_uword (_data);
46 ip_csum_t sum0, sum1;
47
48 sum0 = 0;
49 sum1 = sum;
50
Dave Barachc6215d92018-06-14 18:05:30 -040051 /*
52 * Align pointer to 64 bits. The ip checksum is a 16-bit
53 * one's complememt sum. It's impractical to optimize
54 * the calculation if the incoming address is odd.
55 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056#define _(t) \
57do { \
58 if (n_bytes >= sizeof (t) \
59 && sizeof (t) < sizeof (ip_csum_t) \
60 && (data % (2 * sizeof (t))) != 0) \
61 { \
62 sum0 += * uword_to_pointer (data, t *); \
63 data += sizeof (t); \
64 n_bytes -= sizeof (t); \
65 } \
66} while (0)
67
Dave Barachc6215d92018-06-14 18:05:30 -040068 if (PREDICT_TRUE ((data & 1) == 0))
69 {
70 _(u16);
71 if (BITS (ip_csum_t) > 32)
72 _(u32);
73 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070074#undef _
75
Dave Barachd7cb1b52016-12-09 09:52:16 -050076 {
77 ip_csum_t *d = uword_to_pointer (data, ip_csum_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
Dave Barachd7cb1b52016-12-09 09:52:16 -050079 while (n_bytes >= 2 * sizeof (d[0]))
80 {
81 sum0 = ip_csum_with_carry (sum0, d[0]);
82 sum1 = ip_csum_with_carry (sum1, d[1]);
83 d += 2;
84 n_bytes -= 2 * sizeof (d[0]);
85 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
Dave Barachd7cb1b52016-12-09 09:52:16 -050087 data = pointer_to_uword (d);
88 }
89
Ed Warnickecb9cada2015-12-08 15:45:58 -070090#define _(t) \
91do { \
92 if (n_bytes >= sizeof (t) && sizeof (t) <= sizeof (ip_csum_t)) \
93 { \
94 sum0 = ip_csum_with_carry (sum0, * uword_to_pointer (data, t *)); \
95 data += sizeof (t); \
96 n_bytes -= sizeof (t); \
97 } \
98} while (0)
99
Dave Barachd7cb1b52016-12-09 09:52:16 -0500100 if (BITS (ip_csum_t) > 32)
101 _(u64);
102 _(u32);
103 _(u16);
104 _(u8);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106#undef _
107
Dave Barachd7cb1b52016-12-09 09:52:16 -0500108 /* Combine even and odd sums. */
109 sum0 = ip_csum_with_carry (sum0, sum1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111 return sum0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112}
113
Dave Barachc6215d92018-06-14 18:05:30 -0400114/*
115 * Note: the tcp / udp checksum calculation is performance critical
116 * [e.g. when NIC h/w offload is not available],
117 * so it's worth producing architecture-dependent code.
118 *
119 * ip_incremental_checksum() is an always-inlined static
120 * function which uses the function pointer we set up in
121 * ip_checksum_init().
122 */
Dave Barachc6215d92018-06-14 18:05:30 -0400123
124ip_csum_t (*vnet_incremental_checksum_fp) (ip_csum_t, void *, uword);
125
126static clib_error_t *
127ip_checksum_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128{
Damjan Marion652d2e12019-02-02 00:15:27 +0100129 vnet_incremental_checksum_fp = _ip_incremental_checksum;
Dave Barachc6215d92018-06-14 18:05:30 -0400130 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132
Dave Barachc6215d92018-06-14 18:05:30 -0400133VLIB_INIT_FUNCTION (ip_checksum_init);
134
135#if CLIB_DEBUG > 0
136
137static const char test_pkt[] = {
138 0x45, 0x00, 0x00, 0x3c, 0x5d, 0x6f, 0x40, 0x00,
139 0x40, 0x06, 0x3f, 0x6b, 0x0a, 0x76, 0x72, 0x44,
140 0x0a, 0x56, 0x16, 0xd2,
141};
142
143static clib_error_t *
144test_ip_checksum_fn (vlib_main_t * vm,
145 unformat_input_t * input, vlib_cli_command_t * cmd)
146{
147 u16 csum;
148 ip4_header_t *hp;
149 u8 *align_test = 0;
150 int offset;
151
152 vec_validate (align_test, ARRAY_LEN (test_pkt) + 7);
153
154 for (offset = 0; offset < 8; offset++)
155 {
156 memcpy (align_test + offset, test_pkt, ARRAY_LEN (test_pkt));
157
158 hp = (ip4_header_t *) (align_test + offset);
159 csum = ip4_header_checksum (hp);
160
161 vlib_cli_output (vm, "offset %d checksum %u expected result 27455",
162 offset, (u32) csum);
163 }
164
165 return 0;
166}
167
168/* *INDENT-OFF* */
169VLIB_CLI_COMMAND (test_checksum, static) =
170{
171 .path = "test ip checksum",
172 .short_help = "test ip checksum",
173 .function = test_ip_checksum_fn,
174};
175/* *INDENT-ON* */
176
177#endif /* CLIB_DEBUG */
178
Dave Barachd7cb1b52016-12-09 09:52:16 -0500179/*
180 * fd.io coding-style-patch-verification: ON
181 *
182 * Local Variables:
183 * eval: (c-set-style "gnu")
184 * End:
185 */