strncpy_user.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: strncpy_user.S,v 1.3 1999/08/21 22:19:11 ralf Exp $
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (c) 1996, 1999 by Ralf Baechle
  8.  */
  9. #include <linux/errno.h>
  10. #include <asm/asm.h>
  11. #include <asm/offset.h>
  12. #include <asm/regdef.h>
  13. #define EX(insn,reg,addr,handler)
  14. 9: insn reg, addr;
  15. .section __ex_table,"a";
  16. PTR 9b, handler;
  17. .previous
  18. /*
  19.  * Returns: -EFAULT if exception before terminator, N if the entire
  20.  * buffer filled, else strlen.
  21.  */
  22. /*
  23.  * Ugly special case have to check: we might get passed a user space
  24.  * pointer which wraps into the kernel space.  We don't deal with that.  If
  25.  * it happens at most some bytes of the exceptions handlers will be copied.
  26.  */
  27. LEAF(__strncpy_from_user_asm)
  28. lw v0, THREAD_CURDS($28) # pointer ok?
  29. and v0, a1
  30. bltz v0, fault
  31. EXPORT(__strncpy_from_user_nocheck_asm)
  32. move v0, zero
  33. move v1, a1
  34. .set noreorder
  35. 1: EX(lbu,  t0, (v1), fault)
  36. addiu v1, v1, 1
  37. beqz t0, 2f
  38.  sb t0, (a0)
  39. addiu v0, 1
  40. bne v0, a2, 1b
  41.  addiu a0, 1
  42. .set reorder
  43. 2: addu t0, a1, v0
  44. xor t0, a1
  45. bltz t0, fault
  46. jr ra # return n
  47. END(__strncpy_from_user_asm)
  48. fault: li v0, -EFAULT
  49. jr ra
  50. .section __ex_table,"a"
  51. PTR 1b, fault
  52. .previous