1 | /* $Id: cksum.c 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT - IP checksum generation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*
|
---|
19 | * This code is based on:
|
---|
20 | *
|
---|
21 | * Copyright (c) 1988, 1992, 1993
|
---|
22 | * The Regents of the University of California. All rights reserved.
|
---|
23 | *
|
---|
24 | * Redistribution and use in source and binary forms, with or without
|
---|
25 | * modification, are permitted provided that the following conditions
|
---|
26 | * are met:
|
---|
27 | * 1. Redistributions of source code must retain the above copyright
|
---|
28 | * notice, this list of conditions and the following disclaimer.
|
---|
29 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
30 | * notice, this list of conditions and the following disclaimer in the
|
---|
31 | * documentation and/or other materials provided with the distribution.
|
---|
32 | * 3. All advertising materials mentioning features or use of this software
|
---|
33 | * must display the following acknowledgement:
|
---|
34 | * This product includes software developed by the University of
|
---|
35 | * California, Berkeley and its contributors.
|
---|
36 | * 4. Neither the name of the University nor the names of its contributors
|
---|
37 | * may be used to endorse or promote products derived from this software
|
---|
38 | * without specific prior written permission.
|
---|
39 | *
|
---|
40 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
---|
41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
---|
44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
50 | * SUCH DAMAGE.
|
---|
51 | *
|
---|
52 | * @(#)in_cksum.c 8.1 (Berkeley) 6/10/93
|
---|
53 | * in_cksum.c,v 1.2 1994/08/02 07:48:16 davidg Exp
|
---|
54 | */
|
---|
55 |
|
---|
56 | #include <slirp.h>
|
---|
57 |
|
---|
58 | /*
|
---|
59 | * Checksum routine for Internet Protocol family headers (Portable Version).
|
---|
60 | *
|
---|
61 | * This routine is very heavily used in the network
|
---|
62 | * code and should be modified for each CPU to be as fast as possible.
|
---|
63 | *
|
---|
64 | * XXX Since we will never span more than 1 mbuf, we can optimise this
|
---|
65 | */
|
---|
66 |
|
---|
67 | #define ADDCARRY(x) (x > 65535 ? x -= 65535 : x)
|
---|
68 | #define REDUCE { l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum); }
|
---|
69 |
|
---|
70 | int cksum(struct mbuf *m, int len)
|
---|
71 | {
|
---|
72 | register u_int16_t *w;
|
---|
73 | register int sum = 0;
|
---|
74 | register int mlen = 0;
|
---|
75 | int byte_swapped = 0;
|
---|
76 |
|
---|
77 | union
|
---|
78 | {
|
---|
79 | u_int8_t c[2];
|
---|
80 | u_int16_t s;
|
---|
81 | } s_util;
|
---|
82 | union
|
---|
83 | {
|
---|
84 | u_int16_t s[2];
|
---|
85 | u_int32_t l;
|
---|
86 | } l_util;
|
---|
87 |
|
---|
88 | if (m->m_len == 0)
|
---|
89 | goto cont;
|
---|
90 | w = mtod(m, u_int16_t *);
|
---|
91 |
|
---|
92 | mlen = m->m_len;
|
---|
93 |
|
---|
94 | if (len < mlen)
|
---|
95 | mlen = len;
|
---|
96 | len -= mlen;
|
---|
97 | /*
|
---|
98 | * Force to even boundary.
|
---|
99 | */
|
---|
100 | if ((1 & (long) w) && (mlen > 0))
|
---|
101 | {
|
---|
102 | REDUCE;
|
---|
103 | sum <<= 8;
|
---|
104 | s_util.c[0] = *(u_int8_t *)w;
|
---|
105 | w = (u_int16_t *)((int8_t *)w + 1);
|
---|
106 | mlen--;
|
---|
107 | byte_swapped = 1;
|
---|
108 | }
|
---|
109 | /*
|
---|
110 | * Unroll the loop to make overhead from
|
---|
111 | * branches &c small.
|
---|
112 | */
|
---|
113 | while ((mlen -= 32) >= 0)
|
---|
114 | {
|
---|
115 | sum += w[ 0]; sum += w[ 1]; sum += w[ 2]; sum += w[ 3];
|
---|
116 | sum += w[ 4]; sum += w[ 5]; sum += w[ 6]; sum += w[ 7];
|
---|
117 | sum += w[ 8]; sum += w[ 9]; sum += w[10]; sum += w[11];
|
---|
118 | sum += w[12]; sum += w[13]; sum += w[14]; sum += w[15];
|
---|
119 | w += 16;
|
---|
120 | }
|
---|
121 | mlen += 32;
|
---|
122 | while ((mlen -= 8) >= 0)
|
---|
123 | {
|
---|
124 | sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3];
|
---|
125 | w += 4;
|
---|
126 | }
|
---|
127 | mlen += 8;
|
---|
128 | if (mlen == 0 && byte_swapped == 0)
|
---|
129 | goto cont;
|
---|
130 | REDUCE;
|
---|
131 | while ((mlen -= 2) >= 0)
|
---|
132 | {
|
---|
133 | sum += *w++;
|
---|
134 | }
|
---|
135 |
|
---|
136 | if (byte_swapped)
|
---|
137 | {
|
---|
138 | REDUCE;
|
---|
139 | sum <<= 8;
|
---|
140 | byte_swapped = 0;
|
---|
141 | if (mlen == -1)
|
---|
142 | {
|
---|
143 | s_util.c[1] = *(u_int8_t *)w;
|
---|
144 | sum += s_util.s;
|
---|
145 | mlen = 0;
|
---|
146 | }
|
---|
147 | else
|
---|
148 | mlen = -1;
|
---|
149 | }
|
---|
150 | else if (mlen == -1)
|
---|
151 | s_util.c[0] = *(u_int8_t *)w;
|
---|
152 |
|
---|
153 | cont:
|
---|
154 | #ifdef DEBUG
|
---|
155 | if (len)
|
---|
156 | {
|
---|
157 | DEBUG_ERROR((dfd, "cksum: out of data\n"));
|
---|
158 | DEBUG_ERROR((dfd, " len = %d\n", len));
|
---|
159 | }
|
---|
160 | #endif
|
---|
161 | if (mlen == -1)
|
---|
162 | {
|
---|
163 | /* The last mbuf has odd # of bytes. Follow the
|
---|
164 | standard (the odd byte may be shifted left by 8 bits
|
---|
165 | or not as determined by endian-ness of the machine) */
|
---|
166 | s_util.c[1] = 0;
|
---|
167 | sum += s_util.s;
|
---|
168 | }
|
---|
169 | REDUCE;
|
---|
170 | return (~sum & 0xffff);
|
---|
171 | }
|
---|