__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_SH_CHECKSUM_H
#define __ASM_SH_CHECKSUM_H

/*
 * Copyright (C) 1999 by Kaz Kojima & Niibe Yutaka
 */

#include <linux/in6.h>
#include <linux/uaccess.h>

/*
 * computes the checksum of a memory block at buff, length len,
 * and adds in "sum" (32-bit)
 *
 * returns a 32-bit number suitable for feeding into itself
 * or csum_tcpudp_magic
 *
 * this function must be called with even lengths, except
 * for the last fragment, which may be odd
 *
 * it's best to have buff aligned on a 32-bit boundary
 */
asmlinkage __wsum csum_partial(const void *buff, int len, __wsum sum);

/*
 * the same as csum_partial, but copies from src while it
 * checksums, and handles user-space pointer exceptions correctly, when needed.
 *
 * here even more important to align src and dst on a 32-bit (or even
 * better 64-bit) boundary
 */

asmlinkage __wsum csum_partial_copy_generic(const void *src, void *dst, int len);

#define _HAVE_ARCH_CSUM_AND_COPY
/*
 *	Note: when you get a NULL pointer exception here this means someone
 *	passed in an incorrect kernel address to one of these functions.
 *
 *	If you use these functions directly please don't forget the
 *	access_ok().
 */
static inline
__wsum csum_partial_copy_nocheck(const void *src, void *dst, int len)
{
	return csum_partial_copy_generic(src, dst, len);
}

#define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
static inline
__wsum csum_and_copy_from_user(const void __user *src, void *dst, int len)
{
	if (!access_ok(src, len))
		return 0;
	return csum_partial_copy_generic((__force const void *)src, dst, len);
}

/*
 *	Fold a partial checksum
 */

static inline __sum16 csum_fold(__wsum sum)
{
	unsigned int __dummy;
	__asm__("swap.w %0, %1\n\t"
		"extu.w	%0, %0\n\t"
		"extu.w	%1, %1\n\t"
		"add	%1, %0\n\t"
		"swap.w	%0, %1\n\t"
		"add	%1, %0\n\t"
		"not	%0, %0\n\t"
		: "=r" (sum), "=&r" (__dummy)
		: "0" (sum)
		: "t");
	return (__force __sum16)sum;
}

/*
 *	This is a version of ip_compute_csum() optimized for IP headers,
 *	which always checksum on 4 octet boundaries.
 *
 *      i386 version by Jorge Cwik <[email protected]>, adapted
 *      for linux by * Arnt Gulbrandsen.
 */
static inline __sum16 ip_fast_csum(const void *iph, unsigned int ihl)
{
	__wsum sum;
	unsigned int __dummy0, __dummy1;

	__asm__ __volatile__(
		"mov.l	@%1+, %0\n\t"
		"mov.l	@%1+, %3\n\t"
		"add	#-2, %2\n\t"
		"clrt\n\t"
		"1:\t"
		"addc	%3, %0\n\t"
		"movt	%4\n\t"
		"mov.l	@%1+, %3\n\t"
		"dt	%2\n\t"
		"bf/s	1b\n\t"
		" cmp/eq #1, %4\n\t"
		"addc	%3, %0\n\t"
		"addc	%2, %0"	    /* Here %2 is 0, add carry-bit */
	/* Since the input registers which are loaded with iph and ihl
	   are modified, we must also specify them as outputs, or gcc
	   will assume they contain their original values. */
	: "=r" (sum), "=r" (iph), "=r" (ihl), "=&r" (__dummy0), "=&z" (__dummy1)
	: "1" (iph), "2" (ihl)
	: "t", "memory");

	return	csum_fold(sum);
}

static inline __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
					__u32 len, __u8 proto,
					__wsum sum)
{
#ifdef __LITTLE_ENDIAN__
	unsigned long len_proto = (proto + len) << 8;
#else
	unsigned long len_proto = proto + len;
#endif
	__asm__("clrt\n\t"
		"addc	%0, %1\n\t"
		"addc	%2, %1\n\t"
		"addc	%3, %1\n\t"
		"movt	%0\n\t"
		"add	%1, %0"
		: "=r" (sum), "=r" (len_proto)
		: "r" (daddr), "r" (saddr), "1" (len_proto), "0" (sum)
		: "t");

	return sum;
}

/*
 * computes the checksum of the TCP/UDP pseudo-header
 * returns a 16-bit checksum, already complemented
 */
static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr,
					__u32 len, __u8 proto,
					__wsum sum)
{
	return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum));
}

/*
 * this routine is used for miscellaneous IP-like checksums, mainly
 * in icmp.c
 */
static inline __sum16 ip_compute_csum(const void *buff, int len)
{
    return csum_fold(csum_partial(buff, len, 0));
}

#define _HAVE_ARCH_IPV6_CSUM
static inline __sum16 csum_ipv6_magic(const struct in6_addr *saddr,
				      const struct in6_addr *daddr,
				      __u32 len, __u8 proto, __wsum sum)
{
	unsigned int __dummy;
	__asm__("clrt\n\t"
		"mov.l	@(0,%2), %1\n\t"
		"addc	%1, %0\n\t"
		"mov.l	@(4,%2), %1\n\t"
		"addc	%1, %0\n\t"
		"mov.l	@(8,%2), %1\n\t"
		"addc	%1, %0\n\t"
		"mov.l	@(12,%2), %1\n\t"
		"addc	%1, %0\n\t"
		"mov.l	@(0,%3), %1\n\t"
		"addc	%1, %0\n\t"
		"mov.l	@(4,%3), %1\n\t"
		"addc	%1, %0\n\t"
		"mov.l	@(8,%3), %1\n\t"
		"addc	%1, %0\n\t"
		"mov.l	@(12,%3), %1\n\t"
		"addc	%1, %0\n\t"
		"addc	%4, %0\n\t"
		"addc	%5, %0\n\t"
		"movt	%1\n\t"
		"add	%1, %0\n"
		: "=r" (sum), "=&r" (__dummy)
		: "r" (saddr), "r" (daddr),
		  "r" (htonl(len)), "r" (htonl(proto)), "0" (sum)
		: "t");

	return csum_fold(sum);
}

/*
 *	Copy and checksum to user
 */
#define HAVE_CSUM_COPY_USER
static inline __wsum csum_and_copy_to_user(const void *src,
					   void __user *dst,
					   int len)
{
	if (!access_ok(dst, len))
		return 0;
	return csum_partial_copy_generic(src, (__force void *)dst, len);
}
#endif /* __ASM_SH_CHECKSUM_H */

Filemanager

Name Type Size Permission Actions
Kbuild File 170 B 0644
adc.h File 211 B 0644
addrspace.h File 1.85 KB 0644
alignment.h File 654 B 0644
asm-offsets.h File 74 B 0644
atomic-grb.h File 2.97 KB 0644
atomic-irq.h File 2.01 KB 0644
atomic-llsc.h File 2.49 KB 0644
atomic.h File 693 B 0644
barrier.h File 1.47 KB 0644
bitops-cas.h File 1.73 KB 0644
bitops-grb.h File 6.21 KB 0644
bitops-llsc.h File 2.79 KB 0644
bitops-op32.h File 3.82 KB 0644
bitops.h File 1.58 KB 0644
bl_bit.h File 66 B 0644
bl_bit_32.h File 639 B 0644
bug.h File 2.77 KB 0644
cache.h File 1.31 KB 0644
cache_insns.h File 71 B 0644
cache_insns_32.h File 642 B 0644
cacheflush.h File 4.22 KB 0644
cachetype.h File 170 B 0644
checksum.h File 68 B 0644
checksum_32.h File 4.92 KB 0644
clock.h File 436 B 0644
cmpxchg-cas.h File 549 B 0644
cmpxchg-grb.h File 2.8 KB 0644
cmpxchg-irq.h File 1.04 KB 0644
cmpxchg-llsc.h File 1.06 KB 0644
cmpxchg-xchg.h File 1.24 KB 0644
cmpxchg.h File 2.09 KB 0644
device.h File 442 B 0644
dma-register.h File 1.67 KB 0644
dma.h File 3.09 KB 0644
dmabrg.h File 536 B 0644
dwarf.h File 9.66 KB 0644
elf.h File 5.87 KB 0644
entry-macros.S File 1.85 KB 0644
extable.h File 135 B 0644
fixmap.h File 2.48 KB 0644
flat.h File 865 B 0644
fpu.h File 1.67 KB 0644
freq.h File 212 B 0644
ftrace.h File 1.41 KB 0644
futex-cas.h File 728 B 0644
futex-irq.h File 482 B 0644
futex-llsc.h File 870 B 0644
futex.h File 1.35 KB 0644
hardirq.h File 267 B 0644
hd64461.h File 11.79 KB 0644
heartbeat.h File 383 B 0644
hugetlb.h File 552 B 0644
hw_breakpoint.h File 1.99 KB 0644
hw_irq.h File 915 B 0644
i2c-sh7760.h File 406 B 0644
io.h File 8.88 KB 0644
io_generic.h File 661 B 0644
io_noioport.h File 1.25 KB 0644
io_trapped.h File 1.44 KB 0644
irq.h File 1.16 KB 0644
irqflags.h File 226 B 0644
kdebug.h File 433 B 0644
kexec.h File 2.62 KB 0644
kgdb.h File 851 B 0644
kprobes.h File 1.27 KB 0644
linkage.h File 154 B 0644
machvec.h File 699 B 0644
mmiowb.h File 246 B 0644
mmu.h File 2.18 KB 0644
mmu_context.h File 4.07 KB 0644
mmu_context_32.h File 1.11 KB 0644
mmzone.h File 970 B 0644
module.h File 276 B 0644
page.h File 4.6 KB 0644
pci.h File 2.78 KB 0644
perf_event.h File 797 B 0644
pgalloc.h File 1.13 KB 0644
pgtable-2level.h File 567 B 0644
pgtable-3level.h File 1.5 KB 0644
pgtable.h File 3.89 KB 0644
pgtable_32.h File 16.53 KB 0644
platform_early.h File 1.81 KB 0644
posix_types.h File 71 B 0644
processor.h File 4.22 KB 0644
processor_32.h File 4.41 KB 0644
ptrace.h File 3.74 KB 0644
ptrace_32.h File 307 B 0644
push-switch.h File 755 B 0644
reboot.h File 472 B 0644
romimage-macros.h File 1.1 KB 0644
rtc.h File 226 B 0644
seccomp.h File 546 B 0644
sections.h File 311 B 0644
setup.h File 764 B 0644
sfp-machine.h File 2.7 KB 0644
sh7760fb.h File 5.61 KB 0644
sh_bios.h File 743 B 0644
shmparam.h File 489 B 0644
siu.h File 385 B 0644
smc37c93x.h File 5.56 KB 0644
smp-ops.h File 1.02 KB 0644
smp.h File 1.8 KB 0644
sparsemem.h File 319 B 0644
spi.h File 265 B 0644
spinlock-cas.h File 1.95 KB 0644
spinlock-llsc.h File 4.05 KB 0644
spinlock.h File 438 B 0644
spinlock_types.h File 469 B 0644
sram.h File 670 B 0644
stackprotector.h File 532 B 0644
stacktrace.h File 528 B 0644
string.h File 66 B 0644
string_32.h File 2.16 KB 0644
suspend.h File 2.52 KB 0644
switch_to.h File 190 B 0644
switch_to_32.h File 3.55 KB 0644
syscall.h File 201 B 0644
syscall_32.h File 1.59 KB 0644
syscalls.h File 532 B 0644
syscalls_32.h File 979 B 0644
thread_info.h File 4.95 KB 0644
timex.h File 637 B 0644
tlb.h File 738 B 0644
tlbflush.h File 1.77 KB 0644
topology.h File 645 B 0644
traps.h File 424 B 0644
traps_32.h File 1.42 KB 0644
types.h File 332 B 0644
uaccess.h File 4.05 KB 0644
uaccess_32.h File 4.89 KB 0644
uncached.h File 1.34 KB 0644
unistd.h File 953 B 0644
unwinder.h File 856 B 0644
user.h File 2.19 KB 0644
vermagic.h File 709 B 0644
vmalloc.h File 84 B 0644
vmlinux.lds.h File 416 B 0644
watchdog.h File 3.89 KB 0644
word-at-a-time.h File 1.34 KB 0644
Filemanager