Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / parisc / lib / checksum.c
blob8a1e08068e7de0c831f9689e644458d27fc90c63
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.
6 * MIPS specific IP/TCP/UDP checksumming routines
8 * Authors: Ralf Baechle, <ralf@waldorf-gmbh.de>
9 * Lots of code moved from tcp.c and ip.c; see those files
10 * for more names.
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
17 * $Id: checksum.c,v 1.3 1997/12/01 17:57:34 ralf Exp $
19 #include <linux/module.h>
20 #include <linux/types.h>
22 #include <net/checksum.h>
23 #include <asm/byteorder.h>
24 #include <asm/string.h>
25 #include <asm/uaccess.h>
27 #define addc(_t,_r) \
28 __asm__ __volatile__ ( \
29 " add %0, %1, %0\n" \
30 " addc %0, %%r0, %0\n" \
31 : "=r"(_t) \
32 : "r"(_r), "0"(_t));
34 static inline unsigned short from32to16(unsigned int x)
36 /* 32 bits --> 16 bits + carry */
37 x = (x & 0xffff) + (x >> 16);
38 /* 16 bits + carry --> 16 bits including carry */
39 x = (x & 0xffff) + (x >> 16);
40 return (unsigned short)x;
43 static inline unsigned int do_csum(const unsigned char * buff, int len)
45 int odd, count;
46 unsigned int result = 0;
48 if (len <= 0)
49 goto out;
50 odd = 1 & (unsigned long) buff;
51 if (odd) {
52 result = be16_to_cpu(*buff);
53 len--;
54 buff++;
56 count = len >> 1; /* nr of 16-bit words.. */
57 if (count) {
58 if (2 & (unsigned long) buff) {
59 result += *(unsigned short *) buff;
60 count--;
61 len -= 2;
62 buff += 2;
64 count >>= 1; /* nr of 32-bit words.. */
65 if (count) {
66 while (count >= 4) {
67 unsigned int r1, r2, r3, r4;
68 r1 = *(unsigned int *)(buff + 0);
69 r2 = *(unsigned int *)(buff + 4);
70 r3 = *(unsigned int *)(buff + 8);
71 r4 = *(unsigned int *)(buff + 12);
72 addc(result, r1);
73 addc(result, r2);
74 addc(result, r3);
75 addc(result, r4);
76 count -= 4;
77 buff += 16;
79 while (count) {
80 unsigned int w = *(unsigned int *) buff;
81 count--;
82 buff += 4;
83 addc(result, w);
85 result = (result & 0xffff) + (result >> 16);
87 if (len & 2) {
88 result += *(unsigned short *) buff;
89 buff += 2;
92 if (len & 1)
93 result += le16_to_cpu(*buff);
94 result = from32to16(result);
95 if (odd)
96 result = swab16(result);
97 out:
98 return result;
102 * computes a partial checksum, e.g. for TCP/UDP fragments
104 unsigned int csum_partial(const unsigned char *buff, int len, unsigned int sum)
106 unsigned int result = do_csum(buff, len);
107 addc(result, sum);
108 return from32to16(result);
111 EXPORT_SYMBOL(csum_partial);
114 * copy while checksumming, otherwise like csum_partial
116 unsigned int csum_partial_copy_nocheck(const unsigned char *src, unsigned char *dst,
117 int len, unsigned int sum)
120 * It's 2:30 am and I don't feel like doing it real ...
121 * This is lots slower than the real thing (tm)
123 sum = csum_partial(src, len, sum);
124 memcpy(dst, src, len);
126 return sum;
128 EXPORT_SYMBOL(csum_partial_copy_nocheck);
131 * Copy from userspace and compute checksum. If we catch an exception
132 * then zero the rest of the buffer.
134 unsigned int csum_partial_copy_from_user(const unsigned char __user *src,
135 unsigned char *dst, int len,
136 unsigned int sum, int *err_ptr)
138 int missing;
140 missing = copy_from_user(dst, src, len);
141 if (missing) {
142 memset(dst + len - missing, 0, missing);
143 *err_ptr = -EFAULT;
146 return csum_partial(dst, len, sum);
148 EXPORT_SYMBOL(csum_partial_copy_from_user);