1 #ifndef __ASM_SH_CHECKSUM_H
2 #define __ASM_SH_CHECKSUM_H
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * Copyright (C) 1999 by Kaz Kojima & Niibe Yutaka
12 #include <linux/config.h>
15 * computes the checksum of a memory block at buff, length len,
16 * and adds in "sum" (32-bit)
18 * returns a 32-bit number suitable for feeding into itself
19 * or csum_tcpudp_magic
21 * this function must be called with even lengths, except
22 * for the last fragment, which may be odd
24 * it's best to have buff aligned on a 32-bit boundary
26 asmlinkage
unsigned int csum_partial(const unsigned char * buff
, int len
, unsigned int sum
);
29 * the same as csum_partial, but copies from src while it
30 * checksums, and handles user-space pointer exceptions correctly, when needed.
32 * here even more important to align src and dst on a 32-bit (or even
33 * better 64-bit) boundary
36 asmlinkage
unsigned int csum_partial_copy_generic( const char *src
, char *dst
, int len
, int sum
,
37 int *src_err_ptr
, int *dst_err_ptr
);
40 * Note: when you get a NULL pointer exception here this means someone
41 * passed in an incorrect kernel address to one of these functions.
43 * If you use these functions directly please don't forget the
47 unsigned int csum_partial_copy_nocheck ( const char *src
, char *dst
,
50 return csum_partial_copy_generic ( src
, dst
, len
, sum
, NULL
, NULL
);
54 unsigned int csum_partial_copy_from_user ( const char *src
, char *dst
,
55 int len
, int sum
, int *err_ptr
)
57 return csum_partial_copy_generic ( src
, dst
, len
, sum
, err_ptr
, NULL
);
61 * Fold a partial checksum
64 static __inline__
unsigned int csum_fold(unsigned int sum
)
67 __asm__("swap.w %0, %1\n\t"
74 : "=r" (sum
), "=&r" (__dummy
)
81 * This is a version of ip_compute_csum() optimized for IP headers,
82 * which always checksum on 4 octet boundaries.
84 * i386 version by Jorge Cwik <jorge@laser.satlink.net>, adapted
85 * for linux by * Arnt Gulbrandsen.
87 static __inline__
unsigned short ip_fast_csum(unsigned char * iph
, unsigned int ihl
)
89 unsigned int sum
, __dummy0
, __dummy1
;
104 "addc %2, %0" /* Here %2 is 0, add carry-bit */
105 /* Since the input registers which are loaded with iph and ihl
106 are modified, we must also specify them as outputs, or gcc
107 will assume they contain their original values. */
108 : "=r" (sum
), "=r" (iph
), "=r" (ihl
), "=&r" (__dummy0
), "=&z" (__dummy1
)
109 : "1" (iph
), "2" (ihl
)
112 return csum_fold(sum
);
115 static __inline__
unsigned long csum_tcpudp_nofold(unsigned long saddr
,
118 unsigned short proto
,
121 #ifdef __LITTLE_ENDIAN__
122 unsigned long len_proto
= (ntohs(len
)<<16)+proto
*256;
124 unsigned long len_proto
= (proto
<<16)+len
;
132 : "=r" (sum
), "=r" (len_proto
)
133 : "r" (daddr
), "r" (saddr
), "1" (len_proto
), "0" (sum
)
139 * computes the checksum of the TCP/UDP pseudo-header
140 * returns a 16-bit checksum, already complemented
142 static __inline__
unsigned short int csum_tcpudp_magic(unsigned long saddr
,
145 unsigned short proto
,
148 return csum_fold(csum_tcpudp_nofold(saddr
,daddr
,len
,proto
,sum
));
152 * this routine is used for miscellaneous IP-like checksums, mainly
156 static __inline__
unsigned short ip_compute_csum(unsigned char * buff
, int len
)
158 return csum_fold (csum_partial(buff
, len
, 0));
161 #define _HAVE_ARCH_IPV6_CSUM
163 static __inline__
unsigned short int csum_ipv6_magic(struct in6_addr
*saddr
,
164 struct in6_addr
*daddr
,
166 unsigned short proto
,
169 unsigned int __dummy
;
171 "mov.l @(0,%2), %1\n\t"
173 "mov.l @(4,%2), %1\n\t"
175 "mov.l @(8,%2), %1\n\t"
177 "mov.l @(12,%2), %1\n\t"
179 "mov.l @(0,%3), %1\n\t"
181 "mov.l @(4,%3), %1\n\t"
183 "mov.l @(8,%3), %1\n\t"
185 "mov.l @(12,%3), %1\n\t"
191 : "=r" (sum
), "=&r" (__dummy
)
192 : "r" (saddr
), "r" (daddr
),
193 "r" (htonl(len
)), "r" (htonl(proto
)), "0" (sum
)
196 return csum_fold(sum
);
201 * Copy and checksum to user
203 #define HAVE_CSUM_COPY_USER
204 static __inline__
unsigned int csum_and_copy_to_user (const char *src
,
209 if (access_ok(VERIFY_WRITE
, dst
, len
))
210 return csum_partial_copy_generic(src
, dst
, len
, sum
, NULL
, err_ptr
);
215 return -1; /* invalid checksum */
217 #endif /* __ASM_SH_CHECKSUM_H */