2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1996, 1999 by Ralf Baechle
7 * Copyright (C) 2011 MIPS Technologies, Inc.
9 #include <linux/errno.h>
11 #include <asm/asm-offsets.h>
12 #include <asm/export.h>
13 #include <asm/regdef.h>
15 #define EX(insn,reg,addr,handler) \
17 .section __ex_table,"a"; \
22 * Returns: -EFAULT if exception before terminator, N if the entire
23 * buffer filled, else strlen.
27 * Ugly special case have to check: we might get passed a user space
28 * pointer which wraps into the kernel space. We don't deal with that. If
29 * it happens at most some bytes of the exceptions handlers will be copied.
32 .macro __BUILD_STRNCPY_ASM func
33 LEAF(__strncpy_from_\func\()_asm)
34 LONG_L v0, TI_ADDR_LIMIT($28) # pointer ok?
40 .ifeqs "\func","kernel"
41 1: EX(lbu, v0, (v1), .Lfault\@)
43 1: EX(lbue, v0, (v1), .Lfault\@)
52 2: PTR_ADDU v0, a1, t0
57 END(__strncpy_from_\func\()_asm)
63 .section __ex_table,"a"
71 .global __strncpy_from_user_asm
72 .set __strncpy_from_user_asm, __strncpy_from_kernel_asm
73 EXPORT_SYMBOL(__strncpy_from_user_asm)
76 __BUILD_STRNCPY_ASM kernel
77 EXPORT_SYMBOL(__strncpy_from_kernel_asm)
82 __BUILD_STRNCPY_ASM user
84 EXPORT_SYMBOL(__strncpy_from_user_asm)