]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet/in_cksum.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1988, 1992, 1993
30 * The Regents of the University of California. All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * @(#)in_cksum.c 8.1 (Berkeley) 6/10/93
63 #include <sys/param.h>
65 #include <sys/kdebug.h>
67 #define DBG_FNC_IN_CKSUM NETDBG_CODE(DBG_NETIP, (3 << 8))
70 * Checksum routine for Internet Protocol family headers (Portable Version).
72 * This routine is very heavily used in the network
73 * code and should be modified for each CPU to be as fast as possible.
92 #define ADDCARRY(x) (x > 65535 ? x -= 65535 : x)
97 sum = q_util.s[0] + q_util.s[1] + q_util.s[2] + q_util.s[3]; \
102 l_util.l = q_util.s[0] + q_util.s[1] + q_util.s[2] + q_util.s[3]; \
103 sum = l_util.s[0] + l_util.s[1]; \
107 #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);}
112 __inline
unsigned short
113 in_addword(u_short a
, u_short b
)
116 u_int32_t sum
= a
+ b
;
121 __inline
unsigned short
122 in_pseudo(u_int a
, u_int b
, u_int c
)
128 sum
= (u_int64_t
) a
+ b
+ c
;
136 register struct mbuf
*m
;
140 register int sum
= 0;
141 register int mlen
= 0;
142 int starting_on_odd
= 0;
145 KERNEL_DEBUG(DBG_FNC_IN_CKSUM
| DBG_FUNC_START
, len
,0,0,0,0);
147 for (;m
&& len
; m
= m
->m_next
) {
151 w
= mtod(m
, u_short
*);
156 sum
= xsum_assym(w
, mlen
, sum
, starting_on_odd
);
167 KERNEL_DEBUG(DBG_FNC_IN_CKSUM
| DBG_FUNC_END
, 0,0,0,0,0);
168 return (~sum
& 0xffff);
172 in_cksum_skip(m
, len
, skip
)
173 register struct mbuf
*m
;
178 register int sum
= 0;
179 register int mlen
= 0;
180 int starting_on_odd
= 0;
183 for (; skip
&& m
; m
= m
->m_next
) {
184 if (m
->m_len
> skip
) {
185 mlen
= m
->m_len
- skip
;
186 w
= (u_short
*)(m
->m_data
+skip
);
192 for (;m
&& len
; m
= m
->m_next
) {
196 w
= mtod(m
, u_short
*);
201 sum
= xsum_assym(w
, mlen
, sum
, starting_on_odd
);
212 return (~sum
& 0xffff);
217 in_addword(u_short a
, u_short b
)
220 u_int32_t sum
= a
+ b
;
226 in_pseudo(u_int a
, u_int b
, u_int c
)
232 sum
= (u_int64_t
) a
+ b
+ c
;
240 register struct mbuf
*m
;
244 register int sum
= 0;
245 register int mlen
= 0;
246 int byte_swapped
= 0;
250 KERNEL_DEBUG(DBG_FNC_IN_CKSUM
| DBG_FUNC_START
, len
,0,0,0,0);
252 for (;m
&& len
; m
= m
->m_next
) {
255 w
= mtod(m
, u_short
*);
258 * The first byte of this mbuf is the continuation
259 * of a word spanning between this mbuf and the
262 * s_util.c[0] is already saved when scanning previous
265 s_util
.c
[1] = *(char *)w
;
267 w
= (u_short
*)((char *)w
+ 1);
276 * Force to even boundary.
278 if ((1 & (int) w
) && (mlen
> 0)) {
281 s_util
.c
[0] = *(u_char
*)w
;
282 w
= (u_short
*)((char *)w
+ 1);
287 * Unroll the loop to make overhead from
290 while ((mlen
-= 32) >= 0) {
291 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
292 sum
+= w
[4]; sum
+= w
[5]; sum
+= w
[6]; sum
+= w
[7];
293 sum
+= w
[8]; sum
+= w
[9]; sum
+= w
[10]; sum
+= w
[11];
294 sum
+= w
[12]; sum
+= w
[13]; sum
+= w
[14]; sum
+= w
[15];
298 while ((mlen
-= 8) >= 0) {
299 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
303 if (mlen
== 0 && byte_swapped
== 0)
306 while ((mlen
-= 2) >= 0) {
314 s_util
.c
[1] = *(char *)w
;
319 } else if (mlen
== -1)
320 s_util
.c
[0] = *(char *)w
;
323 printf("cksum: out of data\n");
325 /* The last mbuf has odd # of bytes. Follow the
326 standard (the odd byte may be shifted left by 8 bits
327 or not as determined by endian-ness of the machine) */
332 KERNEL_DEBUG(DBG_FNC_IN_CKSUM
| DBG_FUNC_END
, 0,0,0,0,0);
333 return (~sum
& 0xffff);
337 in_cksum_skip(m
, len
, skip
)
338 register struct mbuf
*m
;
339 register u_short len
;
340 register u_short skip
;
343 register int sum
= 0;
344 register int mlen
= 0;
345 int byte_swapped
= 0;
349 KERNEL_DEBUG(DBG_FNC_IN_CKSUM
| DBG_FUNC_START
, len
,0,0,0,0);
352 for (; skip
&& m
; m
= m
->m_next
) {
353 if (m
->m_len
> skip
) {
354 mlen
= m
->m_len
- skip
;
355 w
= (u_short
*)(m
->m_data
+skip
);
361 for (;m
&& len
; m
= m
->m_next
) {
364 w
= mtod(m
, u_short
*);
368 * The first byte of this mbuf is the continuation
369 * of a word spanning between this mbuf and the
372 * s_util.c[0] is already saved when scanning previous
375 s_util
.c
[1] = *(char *)w
;
377 w
= (u_short
*)((char *)w
+ 1);
389 * Force to even boundary.
391 if ((1 & (int) w
) && (mlen
> 0)) {
394 s_util
.c
[0] = *(u_char
*)w
;
395 w
= (u_short
*)((char *)w
+ 1);
400 * Unroll the loop to make overhead from
403 while ((mlen
-= 32) >= 0) {
404 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
405 sum
+= w
[4]; sum
+= w
[5]; sum
+= w
[6]; sum
+= w
[7];
406 sum
+= w
[8]; sum
+= w
[9]; sum
+= w
[10]; sum
+= w
[11];
407 sum
+= w
[12]; sum
+= w
[13]; sum
+= w
[14]; sum
+= w
[15];
411 while ((mlen
-= 8) >= 0) {
412 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
416 if (mlen
== 0 && byte_swapped
== 0)
419 while ((mlen
-= 2) >= 0) {
427 s_util
.c
[1] = *(char *)w
;
432 } else if (mlen
== -1)
433 s_util
.c
[0] = *(char *)w
;
436 printf("cksum: out of data\n");
438 /* The last mbuf has odd # of bytes. Follow the
439 standard (the odd byte may be shifted left by 8 bits
440 or not as determined by endian-ness of the machine) */
445 KERNEL_DEBUG(DBG_FNC_IN_CKSUM
| DBG_FUNC_END
, 0,0,0,0,0);
446 return (~sum
& 0xffff);