parisc: Use long branch to do_syscall_trace_exit
[linux-2.6-block.git] / include / net / checksum.h
CommitLineData
1da177e4
LT
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Checksumming functions for IP, TCP, UDP and so on
7 *
8 * Authors: Jorge Cwik, <jorge@laser.satlink.net>
9 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
10 * Borrows very liberally from tcp.c and ip.c, see those
11 * files for more names.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
17 */
18
19#ifndef _CHECKSUM_H
20#define _CHECKSUM_H
21
22#include <linux/errno.h>
23#include <asm/types.h>
24#include <asm/byteorder.h>
25#include <asm/uaccess.h>
26#include <asm/checksum.h>
27
28#ifndef _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
29static inline
56649d5d
AV
30__wsum csum_and_copy_from_user (const void __user *src, void *dst,
31 int len, __wsum sum, int *err_ptr)
1da177e4
LT
32{
33 if (access_ok(VERIFY_READ, src, len))
34 return csum_partial_copy_from_user(src, dst, len, sum, err_ptr);
35
36 if (len)
37 *err_ptr = -EFAULT;
38
39 return sum;
40}
41#endif
42
43#ifndef HAVE_CSUM_COPY_USER
56649d5d
AV
44static __inline__ __wsum csum_and_copy_to_user
45(const void *src, void __user *dst, int len, __wsum sum, int *err_ptr)
1da177e4
LT
46{
47 sum = csum_partial(src, len, sum);
48
49 if (access_ok(VERIFY_WRITE, dst, len)) {
50 if (copy_to_user(dst, src, len) == 0)
51 return sum;
52 }
53 if (len)
54 *err_ptr = -EFAULT;
55
56649d5d 56 return (__force __wsum)-1; /* invalid checksum */
1da177e4
LT
57}
58#endif
59
07064c6e 60#ifndef HAVE_ARCH_CSUM_ADD
56649d5d 61static inline __wsum csum_add(__wsum csum, __wsum addend)
1da177e4 62{
56649d5d
AV
63 u32 res = (__force u32)csum;
64 res += (__force u32)addend;
65 return (__force __wsum)(res + (res < (__force u32)addend));
1da177e4 66}
07064c6e 67#endif
1da177e4 68
56649d5d 69static inline __wsum csum_sub(__wsum csum, __wsum addend)
1da177e4
LT
70{
71 return csum_add(csum, ~addend);
72}
73
99f0b958
ED
74static inline __sum16 csum16_add(__sum16 csum, __be16 addend)
75{
76 u16 res = (__force u16)csum;
77
78 res += (__force u16)addend;
79 return (__force __sum16)(res + (res < (__force u16)addend));
80}
81
82static inline __sum16 csum16_sub(__sum16 csum, __be16 addend)
83{
84 return csum16_add(csum, ~addend);
85}
86
56649d5d
AV
87static inline __wsum
88csum_block_add(__wsum csum, __wsum csum2, int offset)
1da177e4 89{
56649d5d 90 u32 sum = (__force u32)csum2;
1da177e4 91 if (offset&1)
56649d5d
AV
92 sum = ((sum&0xFF00FF)<<8)+((sum>>8)&0xFF00FF);
93 return csum_add(csum, (__force __wsum)sum);
1da177e4
LT
94}
95
2817a336
DB
96static inline __wsum
97csum_block_add_ext(__wsum csum, __wsum csum2, int offset, int len)
98{
99 return csum_block_add(csum, csum2, offset);
100}
101
56649d5d
AV
102static inline __wsum
103csum_block_sub(__wsum csum, __wsum csum2, int offset)
1da177e4 104{
56649d5d 105 u32 sum = (__force u32)csum2;
1da177e4 106 if (offset&1)
56649d5d
AV
107 sum = ((sum&0xFF00FF)<<8)+((sum>>8)&0xFF00FF);
108 return csum_sub(csum, (__force __wsum)sum);
109}
110
111static inline __wsum csum_unfold(__sum16 n)
112{
113 return (__force __wsum)n;
1da177e4
LT
114}
115
cea80ea8
DB
116static inline __wsum csum_partial_ext(const void *buff, int len, __wsum sum)
117{
118 return csum_partial(buff, len, sum);
119}
120
f6ab0288 121#define CSUM_MANGLED_0 ((__force __sum16)0xffff)
a99a00cf
PM
122
123static inline void csum_replace4(__sum16 *sum, __be32 from, __be32 to)
124{
d53a2aa3
ED
125 __wsum tmp = csum_sub(~csum_unfold(*sum), (__force __wsum)from);
126
127 *sum = csum_fold(csum_add(tmp, (__force __wsum)to));
a99a00cf
PM
128}
129
99f0b958
ED
130/* Implements RFC 1624 (Incremental Internet Checksum)
131 * 3. Discussion states :
132 * HC' = ~(~HC + ~m + m')
133 * m : old value of a 16bit field
134 * m' : new value of a 16bit field
135 */
136static inline void csum_replace2(__sum16 *sum, __be16 old, __be16 new)
a99a00cf 137{
99f0b958 138 *sum = ~csum16_add(csum16_sub(~(*sum), old), new);
a99a00cf
PM
139}
140
141struct sk_buff;
4fc70747 142void inet_proto_csum_replace4(__sum16 *sum, struct sk_buff *skb,
4b048d6d 143 __be32 from, __be32 to, bool pseudohdr);
4fc70747
JP
144void inet_proto_csum_replace16(__sum16 *sum, struct sk_buff *skb,
145 const __be32 *from, const __be32 *to,
4b048d6d 146 bool pseudohdr);
abc5d1ff
TH
147void inet_proto_csum_replace_by_diff(__sum16 *sum, struct sk_buff *skb,
148 __wsum diff, bool pseudohdr);
a99a00cf
PM
149
150static inline void inet_proto_csum_replace2(__sum16 *sum, struct sk_buff *skb,
151 __be16 from, __be16 to,
4b048d6d 152 bool pseudohdr)
a99a00cf
PM
153{
154 inet_proto_csum_replace4(sum, skb, (__force __be32)from,
155 (__force __be32)to, pseudohdr);
156}
157
7c967b22
TH
158static inline __wsum remcsum_adjust(void *ptr, __wsum csum,
159 int start, int offset)
160{
161 __sum16 *psum = (__sum16 *)(ptr + offset);
162 __wsum delta;
163
164 /* Subtract out checksum up to start */
165 csum = csum_sub(csum, csum_partial(ptr, start, 0));
166
167 /* Set derived checksum in packet */
168 delta = csum_sub(csum_fold(csum), *psum);
169 *psum = csum_fold(csum);
170
171 return delta;
172}
173
26c4f7da
TH
174static inline void remcsum_unadjust(__sum16 *psum, __wsum delta)
175{
176 *psum = csum_fold(csum_sub(delta, *psum));
177}
178
1da177e4 179#endif