cregit-Linux how code gets into the kernel

Release 4.7 arch/sparc/lib/user_fixup.c

Directory: arch/sparc/lib
/* user_fixup.c: Fix up user copy faults.
 *
 * Copyright (C) 2004 David S. Miller <davem@redhat.com>
 */

#include <linux/compiler.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/module.h>

#include <asm/uaccess.h>

/* Calculating the exact fault address when using
 * block loads and stores can be very complicated.
 *
 * Instead of trying to be clever and handling all
 * of the cases, just fix things up simply here.
 */


static unsigned long compute_size(unsigned long start, unsigned long size, unsigned long *offset) { unsigned long fault_addr = current_thread_info()->fault_address; unsigned long end = start + size; if (fault_addr < start || fault_addr >= end) { *offset = 0; } else { *offset = fault_addr - start; size = end - fault_addr; } return size; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller73100.00%2100.00%
Total73100.00%2100.00%


unsigned long copy_from_user_fixup(void *to, const void __user *from, unsigned long size) { unsigned long offset; size = compute_size((unsigned long) from, size, &offset); if (likely(size)) memset(to + offset, 0, size); return size; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller61100.00%3100.00%
Total61100.00%3100.00%

EXPORT_SYMBOL(copy_from_user_fixup);
unsigned long copy_to_user_fixup(void __user *to, const void *from, unsigned long size) { unsigned long offset; return compute_size((unsigned long) to, size, &offset); }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller39100.00%2100.00%
Total39100.00%2100.00%

EXPORT_SYMBOL(copy_to_user_fixup);
unsigned long copy_in_user_fixup(void __user *to, void __user *from, unsigned long size) { unsigned long fault_addr = current_thread_info()->fault_address; unsigned long start = (unsigned long) to; unsigned long end = start + size; if (fault_addr >= start && fault_addr < end) return end - fault_addr; start = (unsigned long) from; end = start + size; if (fault_addr >= start && fault_addr < end) return end - fault_addr; return size; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller94100.00%3100.00%
Total94100.00%3100.00%

EXPORT_SYMBOL(copy_in_user_fixup);

Overall Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller28494.04%480.00%
sam ravnborgsam ravnborg185.96%120.00%
Total302100.00%5100.00%
Directory: arch/sparc/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}