Linux Audio

Check our new training course

Loading...
v3.1
 
  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
 30__wsum csum_and_copy_from_user (const void __user *src, void *dst,
 31				      int len, __wsum sum, int *err_ptr)
 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
 44static __inline__ __wsum csum_and_copy_to_user
 45(const void *src, void __user *dst, int len, __wsum sum, int *err_ptr)
 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
 56	return (__force __wsum)-1; /* invalid checksum */
 
 
 
 
 
 57}
 58#endif
 59
 60static inline __wsum csum_add(__wsum csum, __wsum addend)
 
 61{
 62	u32 res = (__force u32)csum;
 63	res += (__force u32)addend;
 64	return (__force __wsum)(res + (res < (__force u32)addend));
 65}
 
 66
 67static inline __wsum csum_sub(__wsum csum, __wsum addend)
 68{
 69	return csum_add(csum, ~addend);
 70}
 71
 72static inline __wsum
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 73csum_block_add(__wsum csum, __wsum csum2, int offset)
 74{
 75	u32 sum = (__force u32)csum2;
 76	if (offset&1)
 77		sum = ((sum&0xFF00FF)<<8)+((sum>>8)&0xFF00FF);
 78	return csum_add(csum, (__force __wsum)sum);
 
 
 
 79}
 80
 81static inline __wsum
 82csum_block_sub(__wsum csum, __wsum csum2, int offset)
 83{
 84	u32 sum = (__force u32)csum2;
 85	if (offset&1)
 86		sum = ((sum&0xFF00FF)<<8)+((sum>>8)&0xFF00FF);
 87	return csum_sub(csum, (__force __wsum)sum);
 88}
 89
 90static inline __wsum csum_unfold(__sum16 n)
 91{
 92	return (__force __wsum)n;
 93}
 94
 
 
 
 
 
 
 95#define CSUM_MANGLED_0 ((__force __sum16)0xffff)
 96
 97static inline void csum_replace4(__sum16 *sum, __be32 from, __be32 to)
 
 
 
 
 
 98{
 99	__be32 diff[] = { ~from, to };
100
101	*sum = csum_fold(csum_partial(diff, sizeof(diff), ~csum_unfold(*sum)));
102}
103
104static inline void csum_replace2(__sum16 *sum, __be16 from, __be16 to)
 
 
 
 
 
 
105{
106	csum_replace4(sum, (__force __be32)from, (__force __be32)to);
107}
108
109struct sk_buff;
110extern void inet_proto_csum_replace4(__sum16 *sum, struct sk_buff *skb,
111				     __be32 from, __be32 to, int pseudohdr);
 
112
113static inline void inet_proto_csum_replace2(__sum16 *sum, struct sk_buff *skb,
114					    __be16 from, __be16 to,
115					    int pseudohdr)
 
 
 
 
 
 
 
 
 
116{
117	inet_proto_csum_replace4(sum, skb, (__force __be32)from,
118				 (__force __be32)to, pseudohdr);
119}
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121#endif
v6.2
  1/* SPDX-License-Identifier: GPL-2.0-or-later */
  2/*
  3 * INET		An implementation of the TCP/IP protocol suite for the LINUX
  4 *		operating system.  INET is implemented using the  BSD Socket
  5 *		interface as the means of communication with the user level.
  6 *
  7 *		Checksumming functions for IP, TCP, UDP and so on
  8 *
  9 * Authors:	Jorge Cwik, <jorge@laser.satlink.net>
 10 *		Arnt Gulbrandsen, <agulbra@nvg.unit.no>
 11 *		Borrows very liberally from tcp.c and ip.c, see those
 12 *		files for more names.
 
 
 
 
 
 13 */
 14
 15#ifndef _CHECKSUM_H
 16#define _CHECKSUM_H
 17
 18#include <linux/errno.h>
 19#include <asm/types.h>
 20#include <asm/byteorder.h>
 21#include <linux/uaccess.h>
 22#include <asm/checksum.h>
 23
 24#ifndef _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
 25static __always_inline
 26__wsum csum_and_copy_from_user (const void __user *src, void *dst,
 27				      int len)
 28{
 29	if (copy_from_user(dst, src, len))
 30		return 0;
 31	return csum_partial(dst, len, ~0U);
 
 
 
 
 32}
 33#endif
 34
 35#ifndef HAVE_CSUM_COPY_USER
 36static __always_inline __wsum csum_and_copy_to_user
 37(const void *src, void __user *dst, int len)
 38{
 39	__wsum sum = csum_partial(src, len, ~0U);
 40
 41	if (copy_to_user(dst, src, len) == 0)
 42		return sum;
 43	return 0;
 44}
 45#endif
 
 46
 47#ifndef _HAVE_ARCH_CSUM_AND_COPY
 48static __always_inline __wsum
 49csum_partial_copy_nocheck(const void *src, void *dst, int len)
 50{
 51	memcpy(dst, src, len);
 52	return csum_partial(dst, len, 0);
 53}
 54#endif
 55
 56#ifndef HAVE_ARCH_CSUM_ADD
 57static __always_inline __wsum csum_add(__wsum csum, __wsum addend)
 58{
 59	u32 res = (__force u32)csum;
 60	res += (__force u32)addend;
 61	return (__force __wsum)(res + (res < (__force u32)addend));
 62}
 63#endif
 64
 65static __always_inline __wsum csum_sub(__wsum csum, __wsum addend)
 66{
 67	return csum_add(csum, ~addend);
 68}
 69
 70static __always_inline __sum16 csum16_add(__sum16 csum, __be16 addend)
 71{
 72	u16 res = (__force u16)csum;
 73
 74	res += (__force u16)addend;
 75	return (__force __sum16)(res + (res < (__force u16)addend));
 76}
 77
 78static __always_inline __sum16 csum16_sub(__sum16 csum, __be16 addend)
 79{
 80	return csum16_add(csum, ~addend);
 81}
 82
 83#ifndef HAVE_ARCH_CSUM_SHIFT
 84static __always_inline __wsum csum_shift(__wsum sum, int offset)
 85{
 86	/* rotate sum to align it with a 16b boundary */
 87	if (offset & 1)
 88		return (__force __wsum)ror32((__force u32)sum, 8);
 89	return sum;
 90}
 91#endif
 92
 93static __always_inline __wsum
 94csum_block_add(__wsum csum, __wsum csum2, int offset)
 95{
 96	return csum_add(csum, csum_shift(csum2, offset));
 97}
 98
 99static __always_inline __wsum
100csum_block_add_ext(__wsum csum, __wsum csum2, int offset, int len)
101{
102	return csum_block_add(csum, csum2, offset);
103}
104
105static __always_inline __wsum
106csum_block_sub(__wsum csum, __wsum csum2, int offset)
107{
108	return csum_block_add(csum, ~csum2, offset);
 
 
 
109}
110
111static __always_inline __wsum csum_unfold(__sum16 n)
112{
113	return (__force __wsum)n;
114}
115
116static __always_inline
117__wsum csum_partial_ext(const void *buff, int len, __wsum sum)
118{
119	return csum_partial(buff, len, sum);
120}
121
122#define CSUM_MANGLED_0 ((__force __sum16)0xffff)
123
124static __always_inline void csum_replace_by_diff(__sum16 *sum, __wsum diff)
125{
126	*sum = csum_fold(csum_add(diff, ~csum_unfold(*sum)));
127}
128
129static __always_inline void csum_replace4(__sum16 *sum, __be32 from, __be32 to)
130{
131	__wsum tmp = csum_sub(~csum_unfold(*sum), (__force __wsum)from);
132
133	*sum = csum_fold(csum_add(tmp, (__force __wsum)to));
134}
135
136/* Implements RFC 1624 (Incremental Internet Checksum)
137 * 3. Discussion states :
138 *     HC' = ~(~HC + ~m + m')
139 *  m : old value of a 16bit field
140 *  m' : new value of a 16bit field
141 */
142static __always_inline void csum_replace2(__sum16 *sum, __be16 old, __be16 new)
143{
144	*sum = ~csum16_add(csum16_sub(~(*sum), old), new);
145}
146
147static inline void csum_replace(__wsum *csum, __wsum old, __wsum new)
148{
149	*csum = csum_add(csum_sub(*csum, old), new);
150}
151
152struct sk_buff;
153void inet_proto_csum_replace4(__sum16 *sum, struct sk_buff *skb,
154			      __be32 from, __be32 to, bool pseudohdr);
155void inet_proto_csum_replace16(__sum16 *sum, struct sk_buff *skb,
156			       const __be32 *from, const __be32 *to,
157			       bool pseudohdr);
158void inet_proto_csum_replace_by_diff(__sum16 *sum, struct sk_buff *skb,
159				     __wsum diff, bool pseudohdr);
160
161static __always_inline
162void inet_proto_csum_replace2(__sum16 *sum, struct sk_buff *skb,
163			      __be16 from, __be16 to, bool pseudohdr)
164{
165	inet_proto_csum_replace4(sum, skb, (__force __be32)from,
166				 (__force __be32)to, pseudohdr);
167}
168
169static __always_inline __wsum remcsum_adjust(void *ptr, __wsum csum,
170					     int start, int offset)
171{
172	__sum16 *psum = (__sum16 *)(ptr + offset);
173	__wsum delta;
174
175	/* Subtract out checksum up to start */
176	csum = csum_sub(csum, csum_partial(ptr, start, 0));
177
178	/* Set derived checksum in packet */
179	delta = csum_sub((__force __wsum)csum_fold(csum),
180			 (__force __wsum)*psum);
181	*psum = csum_fold(csum);
182
183	return delta;
184}
185
186static __always_inline void remcsum_unadjust(__sum16 *psum, __wsum delta)
187{
188	*psum = csum_fold(csum_sub(delta, (__force __wsum)*psum));
189}
190
191static __always_inline __wsum wsum_negate(__wsum val)
192{
193	return (__force __wsum)-((__force u32)val);
194}
195#endif