copy_in_user.S 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copy from user space to user space
  3. *
  4. * Copyright (C) 2012 ARM Ltd.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <linux/linkage.h>
  19. #include <asm/cache.h>
  20. #include <asm/asm-uaccess.h>
  21. /*
  22. * Copy from user space to user space (alignment handled by the hardware)
  23. *
  24. * Parameters:
  25. * x0 - to
  26. * x1 - from
  27. * x2 - n
  28. * Returns:
  29. * x0 - bytes not copied
  30. */
  31. .macro ldrb1 ptr, regB, val
  32. uao_user_alternative 9998f, ldrb, ldtrb, \ptr, \regB, \val
  33. .endm
  34. .macro strb1 ptr, regB, val
  35. uao_user_alternative 9998f, strb, sttrb, \ptr, \regB, \val
  36. .endm
  37. .macro ldrh1 ptr, regB, val
  38. uao_user_alternative 9998f, ldrh, ldtrh, \ptr, \regB, \val
  39. .endm
  40. .macro strh1 ptr, regB, val
  41. uao_user_alternative 9998f, strh, sttrh, \ptr, \regB, \val
  42. .endm
  43. .macro ldr1 ptr, regB, val
  44. uao_user_alternative 9998f, ldr, ldtr, \ptr, \regB, \val
  45. .endm
  46. .macro str1 ptr, regB, val
  47. uao_user_alternative 9998f, str, sttr, \ptr, \regB, \val
  48. .endm
  49. .macro ldp1 ptr, regB, regC, val
  50. uao_ldp 9998f, \ptr, \regB, \regC, \val
  51. .endm
  52. .macro stp1 ptr, regB, regC, val
  53. uao_stp 9998f, \ptr, \regB, \regC, \val
  54. .endm
  55. end .req x5
  56. ENTRY(__arch_copy_in_user)
  57. uaccess_enable_not_uao x3, x4, x5
  58. add end, x0, x2
  59. #include "copy_template.S"
  60. uaccess_disable_not_uao x3, x4
  61. mov x0, #0
  62. ret
  63. ENDPROC(__arch_copy_in_user)
  64. .section .fixup,"ax"
  65. .align 2
  66. 9998: sub x0, end, dst // bytes not copied
  67. uaccess_disable_not_uao x3, x4
  68. ret
  69. .previous