-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchecksum.c
469 lines (420 loc) · 13.1 KB
/
checksum.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/*
* Copyright 2010, 2011, 2012
* IIJ Innovation Institute Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY IIJ INNOVATION INSTITUTE INC. ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL IIJ INNOVATION INSTITUTE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <err.h>
#if !defined(__linux__)
#include <unistd.h>
#endif
#include <sys/uio.h>
#if !defined(__linux__)
#include <sys/types.h>
#include <sys/socket.h>
#endif
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/ip6.h>
#include <netinet/ip_icmp.h>
#include <netinet/icmp6.h>
#include <netinet/tcp.h>
#include <netinet/udp.h>
static int32_t cksum_acc_ip_pheader_wo_payload_len(const void *);
static int32_t cksum_acc_ip_pheader(const void *);
static int32_t cksum_acc_words(const uint16_t *, int);
#define ADDCARRY(s) {while ((s) >> 16) {((s) = ((s) >> 16) + ((s) & 0xffff));}}
/* Calculate the checksum value of an IPv4 header. */
uint16_t
cksum_calc_ip4_header(const struct ip *ip4_hdrp)
{
assert(ip4_hdrp != NULL);
int32_t sum = 0;
int ip4_header_len = ip4_hdrp->ip_hl << 2;
sum = cksum_acc_words((uint16_t *)ip4_hdrp, ip4_header_len);
ADDCARRY(sum);
return (~sum & 0xffff);
}
/*
* Adjust the transport layer checksum value based on the difference
* between the incoming IP header and the outgoing IP header values,
* and update the checksum field appropriately.
*
* The ulp parameter contains the transport protocol number. The
* orig_ip_hdrp parameter points the incoming IP header. The iov
* parameter contains the following information.
*
* iov[0]: Address family (uint32_t), or struct tun_pi{}
* iov[1]: IPv4/IPv6 header
* iov[2]: IPv6 Fragment header (if necessary, otherwise NULL)
* iov[3]: Upper layer protocol data (at least, a header must exist)
*/
int
cksum_update_ulp(int ulp, const void *orig_ip_hdrp, struct iovec *iov)
{
assert(orig_ip_hdrp != NULL);
assert(iov != NULL);
assert(iov[0].iov_base != NULL);
assert(iov[1].iov_base != NULL);
assert(iov[3].iov_base != NULL);
struct tcphdr *tcp_hdrp;
struct udphdr *udp_hdrp;
struct icmp *icmp_hdrp;
struct icmp6_hdr *icmp6_hdrp;
int32_t sum;
switch (ulp) {
case IPPROTO_ICMP:
icmp_hdrp = iov[3].iov_base;
sum = icmp_hdrp->icmp_cksum;
sum = ~sum & 0xffff;
sum -= cksum_acc_ip_pheader(orig_ip_hdrp);
/*
* ICMPv6 includes the sum of the pseudo IPv6 header in its
* checksum calculation, but ICMP doesn't. We just subtract the
* original pseudo IPv6 header sum from the checksum value.
*/
ADDCARRY(sum);
icmp_hdrp->icmp_cksum = ~sum & 0xffff;
break;
case IPPROTO_ICMPV6:
icmp6_hdrp = iov[3].iov_base;
sum = icmp6_hdrp->icmp6_cksum;
sum = ~sum & 0xffff;
sum += cksum_acc_ip_pheader(iov[1].iov_base);
/*
* Similar to the ICMP case above, we just add the new pseudo IPv6
* header sum to the checksum value, since the original ICMP
* checksum doesn't include the IP pseudo header sum.
*/
ADDCARRY(sum);
icmp6_hdrp->icmp6_cksum = ~sum & 0xffff;
break;
#if defined(__linux__)
#define th_sum check
#define uh_sum check
#endif
case IPPROTO_TCP:
tcp_hdrp = iov[3].iov_base;
sum = tcp_hdrp->th_sum;
sum = ~sum & 0xffff;
sum -= cksum_acc_ip_pheader_wo_payload_len(orig_ip_hdrp);
sum += cksum_acc_ip_pheader_wo_payload_len(iov[1].iov_base);
ADDCARRY(sum);
tcp_hdrp->th_sum = ~sum & 0xffff;
break;
case IPPROTO_UDP:
udp_hdrp = iov[3].iov_base;
sum = udp_hdrp->uh_sum;
sum = ~sum & 0xffff;
sum -= cksum_acc_ip_pheader_wo_payload_len(orig_ip_hdrp);
sum += cksum_acc_ip_pheader_wo_payload_len(iov[1].iov_base);
ADDCARRY(sum);
udp_hdrp->uh_sum = ~sum & 0xffff;
break;
#if defined(__linux__)
#undef th_sum
#undef uh_sum
#endif
default:
warnx("unsupported upper layer protocol %d.", ulp);
return (-1);
}
return (0);
}
/*
* Adjust the transport layer checksum value based on the difference
* between the incoming IP header and the outgoing IP header values,
* and update the checksum field appropriately.
*
* The ulp parameter contains the transport protocol number. The
* orig_ip_hdrp parameter points the incoming IP header. The iov
* parameter contains the following information.
*
* iov[0]: Address family (uint32_t), or struct tun_pi{}
* iov[1]: IPv4/IPv6 header
* iov[2]: IPv6 Fragment header (if necessary, otherwise NULL)
* iov[3]: Upper layer protocol data (at least, a header must exist)
*/
int
cksum66_update_ulp(int ulp, const void *orig_ip_hdrp, struct iovec *iov)
{
assert(orig_ip_hdrp != NULL);
assert(iov != NULL);
assert(iov[0].iov_base != NULL);
assert(iov[1].iov_base != NULL);
assert(iov[3].iov_base != NULL);
struct tcphdr *tcp_hdrp;
struct udphdr *udp_hdrp;
struct icmp *icmp_hdrp;
struct icmp6_hdr *icmp6_hdrp;
int32_t sum;
switch (ulp) {
case IPPROTO_ICMP:
icmp_hdrp = iov[3].iov_base;
sum = icmp_hdrp->icmp_cksum;
sum = ~sum & 0xffff;
sum -= cksum_acc_ip_pheader(orig_ip_hdrp);
/*
* ICMPv6 includes the sum of the pseudo IPv6 header in its
* checksum calculation, but ICMP doesn't. We just subtract the
* original pseudo IPv6 header sum from the checksum value.
*/
ADDCARRY(sum);
icmp_hdrp->icmp_cksum = ~sum & 0xffff;
break;
case IPPROTO_ICMPV6:
icmp6_hdrp = iov[3].iov_base;
sum = icmp6_hdrp->icmp6_cksum;
sum = ~sum & 0xffff;
sum -= cksum_acc_ip_pheader(orig_ip_hdrp);
sum += cksum_acc_ip_pheader(iov[1].iov_base);
/*
* Similar to the ICMP case above, we just add the new pseudo IPv6
* header sum to the checksum value, since the original ICMP
* checksum doesn't include the IP pseudo header sum.
*/
ADDCARRY(sum);
icmp6_hdrp->icmp6_cksum = ~sum & 0xffff;
break;
#if defined(__linux__)
#define th_sum check
#define uh_sum check
#endif
case IPPROTO_TCP:
tcp_hdrp = iov[3].iov_base;
sum = tcp_hdrp->th_sum;
sum = ~sum & 0xffff;
sum -= cksum_acc_ip_pheader_wo_payload_len(orig_ip_hdrp);
sum += cksum_acc_ip_pheader_wo_payload_len(iov[1].iov_base);
ADDCARRY(sum);
tcp_hdrp->th_sum = ~sum & 0xffff;
break;
case IPPROTO_UDP:
udp_hdrp = iov[3].iov_base;
sum = udp_hdrp->uh_sum;
sum = ~sum & 0xffff;
sum -= cksum_acc_ip_pheader_wo_payload_len(orig_ip_hdrp);
sum += cksum_acc_ip_pheader_wo_payload_len(iov[1].iov_base);
ADDCARRY(sum);
udp_hdrp->uh_sum = ~sum & 0xffff;
break;
#if defined(__linux__)
#undef th_sum
#undef uh_sum
#endif
default:
warnx("unsupported upper layer protocol %d.", ulp);
return (-1);
}
return (0);
}
/*
* Calculate the transport layer checksum value. The parameter must
* contain the entire packet to calculate the sum.
*
* The ulp parameter contains the transport protocol number. The iov
* parameter contains the following information.
*
* iov[0]: Address family (uint32_t), or struct tun_pi{}
* iov[1]: IPv4/IPv6 header
* iov[2]: IPv6 Fragment header (if necessary, otherwise NULL)
* iov[3]: Upper layer protocol header
* iov[4]: Upper layer protocol data
*/
int
cksum_calc_ulp(int ulp, struct iovec *iov)
{
assert(iov != NULL);
assert(iov[0].iov_base != NULL);
assert(iov[1].iov_base != NULL);
assert(iov[3].iov_base != NULL);
int32_t sum;
struct icmp *icmp4_hdrp;
struct icmp6_hdr *icmp6_hdrp;
switch (ulp) {
case IPPROTO_ICMP:
icmp4_hdrp = iov[3].iov_base;
icmp4_hdrp->icmp_cksum = 0;
sum = cksum_acc_words(iov[3].iov_base, iov[3].iov_len);
if (iov[4].iov_base != NULL) {
sum += cksum_acc_words(iov[4].iov_base, iov[4].iov_len);
}
ADDCARRY(sum);
icmp4_hdrp->icmp_cksum = ~sum & 0xffff;
break;
case IPPROTO_ICMPV6:
icmp6_hdrp = iov[3].iov_base;
icmp6_hdrp->icmp6_cksum = 0;
sum = cksum_acc_ip_pheader(iov[1].iov_base);
sum += cksum_acc_words(iov[3].iov_base, iov[3].iov_len);
if (iov[4].iov_base != NULL) {
sum += cksum_acc_words(iov[4].iov_base, iov[4].iov_len);
}
ADDCARRY(sum);
icmp6_hdrp->icmp6_cksum = ~sum & 0xfff;
break;
default:
warnx("unsupported upper layer protocol %d.", ulp);
return (-1);
}
return (0);
}
/*
* Adjust the checksum value of an ICMP/ICMPv6 packet, based on the
* original type/code values and new type/code values.
*/
int
cksum_update_icmp_type_code(void *icmp46_hdrp, int orig_type, int orig_code,
int new_type, int new_code)
{
assert(icmp46_hdrp != NULL);
struct icmp6_hdr *icmp6_hdrp = icmp46_hdrp;
int32_t sum = icmp6_hdrp->icmp6_cksum;
sum = ~sum & 0xffff;
uint8_t typecode[2];
/* Subtract the original type/code values from the checksum value. */
typecode[0] = orig_type;
typecode[1] = orig_code;
sum -= cksum_acc_words((const uint16_t *)typecode, 2);
/* Add the new type/code values to the checksum value. */
typecode[0] = new_type;
typecode[1] = new_code;
sum += cksum_acc_words((const uint16_t *)typecode, 2);
ADDCARRY(sum);
icmp6_hdrp->icmp6_cksum = ~sum & 0xffff;
return (0);
}
/*
* Calculate the sum of the pseudo IP header by spliting it into 16
* bits integer values.
*
* Note that this function doesn't count the payload length field,
* since the value doesn't change while translating the IP version.
* If you need a complete sum of the pseudo header, use the
* cksum_acc_ip_pheader() function.
*/
static int32_t
cksum_acc_ip_pheader_wo_payload_len(const void *ip_phdrp)
{
assert(ip_phdrp != NULL);
int32_t sum = 0;
int addr_len;
uint16_t *srcp, *dstp;
const struct ip *ip4_hdrp = ip_phdrp;
const struct ip6_hdr *ip6_hdrp = ip_phdrp;
int version = ip4_hdrp->ip_v;
switch (version) {
case 4:
addr_len = 2;
srcp = (uint16_t *)&ip4_hdrp->ip_src;
dstp = (uint16_t *)&ip4_hdrp->ip_dst;
while (addr_len--) {
sum += *srcp++;
sum += *dstp++;
}
#if 0
/*
* We don't add the length field of the pseudo header, assuming
* that the value doesn't change before and after translation.
* This is important when handling fragment packets. The change
* of the length means the change of the contents of the payload,
* which leads checksum re-calculation over the entire contents
* (or we need to find the location of the difference).
*
* If you need a complete pseudo header sum, use the
* cksum_acc_ip_pheader() function instead.
*/
sum += htons((ntohs(ip4_hdrp->ip_len) - (ip4_hdrp->ip_hl << 2)));
#endif
sum += htons(ip4_hdrp->ip_p);
break;
case 6:
addr_len = 8;
srcp = (uint16_t *)&ip6_hdrp->ip6_src;
dstp = (uint16_t *)&ip6_hdrp->ip6_dst;
while (addr_len--) {
sum += *srcp++;
sum += *dstp++;
}
#if 0
/* Same as the IPv4 case. */
sum += ip6_hdrp->ip6_plen >> 16; /* for jumbo payload? */
sum += ip6_hdrp->ip6_plen & 0xffff;
#endif
sum += htons(ip6_hdrp->ip6_nxt);
break;
default:
warnx("unsupported IP version %d.", version);
return (0);
}
return (sum);
}
static int32_t
cksum_acc_ip_pheader(const void *ip_phdrp)
{
assert(ip_phdrp != NULL);
const struct ip *ip4_hdrp = ip_phdrp;
const struct ip6_hdr *ip6_hdrp = ip_phdrp;
int32_t sum = 0;
int version = ip4_hdrp->ip_v;
switch (version) {
case 4:
sum += htons((ntohs(ip4_hdrp->ip_len) - (ip4_hdrp->ip_hl << 2)));
break;
case 6:
sum += ip6_hdrp->ip6_plen >> 16; /* for jumbo payload? */
sum += ip6_hdrp->ip6_plen & 0xffff;
break;
default:
warnx("unsupported IP version %d.", version);
return (0);
}
sum += cksum_acc_ip_pheader_wo_payload_len(ip_phdrp);
return (sum);
}
/*
* Calculate the sum of the series of 16 bits integer values. If the
* length of the data is odd, the last byte will be shifted by 8 bits
* and calculated as a 16 bits value.
*/
static int32_t
cksum_acc_words(const uint16_t *data, int data_len)
{
assert(data != NULL);
int32_t sum = 0;
while (data_len > 1) {
sum += *data++;
data_len -= 2;
}
if (data_len) {
union {
uint8_t u_ui8[2];
uint16_t u_ui16;
} last_byte;
last_byte.u_ui16 = 0;
last_byte.u_ui8[0] = *(uint8_t *)data;
sum += last_byte.u_ui16;
}
return (sum);
}