]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/in6_cksum.c
1 /* $FreeBSD: src/sys/netinet6/in6_cksum.c,v 1.1.2.3 2001/07/03 11:01:52 ume Exp $ */
2 /* $KAME: in6_cksum.c,v 1.10 2000/12/03 00:53:59 itojun Exp $ */
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * Copyright (c) 1988, 1992, 1993
35 * The Regents of the University of California. All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. All advertising materials mentioning features or use of this software
46 * must display the following acknowledgement:
47 * This product includes software developed by the University of
48 * California, Berkeley and its contributors.
49 * 4. Neither the name of the University nor the names of its contributors
50 * may be used to endorse or promote products derived from this software
51 * without specific prior written permission.
53 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
65 * @(#)in_cksum.c 8.1 (Berkeley) 6/10/93
68 #include <sys/param.h>
70 #include <sys/systm.h>
71 #include <netinet/in.h>
72 #include <netinet/ip6.h>
74 #include <net/net_osdep.h>
77 * Checksum routine for Internet Protocol family headers (Portable Version).
79 * This routine is very heavily used in the network
80 * code and should be modified for each CPU to be as fast as possible.
83 #define ADDCARRY(x) (x > 65535 ? x -= 65535 : x)
84 #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);}
87 * m MUST contain a continuous IP6 header.
88 * off is a offset where TCP/UDP/ICMP6 header starts.
89 * len is a total length of a transport segment.
90 * (e.g. TCP header + TCP payload)
94 in6_cksum(m
, nxt
, off
, len
)
102 int byte_swapped
= 0;
104 int srcifid
= 0, dstifid
= 0;
113 } ph
__attribute__((__packed__
));
125 if (m
->m_pkthdr
.len
< off
+ len
) {
126 panic("in6_cksum: mbuf len (%d) < off+len (%d+%d)\n",
127 m
->m_pkthdr
.len
, off
, len
);
130 bzero(&uph
, sizeof(uph
));
133 * First create IP6 pseudo header and calculate a summary.
135 ip6
= mtod(m
, struct ip6_hdr
*);
137 if (IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_src
)) {
138 srcifid
= ip6
->ip6_src
.s6_addr16
[1];
139 ip6
->ip6_src
.s6_addr16
[1] = 0;
141 if (IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_dst
)) {
142 dstifid
= ip6
->ip6_dst
.s6_addr16
[1];
143 ip6
->ip6_dst
.s6_addr16
[1] = 0;
146 w
= (u_int16_t
*)&ip6
->ip6_src
;
147 uph
.ph
.ph_len
= htonl(len
);
150 /* IPv6 source address */
152 if (!IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_src
))
154 sum
+= w
[2]; sum
+= w
[3]; sum
+= w
[4]; sum
+= w
[5];
155 sum
+= w
[6]; sum
+= w
[7];
156 /* IPv6 destination address */
158 if (!IN6_IS_SCOPE_LINKLOCAL(&ip6
->ip6_dst
))
160 sum
+= w
[10]; sum
+= w
[11]; sum
+= w
[12]; sum
+= w
[13];
161 sum
+= w
[14]; sum
+= w
[15];
162 /* Payload length and upper layer identifier */
163 sum
+= uph
.phs
[0]; sum
+= uph
.phs
[1];
164 sum
+= uph
.phs
[2]; sum
+= uph
.phs
[3];
168 ip6
->ip6_src
.s6_addr16
[1] = srcifid
;
170 ip6
->ip6_dst
.s6_addr16
[1] = dstifid
;
173 * Secondly calculate a summary of the first mbuf excluding offset.
175 while (m
!= NULL
&& off
> 0) {
182 w
= (u_int16_t
*)(mtod(m
, u_char
*) + off
);
183 mlen
= m
->m_len
- off
;
188 * Force to even boundary.
190 if ((1 & (long) w
) && (mlen
> 0)) {
193 s_util
.c
[0] = *(u_char
*)w
;
194 w
= (u_int16_t
*)((char *)w
+ 1);
199 * Unroll the loop to make overhead from
202 while ((mlen
-= 32) >= 0) {
203 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
204 sum
+= w
[4]; sum
+= w
[5]; sum
+= w
[6]; sum
+= w
[7];
205 sum
+= w
[8]; sum
+= w
[9]; sum
+= w
[10]; sum
+= w
[11];
206 sum
+= w
[12]; sum
+= w
[13]; sum
+= w
[14]; sum
+= w
[15];
210 while ((mlen
-= 8) >= 0) {
211 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
215 if (mlen
== 0 && byte_swapped
== 0)
218 while ((mlen
-= 2) >= 0) {
226 s_util
.c
[1] = *(char *)w
;
231 } else if (mlen
== -1)
232 s_util
.c
[0] = *(char *)w
;
237 * Lastly calculate a summary of the rest of mbufs.
240 for (;m
&& len
; m
= m
->m_next
) {
243 w
= mtod(m
, u_int16_t
*);
246 * The first byte of this mbuf is the continuation
247 * of a word spanning between this mbuf and the
250 * s_util.c[0] is already saved when scanning previous
253 s_util
.c
[1] = *(char *)w
;
255 w
= (u_int16_t
*)((char *)w
+ 1);
264 * Force to even boundary.
266 if ((1 & (long) w
) && (mlen
> 0)) {
269 s_util
.c
[0] = *(u_char
*)w
;
270 w
= (u_int16_t
*)((char *)w
+ 1);
275 * Unroll the loop to make overhead from
278 while ((mlen
-= 32) >= 0) {
279 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
280 sum
+= w
[4]; sum
+= w
[5]; sum
+= w
[6]; sum
+= w
[7];
281 sum
+= w
[8]; sum
+= w
[9]; sum
+= w
[10]; sum
+= w
[11];
282 sum
+= w
[12]; sum
+= w
[13]; sum
+= w
[14]; sum
+= w
[15];
286 while ((mlen
-= 8) >= 0) {
287 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
291 if (mlen
== 0 && byte_swapped
== 0)
294 while ((mlen
-= 2) >= 0) {
302 s_util
.c
[1] = *(char *)w
;
307 } else if (mlen
== -1)
308 s_util
.c
[0] = *(char *)w
;
311 panic("in6_cksum: out of data\n");
313 /* The last mbuf has odd # of bytes. Follow the
314 standard (the odd byte may be shifted left by 8 bits
315 or not as determined by endian-ness of the machine) */
320 return (~sum
& 0xffff);