1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/module.h>
18#include <linux/types.h>
19
20#include <net/checksum.h>
21#include <asm/byteorder.h>
22#include <asm/string.h>
23#include <linux/uaccess.h>
24
25#define addc(_t,_r) \
26 __asm__ __volatile__ ( \
27" add %0, %1, %0\n" \
28" addc %0, %%r0, %0\n" \
29 : "=r"(_t) \
30 : "r"(_r), "0"(_t));
31
32static inline unsigned short from32to16(unsigned int x)
33{
34
35 x = (x & 0xffff) + (x >> 16);
36
37 x = (x & 0xffff) + (x >> 16);
38 return (unsigned short)x;
39}
40
41static inline unsigned int do_csum(const unsigned char * buff, int len)
42{
43 int odd, count;
44 unsigned int result = 0;
45
46 if (len <= 0)
47 goto out;
48 odd = 1 & (unsigned long) buff;
49 if (odd) {
50 result = be16_to_cpu(*buff);
51 len--;
52 buff++;
53 }
54 count = len >> 1;
55 if (count) {
56 if (2 & (unsigned long) buff) {
57 result += *(unsigned short *) buff;
58 count--;
59 len -= 2;
60 buff += 2;
61 }
62 count >>= 1;
63 if (count) {
64 while (count >= 4) {
65 unsigned int r1, r2, r3, r4;
66 r1 = *(unsigned int *)(buff + 0);
67 r2 = *(unsigned int *)(buff + 4);
68 r3 = *(unsigned int *)(buff + 8);
69 r4 = *(unsigned int *)(buff + 12);
70 addc(result, r1);
71 addc(result, r2);
72 addc(result, r3);
73 addc(result, r4);
74 count -= 4;
75 buff += 16;
76 }
77 while (count) {
78 unsigned int w = *(unsigned int *) buff;
79 count--;
80 buff += 4;
81 addc(result, w);
82 }
83 result = (result & 0xffff) + (result >> 16);
84 }
85 if (len & 2) {
86 result += *(unsigned short *) buff;
87 buff += 2;
88 }
89 }
90 if (len & 1)
91 result += le16_to_cpu(*buff);
92 result = from32to16(result);
93 if (odd)
94 result = swab16(result);
95out:
96 return result;
97}
98
99
100
101
102
103
104
105__wsum csum_partial(const void *buff, int len, __wsum sum)
106{
107 unsigned int result = do_csum(buff, len);
108 addc(result, sum);
109 return (__force __wsum)from32to16(result);
110}
111
112EXPORT_SYMBOL(csum_partial);
113
114
115
116
117__wsum csum_partial_copy_nocheck(const void *src, void *dst,
118 int len, __wsum sum)
119{
120
121
122
123
124 sum = csum_partial(src, len, sum);
125 memcpy(dst, src, len);
126
127 return sum;
128}
129EXPORT_SYMBOL(csum_partial_copy_nocheck);
130
131
132
133
134
135__wsum csum_partial_copy_from_user(const void __user *src,
136 void *dst, int len,
137 __wsum sum, int *err_ptr)
138{
139 int missing;
140
141 missing = copy_from_user(dst, src, len);
142 if (missing) {
143 memset(dst + len - missing, 0, missing);
144 *err_ptr = -EFAULT;
145 }
146
147 return csum_partial(dst, len, sum);
148}
149EXPORT_SYMBOL(csum_partial_copy_from_user);
150